MAC-Filter - OpenWrt Forum
forum.openwrt.org › t › solved-wireless-network-macMar 16, 2020 · If you'd like to block an addy you'd add these lines to the iface of the radio - option macfilter 'deny' list maclist 'mac addy to block' To only allow certain addy's just change deny to allow - option macfilter 'allow' If you just need to add an addy it would be this line in the iface - option macaddr 'mac addy to add'
Restricting access to the internet based on devices mac ...
forum.openwrt.org › t › restricting-access-to-theJul 26, 2017 · The idea is to restrict access to the Internet to specific devices (by their mac address) at specific times and of the day on the week. You create a "restriction" and add into it the mac address of the device. Then the device is limited to the "restriction". I believe it can be done using some customized iptables rules that will be used in a combination of some cron tasks that will close\open\restrict\allow the specific group of mac addresses from accessing the Internet.
[OpenWrt Wiki] Parental controls
openwrt.org › docs › guide-userDec 05, 2021 · # Use allow-type or deny-type filter uci set wireless. @ wifi-iface [0].macfilter= "allow" uci set wireless. @ wifi-iface [0].macfilter= "deny" # Append the MAC address to the list uci add_list wireless. @ wifi-iface [0].maclist= "11:22:33:44:55:66" uci add_list wireless. @ wifi-iface [0].maclist= "aa:bb:cc:dd:ee:ff" # Check settings uci show wireless. @ wifi-iface [0] # Save and apply uci commit wireless wifi reload