summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmisc/init.d/tunnel13
-rwxr-xr-xmisc/tunnel.sh10
2 files changed, 23 insertions, 0 deletions
diff --git a/misc/init.d/tunnel b/misc/init.d/tunnel
new file mode 100755
index 0000000..9cdd8c4
--- /dev/null
+++ b/misc/init.d/tunnel
@@ -0,0 +1,13 @@
+#!/sbin/openrc-run
+
+: ${user:="tor"}
+
+name="tunnel"
+
+command="/home/david/tunnel.sh"
+command_background="true"
+pidfile="/run/tunnel.pid"
+
+depend() {
+ need sshd
+}
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