Adding some ipv6 settings to the runner
All checks were successful
TMW Global Networks Dokumentation / build (push) Successful in 10s

This commit is contained in:
Tizian Maxime Weigt 2025-04-27 14:45:42 +02:00
parent cdcef35515
commit 052412ceb1

View File

@ -20,8 +20,8 @@ jobs:
run: ip route
- name: adding an ipv6 address to the runner
run: |
ip addr add fd00:1234:5678:90ab:cdef:1234:5678:90ab/64 dev eth0
ip addr add fd00::2/64 dev eth0
- name: adding default route
run: ip -6 route add default dev eth0 metric 100
run: ip -6 route add default via fd00::1 dev eth0 metric 1
- name: Test IPv6 connectivity
run: ping6 -c 3 google.com || echo "IPv6 not working on runner"