Welcome to my ninth edition to my series “Networking Simplified.” In this tutorial, I will go over many clients to be used to talk to your computer locally, and what they are used for specifically, advantages etc.

SSHd – the Secure Shell, or even occasionally it is referred to as the Secure Socket Shell since it does, operate with sockets hehe daemon. SSHd is a unix based remote host controller that allows you to enter your or someone elses computer upon authentication.
SSH runs on the port 22 normally, so if you are wanting to use ssh make sure you have that port open on your firewall!
SSHd is a great tool for network administrators of all sorts, including web administrators, not only just personal LAN admins. SSH is actually an integration of the following tools: rlogin, ssh, and scp, in which those were developed from other early forms of remote host connection daemons.
SSH supports many types of encryption including DES, Blowfish, and IDEA (Default encryption algorithm, no not what the acronym stands for.
A common sshd command in the unix environment would be ssh – l username xxx.xxx.xxx.xxx
You can read more about sshd at http://www2.yo-linux.com/cgi-bin/man.cgi?topic=sshd which is the man page and some more details.

Telnet – Yet another remote login tool, however this one is not near as powerful, but much more widely used. Mainly because the world of computers is centered around the windows environments and Microsoft sadly chose to implement telnetd from unix, and ssh hadn’t been out yet. Telnet is not a favourite of mine, but if you plan on using windows you may have to use this quite often. Basic commands are C:\> telnet >> open xxx.xxx.xxx.xxx 23 < - being the default port.

rlogin >> rlogin is a simple host connection tool that is used in the unix environment. It is not however very powerful, and I do not recommend its use. But for simple connections you can still use it, and its good to give people you don’t always trust with full access, but trust with a shell account access because of its usability. One good thing about rlogin is that it can only connect to unix boxes and it uses a file called .rhosts that saves the password you normally use, and you can login without typing in that passord, a nice quick and easy tool to sue.

For you windows users that need ssh access to a unix box, a program that I recommend named Putty, can be downloaded from this site -> www.chiark.greenend.org.uk/~sgtatham/ putty/download.html

These login utilities provide administrators with the access of using computer’s without monitors. For instance, server boxes, an admin can access computers and use them without actually having to spend the funds to buy a new monitor, keyboard, video card, sound card, etc etc just because of the ability provided by remote login daemons and utilities.

These utilities are really all that is used, except for a few exceptions on other environments or on less popular operating systems. For instance HP UX uses different login utilities because of the compatibility issue. Some other unix’s provide loads and loads of tools that aren’t widely used, but renowned and accepted by administrators and common end users alike.

Hope you enjoyed this tutorial, please send all feedback to er0k@bytekill.net