freebsd-dev/regress/kextype.sh

21 lines
443 B
Bash
Raw Normal View History

2014-01-30 10:56:49 +00:00
# $OpenBSD: kextype.sh,v 1.4 2013/11/07 04:26:56 dtucker Exp $
2011-02-17 11:47:40 +00:00
# Placed in the Public Domain.
tid="login with different key exchange algorithms"
TIME=/usr/bin/time
cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
tries="1 2 3 4"
2014-01-30 10:56:49 +00:00
for k in `${SSH} -Q kex`; do
2011-02-17 11:47:40 +00:00
verbose "kex $k"
for i in $tries; do
${SSH} -F $OBJ/ssh_proxy -o KexAlgorithms=$k x true
if [ $? -ne 0 ]; then
fail "ssh kex $k"
fi
done
done