Enhance IPv6 configuration in test workflow by adding additional route checks and displaying IPv6 addresses
All checks were successful
TMW Global Networks Dokumentation / build (push) Successful in 11s

This commit is contained in:
Tizian Maxime Weigt 2025-04-27 14:46:31 +02:00
parent 052412ceb1
commit babc6dbd95

View File

@ -17,11 +17,15 @@ jobs:
- name: show ip addr - name: show ip addr
run: ip a run: ip a
- name: show ip route - name: show ip route
run: ip route run: ip -6 route
- name: adding an ipv6 address to the runner - name: adding an ipv6 address to the runner
run: | run: |
ip addr add fd00::2/64 dev eth0 ip addr add fd00::2/64 dev eth0
- name: adding default route - name: adding default route
run: ip -6 route add default via fd00::1 dev eth0 metric 1 run: ip -6 route add default via fd00::1 dev eth0 metric 1
- name: show ip addr
run: ip a
- name: show ip route
run: ip -6 route
- name: Test IPv6 connectivity - name: Test IPv6 connectivity
run: ping6 -c 3 google.com || echo "IPv6 not working on runner" run: ping6 -c 3 google.com || echo "IPv6 not working on runner"