]> andersk Git - openssh.git/commitdiff
- (dtucker) [regress/dynamic-forward.sh] Import new regression test.
authordtucker <dtucker>
Sat, 28 Jun 2003 02:42:09 +0000 (02:42 +0000)
committerdtucker <dtucker>
Sat, 28 Jun 2003 02:42:09 +0000 (02:42 +0000)
ChangeLog
regress/dynamic-forward.sh [new file with mode: 0644]

index a5a225b3ff69d37418b0c1c0565bb4873dacb738..263e80f54266aba1f25ce2405af4bb53d035a563 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,7 @@
    - markus@cvs.openbsd.org 2003/06/26 20:08:33
      [readconf.c]
      do not dump core for 'ssh -o proxycommand host'; ok deraadt@
+ - (dtucker) [regress/dynamic-forward.sh] Import new regression test.
 
 20030624
  - (dtucker) Have configure refer the user to config.log and
diff --git a/regress/dynamic-forward.sh b/regress/dynamic-forward.sh
new file mode 100644 (file)
index 0000000..90a2ab2
--- /dev/null
@@ -0,0 +1,37 @@
+#      $OpenBSD: dynamic-forward.sh,v 1.1 2003/06/26 14:23:10 markus Exp $
+#      Placed in the Public Domain.
+
+tid="dynamic forwarding"
+
+PORT=4242
+FWDPORT=4243
+
+if [ -x `which nc` ] && nc -h 2>&1 | grep "x proxy address" >/dev/null; then
+       proxycmd="nc -x 127.0.0.1:$FWDPORT -X"
+elif [ -x `which connect` ]; then
+       proxycmd="connect -S 127.0.0.1:$FWDPORT -"
+else
+       echo "skipped (no suitable ProxyCommand found)"
+       exit 0
+fi
+trace "will use ProxyCommand $proxycmd"
+
+start_sshd
+
+for p in 1 2; do
+  for s in 4; do
+    for h in 127.0.0.1 localhost; do
+       trace "testing ssh protocol $p socks version $s host $h"
+       trace "start dynamic forwarding, fork to background"
+       ${SSH} -$p -F $OBJ/ssh_config -f -D $FWDPORT somehost sleep 10
+
+       trace "transfer over forwarded channel and check result"
+       ${SSH} -F $OBJ/ssh_config -o "ProxyCommand ${proxycmd}${s} $h $PORT" \
+               somehost cat /bin/ls > $OBJ/ls.copy
+       test -f $OBJ/ls.copy     || fail "failed copy /bin/ls"
+       cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls"
+
+       sleep 10
+    done
+  done
+done
This page took 0.042873 seconds and 5 git commands to generate.