1 # $OpenBSD: login-timeout.sh,v 1.4 2005/02/27 23:13:36 djm Exp $
2 # Placed in the Public Domain.
4 tid
="connect after login grace timeout"
6 trace
"test login grace with privsep"
7 echo "LoginGraceTime 10s" >> $OBJ/sshd_config
8 echo "MaxStartups 1" >> $OBJ/sshd_config
11 (echo SSH-2.0
-fake; sleep 60) |
telnet 127.0.0.1 ${PORT} >/dev
/null
2>&1 &
13 ${SSH} -F $OBJ/ssh_config somehost true
15 fail
"ssh connect after login grace timeout failed with privsep"
18 $SUDO kill `cat $PIDFILE`
20 trace
"test login grace without privsep"
21 echo "UsePrivilegeSeparation no" >> $OBJ/sshd_config
24 (echo SSH-2.0
-fake; sleep 60) |
telnet 127.0.0.1 ${PORT} >/dev
/null
2>&1 &
26 ${SSH} -F $OBJ/ssh_config somehost true
28 fail
"ssh connect after login grace timeout failed without privsep"