How to maintain single Mac address filter for my 2 SSID

How to maintain single Mac address filter for my 2 SSID. Is there a way I can copy from the cli ?

mac address filter, for doing what ?

In /etc/config/wireless you will have something like this:

config wifi-iface 'default_radio0'
        option device 'radio0'
        option network 'lan'
        option mode 'ap'
        option macfilter 'allow'
        option ssid '***'
        option key '***'
        option encryption 'psk2'
        list maclist 'xx:xx:xx:xx:xx:xx'
        list maclist 'xx:xx:xx:xx:xx:xx'
        option disassoc_low_ack '0'

.....

config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option macfilter 'allow'
        option key '***'
        option ssid '***'
        option encryption 'psk2'

Just copy the lines starting with "list maclist" from the "default_radio0" section into
the "default_radio1" section and restart the wireless system.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.