aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-04-26 15:59:01 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-04-26 15:59:01 +0200
commit363015700f931857489b6d87c1d6d0a69189536c (patch)
tree0310760cebc52a8f5a036fc7470b9598b8adaa7a
parent0d33d9204ae6ddf7e48e72d3512fe49d2ad2c1ba (diff)
ansible: Document how to use ProxyJump to access ipv6 nodes
-rw-r--r--ansible/README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/ansible/README.md b/ansible/README.md
index 15c6164..f3185ec 100644
--- a/ansible/README.md
+++ b/ansible/README.md
@@ -18,3 +18,15 @@ Further information on this job can be found in **setup-gsm-tester.md**.
`ansible-playbook -i hosts setup-jenkins-slave.yml`
Further information on this job and around the setup can be found on the redmine wiki.
+
+If you don't have access to an IPv6 network from your local host, then you can
+use an ssh proxy to updates hosts in the `hosts` files being accessed only
+through an IPv6 addr. Your ssh proxy must of course have an IPv6 address able to
+reach the destination host.
+
+example `.ssh/config`:
+```
+Host 2a01:4f8:13b:828::1:*
+ProxyJump proxyuser@myhostproxy.com:22
+User root
+```