summaryrefslogtreecommitdiff
path: root/misc/tunnel.sh
diff options
context:
space:
mode:
Diffstat (limited to 'misc/tunnel.sh')
-rwxr-xr-xmisc/tunnel.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/tunnel.sh b/misc/tunnel.sh
new file mode 100755
index 0000000..c139e35
--- /dev/null
+++ b/misc/tunnel.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+while true; do
+ echo "digging a tunnel..."
+ /usr/bin/ssh -NT -i /home/david/.ssh/ovski_rsa -p 4522 \
+ -R 5069:localhost:5069 \
+ -R 6680:localhost:6680 \
+ -R 2022:localhost:22 \
+ vski@86.10.87.187
+done