Task failed: Failed to connect to the host via ssh - When using Netbird hosts with Oracle VPSes #4138
Replies: 1 comment 1 reply
|
I think the confusing part here is Those options are added to Ansible's existing SSH arguments, they don't replace them. Ansible uses these by default: So even if you add: ansible_ssh_common_args='-o ControlMaster=no -o ControlPersist=no'you can still see both sets of options in the I'd try overriding [all:vars]
ansible_ssh_args='-C -o ControlMaster=no -o ControlPersist=no -o ServerAliveInterval=30 -o ServerAliveCountMax=3'
ansible_ssh_common_args='-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'Then run the playbook again with Since the connection is going through NetBird ( ssh -vvv root@100.84.0.16If the direct SSH connection also drops, then I'd look at NetBird or the remote VM/network rather than Semaphore. So I'd first make sure multiplexing is actually disabled using |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
All reactions