- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Stress Testing a Gigabit LAN
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
10-30-2003 07:08 AM
10-30-2003 07:08 AM
If I transfer a large file (30GB) and divide the size by the duration of the transfer, I get a transfer rate of about 20 MB/s which is consistent with the I/O rate of the disks. If I check the transfer rate with PV and OVPM, the maximum rate is 5 MB/s. Has anyone else noticed this or am I doing something wrong?
Since I want to test at rates higher than the single disk I/O, I am using ttcp to get data from standard input on the source system and "sink" it on the target system. Ttcp seems to be working fine. Is there a better tool?
In order to generate traffic to pipe into ttcp, I "cat" a 300KB text file in an infinite while loop. It's the text part of a kernel patch so it's probably random enough. When I do this, the "cat" process eats up about 75% of one CPU and the system load average is at or below 1. Checking with PV and OVPM, I see no bottlenecks and very little disk activity, verifying that the file is being read from cache and not the disk. Is there a better way to generate traffic for a test like this?
Thanks,
Coleman Blake
Peace Corps
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2003 07:24 AM
10-30-2003 07:24 AM
Re: Stress Testing a Gigabit LAN
I'm not sure you are doing anything wrong.
There are a number of factors that come to play in this kind of performance data collection.
1) The Interface card speed.
2) Other things going on on the system, particularly disk i/o issues.
3) Speed of the backbone your LAN card is connected to.
4) Configuration and number of routers between you and your destination.
5) Speed of any other hardwaer between you and your destination.
Just take that into consideration.
I've attached some scripts that might be helpful to you.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2003 12:50 PM
10-30-2003 12:50 PM
Solutioni'd take netstat -p tcp and lanadmin -g mibstats
$ netstat -p tcp > /tmp/before
$ lanadmin -g mibstats
$ netperf -v 2 ... -l 60 ...
$ netstat -p tcp > /tmp/after
$ lanadmin -g mibstats
$ beforeafter /tmp/before /tmp/after > /tmp/delta
and then make sure that the byte deltas are consistent with what netperf reports.
You can get beforeafter from:
ftp://ftp.cup.hp.com/dist/networking/tools/
and you can get netperf via:
http://www.netperf.org/
With netperf you can also undertake latency measurements - since networks live not on bandwidth alone :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2003 06:40 AM
10-31-2003 06:40 AM
Re: Stress Testing a Gigabit LAN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2003 07:45 AM
10-31-2003 07:45 AM
Re: Stress Testing a Gigabit LAN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2003 07:56 AM
10-31-2003 07:56 AM
Re: Stress Testing a Gigabit LAN
Thanks for the pointers.
Coleman.