I want to be able to block the traffic from a specific host on the network ("turn off the internet access")
Before I had the rule that worked:
iptables -A input_rule -s 192.168.1.206 -j REJECT
The following doesn't seem to work (in /etc/config/firewall):
config rule
option dest wan
option proto tcp
option src_ip 192.168.1.100 (the ip of the computer in question)
option target REJECT
It doesn't block this ip from getting onto the internet. I also tried by mac, and opt src lan (instead of dest wan), and with quotes - doesn't make any difference
PS. I know that I asked this question a few weeks ago. I suspect, that the subject was somewhat unrelated, therefore I am reposting with a better one, rather than bumping the old one.
TIA