10SN/A#	$OpenBSD: connect.sh,v 1.5 2015/03/03 22:35:19 markus Exp $
2157SN/A#	Placed in the Public Domain.
30SN/A
40SN/Atid="simple connect"
50SN/A
60SN/Astart_sshd
7157SN/A
80SN/Afor p in ${SSH_PROTOCOLS}; do
9157SN/A	${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
100SN/A	if [ $? -ne 0 ]; then
110SN/A		fail "ssh connect with protocol $p failed"
120SN/A	fi
130SN/Adone
140SN/A