- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Measure network throughput
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
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
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
тАО03-22-2010 05:28 AM
тАО03-22-2010 05:28 AM
Measure network throughput
We have one server that has more than one IP, one of the connections is configured on 10gb/sec B2B with another server, I want to test the throughput between them and verify the speed:
I already done the following test:
[server1]# dd if=/dev/zero of=test bs=1024k count=1000
[server1]# timex scp test server2_IP:/var
The results were normal, about 15MB/s and the 1GB took about 1 minute to finish, I think it should take lower time than what we have here.
I used the server2 IP to ensure using the 10GB network.
Is my way correct? Any idea how to test? Any tools?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2010 08:22 AM
тАО03-22-2010 08:22 AM
Re: Measure network throughput
http://www.netperf.org/netperf/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2010 04:47 PM
тАО03-22-2010 04:47 PM
Re: Measure network throughput
If your goal is to measure maximum throughput through a 10Gbit/s NIC then I would put netperf on both ends and run what I call a 1Mx64 TCP_STREAM test:
netperf -H
BTW, which ones do you have AD385A (PCI-X 2.0) or AD386A (PCIe 1.1 x8) and are they in a correspondingly "beefy" I/O slot? Also, these multiple IP addresses - are the IPs of the different NICs in the system in separate IP subnets, or the same IP subnet? If the same, that will complicate making sure the test actually goes over the interface desired.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2010 10:25 PM
тАО03-22-2010 10:25 PM
Re: Measure network throughput
BTW, how much bandwidth should I get from those 10G cards? Can anybody tell?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2010 12:08 AM
тАО03-23-2010 12:08 AM
Re: Measure network throughput
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2010 04:34 AM
тАО03-23-2010 04:34 AM
Re: Measure network throughput
If you see major difference with scp throughput, it is possible that the scp may be throttled by its own design. If so, consult the advice found in the HP-UX Secure Shell Getting Started Guide, Chapter 6 Enabling HP-UX Secure Shell to Take Advantage of High Speed Networks. Link to the guide is http://docs.hp.com/en/5992-4213/ch06.html
Hope that helps,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2010 08:36 AM
тАО03-23-2010 08:36 AM
Re: Measure network throughput
If you put the NIC into a 133 MHz slot, the best you can expect is about 7 Gbit/s tops.
The default TCP window size in HP-UX 11iv3 (32768 bytes) is not sufficient to achieve maximum single-connection performance. That is why my netperf example used "1M" (M == 1024^2) socket buffers - 1 MB should be more than sufficient - 256K might suffice, but I'm in the habit of using 1M.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2010 11:57 PM
тАО03-23-2010 11:57 PM
Re: Measure network throughput
Yes rick, the cards resides on 266 MHz slots, how can we use more than one TCP connection in such a thing?
Do you suggest to change the window size?