-
-
Save caoer/606da23173fb63754b37ef03786e9430 to your computer and use it in GitHub Desktop.
AutoSSH reverse tunnel service config for systemd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 [email protected] -i /home/root/.ssh/id_rsa | |
[Install] | |
WantedBy=multi-user.target |
share out
ssh -NR 6000:127.0.0.1:3000 [email protected]
map local 3000 to remote 6000
maybe reversed, not sure right now
/etc/systemd/system/autossh-jump-rtunnel.service
[Unit]
Description=AutoSSH reverse tunnel service
After=network.target
[Service]
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -M 0 -o "ExitOnForwardFailure=yes" -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -o "StrictHostKeyChecking=no" -NR 5424:127.0.0.1:22 [email protected] -i /home/feistar/.ssh/id_rsa
[Install]
WantedBy=multi-user.target
ssh -NR 5524:127.0.0.1:22 [email protected]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[Unit]
Description=AutoSSH reverse tunnel service for 40.73.96.93 5024 -> 22
After=network.target
[Service]
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -M 0 -o "ExitOnForwardFailure=yes" -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -o "StrictHostKeyChecking=no" -NR 5024:127.0.0.1:22 [email protected] -i /home/feistar/.ssh/id_rsa
[Install]
WantedBy=multi-user.target