# nmcli connection edit id XXXX
nmcli> describe 802-11-wireless.mac-address
=== [mac-address] ===
[NM property description]
If specified, this connection will only apply to the Wi-Fi device whose permanent MAC address matches. This property does not change the MAC address of the device (i.e. MAC spoofing).
Isso também pode ser encontrado em nm-settings(5)
.
Portanto, apenas não especifique isso removendo-o. Que pode ser roteirizado simplesmente com:
# nmcli connection modify id XXXX 802-11-wireless.mac-address ''
, conforme explicado em nmcli(1)
:
modify [--temporary] [id | uuid | path] ID { option value | [+|-]setting. property value}...
Add, modify or remove properties in the connection profile.
To set the property just specify the property name followed by the value. An empty value ("") removes the property value.
Verifique se você ainda tem outras propriedades (por exemplo, connection.interface-name
) para identificar sem ambiguidade o dispositivo correto. E tenha cuidado ao reconfigurar as configurações com uma ferramenta gráfica, isso pode reaplicar alguns valores padrão indesejados.