I have a script that relies on public/private key ssh authentication. The problem is that some systems are misconfigured and do not have the proper ssh public/private key trust set up. When that happens ssh
ask me for a password blocking the script's execution. I have tried this command:
sudo ssh -o "PasswordAuthentication=no" -o "ChallengeResponseAuthentication=no" root@last-call
But I still get prompted for the root password.
"PreferredAuthentications=publickey"
– Red Cricket Feb 20 '16 at 00:34