forked from ports/contrib
38 lines
736 B
Bash
Executable File
38 lines
736 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# /etc/rc.d/sshd: start/stop ssh daemon with filtering enabled
|
|
#
|
|
|
|
case $1 in
|
|
start)
|
|
if [ ! -f /etc/ssh/ssh_host_key ]; then
|
|
/usr/bin/ssh-keygen -t rsa1 -N "" -f /etc/ssh/ssh_host_key > /dev/null
|
|
fi
|
|
if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then
|
|
/usr/bin/ssh-keygen -t rsa -N "" -f /etc/ssh/ssh_host_rsa_key > /dev/null
|
|
fi
|
|
if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then
|
|
/usr/bin/ssh-keygen -t dsa -N "" -f /etc/ssh/ssh_host_dsa_key > /dev/null
|
|
fi
|
|
/usr/sbin/sshdfilter
|
|
;;
|
|
stop)
|
|
if [ -f /var/run/sshd.pid ]; then
|
|
kill `cat /var/run/sshd.pid`
|
|
rm -f /var/run/ssh.pid
|
|
else
|
|
killall -q /usr/sbin/sshd
|
|
fi
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 2
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 [start|stop|restart]"
|
|
;;
|
|
esac
|
|
|
|
# End of file
|