Hi all
I am wondering why when I set a DHCP server on a specific port, then block all incoming traffic with
ip firewall filter add chain=input action=drop
I am still able to recive an Ip address from DHCP server
first I think that there is an invisible rule which accepts that traffic .. but when I add a passthrough rule in a mangle table
ip firewall mangle add chain=input protocol=udp dst-port=67 action=passthrough
and do some dhcp traffic (ipconfig /renew (WinXP)) I noticed that that rule "cautches" this traffic so it means that there is no ACCEPT rule before my added rule.
So .. how could that be? and how I can filter certain DHCP requests (generaly traffic) from some IPs using built in firewall?
thx 4 suggestions