Skip to content

Instantly share code, notes, and snippets.

@natbusa
Created September 14, 2020 16:34
Show Gist options
  • Save natbusa/63b6d98a68476fc657ac8b1c56292519 to your computer and use it in GitHub Desktop.
Save natbusa/63b6d98a68476fc657ac8b1c56292519 to your computer and use it in GitHub Desktop.
how to disable ip6 connection on wifi
#!/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