shell-scripte-code/sshtunnel.service

16 lines
417 B
SYSTEMD
Raw Normal View History

2017-01-14 14:36:23 +01:00
[Unit]
Description=SSH Tunnel
ConditionPathExists=|/usr/bin
After=network.target
[Service]
User=root
2017-01-15 11:05:13 +01:00
ExecStart=/usr/bin/ssh -NTC -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -o StrictHostKeyChecking=no -i /root/.ssh/id_rsa -R 12345:localhost:22 pi@mgwywbvcwmot7vir.myfritz.net
2017-01-14 14:36:23 +01:00
# Restart every >2 seconds to avoid StartLimitInterval failure
RestartSec=3
Restart=always
[Install]
WantedBy=multi-user.target