freebsd-dev/regress/connect-privsep.sh

26 lines
702 B
Bash
Raw Normal View History

2011-09-28 08:14:41 +00:00
# $OpenBSD: connect-privsep.sh,v 1.2 2011/06/30 22:44:43 markus Exp $
2002-06-27 22:31:32 +00:00
# Placed in the Public Domain.
tid="proxy connect with privsep"
2011-09-28 08:14:41 +00:00
cp $OBJ/sshd_proxy $OBJ/sshd_proxy.orig
2002-06-27 22:31:32 +00:00
echo 'UsePrivilegeSeparation yes' >> $OBJ/sshd_proxy
for p in 1 2; do
${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
if [ $? -ne 0 ]; then
fail "ssh privsep+proxyconnect protocol $p failed"
fi
done
2011-09-28 08:14:41 +00:00
cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy
echo 'UsePrivilegeSeparation sandbox' >> $OBJ/sshd_proxy
for p in 1 2; do
${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
if [ $? -ne 0 ]; then
# XXX replace this with fail once sandbox has stabilised
warn "ssh privsep/sandbox+proxyconnect protocol $p failed"
fi
done