- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Can ssh version make impact on the scp traffic
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
07-13-2007 08:24 AM
07-13-2007 08:24 AM
Can ssh version make impact on the scp traffic
Red Hat Linux Advanced Server release 2.1AS.
Can ssh version make impact on the scp traffic?(LAN traffic)
Another scenario if the same servers pass the data through WAN link(35mbps); what UNIX commands can trasfer data in a better speed.Currently my scp command take more than 24 Hours to copy 50GB data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2007 08:49 AM
07-13-2007 08:49 AM
Re: Can ssh version make impact on the scp traffic
Haven't heard of different ssh versions affecting speed. Things to check:
What speed are the NICs set to? I have seen some Linux systems set the NICs to 10 Mb/sec for some reason. Check with mii-tool.
scp encrypts/decrypts the data which is CPU intensive. Are the CPUs busy doing other work? Check with top.
If you allow ftp, try a ftp transfer to see if that's much faster. ftp doesn't encrypt the data.
Not that familiar with this area but I've had problems when the network switches are set up to match your servers. Talk to whoever manages your network.
Vic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2007 08:56 AM
07-13-2007 08:56 AM
Re: Can ssh version make impact on the scp traffic
LAN scenario, my question would be if a lower ssh version can a difference in the data trasnfer speed?I have same ssh version on both source and dest hosts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2007 09:13 AM
07-13-2007 09:13 AM
Re: Can ssh version make impact on the scp traffic
I'm going to assume that neither the source nor dest are CPU bound, so the encryption isn't causing the issue (using a lighter encryption method (BlowFish for example) would be a good test for that). .. (Besides, Victor already asked).
You're not imposing any speed limits in any QoS or Firewalls between the two boxes? And are not using the '-l' (limit speed) flag anywhere ?
I guess there is also the question of local link congestion (at either end). The WAN isn't already congested with other traffic?
Have you tried changing the 'Compression' setting?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2007 09:38 AM
07-13-2007 09:38 AM
Re: Can ssh version make impact on the scp traffic
WAN traffic is a static part and want to be as it is.
How can i change the compression setting?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2007 05:57 PM
07-14-2007 05:57 PM
Re: Can ssh version make impact on the scp traffic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2007 06:15 PM
07-14-2007 06:15 PM
Re: Can ssh version make impact on the scp traffic
Compression yes
in your '/etc/ssh/sshd_options' to turn it on globally.
For a particular instance, you can use:
-C -o 'CompressionLevel 9'
The 'CompressionLevel' is the value to use against zlib, i.e. 'gzip -9'. To change the cipher, use:
-c blowfish
or some other cipher. See 'man ssh_config' for all the availables.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 03:49 AM
07-15-2007 03:49 AM
Re: Can ssh version make impact on the scp traffic
test yourself if any one feel this is appropriate to you and post the result.
# scp -p /var/log/messages xx:/yy/.
messages 100% |**************************************************************************| 676 MB 18:09
# scp -C -c blowfish -oCompressionLevel=9 -p /var/log/messages xx:/yy/.
messages 100% |**************************************************************************| 676 MB 07:36
I will test it further on different time.Hope it worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 03:53 AM
07-15-2007 03:53 AM
Re: Can ssh version make impact on the scp traffic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2007 01:08 AM
07-18-2007 01:08 AM
Re: Can ssh version make impact on the scp traffic
http://www.psc.edu/networking/projects/hpn-ssh/
It will explain some of the issues around
throughput with scp vs something like ftp.
By default ssh is self limiting and will always
be slower than ftp. It's really not an issue
of encryption but buffering.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 02:25 PM
07-19-2007 02:25 PM