freebsd-dev/crypto/openssh/regress/proto-version.sh

31 lines
527 B
Bash
Raw Normal View History

2018-05-06 12:24:45 +00:00
# $OpenBSD: proto-version.sh,v 1.7 2017/06/07 01:48:15 djm Exp $
2002-06-27 22:31:32 +00:00
# Placed in the Public Domain.
tid="sshd version with different protocol combinations"
# we just start sshd in inetd mode and check the banner
check_version ()
{
2018-05-06 12:24:45 +00:00
expect=$1
banner=`printf '' | ${SSHD} -i -f ${OBJ}/sshd_proxy`
2002-06-27 22:31:32 +00:00
case ${banner} in
SSH-1.99-*)
proto=199
;;
SSH-2.0-*)
proto=20
;;
SSH-1.5-*)
proto=15
;;
*)
proto=0
;;
esac
if [ ${expect} -ne ${proto} ]; then
2018-05-06 12:24:45 +00:00
fail "wrong protocol version ${banner}"
2002-06-27 22:31:32 +00:00
fi
}
2018-05-06 12:24:45 +00:00
check_version 20