Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Oct 2004 07:38:29 -0500
From:      Dave Vollenweider <metaridley@mchsi.com>
To:        freebsd-newbies@freebsd.org
Subject:   Re: network question
Message-ID:  <20041006073829.1b5d7b98.metaridley@mchsi.com>
In-Reply-To: <Pine.NEB.4.61.0410061130200.3573@chylonia.3miasto.net>
References:  <BAY15-F42beKc4lOv3L00037e13@hotmail.com> <200410042313.29422.buebo@buebo.de> <6e01203b04100508235492090f@mail.gmail.com> <Pine.NEB.4.61.0410061130200.3573@chylonia.3miasto.net>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 6 Oct 2004 11:30:45 +0200 (CEST)
Wojciech Puchar <wojtek@tensor.3miasto.net> wrote:

> > 
> > But really, really think twice before running telnet.  Most likely you
> 
> why?
> 
> anyway i prefer rsh/rlogin/rexec
> 

All the programs you've mentioned have a major flaw: they send everything out unencrypted, which means that if someone's sniffing your network connection, which is a lot like someone tapping your phone, they can know everything you're doing.  They can even get your passwords this way, including the all-important root password.  This is why such programs are considered to be dangerous to run.

ssh, on the other hand, encrypts all communication, so anyone sniffing your network would need the public and private keys to decrypt the connection and see what's going on.  ssh can do everything that telnet, rsh, rlogin, and rexec can do, plus a whole lot more.  Ever wanted to log in remotely to your computer, run an X program off it and have it display on the computer you're currently at?  You can do that with ssh without touching X itself at all.  Ever wanted to access one of your computers behind your firewall without compromising the firewall's security?  With ssh's TCP port forwarding, you can do that too, again with no special setup of anything else.  Oh, and if you're on a slow connection, you can compress the ssh session with the -C switch.

Hopefully these reasons are compelling enough for you.

- Dave V.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20041006073829.1b5d7b98.metaridley>