En rédaction

This commit is contained in:
Iwan Clément
2019-05-03 17:04:02 +02:00
parent e3b1a39696
commit 6eacb8e10c
2 changed files with 13 additions and 8 deletions

View File

@@ -1,15 +1,12 @@
# Must be sent to /etc/systemd/system
[Unit]
Description=Setup a secure tunnel to %I
Description=Setup a secure tunnel to {{ANS_ADDR_TARGET}}
After=network.target
[Service]
User=ansusr
Environment="LOCAL_ADDR=localhost"
EnvironmentFile=/etc/default/secure-tunnel@%i
#ExecStart=/usr/bin/ssh -NT -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -R ${LOCAL_ADDR}:${LOCAL_PORT}:localhost:${REMOTE_PORT} ${TARGET}
#ExecStart=/usr/bin/ssh -p ${REMOTE_PORT} -NT -o StrictHostKeyChecking=no -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -R ${RTARGET_PORT}:localhost:22 ${TARGET}
ExecStart=/usr/bin/ssh -p ${REMOTE_PORT} -NT -o StrictHostKeyChecking=no -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -R ${RTARGET_PORT}:localhost:22 ${TARGET}
User=${ANS_TARGET_USER}
EnvironmentFile=/etc/default/secure-tunnel
ExecStart=/usr/bin/ssh -p ${REMOTE_PORT} -NT -o StrictHostKeyChecking=no -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -R ${RTARGET_PORT}:localhost:22 ${ANS_TARGET_USER}@${TARGET}
# Restart every >2 seconds to avoid StartLimitInterval failure
RestartSec=5