- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Bulk File Transmissions - options
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
12-09-2005 09:53 AM
12-09-2005 09:53 AM
Bulk File Transmissions - options
Thanks
Brian.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2005 05:55 PM
12-09-2005 05:55 PM
Re: Bulk File Transmissions - options
Dear brian,
What is the data size that u need to copy ?
SFTP should be good enough.
WIth Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2005 06:02 PM
12-09-2005 06:02 PM
Re: Bulk File Transmissions - options
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2005 06:07 PM
12-09-2005 06:07 PM
Re: Bulk File Transmissions - options
What's the distance b/w these two server, What's the bandwidth of data transmission. If you have fair enough bandwidth go with arun, scp good one., else sftp.
Regards,
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 04:41 AM
12-12-2005 04:41 AM
Re: Bulk File Transmissions - options
Thanks
Brian.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 08:13 AM
12-12-2005 08:13 AM
Re: Bulk File Transmissions - options
That said, both sftp and scp have significantly poorer performance when compared to plain ftp on a local LAN transfer, due to the cpu overhead of encryption and possibly compression. Across a slow WAN, sftp/scp can actually perform better or similarly to ftp because network latency negates some of the cpu overhead, and the compression reduces the total traffic. So, definitely make sure you're using compression with sftp/scp on a WAN.
In addition, you may want to investigate the tcp transmit and receive windows (set with ndd) if throughput is important. I found upping the values from a default 32k up to 80k yielded a 2.5x improvement in throughput on our particular pipe, but you may need to experiment with different values because everyone's environment is different. BTW, don't just set these parameters to huge numbers, because there is additional memory overhead associated with every tcp connection when you up these parameters.
Good luck!
--Greg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 08:20 AM
12-12-2005 08:20 AM
Re: Bulk File Transmissions - options
e.g.,
ndd -get /dev/tcp tcp_recv_hiwater_def
ndd -set /dev/tcp tcp_recv_hiwater_def 65536