Skip to content

Instantly share code, notes, and snippets.

@ntrepid8
Last active October 7, 2020 01:45
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ntrepid8/0af12c012dd2567c800799d86eb44f90 to your computer and use it in GitHub Desktop.
Save ntrepid8/0af12c012dd2567c800799d86eb44f90 to your computer and use it in GitHub Desktop.
AutoSSH reverse tunnel service config for systemd
[Unit]
Description=AutoSSH reverse tunnel service for jump.you.io 100022 -> 22
After=network.target
[Service]
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -M 0 -o "ExitOnForwardFailure=yes" -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -NR 10022:127.0.0.1:22 user@jump.you.io -i /home/root/.ssh/id_rsa
[Install]
WantedBy=multi-user.target
@phgachoud
Copy link

As https://unix.stackexchange.com/a/379991/47775 mentioned you could change the After target with network-online.target

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment