Last active
October 9, 2024 20:21
-
-
Save ctubbsii/a3f15f7806830945a0b6c68ec0e23afa to your computer and use it in GitHub Desktop.
NetworkManager configuration to disable WiFi MAC address randomization while scanning
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
# Place file in | |
# /etc/NetworkManager/conf.d/90-disable-randomization.conf | |
[device-mac-randomization] | |
# "yes" is the default for scanning in Fedora 25 | |
wifi.scan-rand-mac-address=no | |
[connection-mac-randomization] | |
ethernet.cloned-mac-address=random | |
wifi.cloned-mac-address=random |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. How should I use the data you shared?