-
-
Save awsvpc/b6755b4a612b7cd3b3676c45bad51341 to your computer and use it in GitHub Desktop.
how to disable ip6 connection on wifi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for con in natbusa "natbusa 5G"; | |
do | |
echo ipv6.method ignore connection: \"$con\" | |
nmcli con modify "$con" ipv6.method ignore | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment