- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rcp is faster than ftp?
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
11-22-2004 12:54 AM
11-22-2004 12:54 AM
Is rcp is faster than ftp? My datafile is of 18GB and WAN has a BW of 2mbps.So how much appro. time will be required to transfer file using rcp.
Mehul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 12:56 AM
11-22-2004 12:56 AM
Re: rcp is faster than ftp?
It depends on the speed of your network, switches, network settings and the other load on the various componeents between point A and point B.
Both protocols will transmit authentication in clear text.
Because there are so many variable factors the real way to answer your question is to transfer the file both ways.
I'd recommend scp myself.
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 01:12 AM
11-22-2004 01:12 AM
Re: rcp is faster than ftp?
This protocol is design for File transfer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 03:20 PM
11-22-2004 03:20 PM
Re: rcp is faster than ftp?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 05:12 PM
11-22-2004 05:12 PM
Re: rcp is faster than ftp?
In my experience FTP is faster than RCP . I use FTP to transfer large data to my remote server.
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 09:02 PM
11-22-2004 09:02 PM
Re: rcp is faster than ftp?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 09:28 PM
11-22-2004 09:28 PM
Re: rcp is faster than ftp?
I agree in the fact that clear password will go through your network with both FTP and RCP so that SFTP or SCP are "better" (security speaking). But note that those two last protocols will spend many time and CPU encrypting and decrypting file on both sending and receiving machines and that for a 18GB file it must be something you need to think about.
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2004 09:33 PM
11-22-2004 09:33 PM
Re: rcp is faster than ftp?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 05:34 AM
11-23-2004 05:34 AM
SolutionFor HP-UX, both rcp and FTP default to a 56KB socket buffer and hence 56 KB window. Sufficiently contemporary patches should allow you to set socket buffer sizes larger than that. The socket buffer size at time of connection establishment will determine the TCP window.
Basically, run a ping across your WAN, or a netperf TCP_RR test. Take the latency, in units of seconds, and multiply that by the bandwidth of your WAN link. That is the "bandwidth delay product." You want a socket buffer that is at least that large. You might consider padding it by, oh, 50%.
After that, the only remaining question is the loss rate of your WAN link...