Esegue, monitora e riavvia connessioni SSH. Si riconnette automaticamente per tenere attivi tunnel di port forwarding. Accetta tutte le flag di SSH. Maggiori informazioni: https://www.harding.motd.ca/autossh.
autossh -M {{porta_monitorata}} "{{comando_ssh}}"
autossh -M {{porta_monitorata}} -L {{porta_locale}}:localhost:{{porta_remota}} {{utente}}@{{host}}
autossh -f -M {{porta_monitorata}} -N "{{comando_ssh}}"
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "{{comando_ssh}}"
autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L {{porta_locale}}:localhost:{{porta_remota}} {{utente}}@{{host}}
AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE={{file_log}} autossh -f -M {{porta_monitorata}} -v -E {{file_log_ssh}} {{comando_ssh}}