From cdcef355157dedf3c363f9840826c22289e70fae Mon Sep 17 00:00:00 2001 From: Tizian Maxime Weigt Date: Sun, 27 Apr 2025 14:44:43 +0200 Subject: [PATCH] adding manual ipv6 settings --- .gitea/workflows/test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index e66a5e8..c4a5773 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -18,5 +18,10 @@ jobs: run: ip a - name: show ip route 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 + - name: adding default route + run: ip -6 route add default dev eth0 metric 100 - name: Test IPv6 connectivity run: ping6 -c 3 google.com || echo "IPv6 not working on runner" \ No newline at end of file