- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP packet delay
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 07:37 AM
02-19-2004 07:37 AM
TCP packet delay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 07:44 AM
02-19-2004 07:44 AM
Re: TCP packet delay
Take a look at the NIC speed/duplex settings.
Say it's lan1 - run
lanadmin -x 1
If you're running half-duplex you'll have inherent collisions and the resultant retransmissions. If the card & switch port are capable of 100 full duplex, then by all means hard set the card & switch port to those values & don't even let them negotiate.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 05:31 PM
02-19-2004 05:31 PM
Re: TCP packet delay
As the previous responce indicates , I would first check the full duplex/half duples settings ,/etc/nsswitch.conf file hosts and ipnodes entries , and give your mac address to the network person and ask them to check if all the clusters are runnig via the same CAT .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 06:22 PM
02-19-2004 06:22 PM
Re: TCP packet delay
#lanadmin
>lan
>dis
check for any collisions.
Differ with speed/duplex options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 09:22 PM
02-19-2004 09:22 PM
Re: TCP packet delay
Sounds like FDDI, not ethernet, unless you have gone jumbo.
If I remember correctly, the FDDI tools to use are fddimon7, ping and pong (linkloop for fddi).
Then you need to try more of a clinical test, perhaps run netstat -s before and after a transfer to see where the error may lie.
Another thing to check is patches. You didn't give your o/s version or patch level, but its always a good thing to check with network issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2004 06:59 AM
02-20-2004 06:59 AM
Re: TCP packet delay
700ms is a bit longer than the default minimum TCP retransmission timout of 500 ms (tcp_rexmit_interval_min) but if the RTT were long enough I could see 700 ms.
I'm not sure why being broken-up into 4K packets is expected unless you are using FDDI as previously suggested. I suppose if the application is only sending 4096 bytes in each send() call (which is a shame if it has more than that) then you would see the PSH flag set every 4096 bytes.
55K is larger than the default socket buffer size in HP-UX, and is probably larger than the default window size for most client TCP stacks. If there were issues getting a window-update that might show-up - although you might see window probes in the packet trace.
Please post some of the trace (one line format hopefully) from around the time you see a 700 ms delay.
Also, the suggestion to check netstat -s is good - if you are indeed using TCP as I suspect, you can shorten the output by simply doing netstat -p tcp. You want to look for data packets retransmitted and retransmission timeouts. Those suggest lost packets, at which point you look to see why, and at that point you may want to check lanadmin statistics. Also as previously mentioned.
ftp://ftp.cup.hp.com/dist/networking/briefs/annotated_netstat.txt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2004 01:44 AM
02-23-2004 01:44 AM
Re: TCP packet delay
If at all possible, hardcode both the client and server to some duplex and speed, then check the switch ports and ensure they are set the same way.