for example i added the following rule to the PREROUTING chain:
iptables -t nat -A PREROUTING -d 210.210.210.210 -j DNAT --to-destination 200.200.200.200
(lets say that both of the ip addresses are web servers on the internet)
now when i use any browser to surf to 210.210.210.210 i get redirected to 200.200.200.200 so far so good.. when i remove the rule from the chain right after i surf, and do a refresh or typing again the address adn press "go" i still get redirected to 200.200.200.200 its stay like this for a few minutes and after a while when i retry i get back to 210.210.210.210
if its a browser caching problem how can i force it not to cache the dns address or how can iptables prevent that from happening?