|
Extraordin-Air Team Final Project
|
|
|
STATEMENT OF PROBLEM- ITEM 9
Document configuration of SSH on machine
INVESTIGATIVE PROCESS-
Read documentaion on SSH includin man pages and Red Hat Sit document on v.7.2 since SSH is installed and configured on 7.3.
Besides allowing secure remote log in, ssh also enables the remote copin of files using scp and secure ftp by using sftp.
RECIPE-
7.3
Verify SSH deaemon is confiurd to automatically start from /etc/init.d/sshd
#chkconfig --list sshd
It should show that it is set to run t states 3,4,5. If not, enter-
#chkconfig --level 345 sshd on
#/etc/init.d/sshd start (starts without rebooting)
|
|
|
|