connect.sh revision 1.3
1#	$OpenBSD: connect.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
2#	Placed in the Public Domain.
3
4tid="simple connect"
5
6start_sshd
7
8for p in 1 2; do
9	ssh -o "Protocol=$p" -F $OBJ/ssh_config somehost true
10	if [ $? -ne 0 ]; then
11		fail "ssh connect with protocol $p failed"
12	fi
13done
14