Eu tenho uma caixa Ubuntu que eu uso para encapsular para outro servidor, eu gostaria de ter certeza de que toda vez que meu sistema for reiniciado, ele cria automaticamente o encapsulamento. Então eu estou tentando o seguinte
root@ubuntu1704:~# cat /root/sshtunnel.sh
#!/usr/bin/expect -f
spawn ssh -f -N [email protected] -L 0.0.0.0:8443:192.168.68.14:443
expect "password:"
send "kn&Z6*\r"
expect eof
Se eu executar isso manualmente, então ele funciona bem e meu túnel é aberto sem problemas
Eu adicionei isso a / var / spool / cron / crontabs / root
# DO NOT EDIT THIS FILE - edit the master and reinstall.
# (/tmp/crontab.DJGY3i/crontab installed on Fri Jun 16 23:28:22 2017)
# (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)
@reboot /root/sshtunnel.sh
Mas não está realmente funcionando