diff options
Diffstat (limited to 'regress/login-timeout.sh')
-rw-r--r-- | regress/login-timeout.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/regress/login-timeout.sh b/regress/login-timeout.sh new file mode 100644 index 000000000..dfc6e6b44 --- /dev/null +++ b/regress/login-timeout.sh | |||
@@ -0,0 +1,29 @@ | |||
1 | # $OpenBSD: login-timeout.sh,v 1.1 2004/02/17 08:23:20 dtucker Exp $ | ||
2 | # Placed in the Public Domain. | ||
3 | |||
4 | tid="connect after login grace timeout" | ||
5 | |||
6 | trace "test login grace with privsep" | ||
7 | echo "LoginGraceTime 10s" >> $OBJ/sshd_config | ||
8 | echo "MaxStartups 1" >> $OBJ/sshd_config | ||
9 | start_sshd | ||
10 | |||
11 | (echo SSH-2.0-fake; sleep 60) | telnet localhost ${PORT} >/dev/null 2>&1 & | ||
12 | sleep 15 | ||
13 | ${SSH} -F $OBJ/ssh_config somehost true | ||
14 | if [ $? -ne 0 ]; then | ||
15 | fail "ssh connect after login grace timeout failed with privsep" | ||
16 | fi | ||
17 | |||
18 | kill `cat $PIDFILE` | ||
19 | |||
20 | trace "test login grace without privsep" | ||
21 | echo "UsePrivilegeSeparation no" >> $OBJ/sshd_config | ||
22 | start_sshd | ||
23 | |||
24 | (echo SSH-2.0-fake; sleep 60) | telnet localhost ${PORT} >/dev/null 2>&1 & | ||
25 | sleep 15 | ||
26 | ${SSH} -F $OBJ/ssh_config somehost true | ||
27 | if [ $? -ne 0 ]; then | ||
28 | fail "ssh connect after login grace timeout failed without privsep" | ||
29 | fi | ||