重定向密码提示警报

时间:2016-11-17 06:42:06

标签: linux ssh rsync dropbear

是否可以将密码提示警报重定向到文件或使其静音?

[lnx51 ~]$ ssh root@192.168.1.1 root@192.168.1.1's password:

2 个答案:

答案 0 :(得分:1)

如果您通过rsync运行,请使用batchmode来阻止ssh提示输入密码等esp。 (我假设您将设置基于密码的身份验证)

ssh -o BatchMode=yes root@hostname command

答案 1 :(得分:1)

为避免密码验证,您可以使用下一句话:

  ssh -o PasswordAuthentication=no root@192.168.1.1

这会禁用“手动”身份验证,但您需要另一种方法来登录,否则您将收到类似的错误:

  Permission denied (publickey,password).

也许你的id_rsa有一些问题

如果你想使用rsync(作为你的例子)你必须把命令带引号(“):

   rsync -v -r -l -e "ssh -o PasswordAuthentication=no"  ctxt root@192.168.6.2:/home/

您可以在here

检查rsync选项