|
|
|
|
|
by neitsab
3560 days ago
|
|
For now DNS information reflect the former address and name servers for most people: $ dig krebsonsecurity.com +short
127.0.0.1
$ dig ns krebsonsecurity.com +short
ns2.prolexic.net.
ns1.prolexic.net.
127.0.0.1 points to localhost, which is your local machine.However if you query the Whois, you'll see that the site changed its name servers from Prolexic's to Google's ones today: $ whois krebsonsecurity.com | grep "Name Server"
Name Server: NS-CLOUD-D1.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D2.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D3.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-D4.GOOGLEDOMAINS.COM
And indeed if we query those directly: $ dig krebsonsecurity.com @ns-cloud-d1.googledomains.com +short
130.211.45.45
Such name servers change can take up to 72h to propagate. Meanwhile, you can edit your /etc/hosts file (on GNU/Linux) to hardcode the IP of krebsonsecurity.com: # echo "130.211.45.45 krebsonsecurity.com" >> /etc/hosts
(must run as root)Now browse to krebsonsecurity.com et voilĂ ! |
|