¿Cómo puedo restablecer un túnel si mi localhost se cae?
Tengo 2 máquinas, Remotehost y localhost, en mi localhost estoy ejecutando autossh para mantener vivo el túnel en caso de problemas de red.
autossh -M 20000 -L 3300:192.168.2.101:3306 -R 3000:192.168.1.3:3000 [email protected] -p 80
pero ¿y si necesito reiniciar el localhost? ¿Cómo puedo volver a conectar automáticamente el túnel entonces?
Otra opción simple es agregar
@reboot autossh ... &
a/etc/cron.d/autossh
fuente
@reboot autossh -f -nNT -R 3269:host-providing:3269 firewalled-host &