Forum Moderators: phranque
So I went to register.com to change the ip to the new one. Am I down until this change takes effect or is there a way to redirect?
The site I have is a hobby, not business. So I host it myself through my cable company.
To prevent this happening again, find out if your domain registrar offers a facility for your IP address to be automatically updated by a script running on your computer.
Note: it's possible your own local system might have the old IP address cached somewhere, which means you might not be able to access your own server via the domain name, but others can.
The site is not accessible from outside. I use Citrix to get into my office where I can test external access...no dice.
How can I test to see when the DNS change has been made? Is it usually a full 24 hours? I'm really p*ssed because I've been waiting for that Google spider and I'll bet I missed it. Murphy's Law and all.
If you want to find out what it is, you'll need to know which nameservers are authoritative for your zone; this will be the IP addresses in the 'NS' lines of your zonefile (they're *probably* the nameservers that appear in your 'whois' data, but there's no guarantee of that).
If your nameserver is ns1.exampleisp.com and your domain is example.com, then run the following:
$ dig @ns1.exampleisp.com www.example.com
; <<>> DiG 9.2.3 <<>> @ns1.example.com www.example.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64592
;; flags: qr aa rd; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION:
;www.example.com. IN A
;; ANSWER SECTION:
www.example.com. 86400 IN A 192.168.1.100
[other data snipped]
A little cryptic, but it boils down to this:
Hope this helps. =)
Hosting a web site on a dynamic-IP home line is a bad idea for a couple of reasons. First, it usually against the terms of service of the ISP (and for good technical reasons, not just that they are unreasonable). And second, because you'll need a service like dyndns to handle DNS for it, which raises cost and complexity.
Jim