- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- network speed
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-29-2008 10:48 PM
08-29-2008 10:48 PM
network speed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 11:22 PM
08-29-2008 11:22 PM
Re: network speed
You can check using lanadmin command.Pls check the man pages for different switches
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 11:35 PM
08-29-2008 11:35 PM
Re: network speed
You can use the ntwork monitoring tool like
ndd,nettune,netmatrics
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 11:37 PM
08-29-2008 11:37 PM
Re: network speed
Any tool that encrypts the file during the transfer is sensitive to CPU workload in addition to network stability. In this situation, a simple transfer without encryption would be better. Without encryption the CPU workload of the transfer itself is very small.
The speed of unencrypted file transfer is usually limited by several things:
- speed of disk storage at the sending end
- network speed
- speed of disk storage at the receiving end
- if either machine has a very heavy I/O workload, that may affect the results.
Second, do whatever is needed to make that tool do the work without asking any user input.
- if you use rcp, set up the .rhosts file at the remote end
- if you use ftp, write the login/password info into the .netrc file at the local end and write a script that pipes the necessary GET/PUT commands to the ftp command.
Third, run your command/script and examine the output. If the tool you've chosen outputs the transfer time, you'll only need to capture that output. If it doesn't output anything useful, run it using the "time" prefix command, i.e.
time
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 11:42 PM
08-29-2008 11:42 PM
Re: network speed
There are data coolection performace tool from HP ie. Measureware,perfview.
can u check is there measureware on ur system. u can check it in
#cat /var/adm/sw/swinstall.log |grep "measureware"
OR
# swlist |grep "measureware"
If its install on your system then i will explain how to draw the graphs from network matrics
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 05:39 AM
08-30-2008 05:39 AM
Re: network speed
I would advice you to go through all details that can affect file transfer performance.
e.g.
Set your lan card to max possible (compatible with network)
example gigabit if using gigabit switches or routers or 100 mbs full duplex..
check lan card speed
#lanadmin -s -x lan
Auto may work also.
Utility you are going to use for file transfer
e.g.
ftp, sftp or scp or rcp or some other commercial tool like NDM
File size will also matter here like sometime file size differs in case.
Time when system is highly utilized or least used by other network related apps and users.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 10:38 PM
08-30-2008 10:38 PM
Re: network speed
Then you have netperf
http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/netperf-1.7.1/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2008 02:42 AM
09-10-2008 02:42 AM
Re: network speed
scp local_file remote_file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2008 04:23 AM
09-10-2008 04:23 AM
Re: network speed
I mean if I use scp to copy file to remote server , I would like to know how long it take to transfer the file , like below , it use 1 minute and 12 second to transfer the file , can advise how can I get the time ?
$scp local_file remote_file
testfile 100% 1380 17.3MB/s 01:12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2008 04:43 AM
09-10-2008 04:43 AM
Re: network speed
$time scp local_file remote_file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2008 05:50 AM
09-10-2008 05:50 AM
Re: network speed
$time scp local_file remote_file >test_speed 2>&1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 04:23 AM
09-11-2008 04:23 AM