How To Disable Ipv6 Macos

[Solved] How To Disable Ipv6 Macos | Shell - Code Explorer | yomemimo.com
Question : How to Disable IPV6 macOS

Answered by : zaphod-beeblebrox

# ProductName: macOS
# ProductVersion: 12.6
# BuildVersion: 21G115
# networksetup: Version 1.8.4
# to check your os and 'networksetup' versions:
sw_vers; networksetup -version
# to list all network services:
sudo networksetup -listallnetworkservices
# to disable IPV6 on ethernet:
sudo networksetup -setv6off ethernet
# to enable IPV6 on ethernet::
#sudo networksetup -setv6automatic ethernet
# to disable IPV6 on wi-fi:
sudo networksetup -setv6off wi-fi
# to enable IPV6 on wi-fi:
#sudo networksetup -setv6automatic wi-fi
# to disable IPV6 on thunderbolt bridge:
sudo networksetup -setv6off "thunderbolt bridge"
# to enable IPV6 on thunderbolt bridge:
#sudo networksetup -setv6automatic "thunderbolt bridge"

Source : https://www.cnet.com/news/privacy/your-vpn-might-not-be-enough-how-to-disable-ipv6-on-macos/ | Last Update : Tue, 11 Oct 22

Answers related to how to disable ipv6 macos

Code Explorer Popular Question For Shell