Unfortuanately, I think these utilities only encrypt the logon and not
the traffic, right?
If it does, is there a better open-source method of doing this?
thanks for any and all comments.
IIRC (If I Remember Correctly) sftp and scp are part of the SSH
package. SSH (Secure Shell) provides encrypted channels between
machines, passwords are NOT exchanged in cleartext, and subsequent
traffic is also encrypted. SSH (OpenSSH) is an open-source project.
--
Gregory G. "Wolfe" Woodbury `-_-' Owner/Admin: wolves.durham.nc.us
ggw at wolves.durham.nc.us U
"The Line Eater is a boojum snark." Hug your wolf.
Indeed. Everything from start to end is encrypted. You don't even have
to use passwords (in a secure manner) if you set up private/public keys
the right way.
Sybren
--
| Somebody ought to cross ball point pens with coat hangers so that |
| the pens will multiply instead of disappear. |
\-------------------------------------------------------------------/
If you have to use Outlook, fix it: http://jump.to/oe-quotefix
-Maximus
"Maximus" <darth...@yahoo.com> wrote in message
news:b72503$gcm$1...@newsmaster.cc.columbia.edu...
Use sftp and scp. Both of these use only ssh protocol, but with ftp
user interface, or (in scp case) you can copy this way:
scp myfile us...@other.computer.domain:.
This would copy the file myfile to "other.computer.domain" computer to
the home of user "user".
--
When man calls an animal "vicious", he usually means that it will attempt
to defend itself when he tries to kill it.
You can even leave out the trailing dot :)