jwegman Heliman Location: Rochester, MN - USA
| As ronan675 pointed out, DNS resolution is most likely not a major contributing factor to your problem. If your browser will resolve URL's, your DNS resolver is doing it's thing.
Many people, including myself block ICMP echo responses (pings), at our corporate firewall. Most sales associates etc do not need the functionality to ping. Ping is a useful tool for troubleshooting, however there are mutiple dangers in allowing ICMP echos per my 2nd ed of Building Internet Firewalls pub by OReilly.
Traceroute uses ICMP or UDP datagrams. My linux implimentation can switch between the two protocols. If you are blocking ICMP, traceroute very well may fail.
Are you using an Internet firewall? (I hope you are) - if you are using a recent version of linux, you may very well be using iptables/netfilter as your "firewall".
At the linux command prompt, run the following to see your IPTables firewall rules:
iptables -L
Good luck,
Jake |