Home Internet Connection Stability Testing
March 7, 2006 5:55 AM
Subscribe
I have a cable modem at home and it seems that I am having periodic outages. I would like to test my connection to the internet from an exterior source. I want to know exactly how often the connection goes down as well as any degraded traffic. Any suggestions?
I have spoken with some neighbors and they seem to be having some of the same problems. I figured I could go down one of a couple of routes.
1 - I have a PC at work that I could load an application to automatically connect to my home pc at a regular basis. Hopefully producing a report covering a week or so that would tell how often the connection failed, for how long, and ideally if I had any degraded service. What would that App be?
2 - Use a resource on the web instead of my work PC.
I would love to hear what you have to say.
posted by wahootim to technology (5 comments total)
1) Build a list of internet servers that are reliable, and that you can use as ping targets when you experience one of these outages. Ideally, these server names and addresses would be single machine targets at permanent IP addresses. www.metafilter.com at 70.86.84.162 might or might not be a good one, as it has it's share of intermittent downtime problems...:-) But you get the idea. Save the list in Notepad, where you can get at it quickly. The next time this happens, open a command prompt on your home machine, and try issuing a traceroute command using the name of one of your target servers. The output will look like this:
That tells you that DNS could resolve the server named www.metafilter.com to an actual IP address, and that your machine could send ICMP packets to that address, and get back packets. And you get to see a lot of machines that handled your traffic on that roundtrip.
If the tracert command fails, it can fail because DNS can't resolve the name you gave, or because of actual connectivity problems. If it's a DNS problem, you can try issuing the tracert command again, but instead of using the name of a target server, use the address for it from your list. If the tracert works, you have proved your problems are DNS failures, and you can complain to your cable company intelligently. You could also add additional DNS servers, outside your cable companies network, to the list of machines you'll look to for DNS when your cable companies servers are down, in the Properties tab for your TCP/IP network connection.
The tracert can also fail because routers in the path to your target servers aren't working, or because links are down. those problems are kind of self-explanatory, but here's a page with some good suggestions for using tracert to figure out connectivity problems.
posted by paulsc at 6:34 AM on March 7, 2006