1.編輯/etc/inetd.conf,去掉ssh前的#,保存退出.
2.編輯/etc/rc.conf,最後加入:sshd_enable="yes"便可
3.啓動sshd服務:#/etc/rc.d/sshd start
4.#netstat -an 檢查服務是否啓動,22端口有無sshd服務監聽。
5.編輯/etc/ssh/sshd_config,在末尾加上以下內容:
IgnoreRhosts yes
IgnoreUserKnownHosts yes
PrintMotd yes
StrictModes no
RSAAuthentication yes
PermitRootLogin yes
PermitEmptyPasswords no
PasswordAuthentication yes 6.從新啓動sshd服務:/etc/rc.d/sshd restart。