linux – 使用Upstart管理AutoSSH反向隧道

前端之家收集整理的这篇文章主要介绍了linux – 使用Upstart管理AutoSSH反向隧道前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用upstart通过autossh管理反向SSH隧道.当我做一个“sudo start tunnel”时,连接就好了;但是,当网络服务启动时,命令不会自动运行,无论我更改“启动”属性,我似乎都无法以自动方式运行它.

但是,就像我说的,我可以开始/停止它就好了.

这是我的/etc/init/tunnel.conf,其中包含敏感内容

description "SSH Tunnel"

start on started networking
stop on stopping networking

respawn

env DISPLAY=:0.0

exec autossh -nNT -R 22100:localhost:22 myuser@myserver.com -p 2201

解决方法

想出来,我需要等待一个特定的设备,这是我的工作Upstart工作文件
description "SSH Tunnel"

start on (net-device-up IFACE=eth0)
stop on runlevel[016]

respawn

env DISPLAY=:0.0

exec autossh -nNT -o ServerAliveInterval=15 -R 22100:localhost:22 myuser@myserver.com -p 2201
原文链接:https://www.f2er.com/linux/402372.html

猜你在找的Linux相关文章