使用autossh实现开机创建ssh tunnel的方法以及shell脚本.
生活随笔
收集整理的這篇文章主要介紹了
使用autossh实现开机创建ssh tunnel的方法以及shell脚本.
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?有時候回需要到ssh tunnel,手動使用ssh 創建這些并沒有太大的問題,可是如果嘗試開機啟動,寫個shell腳本并在rc.local里面運行這個腳本并不成功,原因也不得而知。?
后來發現了autossh這東東,不單單能夠靜默模式創建ssh tunnel還能設置自動檢測,并自動嘗試鏈接的選項。
本文附件提供的腳本,需要放置在/etc/ini.d/目錄下,并使用chmod +x 修改權限。然后也有必要使用update-rc.d service defaults添加入開機啟動服務。
當然不要忘記修改腳本中的配置信息。
然后就能夠在開機時候自動創建ssh tunnel了。 enjoy it.
#!?/bin/bash#?For?each?tunnel;?make?a?uniquely?named?copy?of?this?template.##?SETTINGS # #?autossh?monitoring?port?(unique) MPORT=54321 #?the?ssh?tunnel?to?setup TUNNEL="-L?2003:localhost:2003" #?remote?user RUSER="socieer" #?remote?server RSERVER="socieer.axxeo.de" #?You?must?use?the?real?autossh?binary,?not?a?wrapper. DAEMON=/usr/lib/autossh/autossh # ##?END?SETTINGSPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binNAME=`basename?$0` PIDFILE=/var/run/${NAME}.pid SCRIPTNAME=/etc/init.d/${NAME} DESC="the?tunnel"test?-x?$DAEMON?||?exit?0export?AUTOSSH_PORT=${MPORT} export?AUTOSSH_PIDFILE=${PIDFILE} ASOPT=${TUNNEL}"?-f?-N?"${RUSER}"@"${RSERVER}#??Function?that?starts?the?daemon/service. d_start()?{start-stop-daemon?--start?--quiet?--pidfile?$PIDFILE?\--exec?$DAEMON?--?$ASOPTif?[?$??-gt?0?];?thenecho?-n?"?not?started?(or?already?running)"elsesleep?1start-stop-daemon?--stop?--quiet?--pidfile?$PIDFILE?\--test?--exec?$DAEMON?>?/dev/null?||?echo?-n?"?not?started"fi}#??Function?that?stops?the?daemon/service. d_stop()?{start-stop-daemon?--stop?--quiet?--pidfile?$PIDFILE?\--exec?$DAEMON?\||?echo?-n?"?not?running" }case?"$1"?instart)echo?-n?"Starting?$DESC:?$NAME"d_startecho?".";;stop)echo?-n?"Stopping?$DESC:?$NAME"d_stopecho?".";;restart)echo?-n?"Restarting?$DESC:?$NAME"d_stopsleep?1d_startecho?".";;*)echo?"Usage:?$SCRIPTNAME?{start|stop|restart}"?>&2exit?3;; esacexit?0
轉載于:https://blog.51cto.com/zicowarn/1653604
總結
以上是生活随笔為你收集整理的使用autossh实现开机创建ssh tunnel的方法以及shell脚本.的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 英文文章如何进行略读
- 下一篇: 组合数(Lucas定理) + 快速幂 -