1 # $OpenBSD: banner.sh,v 1.2 2003/10/11 11:49:49 dtucker Exp $
2 # Placed in the Public Domain.
5 echo "Banner $OBJ/banner.in" >> $OBJ/sshd_proxy
7 rm -f $OBJ/banner.out
$OBJ/banner.
in $OBJ/empty.
in
10 trace
"test missing banner file"
11 verbose
"test $tid: missing banner file"
12 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true
2>$OBJ/banner.out
&& \
13 cmp $OBJ/empty.
in $OBJ/banner.out
) || \
14 fail
"missing banner file"
16 for s
in 0 10 100 1000 10000 100000 ; do
17 if [ "$s" = "0" ]; then
20 elif [ "$s" = "10" ]; then
21 # create 10-byte banner file
22 echo "abcdefghi" >$OBJ/banner.
in
25 cp $OBJ/banner.
in $OBJ/banner.out
26 for i
in 0 1 2 3 4 5 6 7 8 ; do
27 cat $OBJ/banner.out
>> $OBJ/banner.
in
31 trace
"test banner size $s"
32 verbose
"test $tid: size $s"
33 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true
2>$OBJ/banner.out
&& \
34 cmp $OBJ/banner.
in $OBJ/banner.out
) || \
35 fail
"banner size $s mismatch"
38 trace
"test suppress banner (-q)"
39 verbose
"test $tid: suppress banner (-q)"
40 ( ${SSH} -q -2 -F $OBJ/ssh_proxy otherhost true
2>$OBJ/banner.out
&& \
41 cmp $OBJ/empty.
in $OBJ/banner.out
) || \
42 fail
"suppress banner (-q)"
44 rm -f $OBJ/banner.out
$OBJ/banner.
in $OBJ/empty.
in