IP

IP ASN Lookup

Tool untuk melihat informasi jaringan dari IP address. Berguna saat investigasi traffic, audit hosting, atau memastikan IP berada di provider yang benar.

Coba langsung

Masukkan IP publik untuk melihat data RDAP jaringan dan pemilik ASN.

Siap ngecek. Masukkan target dulu.

Fungsi utama

Cocok untuk

  • - Audit hosting
  • - Investigasi IP
  • - Cek provider jaringan
  • - Debug akses firewall

Input

  • - IPv4 atau IPv6

Yang dicek

RDAP IP ASN Network range Registry

Output yang ideal

  • - ASN
  • - Nama network
  • - CIDR/range
  • - Registry
  • - Country jika tersedia

Contoh implementasi Node

Astro endpoint ready
export async function lookupIpRdap(ip: string) {
  const response = await fetch(`https://rdap.org/ip/${ip}`, {
    signal: AbortSignal.timeout(8000)
  });

  if (!response.ok) return null;

  return response.json();
}