clearing your dns cache
Caching is a very common technique and is used all over the place from your ISP caching dns requests to your browser caching website files down to your own computer configuration. Its something that silently runs in the background speeding the use of technology for us and is something that we rarely notice. Not very often but every once in a while I notice that a website we change the dns on will work for my colleagues on the same network but will not work for me. This isn’t their browser caching anything as i’ve asked them to try a different browser and clear their temporary files cache. We are all on the same network and have the same dns settings and use the same ISP so what could it be? Well when this happens i usually resort to clearing the individual computers dns cache. I have a little batch file on my desktop for just such an occasion. Its infact become a habbit for me to run this file clear my browsers cache and then to test a site just to be sure.
@echo off
echo Preparing to flush the dns...
ipconfig /flushdns
net stop dnscache
net start dnscache
PAUSE
Comments
Comments are currently closed