Skip to content

Commit

Permalink
Merge pull request #46 from samip5/patch-1
Browse files Browse the repository at this point in the history
fix: IPv6 route removal
  • Loading branch information
angelnu authored Oct 5, 2024
2 parents 4aa68de + b5d69d8 commit 55e34b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/client_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ip route del 0/0 || /bin/true

# We don't support IPv6 at the moment, so delete default route to prevent leaking traffic.
echo "Deleting existing default IPv6 route to prevent leakage"
ip route -6 del default || /bin/true
ip -6 route del default || /bin/true

# After this point nothing should be reachable -> check
if ping -c 1 -W 1000 8.8.8.8; then
Expand Down

0 comments on commit 55e34b4

Please sign in to comment.