Hi,
a remark about ssh and inetd:
you don't have to start sshd over inetd (if you want to do so you have to add a line in /etc/inetd.conf:
ssh stream tcp nowait root /usr/local/bin/sshd sshd -i
and the following in /etc/services:
ssh 22/tcp # SSH Remote Login Protocol
Generally this is not a good idea because at every login the server creates a new server key which takes some time!)
Therefore I would do the following steps:
Install the ssh Package (for example openssh from
or the commercial software from
Then disable the telnet entry by editing the file /etc/inetd.conf (put a # in front of the following line):
telnet stream tcp6 nowait root /usr/sbin/in.telnetd in.telnetd
Then execute the command:
# kill -HUP
PID_of_inetd
Put an appropriate start script in /etc/init.d and put a soft link from /etc/rc2.d to your start script, so that the ssh daemon will automatically come up when you have to boot your machine:
# ln -s /etc/init.d/sshd /etc/rc2.d/S99sshd
Hope that is helpful.
mrjazz
![[pc2] [pc2] [pc2]](/data/assets/smilies/pc2.gif)