Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Create a ssh tunnel after network is ready on Debian/Raspberry Pi #16

Open
davideuler opened this issue May 1, 2022 · 0 comments
Open

Comments

@davideuler
Copy link
Owner

davideuler commented May 1, 2022

A ssh tunnel could be created in /etc/rc.local. As following:

vim /etc/rc.local

timeout=5
ssh -p 22 -o BatchMode=yes -o ConnectTimeout=3 -i /data/david/xxx.pem -fCNR 7280:localhost:22 root@101.20.5.6

while test $? -gt 0
do
   sleep 3 # highly recommended - if it's in your local network, it can try an awful lot pretty quick...
   echo "Trying again..."
   ssh -p 22 -o BatchMode=yes -o ConnectTimeout=3 -i /data/david/xxx.pem -fCNR 7280:localhost:22 root@101.20.5.6
   TIMEOUT=$((TIMEOUT-1))
   if [ $TIMEOUT -eq 0 ]; then
        echo "timed out"
        # error time out
        exit 1
   fi
done

sleep 3

Here the -o BatchMode=yes means the SSH connection will fail immediately if the key is rejected, instead of failing back to a password prompt. The ConnectionTimeout the timeout for ssh command, so it would not wait for a long time.

Note that for Debian 9/10/11, rc.local would not run by default.
You need to make the script executable, and also enable the service.

chmod +x /etc/rc.local
systemctl start rc-local
systemctl enable rc-local
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant