diff --git a/callhome.sh b/callhome.sh new file mode 100644 index 0000000..1aa2cbf --- /dev/null +++ b/callhome.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +USER= +HOST= + +while true; do + ssh -NC -o ServerAliveInterval=5 \ + -o UserKnownHostsFile=/dev/null \ + -o StrictHostKeyChecking=no \ + -R ':50022::22' \ + $USER@$HOST + sleep 5 +done \ No newline at end of file