I guess you already have an huge plan, but just wanted you to check for CRC errors on T1 link.
Ping will still give you good response time even if CRC errors are huge.
Have you used ping with a bigger packet. I suggest you to use FTP for file transfer speed test. FTP is build for file transfers, and you can quickly setup an FTP server using IIS.
But, yes don't forget to look for CRC errors on End points.
Main Topics
Browse All Topics





by: infimatePosted on 2007-02-09 at 12:33:30ID: 18504322
The first step in troubleshooting slow file copies is to copy the file from the command line.
CurrentCon trolSet\Se rvices\Lan manServer\ Parameters
This will narrow the problem considerably.
This simple test will limit the number of components and protocols used and will also reduce network traffic so Network captures are easier to read.
File copies via the command line use the SMB protocol and the redirector component while File copies through the GUI use the redirector and the shell components.
Because the shell component is used during this action in the GUI, MSRPC traffic is generated.
Also Shell Extensions installed may have an affect with a test from the GUI.
If the file copy is slow from the command line we need to look at the following:
1. Network card driver and settings
2. Adapter/Protocol Binding Order and Providers/Provider Order
3. IP MTU size
4. TCP Layer Behavior
5. TCP retransmits
6. TCP acknowledgements
7. TCP window size
8. SMB Layer Behavior
9. SMB Read/Write size
1. Network Card Drivers and Network Card Settings
Update the NIC to the latest driver from the manufacturer. This seems simple, but this has fixed a large number of slow file copy cases. (Broadcom NICs are a frequent issue.)
Disable TCP and IP checksum offloading. This will cause this processing to be handled by our TCPIP stack instead of the Network card.
Set the Network Card and Switch from Autodetect to a hard coded link speed such as 100mb/half duplex.
2. Adapter/Protocol Binding Order and Provider Order
Verify that the NIC, protocol and provider used most often appears at the top of the list
3.IP MTU size may cause slow file copies:
Ethernet has an MTU size of 1500. RAS and VPN connections have smaller MTUs. Any hop in the path could cause the client or server to send smaller packets based on the lowest MTU in the path.
Test with the ping command with the -f and -l switches to determine the lowest MTU that works consistently from client to server. Start testing with:
ping Server IP –f –l 1472
This is based on Ethernet’s MTU of 1500 with 20 bytes subtracted for the IP header and 8 bytes for the ICMP header.
Move down from 1472 until you find the highest amount of data that will work consistently.
4. SMB Read and Write Size for a windows 2003 or XP computers
RegValue: SizReqBuf
RegKey: HKEY_LOCAL_MACHINE\SYSTEM\
Value Type: REG_DWORD
Valid Range: 512 to 65536
Try this and let me know us know if any further queries.