Secure shell (SSH) can be used to provide similar
functionality as telnet, but it is much more secure. Telnet is consider
insecure mainly because it sendsusername and password information in clear
text. Therefore, telnet should be replaced with SSH.
SSH employs encryption through certificates and
authenticates the server to client.
SSH operates on TCP port 22.
Installing SSH
·
Checking the require RPMs for SSH
#rpm –qa openssh-server
Openssh-server-4.3p2-36.e15
#rpm –qa xinetd
Xinetd -2.3.14-10.e15
#rpm –qa portmap
Portmap – 4.0-65.2.2.1
·
Restarting above RPMs
#service portmap restart
#service xinetd restart
#service sshd restart
·
Configuration
checking
#chkconfig portmap on
# chkconfig xinetd on
# chkconfig sshd on
·
Logging in with SSH from client
#ssh 192.168.156.1
root@192.168.156.1’s
Password:
Note: Only users with password will allow.
Post a Comment