I use whiterussian but I want to block udp traffic in the router (because abuse from the others routers users), specifically I want to block udp traffic comming from a certain ip address by example 192.168.1.190, (all traffic incoming and outbound, except the dns traffic) I try several iptables commands like
first, I try to block all traffic (after I release dns traffic)
iptables -A X -p udp -s 192.168.1.190 -j DROP
where X is INPUT OR OUTPUT, prerouting_vlan1, prerouting_rule, etc.
But this not works, I watched it throught the iptraf program on router (Linksys wrt54gL) (uname -r 2.4.30
I want to know what am I doing wrong? or How I can do, the rule that allow to do what I want?
Thanks for your help.