Zum Inhalt springen

SSH-Tunnel Script

    #!/bin/sh
    while true; do
    ssh -N -L [local port]:localhost:[proxy-port] [username]@[server]
    sleep 1
    done