美文网首页
ssh自动输入密码

ssh自动输入密码

作者: 下鱼塘 | 来源:发表于2022-02-15 15:07 被阅读0次
    1. 新建脚本,保存。
    
    #!/usr/bin/expect -f
    
    set password "123456"
    
    set timeout -1
    
    spawn ssh user@xxx.xxx.xxx.xx
    
    expect "*assword:*"
    
    send "$password\r"
    
    expect "Last*"
    
    interact
    
    1. chomd +x 修改权限
    2. 执行即可

    相关文章

      网友评论

          本文标题:ssh自动输入密码

          本文链接:https://www.haomeiwen.com/subject/opcllrtx.html