Blogs

Frozen Perl 2011 Conference Lightning Talk: "Scripting Deployment With Perl"

 

I gave a lightning talk at the Frozen Perl 2011 conference today. Check it by clicking here.

 

How to retrieve the previous IP address for a web site

Moved your web site to a different server? Realized you forgot something after the DNS switched? Issue the following command from your computer's terminal to retrieve the previous IP address for site from the nameserver's cached A record entry:

 

Same nameservers?

dig some-domain.com A @ns1.current-nameserver.net

 

Different nameservers?

dig some-domain.com A @ns1.the-old-nameserver.net

 

Syndicate content