blob: 1b7c01833c2f5f656767614d6d0577fb16c43037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% raw %}
# Connect to target node through jump host
#
# OpenSSH 7.3:
# ProxyJump jumphost
# before OpenSSH 7.3
# ProxyCommand ssh -o 'ForwardAgent yes' jumphost 'ssh-add && nc %h %p'
{% for (name, host) in hosts_meta.items() %}
Host {{ name }}
HostName {{ host.ansible_ssh_host }}
User {{ host.ansible_user }}
ProxyCommand ssh -o 'ForwardAgent yes' {{ installer_host }} 'ssh-add && nc %h %p'
{% endfor %}
{% endraw %}
|