Remote Tech Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Sunday, 19 September 2010

General Network Connectivity Problems

Posted on 10:46 by Unknown

MS-Windows Troubleshooting


General Network Connectivity Problems (e.g. cannot connect to remote computer)


Symptom:

Unable to connect to remote computer. General network connectivity problems.

Cause:

There are a number of things which can prevent two workstations from communicating with each other over the network. These include (and this is unlikely to be an exhaustive list):
  • Poor or incorrect network protocol configuration
  • Network hardware problems
  • Software problems
The same can also cause problems even when superficially the network appears to be working.
Part of the problem in solving network connectivity problems is identifying what the underlying problem is or what the problems are.

Remedy:

The remedy to the problem depends on the root cause. The following should be regarded as a checklist of things to test:
  1. Check that the workstation be ‘pinged’, i.e.:
ping workstation
If this produces the message ‘Bad IP address workstation.’ then this indicates a name resolution failure, in other words NT has been unable to look up the IP address for the workstation. If the (target) workstation is on the same local network then ask the administrator to check that DSN is working correctly. If it is on a remote network then the IP address will probably need to be explicitly specified in the local TNSNAMES file. Alternately try pinging by specifying explicitly the IP address of the workstation, i.e.:
ping workstation-ip-address
e.g.
ping 192.10.44.1 (or whatever the ip address of the workstation is.)
If ping produces a message of the form:
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Reply from ip-address: bytes=32 time<10ms TTL=128
Then this indicates that there is network connectivity between the two workstations. Packets are being sent to the workstation and replies received. The time may vary. However, if it produces the message:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Then this indicates that there is no network connectivity between the two workstations. Things to check:
  • That the remote workstation is switched on.
  • That both workstations are (physically) plugged into the network.
  • That the hubs are switched on.
  • That the ip address that is being pinged (which ping echoes) is correct for the workstation. If it is not then this indicates either a DNS failure or an incorrect TNSNAMES entry.
  • That the remote workstation does not have a firewall that is preventing ping acknowledgements from being returned.
  • If both workstations are on a local network that their TCP subnet is the same. This can be checked using:
ipconfig
Do this on both workstations. For each network adapter this will show the following information:
IP Address. . . . . . . . . : ip-addresss
Subnet Mask . . . . . . . . : subnet-mask
Default Gateway . . . . . . : gateway-ip
 (may be blank)
For a local network the subnets should be the same. The ip-address logically and-ed with the subnet-mask should give the same result. If it does not then the workstations are on different subnets. Check the ip-addresses.
  • If the workstations are on different subnets then the packet will have been sent not directly to the workstation but via a gateway (and from there on to the workstation). To show the default gateway use:
ipconfig
To list all other possible gateways use the command:
route print
This lists other possible gateways that the workstation may use according to the ip address of the target. If the destination IP address does not match one of the network destinations listed then the default gateway will be used.
If there is no default gateway the add the ip address of the gateway as the default. Otherwise check that the gateway is listed in the routing table. The ‘route’ command allows new entries to be added.
Repeat the process (at both ends) but by pinging the gateway. This will establish whether there is basic communications between the workstation and its local gateway. If both sides can communicate with their respective gateways then the problem must lie with the link between the gateways. Consult your network administrator.
  1. If the computers are on different networks try:
tracert workstation
This will show the route to the computer any may give a better indication of where on the route the problem lies.
  1. Ping demonstrates that there is network connectivity between the two workstations. To check network reliability trying pinging with larger packets and for longer. Try each of the following:
