====== BSSID の変更 ====== {{:linux:openwrt:openwrt_bssid_change_001.png?500|OpenWrt BSSID change 001}}\\ BSSID を変更するには /etc/config/wireless ファイルの該当 **config wifi-iface** セクションに **option macaddr** を追記する🤤\\ config wifi-iface 'default_radio0' ... option macaddr '94:83:C4:1C:29:52' config wifi-iface 'default_radio1' ... option macaddr '94:83:C4:1C:29:51'
# vi /etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option path '18000000.axi/bcma0:7/pci0000:00/0000:00:00.0/0000:01:00.0/bcma1:1'
        option band '5g'
        option cell_density '0'
        option channel 'auto'
        option country 'JP'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option encryption 'psk2'
        option key 'Wireless Security Key!'
        option ssid 'TomoyanWRT-ow5G'
        option macaddr '94:83:C4:1C:29:52'

config wifi-device 'radio1'
        option type 'mac80211'
        option path '18000000.axi/bcma0:8/pci0001:00/0001:00:00.0/0001:01:00.0/bcma2:1'
        option band '2g'
        option cell_density '0'
        option channel 'auto'
        option country 'JP'

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option encryption 'psk2'
        option key 'Wireless Security Key!'
        option ssid 'TomoyanWRT-ow24G'
        option macaddr '94:83:C4:1C:29:51'
        
**option macaddr** で BSSID を設定したら network を再起動すると反映する😃\\
# service network restart
http://192.168.1.1/cgi-bin/luci/admin/network/wireless LuCI WebUI でも確認できる🤔\\ {{:linux:openwrt:openwrt_bssid_change_001.png|OpenWrt BSSID change 001}}\\ ===== 参考文献 ===== [[https://forum.openwrt.org/t/significant-bssid-change/57166|Significant BSSID change - Installing and Using OpenWrt / Network and Wireless Configuration - OpenWrt Forum]]\\ [[https://openwrt.org/docs/guide-user/base-system/uci|[OpenWrt Wiki] The UCI system]]\\