|
|
Resources
Some basic networking related terms. If you find something missing from the glossary, let me know and I'll try to add it. How To...
Access Network Connections on Windows XP
There are several ways to get to Network Connections on Windows XP and here are a couple. 1) Right click on a network connection status icon in the system tool tray and select Open Network Connections. If you are using the default category view for the Control Panel, you can: 2) Open the Control Panel and select Network and Internet Connections. Then select Network Connections. If are using the classic view for the Control Panel, the steps are: 2) Open the Control Panel and select Network Connections. Run ipconfig on Windows ipconfig display basic network related configuration information, such as IP address, DNS servers, and DHCP settings. It is a command line utility and as such it must be run through XP's command window. There are two basic ways to do this: Either, 1) Go to the Start menu and select Run... In the the Run dialog enter cmd /k ipconfig Or 2) Open a command window and then run ipconfig in the window Running ipconfig with no options will provide just the basic information, while running it with the /all option provides more detailed information. ipconfig also has a /release and a /renew option. They are only of use if DHCP is enabled and are used release the currently assigned IP address and to request an assignment of a new IP address. It is normal that a request for a new IP address results in the same IP address being assigned. Note: For versions of windows earlier than XP, use command instead of cmd Note: A GUI based version of ipconfig exists on Windows 95/98/ME and is called winipconfig. Note: Windows NT/XP/2000 do not come with a GUI version, but it can be downloaded from this noted page. ipconfig/release clears the DHCP assigned (automatic) IP address Run ping on Windows
ping is a command line utility and as such it must be run through XP's command window. There are two basic ways to do this: Either, 1) Go to the Start menu and select Run... In the the Run dialog enter cmd /k ping hostname or ip address Or 2) Open a command window and then run ping hostname or ip address in the window ping is most commonly used with no options, run this way it will try reaching the given host 4 times. ping with the -f and -l options is sometimes used to determine the MTU for a given connection, but that is another discussion. Note: For versions of windows earlier than XP, use command instead of cmd Sample output from the ping command Run tracert on Windows
tracert is a command line utility and as such it must be run through XP's command window. There are two basic ways to do this: Either, 1) Go to the Start menu and select Run... In the the Run dialog enter cmd /k tracert hostname or ip address Or 2) Open a command window and then run tracert hostname or ip address in the window Note: For versions of windows earlier than XP, use command instead of cmd Sample trace to a local machine Set the MTU on Windows The first step in setting your MTU is determining what it should be. This can be done by using 'ping -f -l 1500 www.google.com' and repeating the command, lowering the value after '-l' until the command works. Once you have the MTU value that works for your network, then DrTCP can be used to set it. Fixes
Repairing Winsock issues for Windows XP and earlier WIndows. For Windows XP SP2 the first step is to run netsh winsock reset catalog in a command window. If that doesn't work or if you are running a version of XP older than SP2, then you should run netsh winsock reset in a command window. Repairing the Winsock and TCP stack on XP
Windows XP provides several commands to repair issues with the TCP protocol stack. The commands increase in the degree that they are likely to impact other software on the system, so it is best to progress through them one at a time to limit the other software that has to be reinstalled or repaired afterwards. First try, "netsh winsock reset catalog" in a command window. If that doesn't work, try "netsh winsock reset" and finally try "netsh int ip reset ipreset.log". All three of these commands should be run in a command window. Fixing Problems with the ARP cache One aggravation I run into with XP is it not finishing the repair of a network connection. I was finally able to figure out that this was almost always because of a problem with the ARP cache. That led me to finding this page which details how to deal with various ARP cache problems. [clip from the page referenced above |