diff options
Diffstat (limited to 'examples/storage-zte-pod4/ssh.cfg')
-rw-r--r-- | examples/storage-zte-pod4/ssh.cfg | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/storage-zte-pod4/ssh.cfg b/examples/storage-zte-pod4/ssh.cfg new file mode 100644 index 00000000..830d6270 --- /dev/null +++ b/examples/storage-zte-pod4/ssh.cfg @@ -0,0 +1,18 @@ + +# 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' + +Host 192.0.2.9 + HostName 192.0.2.9 + User heat-admin + ProxyCommand ssh -o 'ForwardAgent yes' apex-virtual-pod4 'ssh-add && nc %h %p' + +Host 192.0.2.10 + HostName 192.0.2.10 + User heat-admin + ProxyCommand ssh -o 'ForwardAgent yes' apex-virtual-pod4 'ssh-add && nc %h %p' + |