| | |
Internet blacklists in Windows XP
![]() |
•
•
Join Date: Jul 2004
Posts: 36
Reputation:
Solved Threads: 0
There are some website that I can never get. I always get a browser timed out message when I try to get these sites on one specific pc. Other than in the Windows firewall (which I have turned off) are there places in Windows that I should check to see if these sites are on an excluded list? these are business sites not off-color sites by the way. I can get these sites on other PCs on the network and I have tried IE, Netscape and Firefox so I don't think it's a browser issue?
Any ideas? Thanks
Any ideas? Thanks
•
•
Join Date: Mar 2004
Posts: 1,620
Reputation:
Solved Threads: 51
Hello,
Check to see if it is a DNS problem.
Open a command window, and type in "ping x" where x is the name of the website. Then, take the raw numbers it gives you (reply from w.x.y.z) and put that in the web browser. If that works, then the problem is DNS related.
For example:
Open the Command Window.
type in "ping www.daniweb.com"
--> the machine should reply with: Reply from 67.18.73.107
Open a new web browser. In the address box, type in "http://67.18.73.107"
--> the machine should find DaniWeb and show you the homepage.
Of course, leave out the quotes in this example.
If the website draws up just fine, you have a DNS problem. If it does not, you have a routing problem.
Christian
Check to see if it is a DNS problem.
Open a command window, and type in "ping x" where x is the name of the website. Then, take the raw numbers it gives you (reply from w.x.y.z) and put that in the web browser. If that works, then the problem is DNS related.
For example:
Open the Command Window.
type in "ping www.daniweb.com"
--> the machine should reply with: Reply from 67.18.73.107
Open a new web browser. In the address box, type in "http://67.18.73.107"
--> the machine should find DaniWeb and show you the homepage.
Of course, leave out the quotes in this example.
If the website draws up just fine, you have a DNS problem. If it does not, you have a routing problem.
Christian
•
•
Join Date: Jul 2004
Posts: 36
Reputation:
Solved Threads: 0
I can ping the site! (66.150.167.148) When I put the Ip address in the browser, I still get the message "The operation timed out while trying to contact..."
So this is a routing problem?
So this is a routing problem?
•
•
•
•
Originally Posted by kc0arf
Check to see if it is a DNS problem.
Open a command window, and type in "ping x" where x is the name of the website. Then, take the raw numbers it gives you (reply from w.x.y.z) and put that in the web browser. If that works, then the problem is DNS related.
For example:
Open the Command Window.
type in "ping www.daniweb.com"
--> the machine should reply with: Reply from 67.18.73.107
Open a new web browser. In the address box, type in "http://67.18.73.107"
--> the machine should find DaniWeb and show you the homepage.
Of course, leave out the quotes in this example.
If the website draws up just fine, you have a DNS problem. If it does not, you have a routing problem.
Christian
Last edited by DMR; Nov 11th, 2004 at 5:47 pm. Reason: Fixed missing quote tag (aren't I a nice guy?)
•
•
•
•
Originally Posted by flowerman
are there places in Windows that I should check to see if these sites are on an excluded list?
2. Open your "hosts" file in Windows Notepad. In XP the file resides in the c:\windows\system32\drivers\etc\ folder; in Win 2000 it resides in c:\winnt\system32\drivers\etc\. Aside from some comment lines (lines beginning with the "#" sign) at the beginning of the file, it should usually contain only the following line:
127.0.0.1 localhost
If it contains other lines, especially those which refere to the URLs you can't reach, delete those lines and save the newly-modified file.
"May the Wombat of Happiness snuffle through your underbrush."
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
•
•
Join Date: Jul 2004
Posts: 36
Reputation:
Solved Threads: 0
DMR - Thank You, Thank You, Thank You!
The site I was having problems with was indeed on the "hosts" file (but not on the restricted list.) I removed it and now, after weeks of tweeks, downloads and optomization, I can get the site to load again.
What is this "hosts" file? Any idea how this site got on it?
Thanks again.
The site I was having problems with was indeed on the "hosts" file (but not on the restricted list.) I removed it and now, after weeks of tweeks, downloads and optomization, I can get the site to load again.
What is this "hosts" file? Any idea how this site got on it?
Thanks again.
•
•
•
•
Originally Posted by DMR
1. In your Internet Options control panel, check the Restricted Sites section under the Security tab.
2. Open your "hosts" file in Windows Notepad. In XP the file resides in the c:\windows\system32\drivers\etc\ folder; in Win 2000 it resides in c:\winnt\system32\drivers\etc\. Aside from some comment lines (lines beginning with the "#" sign) at the beginning of the file, it should usually contain only the following line:
127.0.0.1 localhost
If it contains other lines, especially those which refere to the URLs you can't reach, delete those lines and save the newly-modified file.
You're welcome; glad we could help. 
Here's an explanation I posted in answer to a similar question an earlier thread:
The entries in the "hosts" file are mappings of host names/URLs to their respective IP addresses. This is essentially like having a small DNS server on your own computer, in that when you type a URL into your browser (or click on a link to a URL on a web page), Windows will look in the hosts file to see if the URL you typed/clicked has a matching IP address there. If so, Windows will direct your browser to that IP address; if not, Windows will then look to your DNS servers to match the URL with an actual IP address. (The use of hosts files was how hostname-to-IP address mapping/resolution was done before DNS was invented.)
The problem with this method is that:
A) By default, Windows will consult the local hosts file before consulting any DNS servers on your network or on the Internet.
B) There is no error checking at all concerning validity of the mappings in your hosts file. You (or someone else) can put any hostname-to-IP mapping entry you want into the hosts file; when your browser encounters that hostname, it will automatically ty to go to the associated IP address listed in hosts.
Just for grins, you can test this yourself.
1. Put the following entry at the end of your hosts file and save the file:
64.233.167.99 www.spooge.com
2. Open a web browser and type this in the location/address box:
http://www.spooge.com
If your browser took you to Google, congratulations- you've just demonstrated what a huge security hole the hosts file presents. :mrgreen:
*Setting the "read only" attribute on the hosts file can keep viruses, hijackers, etc. from making unwanted changes to the file.