ping workstation -l 1024 -t
ping workstation -l 4096 -t
ping workstation -l 8192 -t
The ‘-l’ parameter specifies the size of the message to send (the default is 32bytes, real applications will send much larger blocks of data). The ‘-t’ parameter specifies that it should continue pinging until you ‘control-C’ it. I would recommend trying each in turn and only breaking it after a complete screen full of responses. As the packet size increases the time will also increase. However even with 8192 byte packets there should be no ‘Request timed out’ messages. If any are seen then this indicates a hardware problem, either with the network hardware or with one of the adapters in either of the workstations.
Typical response times I would expect for a set of sample packet sizes are as follows:
Packet Size100mbps LAN10mbps LAN100mbps to 10mbps LAN via single gateway
-l 4096time<10ms<10ms10ms
-l 8192time<10ms10ms10ms
-l 16000time<10ms30ms30ms
-l 30000time<10ms50ms50ms
-l 60000time=10ms100ms110ms
Network topology will vary between sites (for instance the number of routers and switches that the network traffic request must navigate), so please regard these as ballpark/guideline figures. Any small variation between these figures and the figures are your site are probably not significant. The first ping message may show a higher time or even timeout, this is not significant provided it is only the first message.
To check whether it is a network adapter on either of the workstations look in the NT (system) event log. This may indicate if the adapter is giving problems. It could also be the network cable, hub or particular hub port. If the problem affects one particular workstation then this is indicative of either a network card failure, bad network cable or network hub port failure. For example if there are problems between workstations ‘A’ and ‘B’, also between ‘A’ and ‘C’ but not between ‘B’ and ‘C’ then this clearly indicates that the problem is related to workstation ‘A’. Try a different port on the network hub, then a different network cable and then try a different network card.
  1. If ping attempts fail the network appears to be totally unresponsive at one workstation (i.e. it cannot see anything on the network, even other workstations on the local network for which there are no network connectivity issues) then it is worth reinstalling the latest service pack. Some old dlls on the system can produce network related problems. It’s worth a try.
  2. Enable ‘Black Hole Router detection’. Part of the underlying network protocol involves the network cards in both computers negotiating agreeing on the largest packet size that they can mutually manage. (For Ethernet this is typically 1550 bytes.) When communicating over a WAN it is possible that some of the routers or bridges along the route will not be able to handle packets as large as the network cards can manage. These should return a message indicating when a packet is too large and at the same time specify the maximum packet size they in turn can manage. Normal TCP-IP communication is self tuning in this way. However some (older?) routers or bridges fail to respond correctly and quietly drop the packet if it is too large. These are known as ‘black hole routers’. In NT black hole router detection is disabled by default. To turn it on requires adding (or modifying the following registry key):
HKEY_LOCAL_MACHINE\ SYSTEM\ CurrentControlSet\ Services\ Tcpip\ Parameters\ EnabledPMTUBHDetect = 1
If adding this registry entry then add it as a REG_DWORD.
Other than event log, registry and service pack references these notes are also applicable to Windows .
Email ThisBlogThis!Share to XShare to Facebook
Posted in Network Trouble shooting | No comments
Newer Post Older Post Home
View mobile version

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • Windows Server 2008 Core Command Guide
    Windows Server 2008 Core Command Guide What Command Set DNS IP Netsh int ipv4 set dns “local area connection” stat...
  • USB Disk Security 5.4.0.12
    USB Disk Security -  Download 100% protection against any threats via USB storage USB Disk Security is a top-rated antivirus utility that pr...
  • GDS COMMITTEE IMPLEMENTATION ORDERS RELEASED BY DIRECTORATE TODAY
    GDS COMMITTEE IMPLEMENTATION ORDERS RELEASED BY DIRECTORATE TODAY POSTAL DIRECTORATE ISSUED ORDERS TODAY FOR IMPLEMENTING THE GDS COMMITTEE ...
  • (no title)
    POSTAL RATES INDEX Letters / Book Post Registered Articl...
  • Most Useful Websites
           The list primarily highlights the lesser-known or undiscovered websites and misses out all-time favorites like Google Docs, Wikipedia...
  • Commands in Windows Vista
    Windows Vista Command Line List and Reference The list of commands available in the command line shell for Windows Vista is similar to that ...
  • Save queries in Windows Server 2003's Active Directory Users and Computers tool
    Windows Server 2003 administrators can’t live without the Active Directory Users and Computers tool. Here’s a quick look at the saved querie...
  • PDF into Word ( Document) converter
    PDF into Word ( Document) Converter         PDF2Word(pdf to word) software enable export the text, images and other contents from pdf docume...
  • THIRUKKURAL PDF DOWNLOAD (தமிழ் )
    CLICK HERE TO DOWNLOAD THIRUKKURAL (தமிழ்)    or CLICK HERE TO DOWNLOAD THIRUKKURAL (TAMIL & ENGLISH)    or CLICK HERE TO DOWNLOAD THIR...
  • How to shutdown computer automatically at a specific time
    Trick 1: Start > Run Type ' shutdown -s -t 1800 ' without quotes Click OK A dialog will appear showing the countdown t...

