主頁 > 知識庫 > Linux下SSH Session復制功能實現(xiàn)方法

Linux下SSH Session復制功能實現(xiàn)方法

熱門標簽:天津人工電銷機器人費用 哪個地圖標注更清晰 4s店如何在百度地圖標注 地圖標注小區(qū)項目入駐 凱立德劇院地圖標注 內(nèi)蒙古電信外呼系統(tǒng) 曲阜地圖標注app 漳州外呼系統(tǒng)怎么樣 開封400電話辦理價格

特別感謝阿干同學的郵件分享。

詳細方法


復制代碼
代碼如下:

Linux/mac下,在$HOME/.ssh/config中加入
Host *
ControlMaster auto
ControlPath a>/tmp/ssh-%r@%h/a>

至此只要第一次SSH登錄輸入密碼,之后同個Hosts則免登。

配置文件分析

man ssh_config 5


復制代碼
代碼如下:

ControlPath
Specify the path to the control socket used for connection sharing as described in the ControlMaster section
above or the string “none” to disable connection sharing. In the path, ‘%l’ will be substituted by the
local host name, ‘%h’ will be substituted by the target host name, ‘%p’ the port, and ‘%r’ by the remote
login username. It is recommended that any ControlPath used for opportunistic connection sharing include at
least %h, %p, and %r. This ensures that shared connections are uniquely identified.

%r 為遠程機器的登錄名
%h 為遠程機器名

原理分析

嚴格地講,它并不是真正意義上的Session Copy,而只能說是共享Socket。
第一次登錄的時候,將Socket以文件的形式保存到:/tmp/ssh-%r@%h這個路徑
之后登錄的時候,一旦發(fā)現(xiàn)是同個主機,則復用這個Socket
故,一旦主進程強制退出(Ctrl+C),則其他SSH則被迫退出。

可以通過ssh -v參數(shù),看debug信息驗證以上過程

備注

有同學說在linux上通過證書的形式,可以實現(xiàn)免登錄,沒錯。
對于靜態(tài)密碼,完全可以這么干;對于動態(tài)密碼(口令的方式),則上述手段可以方便很多。

標簽:湘西 慶陽 三門峽 衡陽 衡陽 茂名 六盤水 仙桃

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Linux下SSH Session復制功能實現(xiàn)方法》,本文關(guān)鍵詞  Linux,下,SSH,Session,復制,功能,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux下SSH Session復制功能實現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux下SSH Session復制功能實現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章