blob: 3b1826fe3ea554504002bdb775043c84863f475b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
tid="protocol version mismatch"
mismatch ()
{
server=$1
client=$2
banner=`echo ${client} | sshd -o "Protocol=${server}" -i -f ${OBJ}/sshd_proxy`
r=$?
trace "sshd prints ${banner}"
if [ $r -ne 255 ]; then
fail "sshd prints ${banner} and accepts connect with version ${client}"
fi
}
mismatch 2 SSH-1.5-HALLO
mismatch 1 SSH-2.0-HALLO
|