Benjamin John
Occasional Visitor
Is it possible to only allow certain MAC addresses during specific times using parental controls?
Thank You
Thank You
Can it? As far as I could see you can only block/allow individual clients. You can't block everything by default and then create a whitelist.Yes, Parental Control can be used for this.
I thought he wanted certain MACs to only have access during specific time.Can it? As far as I could see you can only block/allow individual clients. You can't block everything by default and then create a whitelist.
Yes, I only want certain MAC's to have access to the Internet from 12 AM to 6 AM.
Is that possible?
MAC_ADDR='
90:8a:81:93:e0:0b
78:5e:3c:49:af:80
ee:3b:7d:ed:c8:52
'
for mac in $MAC_ADDR; do
iptables -I FORWARD -i br+ -m mac --mac-source $mac \
-m time --timestart 00:00 --timestop 06:00 \
--weekdays Mon,Tue,Wed,Thu,Fri,Sat,Sun --kerneltz -j REJECT
done
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!