summaryrefslogtreecommitdiffstats
path: root/regress/connect.sh
blob: 46f12b7b3c9266d4bcdb4500a9343125fd3ebb01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#	$OpenBSD: connect.sh,v 1.8 2020/01/25 02:57:53 dtucker Exp $
#	Placed in the Public Domain.

tid="simple connect"

start_sshd

trace "direct connect"
${SSH} -F $OBJ/ssh_config somehost true
if [ $? -ne 0 ]; then
	fail "ssh direct connect failed"
fi

trace "proxy connect"
${SSH} -F $OBJ/ssh_config -o "proxycommand $NC %h %p" somehost true
if [ $? -ne 0 ]; then
	fail "ssh proxycommand connect failed"
fi