I have set up forwarding to REJECT for zone LAN to WAN in Luci (http://openwrt.kreteni.eu/firewall.gif), but the traffic still passes thru the router
When I look at iptables rules (http://openwrt.kreteni.eu/iptables.gif), I can see my rule enabling http traffic followed by automatically generated rule enabling all traffic. Where and why this rule number four (see the picture) is created?
my /etc/config/firewall file
config rule
option src 'lan'
option dest 'wan'
option name 'http'
option family 'ipv4'
option proto 'tcp'
option src_ip '172.21.163.80/28'
option dest_port '80'
option target 'ACCEPT'
config defaults
option syn_flood '1'
option forward 'REJECT'
option input 'REJECT'
option output 'REJECT'
config zone
option name 'lan'
option forward 'REJECT'
option output 'ACCEPT'
option input 'REJECT'
option family 'ipv4'
option network 'lan'
config zone
option name 'wan'
option masq '1'
option mtu_fix '1'
option input 'DROP'
option forward 'DROP'
option family 'ipv4'
option network 'wan'
option output 'ACCEPT'
config forwarding
option dest 'wan'
option src 'lan'