connect.sh revision 1.2
1tid="simple connect"
2
3start_sshd
4
5for p in 1 2; do
6	ssh -o "Protocol=$p" -F $OBJ/ssh_config somehost true
7	if [ $? -ne 0 ]; then
8		fail "ssh connect with protocol $p failed"
9	fi
10done
11