Created
September 14, 2020 16:34
-
-
Save natbusa/63b6d98a68476fc657ac8b1c56292519 to your computer and use it in GitHub Desktop.
how to disable ip6 connection on wifi
This file contains 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