4
Say I have two domains, foo.com
and bar.com
, and I initially have an A record for:
www.foo.com → 1.2.3.4
I then decide I want www.bar.com
to resolve to this IP, so I delete www.foo.com
's A record, and add an A record for bar
:
www.bar.com → 1.2.3.4
This looks fine via dig
. However, when I do a reverse DNS lookup on that IP, I still see www.foo.com
.
Any idea how long reverse DNS takes to propagate?
As I understand it, cache is the active records being stored by each DNS server, and propagation is the process (and time) it takes for the new instructions to get to all the necessary DNS servers, usually across a broader network (such as the internet). They're not the same thing, and they're not both the problem in each case (especially with DNS servers on a local network). – music2myear – 2017-08-28T16:54:50.167
4DNS does NOT propagate! Records are cached, the TTL controls the caching. cache!=propagation – Zoredache – 2011-08-24T20:35:22.443
fair enough. i think you get my point though. – Joe batista – 2011-08-24T20:40:25.300