Steve Borba

My notes, I hope they help you, feel free to comment/add to them

Autossh

on the target server create an account that can’t run anything

sudo useradd tether -m -s /bin/true

then create the autossh service of the source and exchange sshkeys

/etc/systemd/system/autossh.service
[Unit]
Description=AutoSSH tether
After=network.target

[Service]
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -N -M 0 -o "ExitOnForwardFailure=yes" -o "ServerAliveInterval=180" -o "ServerAliveCountMax=3" -o "PubkeyAuthentication=yes" -o "PasswordAuthentication=no" -i /root/tether/id_ed25519 -R 0.0.0.0:10022:127.0.0.1:22 -R 0.0.0.0:43389:192.0.2.1:3389 -R 0.0.0.0:1443:192.0.2.2:443 -R 0.0.0.0:9443:192.0.2.3:443 tether@ssh.steveborba.com
Restart=always

[Install]
WantedBy=multi-user.target
:start
ssh tether@steveborba.com -p 8080 -R *:3389:127.0.0.1:3389 -R *:20443:192.0.2.1:443 -R *:3978:192.0.2.2:3978 -i C:\Users\steve\.ssh\id_rsa
timeout /t 10
goto start

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>