Hi there,
I’m using Ansible to manage target servers with following /etc/ssh/sshd_config configuration:
"
…
PasswordAuthentication no
…
ChallengeResponseAuthentication yes
…
"
I have the root password of target servers but actually I can’t use the ansible “expect” module neither the ssh private/public key exchange, just the following:
ansible_connection: ssh
ansible_port=22
ansible_host: < host >
ansible_ssh_user: root
ansible_password: < root password >
ansible_ssh_extra_args: < ??? >
Which “ansible_ssh_extra_args” do you suggest using to allow the connection? Otherwise, is it needed to patch the ansible python code to add this new features?
Thanks.
KR,
Ermanno