sshpass

免交互 SSH 登錄工具。

補充說明

免交互 SSH 登錄工具,但不要用在生產服務器上。

如果你想自動在 SSH 登錄提示符中提供密碼用戶名怎麼辦?這時 sshpass 就可以幫到你了。

sshpass 是一個簡單、輕量級的命令行工具,通過它我們能夠向命令提示符本身提供密碼(非交互式密碼驗證)。

安裝

1# RedHat/CentOS
2yum install sshpass
3
4# Debian/Ubuntu
5apt-get install sshpass

語法

1sshpass (選項)

選項

 1用法: sshpass [-f|-d|-p|-e] [-hV] 命令 參數
 2    -f 文件名     從文件中獲取密碼
 3    -d 數字       使用數字作爲文件描述符來獲取密碼
 4    -p 密碼       將密碼作爲參數提供(安全上不明智)
 5    -e            密碼以環境變量 "SSHPASS" 的形式傳遞
 6    如果沒有參數 - 密碼將從標準輸入中獲取
 7
 8    -P 提示       sshpass 搜索以檢測密碼提示的字符串
 9    -v            顯示詳細信息
10    -h            顯示幫助信息(本屏幕)
11    -V            打印版本信息
12只能使用 -f、-d、-p 或 -e 中的一個

實例

1.明文傳輸密碼(不建議

1sshpass -p 'my_pass_here' ssh aaronkilik@10.42.0.1 'df -h'

2.使用文件傳輸密碼

1sshpass -f password_filename ssh aaronkilik@10.42.0.1 'df -h'

3.使用環境變量 SSHPASS

1sshpass -e ssh aaronkilik@10.42.0.1 'df -h'

更多使用詳情請參考 https://linux.cn/article-8086-1.html來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: