- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Software to test networking performance between W2...
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
08-30-2004 09:37 PM
08-30-2004 09:37 PM
I need a software to test network performance
between Windows 2000 and HPUX .
(Slow backup ...)
From Unix to Unix i use netperf but it's not easy to install netperf under Windows 2000.
Do you know another software to do this ?
Best regards.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2004 09:41 PM
08-30-2004 09:41 PM
Re: Software to test networking performance between W2000-UNIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2004 11:36 PM
08-30-2004 11:36 PM
Re: Software to test networking performance between W2000-UNIX
This site talks about ttcp for windows:
http://www.microsoft.com/technet/prodtechnol/windows2000serv/maintain/optimize/perftune.mspx
The beauty of ttcp over other network performance measurments is that it can use the discard port, port 9, to test. No need to logon or set anything up on remote system
# ./ttcp -stp 9 -n 100 15.17.7.253
ttcp-t: buflen=8192, nbuf=100, align=16384/0, port=9 tcp -> 15.17.7.253
ttcp-t: socket
ttcp-t: connect
ttcp-t: 819200 bytes in 1.62 real seconds = 494.39 KB/sec +++
ttcp-t: 100 I/O calls, msec/call = 16.57, calls/sec = 61.80
ttcp-t: 0.0user 0.0sys 0:01real 1% 0i+0d 0maxrss 0+1pf 379+1csw
Here is a link for nttcp,netperf and pkgen for hpux 11.11:
http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,5969,00.html
Hope that helps,
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 12:28 PM
08-31-2004 12:28 PM
Re: Software to test networking performance between W2000-UNIX
Ttcp was a good suggestion, I'll also not-so-humbly suggest netperf - http://www.netperf.org/ :) Although indeed, if you do not have a compiler for your Windows system that can make things harder.
You might also consider checking netstat -p tcp statistics, lanadmin statistics and maybe even taking a packet trace with the likes of tcpdump to see what your backup traffic looks like.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 04:28 PM - last edited on 06-28-2021 10:02 PM by Ramya_Heera
08-31-2004 04:28 PM - last edited on 06-28-2021 10:02 PM by Ramya_Heera
Re: Software to test networking performance between W2000-UNIX
Hello Jean-Francois,
As Rick said, FTP is not a good choice because it uses filesystem and disk resources as part of it's normal operation. However, if you must use FTP to gauge network performance, there are some ways you can try to bypass the filesystem/disk overhead and get a better sense of network throughput from FTP.
If you are connecting from a Win2K system to a Unix system and you want to test sending data to the Unix system, you could do the following:
ftp> bin
200 Type set to I
ftp> put /dev/null
This test reads the local file and writes it to the /dev/null device on the Unix system, thereby bypassing the filesystem and disk resources on the Unix system.
However, this test *will* include the time it takes to read the file from the local Win2K disk, so the thinking here is to run the command twice with the hopes that the Win2K box will send the file the 2nd time using the copy still in memory on the Win2K PC. Of course, this assumes (which is one of Rick's favorite words) that you have sufficient memory on the PC to cache the file between "put" attempts.
Assuming you have enough cache on the local Win2K PC, when you issue the same command again it will *hopefully* use the version in memory to send across the network, and in that test you won't be incurring any filesystem or disk overhead on either side, which will only leave the network throughput.
If you want to test pulling data from the Unix box to the PC you can repeat the same tests except use the command:
ftp> get NUL
The first time you issue this command it will read the remote file, thus incurring remote filesystem/disk resources, and write it to the NUL pseudo device on the Win2K box - which is the Windows equivalent of /dev/null. Assuming (there's that word again) you have enough buffer cache on the Unix system, if you issue the command again it will *hopefully* take the memory resident version of the file from the Unix box and write it to the NUL device on the Win2K box, thereby only using network resources.
I realize there are many caveats to this testing methodology, and Rick will probably hunt me down and throttle me for even suggesting this test, but I figured I'd throw it out there in the event that you only have FTP to work with.
Also, I thought some forum readers might be interested in the fact that NUL is the Windows equivalent to /dev/null. Perhaps most people already know this, but I just learned about it 5 minutes ago, so I figured I'd pass it along.
Again, the recommendation is to use NetPerf first, TTCP second, and in a pinch - FTP using the remote /dev/null and local NUL devices to bypass disk/filesystem.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 10:32 PM
08-31-2004 10:32 PM
Re: Software to test networking performance between W2000-UNIX
I found ntttcp under W2000 Driver Developpment Kit cdrom.
I try the following:
ntttcps -m 1,0,UNIX_ADRESS -a -n 5000 -p 9
I obtain the following for a 100Mb interface :
Throughput(Mbit/s)
94.733
I think it's good isnt-it ?
Do you know why i must use port 9 ?
the default port 5001 doesn't operate ...
Thks a lot...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2004 12:13 AM
09-01-2004 12:13 AM
Solutionttcp allows you to use the discard port (9) to test with as an alternative to setting up a ttcp listener on the remote system ( UNIX in your case ). Its helpful when you dont have access to the remote system to install ttcp etc. If you want to test with a listener on the HPUX you need to install ttcp/nttcp on the HPUX and start it up. I had some issues installing nttcp from the site I gave you earlier, I believe you need to install more of the developers toolkit to get it working. Anyway, here is a link to the pub domain for nttcp for hpux.
http://gatekeep.cs.utah.edu/hppd/cgi-bin/search
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2004 03:22 AM
09-01-2004 03:22 AM
Re: Software to test networking performance between W2000-UNIX
The tape drive is likely the problem. It is too fast for the network and if you do not keep the tape drive busy all the time, it will run out of data to write, stop, backup, resync and take a running start to record more data. This requires seconds of time, thus lowering the throughput. Degradation of the tape speed ranges from 5:1 to 100:1. So a local backup might take 10 minutes but over the network, the tape drive is resyncing so many times that it's operating at only 1/100th normal speed (and wearing out the tape and drive mech at the same time).
Since your network is fine, you'll need to either:
1. Change to a slower tape drive that has an average write speed slightly less than 5Mbyte/sec so it will be kept busy or,
2. Change the LAN to a Gigabit connection. This means 1000Mbit end-to-end, no slow links in the middle).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2004 03:46 AM
09-01-2004 03:46 AM