What Is My IP Address?
Your public IP address, CIDR notation, location, ISP — detected instantly. Plus ready-to-paste whitelist configs for AWS, MongoDB Atlas, GCP, and Linux.
# Authorize your IP in a Security Group aws ec2 authorize-security-group-ingress \ --group-id sg-xxxxxxxxxxxxxxxxx \ --protocol tcp \ --port 443 \ --cidr Detecting…/32
resource "aws_security_group_rule" "dev_ip_access" { type = "ingress" from_port = 443 to_port = 443 protocol = "tcp" cidr_blocks = [Detecting…/32] security_group_id = "sg-xxxxxxxxxxxxxxxxx" description = "Dev IP — ipwhitelist.dev" }
Type: Custom TCP · Port: 443 · Source: Detecting…/32
Detecting…/32 # Paste in Atlas → Network Access → Add IP
# brew install mongodb-atlas atlas accessLists create \ --projectId YOUR_PROJECT_ID \ --cidr Detecting…/32 \ --comment "Dev IP — ipwhitelist.dev"
{
"ipAddress": Detecting…,
"comment": "Dev IP — ipwhitelist.dev"
}gcloud compute firewall-rules create allow-dev-ip \ --allow=tcp:443 \ --source-ranges=Detecting…/32 \ --description="Dev IP — ipwhitelist.dev" \ --project=YOUR_PROJECT_ID
gcloud sql instances patch YOUR_INSTANCE \ --authorized-networks=Detecting…/32
sudo iptables -I INPUT -s Detecting… -p tcp --dport 443 -j ACCEPT sudo netfilter-persistent save
sudo ufw allow from Detecting… to any port 443 sudo ufw reload
location /admin {
allow Detecting…;
deny all;
}# Plain IP Detecting… # CIDR /32 (single host) Detecting…/32 # JSON { "ip": Detecting…, "mask": "255.255.255.255" } # curl test curl -v https://api.example.com/ 2>&1 | grep "Connected"
How to find your public IP address
Your public IP address is the unique identifier assigned by your Internet Service Provider (ISP) to your internet connection. Unlike your local or private IP address (typically in the 192.168.x.x or 10.x.x.x range), your public IP is visible to all servers and services you connect to on the internet.
IPWhitelist.dev detects your public IP instantly using two independent sources — ipify.org and ipapi.co — for maximum accuracy and reliability.
What is CIDR notation and why does it matter?
CIDR (Classless Inter-Domain Routing) notation expresses an IP address and its associated network mask. For a single IP address, the CIDR notation appends /32, meaning only that exact address is included. When whitelisting your IP in AWS Security Groups, MongoDB Atlas, or GCP Firewall rules, you must provide the CIDR format — for example, 203.0.113.42/32.
Free developer tools on IPWhitelist.dev
- Port Checker — Test if TCP ports are open on any host
- DNS Lookup — Query A, AAAA, MX, CNAME, TXT and NS records
- Latency Test — Measure your RTT to major cloud regions worldwide
- User Agent Parser — Full browser and OS fingerprint breakdown