autossh不生效_autossh 的正确用法

autossh不生效_autossh 的正确用法以前用autossh的时候,只是简单的用了一个-N参数。结果遇到一开始没联上网或者中途断网都还是起不到重连的作用。exportAUTOSSH_PIDFILE=/var/run/autossh.pidexportAUTOSSH_POLL=60exportAUTOSSH_FIRST_POLL=30exportAUTOSSH_GATETIME=0exportAUTOSSH_DEBUG=…

以前用 autossh 的时候,只是简单的用了一个 -N 参数。结果遇到一开始没联上网或者中途断网都还是起不到重连的作用。

export AUTOSSH_PIDFILE=/var/run/autossh.pid

export AUTOSSH_POLL=60

export AUTOSSH_FIRST_POLL=30

export AUTOSSH_GATETIME=0

export AUTOSSH_DEBUG=1

autossh -M 0 -4 -N USER@HOSTNAME -D 7070 -o \

“ServerAliveInterval 60” -o

“ServerAliveCountMax 3” -o BatchMode=yes \

-o StrictHostKeyChecking=no

-M 0 的意思在 man 里面是这样写的:

Setting the monitor port to 0 turns the monitoring function off, and autossh will only restart ssh upon ssh’s exit. For example, if you are using a recent version of OpenSSH, you may wish to explore using the ServerAliveInterval and ServerAliveCountMax options to have the SSH client exit if it finds itself no longer connected to the server. In many ways this may be a better solution than the monitoring port.

大概意思是这是一种比较好的用法。。

今天的文章autossh不生效_autossh 的正确用法分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/5682.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注