• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Any difference betn FTP & SCP

 
Ranch Hand
Posts: 168
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

Juz wanna know whether there is any difference between FTP & SCP tasks.
Basically both are doing the same file transfer operation from remote machine.I couldn't find any difference at all.If any of you has got an answer for this kindly reply back.

Thanx in advance..

Regards,
Priya.
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I haven't checked the code, but I'd imagine one does file transfer using FTP and the other does it with SSH.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
SCP is done over a secure (i.e., encrypted) connection; hence the "S" in SCP. FTP is unencryted (although you can SFTP, which is FTP over SSH, and thus encrypted).
Also, I don't think anonymous file transfers are supported in SCP, because you need to have an account on the target machine.
Going out on a limb here, I will speculate that SCP only works in Unix-like operating systems, not on Windows, while at least an FTP client is built into all common operating systems.
 
For my next trick, I'll need the help of a tiny ad ...
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic