import of openssh-5.8p1
[openssh.git] / regress / connect-privsep.sh
1 #       $OpenBSD: connect-privsep.sh,v 1.1 2002/03/21 21:45:07 markus Exp $
2 #       Placed in the Public Domain.
3
4 tid="proxy connect with privsep"
5
6 echo 'UsePrivilegeSeparation yes' >> $OBJ/sshd_proxy
7
8 for p in 1 2; do
9         ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
10         if [ $? -ne 0 ]; then
11                 fail "ssh privsep+proxyconnect protocol $p failed"
12         fi
13 done