diff options
Diffstat (limited to '.local/bin/ttl.sh')
-rwxr-xr-x | .local/bin/ttl.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/bin/ttl.sh b/.local/bin/ttl.sh new file mode 100755 index 0000000..2fa2a16 --- /dev/null +++ b/.local/bin/ttl.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Fix default TTL and disable ipv6 making changes permanent +# TODO: replace wlo1 with automatically detected device name + +sudo sysctl \ + net.ipv4.ip_default_ttl=65 \ + net.ipv6.conf.all.disable_ipv6=1\ + net.ipv6.conf.default.disable_ipv6=1 \ + net.ipv6.conf.wlo1.disable_ipv6=1 \ + | sudo tee /etc/sysctl.d/fix-ttl.conf -a + |