mirror of git://anongit.mindrot.org/openssh.git
12 lines
266 B
Bash
12 lines
266 B
Bash
|
# $OpenBSD: proxy-connect.sh,v 1.4 2002/03/15 13:08:56 markus Exp $
|
||
|
# Placed in the Public Domain.
|
||
|
|
||
|
tid="proxy connect"
|
||
|
|
||
|
for p in 1 2; do
|
||
|
${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
|
||
|
if [ $? -ne 0 ]; then
|
||
|
fail "ssh proxyconnect protocol $p failed"
|
||
|
fi
|
||
|
done
|