I am new here and I hope find answer to my question i hvae set rule in openwrt iptables
iptables -A FORWARD -s 192.168.2.14 -m time --timestart 8:00 --timestop 18:30 -j ACCEPT
iptables -A FORWARD -s 192.168.2.14 -j DROP
this rules not worked but when i have changed to this one it worked
iptables -A forwarding_rule -s 192.168.2.14 -m time --timestart 8:00 --timestop 18:30 -j ACCEPT
iptables -A forwarding_rule -s 192.168.2.14 -j DROP
can any one explain to me the wrong i have done