Adding ipv6 Supprt
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:43:11 +02:00
parent d41f2bdbdf
commit f77ecae5bc

View File

@ -6,17 +6,14 @@ jobs:
build: build:
runs-on: alpine-latest runs-on: alpine-latest
steps: steps:
- name: Run Docker Container with IPv6 - name: Enable IPv6 in Runner and prepare for 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
run: | run: |
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0 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.default.disable_ipv6=0
sudo sysctl -w net.ipv6.conf.eth0.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.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 - name: show ip addr
run: ip a run: ip a
- name: show ip route - name: show ip route