Categories

  • Computer Guidelines
  • Customer Care
  • DB Tools
  • Drivers
  • Entertainments
  • FAQ
  • For System Administrators
  • FTP
  • General Informations
  • General Knowledge
  • Guidelines
  • Hardwares
  • Health Tips
  • Internet Tips
  • Latest Software Updates
  • Network Trouble shooting
  • Printer Trouble shooting
  • Printing Tips
  • Recovery Tips
  • Registry Tips
  • Registry Tools
  • Security Guidelines
  • Security Tips
  • Software Tips
  • Softwares
  • SQL
  • Technology
  • Tips and Tricks
  • Tools
  • Trouble shooting
  • Useful Softwares
  • Utilities
  • Virus Solutions
  • Websites
  • windows 7
  • Windows Server
  • Windows Tips
  • Windows Vista
  • Windows XP FAQ

Blog Archive

  • ►  2011 (138)
    • ►  May (32)
    • ►  April (24)
    • ►  March (29)
    • ►  February (15)
    • ►  January (38)
  • ▼  2010 (241)
    • ►  December (55)
    • ►  November (40)
    • ►  October (21)
    • ▼  September (35)
      • HP LJ 1007 Laser Printer - Driver
      • How to print to a network printer from an MS-DOS-b...
      • DISCUSSIONS ON VARIOUS ISSUES TAKEN UP BY THE STAF...
      • Tips to Prevent Computer Fraud
      • Disabling or enabling Windows XP System Restore
      • History, Facts and Information about Roman Numerals
      • Recruitment Processing Software
      • Hirens BootCD 11.0 + Multilingual Keyboard Patch
      • Actice Directory FAQ with Answers
      • Windows Server 2008 Core Command Guide
      • NIC Guide for DOP People
      • General Network Connectivity Problems
      • How to troubleshoot network connectivity problems
      • Windows Registry Editor, Task Manager Problem
      • Windows Adminstrator Password Recovery
      • Computer Vision 101: Simple Tips Your Eyes Will Ap...
      • Health Tips for Computer Users
      • ADMINISTRATOR ACCOUNTS AND VIRUSES
      • Health Tips - Heart Attack
      • Suspect SQL Server 2000 Database
      • REPORT OF THE COMMITTEE OF EXPERTS ON DISCIPLINARY...
      • How to create a "Restore Point" and how to get our...
      • Troubleshoot printer problems
      • Scientific meaning of Gaytri Manthra
      • How to Improve Printing Quality
      • How to use Remote Desktop Utility
      • How to Share Files and Printer in the Local Area N...
      • Administrator and User Passwords in Windows XP
      • Enable Vista's Built-in Administrator Account
      • How to Set Password to Protect Files or Folders in...
      • Save queries in Windows Server 2003's Active Direc...
      • How to Create Active Directory ( In Windows Server...
      • How to Join a Domain in Windows 7
      • Delete IE7 History From the Command Line
      • Changing the default SQL Server backup folder
    • ►  August (39)
    • ►  July (23)
    • ►  June (5)
    • ►  May (2)
    • ►  April (12)
    • ►  March (4)
    • ►  February (2)
    • ►  January (3)
  • ►  2009 (26)
    • ►  December (5)
    • ►  November (3)
    • ►  October (4)
    • ►  September (5)
    • ►  August (3)
    • ►  July (5)
    • ►  June (1)
Powered by Blogger.

About Me

Unknown
View my complete profile