You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
system: Linux void 4.18.8_1 #1 SMP PREEMPT Sun Sep 16 04:42:29 UTC 2018 x86_64 GNU/Linux
DNS service: dnsmasq
Hello, so I've having some issues in regards to having my MAC address randomized upon making a connection. I have alright setup my auto-connection with nordnm sync -uka blah blah blah, but after this running nordnm mac --random will always output two things; the first being irrelavent to this issue
[ERROR] [nordnm.utils]: Could not check PyPi for latest version.
And the second
[ERROR] [nordnm.networkmanager]: Could not save MAC address configuration to '/usr/lib/NetworkManager/conf.d/nordnm_mac.conf'
Ok, no problem. Probably because the network interface is busy. So let's just try stopping dnsmasq and NetworkManager and changing the MAC myself with macchanger.
> sv stop dnsmasq && sv stop NetworkManager
ok: down: dnsmasq: 0s, normally up
ok: down: NetworkManager: 0s, normally up
> sudo macchanger -r -b my_interface
Current MAC: ac:2b:6e:8e:61:dd (unknown)
Permanent MAC: ac:2b:6e:8e:61:dd (unknown)
[ERROR] Could not change MAC: interface up or insufficient permissions: Device or resource busy
Hmm that's weird, let me try seeing if anything is doing something with the interface.
Hmmm, why is dhclient running? I don't use that or dhcpcd. Let me just kill it and try again.
> sudo pkill dhclient
> ps aux | rg wlo1
bigdaddy 6499 0.0 0.0 24716 6788 pts/2 S+ 10:36 0:00 rg my_interface
> sudo macchanger -r -b my_interface
Current MAC: ac:2b:6e:8e:61:dd (unknown)
Permanent MAC: ac:2b:6e:8e:61:dd (unknown)
[ERROR] Could not change MAC: interface up or insufficient permissions: Device or resource busy
Alright well that's annoying. Normally, before I used this tool, all I did was run sudo sv stop dnsmasq && sudo sv stop NetworkManger ; sudo macchanger -r -b wlo1 ; sudo sv start dnsmasq && sudo sv start NetworkManager and that worked fine, and then I'd connect to a server.
So this tool is running some other process that's keeping my network interface busy. I'm no expert by any means at all, but my only other guess might be the dbus-daemon.
So until I know what else is interacting with my network interface, I can't randomize my MAC address.
The text was updated successfully, but these errors were encountered:
Nordnm does all operations through NetworkManager, so no new processes (except for ping during benchmarking) are ever spawned directly. Since restarting NetworkManager does not solve this, I am a little perplexed.
When the tool changes MAC addresses, it is simply leaving a config file at /usr/lib/NetworkManager/conf.d/nordnm_mac.conffollowing steps such as these. This appears to have been unsuccessful in your case. Could you maybe see if this directory does indeed exist and if so, what its permissions and contents are?
My best guess right now is that NetworkManager and macchanger are in conflict somehow somewhere along the lines of this issue.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
nordnm version: 0.5.5
system: Linux void 4.18.8_1 #1 SMP PREEMPT Sun Sep 16 04:42:29 UTC 2018 x86_64 GNU/Linux
DNS service: dnsmasq
Hello, so I've having some issues in regards to having my MAC address randomized upon making a connection. I have alright setup my auto-connection with
nordnm sync -uka blah blah blah
, but after this runningnordnm mac --random
will always output two things; the first being irrelavent to this issueAnd the second
Ok, no problem. Probably because the network interface is busy. So let's just try stopping dnsmasq and NetworkManager and changing the MAC myself with
macchanger
.Hmm that's weird, let me try seeing if anything is doing something with the interface.
Hmmm, why is dhclient running? I don't use that or dhcpcd. Let me just kill it and try again.
Alright well that's annoying. Normally, before I used this tool, all I did was run
sudo sv stop dnsmasq && sudo sv stop NetworkManger ; sudo macchanger -r -b wlo1 ; sudo sv start dnsmasq && sudo sv start NetworkManager
and that worked fine, and then I'd connect to a server.So this tool is running some other process that's keeping my network interface busy. I'm no expert by any means at all, but my only other guess might be the
dbus-daemon
.So until I know what else is interacting with my network interface, I can't randomize my MAC address.
The text was updated successfully, but these errors were encountered: