红联Linux门户
Linux帮助

Linux SSH交互式脚本,去除yes/no的提示

发布时间:2017-09-08 11:28:01来源:linux网站作者:itzhangdaopin
Linux用户在使用ssh编译脚本的时候,出现了The authenticity of host can’t be xx established 提示,虽然不影响ssh的连接,但在交互式脚本编写中,就会影响脚本的正常运行如(expect交互式脚本),比较烦人了,下面提供去除该提示的方法。
 
1.应用ssh来连接远程主机时增加加“-o StrictHostKeyChecking=no”选项,如下方法:(推荐!)
做法是使用-o 这个参数,在ssh/scp里加上 -o "StrictHostKeyChecking no" 即可跳过这个yes/no询问,直接进入下一步,例:
Use the -o option:
scp -o "StrictHostKeyChecking no" 1.txt user@host:1.txt 
ssh -o "StrictHostKeyChecking no" user@host
 
2.彻底去除的方法参考:http://www.linuxdiyf.com/linux/29758.html
 
上面就是Linux去除ssh连接时The authenticity of host can’t be xx established 提示的方法介绍了,如果你觉得该提示一直出现很烦的话,可选择去掉。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/32552.html