- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: file transfer rate (ftp)
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
12-11-2002 05:53 AM
12-11-2002 05:53 AM
file transfer rate (ftp)
What commands can I use to check the network performance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 05:56 AM
12-11-2002 05:56 AM
Re: file transfer rate (ftp)
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 05:56 AM
12-11-2002 05:56 AM
Re: file transfer rate (ftp)
lanadmin -x lan0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 05:58 AM
12-11-2002 05:58 AM
Re: file transfer rate (ftp)
Just do a traceroute from serverA to serverB and
vice versa.
/usr/contrib/bin/traceroute
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 06:22 AM
12-11-2002 06:22 AM
Re: file transfer rate (ftp)
You need to speficy the PPA number in the lanadmin -x command:
lanadmin -x 0 (for lan0)
You can also enter landamin, then select lan, then display to get some useful interface stats.
hth,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 06:42 AM
12-11-2002 06:42 AM
Re: file transfer rate (ftp)
ftp -B 64
Would set the buffer size to 64K.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2002 11:31 AM
12-12-2002 11:31 AM
Re: file transfer rate (ftp)
Increasing FTP's socket buffer would be indicated if the expression W/RTT where W is the TCP window size (aka the socket buffer being set with -B) and RTT is the round-trip-time between the two systems (ping being a decent first approximation, but best run while a transfer is in progress).
If there are indeed duplex mismatches, lanadmin will show FCS errors (when the NIC is in full duplex and the switch is not) or late collisions (when the NIC is in half-duplex and the switch is not.
There should also be TCP retransmissions reported on the sending side (netstat -p tcp) and out-of-order segments reported on the recieving side (again netstat -p tcp)
If lanadmin is "clean" but netstat not, then you need to start looking for other sources of packet loss between the two systems. Take traceroutes on each system, directed at the other, see if the paths are the same, and check the stats for each router in the path.
Other things that affect FTP would include filesystem perf - check that one system isn't disc-bound or something. To eliminate disc/fs overheads, you might try testing the speed between the two systems with netperf and the TCP_STREAM or TCP_MAERTS (TCP_STREAM from the netserver side to the netperf) tests. http://www.netperf.org/ or I suspect your friendly neighborhood HP support rep can get you a copy :)