From f77ecae5bc3468281ce1a1100cb32570ccb7443d Mon Sep 17 00:00:00 2001 From: Tizian Maxime Weigt Date: Sun, 27 Apr 2025 14:43:11 +0200 Subject: [PATCH] Adding ipv6 Supprt --- .gitea/workflows/test.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 3fc19e6..e66a5e8 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -6,17 +6,14 @@ jobs: build: runs-on: alpine-latest steps: - - name: Run Docker Container with IPv6 - run: | - docker run --rm --sysctl net.ipv6.conf.all.disable_ipv6=0 \ - --sysctl net.ipv6.conf.default.disable_ipv6=0 \ - tizianweigt/alpine-custom:latest - - name: Enable IPv6 in Runner + - name: Enable IPv6 in Runner and prepare for IPv6 run: | sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0 sudo sysctl -w net.ipv6.conf.default.disable_ipv6=0 sudo sysctl -w net.ipv6.conf.eth0.disable_ipv6=0 sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 + sudo sysctl -w net.ipv6.conf.all.accept_ra=1 + sudo sysctl -w net.ipv6.conf.default.accept_ra=1 - name: show ip addr run: ip a - name: show ip route