aboutsummaryrefslogtreecommitdiffstats
path: root/examples/storage-zte-pod4/templates/ssh.cfg
blob: 2e5ee501256d5fb578eed6f080dc5061b03d0527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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 %}