Thanks for the response Yuji.  However I have read that you can
use ssh through inetd.  I have it setup in slackware doing this.

I am new to FreeBSD, but I don't understand why it wouldn't work.
I will give your suggestion a try though, because I would rather
have it run through /etc/rc.local.  Hopefully I can get the 
wrappers to work for me.  


> 
> /etc/inetd.conf is a configuration file for inetd, not for a daemon
> that is started at system boot time. If you would like to start sshd
> as a daemon, you should change a configuration file for a local daemon,
> /etc/rc.local or so.
> 
> I've never used ssh2, but I think configure script has --with-libwrap
> option as same as ssh1. Please try to re-configure and re-build ssh2,
> and change the local daemon configuration file.
> 
> Here is the sample for openssh on my NetBSD box.
> 
> if [ ! -f /etc/ssh_host_key ]
> then
>  /usr/pkg/bin/ssh-keygen -f /etc/ssh_host_key -N ''
> fi
> if [ -x /usr/pkg/sbin/sshd -a -f /etc/sshd_config ]
> then
>  /usr/pkg/sbin/sshd
>  echo -n ' sshd'
> fi
> exit 0
> 
> --
> Yuji Yamano

Reply via email to