•
•
•
•
Originally Posted by flowerman
What is this "hosts" file? Any idea how this site got on it?
The entries in the "hosts" file are mappings of host names/URLs to their respective IP addresses. This is essentially like having a small DNS server on your own computer, in that when you type a URL into your browser (or click on a link to a URL on a web page), Windows will look in the hosts file to see if the URL you typed/clicked has a matching IP address there. If so, Windows will direct your browser to that IP address; if not, Windows will then look to your DNS servers to match the URL with an actual IP address. (The use of hosts files was how hostname-to-IP address mapping/resolution was done before DNS was invented.)
The problem with this method is that:
A) By default, Windows will consult the local hosts file before consulting any DNS servers on your network or on the Internet.
B) There is no error checking at all concerning validity of the mappings in your hosts file. You (or someone else) can put any hostname-to-IP mapping entry you want into the hosts file; when your browser encounters that hostname, it will automatically ty to go to the associated IP address listed in hosts.
Just for grins, you can test this yourself.
1. Put the following entry at the end of your hosts file and save the file:
64.233.167.99 www.spooge.com
2. Open a web browser and type this in the location/address box:
http://www.spooge.com
If your browser took you to Google, congratulations- you've just demonstrated what a huge security hole the hosts file presents. :mrgreen:
*Setting the "read only" attribute on the hosts file can keep viruses, hijackers, etc. from making unwanted changes to the file.
"May the Wombat of Happiness snuffle through your underbrush."
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
•
•
Join Date: Jul 2004
Posts: 36
Reputation:
Solved Threads: 0
Thanks again! It almost takes an inhouse computer guru to workPCs these days.
•
•
•
•
Originally Posted by DMR
You're welcome; glad we could help.
Here's an explanation I posted in answer to a similar question an earlier thread:
The entries in the "hosts" file are mappings of host names/URLs to their respective IP addresses. This is essentially like having a small DNS server on your own computer, in that when you type a URL into your browser (or click on a link to a URL on a web page), Windows will look in the hosts file to see if the URL you typed/clicked has a matching IP address there. If so, Windows will direct your browser to that IP address; if not, Windows will then look to your DNS servers to match the URL with an actual IP address. (The use of hosts files was how hostname-to-IP address mapping/resolution was done before DNS was invented.)
The problem with this method is that:
A) By default, Windows will consult the local hosts file before consulting any DNS servers on your network or on the Internet.
B) There is no error checking at all concerning validity of the mappings in your hosts file. You (or someone else) can put any hostname-to-IP mapping entry you want into the hosts file; when your browser encounters that hostname, it will automatically ty to go to the associated IP address listed in hosts.
Just for grins, you can test this yourself.
1. Put the following entry at the end of your hosts file and save the file:
64.233.167.99 www.spooge.com
2. Open a web browser and type this in the location/address box:
http://www.spooge.com
If your browser took you to Google, congratulations- you've just demonstrated what a huge security hole the hosts file presents. :mrgreen:
*Setting the "read only" attribute on the hosts file can keep viruses, hijackers, etc. from making unwanted changes to the file.
•
•
•
•
Originally Posted by flowerman
Thanks again!
•
•
•
•
Originally Posted by flowerman
It almost takes an inhouse computer guru to workPCs these days.
"May the Wombat of Happiness snuffle through your underbrush."
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
- Ancient Aborigine blessing
Please do not contact me by email or PM for help. We're all volunteers here, and only have so much free time to dedicate to our efforts.
However, if I've been working on a thread with you already, and seem to have "forgotten" your thread, please do send me a message. I try not to let things slip through the cracks, but it does happen sometimes.
![]() |
Similar Threads
- XP SP2 Freezing upon opening new explorer/Internet excplorer windows (Viruses, Spyware and other Nasties)
- Internet Explorer and Windows Explorer (desktop shortcuts) won't open or load! (Viruses, Spyware and other Nasties)
- Internet Permissions Windows XP (Windows NT / 2000 / XP)
- XP SP2 Freezing upon opening new explorer/Internet excplorer windows (Viruses, Spyware and other Nasties)
- How do I create an internet gateway on windows 2000? (Networking Hardware Configuration)
Other Threads in the Windows NT / 2000 / XP Forum
- Previous Thread: Running Low on Virtual Memory, Runtime C++ Error
- Next Thread: disable/enable network access to folders
| Thread Tools | Search this Thread |
.net 3.5 3daccelertion 2007 2010 a.exe alaris apache appstore arm auto automatically black blue book boot cellphones collaboration computer computerfreezes crash cursor deployment desktop desktops dns dotnetnuke drive eartlink error errors explorer features folder fontmanagers format framework gadgets install intel internet interoperability killprocess laptop latitude linux load login mac microsoft mobile monitor motionle1600 netbooks novell nvidia open operatingsystems osx palm partition patch port printer product proxy rds remotedesktop remotedesktopconnection repair replacingraiddrive retrieve screen simplifiedchinese sp1 ubuntu unreadable update usb verizon videodrivers videogames virtual virus vista visual vulnerability wab webos weecam win win32/heur window windows windows7 windowsxp windowsxpnotstartingup. worm xp xpde






