All about service ssh in solaris
For Solaris 9 :
for disable service ssh
# /etc/init.d/sshd stop or
# /etc/rc3.d/S89sshd stop
for enable service ssh
# /etc/init.d/sshd start or
# /etc/rc3.d/S89sshd start
for a root enable connect to host via ssh service :
# vi /etc/ssh/sshd_config
………….
# Valid options are yes, without-password, no.
PermitRootLogin no
………….

Replace no with yes, after that save the […]

Popularity: 46% [?]