diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-05-08 06:28:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-08 06:28:14 +0000 |
commit | f25075b0dd2656efd1daae10c4739f029788c83f (patch) | |
tree | 64e0d10fec1c37a6229915ed118d862f5cd84c3b /resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg | |
parent | 35c4baddb47fd978fbc3472508615a15cf3b6c0a (diff) | |
parent | 3f4432611417378eb56c962b1fbc5270722e77cb (diff) |
Merge "Merge workspace template into one directory"
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg')
-rw-r--r-- | resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg b/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg new file mode 100644 index 00000000..67246054 --- /dev/null +++ b/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg @@ -0,0 +1,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 root + ProxyCommand ssh -o 'ForwardAgent yes' {{ installer_master_host }} 'ssh-add && nc %h %p' + +{% endfor %} +{% endraw %}
\ No newline at end of file |