Wifi timer limitation

Hi,
is it possible to make a "timer" for wifi, for a speciied mac-address device ?
I want to make a policy for wifi use.

One option is to use firewall traffic rules, it won't be a timer but can be used to restrict the hours and days of week that a device has WAN (internet) access.

either edit /etc/config/firewall and add traffic rules or use LUCU->Network->Firewall->Traffic

Eg: to restrict night time use from 7:30pm to 7:30am

config rule
	option src 'lan'
	option dest 'wan'
	option name 'example'
	option src_mac 'AA:BB:CC:11:22:33'
	option target 'REJECT'
	option weekdays 'Sun Mon Tue Wed Thu Fri Sat'
	option start_time '19:30:00'
	option stop_time '07:30:00'

https://openwrt.org/docs/guide-user/firewall/parental-controls

thank you very match tmomas.
The "Parental-controls" is it what I need.
Wonderful !

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