Skip to content

Commit

Permalink
Avoid using the same address as connectivity test
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwinger233 committed Dec 31, 2023
1 parent 6669499 commit 42198e1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/kernel-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ jobs:
cmd: |
set -ex
docker exec dae curl 1.1.1.1
cat /host/v2ray.access.log | grep -q 'accepted tcp:1.1.1.1:80'
docker exec dae curl 1.1.1.1:443
cat /host/v2ray.access.log | grep -q 'accepted tcp:1.1.1.1:443'
- name: Check WAN IPv4 UDP
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
Expand All @@ -184,8 +184,8 @@ jobs:
cmd: |
set -ex
docker exec dae dig @8.8.8.8 one.one.one.one
cat /host/v2ray.access.log | grep -q 'accepted udp:8.8.8.8:53'
docker exec dae dig @1.1.1.1 one.one.one.one
cat /host/v2ray.access.log | grep -q 'accepted udp:1.1.1.1:53'
- name: Check WAN IPv6 TCP
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
Expand All @@ -194,9 +194,9 @@ jobs:
cmd: |
set -ex
docker exec dae nc -v -w1 2606:4700:4700::1111 80 &> /host/nc.log
docker exec dae nc -v -w1 2606:4700:4700::1111 443 &> /host/nc.log
cat /host/nc.log | grep -q 'succeeded!'
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1111]:80'
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1111]:443'
- name: Check WAN IPv6 UDP
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
Expand All @@ -205,7 +205,7 @@ jobs:
cmd: |
set -ex
if docker exec dae dig @2001:4860:4860::8844 one.one.one.one; then
if docker exec dae dig @2606:4700:4700::1111 one.one.one.one; then
echo "Shouldn't succeed until https://github.com/daeuniverse/dae/issues/387 is resolved"
false
else
Expand Down

0 comments on commit 42198e1

Please sign in to comment.