How to Schedule blocking a client connected to external AP?

I have RB750GL as my main router 192.168.42.1
and DLINK 850L as my AP 192.168.42.4
An android box connected to 850L’s AP and given static IP 192.168.42.6

I’m trying to restrict internet access for that device from 0000 to 0800.
I tried adding firewall rule to drop forward chain using both IP and MAC but it wasn’t working.

/ip firewall filter
add action=drop chain=input comment="Block access from 0000 till 0800" disabled=no src-address=192.168.42.6 time=\
00h-08h,sun,mon,tue,wed,thu,fri,sat

Can anyone advice how to do this right?

The input chain is for traffic to the router.

To restrict traffic going through the router to the client you should use the forward chain.

Nick

Sorry, I was meant to say I tried both input and forward chain with no success.