-
-
Save caoer/606da23173fb63754b37ef03786e9430 to your computer and use it in GitHub Desktop.
AutoSSH reverse tunnel service config for systemd
This file contains hidden or 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 user@jump.you.io -i /home/root/.ssh/id_rsa | |
| [Install] | |
| WantedBy=multi-user.target |
Author
Author
share out
ssh -NR 6000:127.0.0.1:3000 ubuntu@40.73.96.93
map local 3000 to remote 6000
maybe reversed, not sure right now
Author
/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 caoer115@40.73.96.93 -i /home/feistar/.ssh/id_rsa
[Install]
WantedBy=multi-user.target
ssh -NR 5524:127.0.0.1:22 caoer115@40.73.96.93
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 ubuntu@40.73.96.93 -i /home/feistar/.ssh/id_rsa
[Install]
WantedBy=multi-user.target