Tuesday, June 9, 2015

domain name system - Reverse DNS query of public IP returns localhost

I'm seeing this unusual behavior with reverse DNS lookups on this public IP Address: 222.253.228.79. Can someone explain what's going on?






MXToolbox PTR lookup resolved localhost as the domain







ping -a is even stranger; it resolved it to my local PC name (clifford):



ping -a 222.253.228.79
Pinging clifford [222.253.228.79] with 32 bytes of data:






nslookup via Google's public 8.8.8.8 DNS server also resolves it to localhost:



nslookup 222.253.228.79 8.8.8.8
Server: google-public-dns-a.google.com
Address: 8.8.8.8

Name: localhost
Address: 222.253.228.79

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...