The traffic I want to block can be sniffed as below with tcpdump:
So I wanted to write a rule block any UDP destination port 443 traffic.
However, It matches and blocks if I write rule as below:
Do you have any remarks?
I am using PF in FreeBSD 10 Alpha 2.
Code:
19:16:22.391164 IP 95.95.95.95.2036 > 10.10.10.10.443: UDP, length 8192
So I wanted to write a rule block any UDP destination port 443 traffic.
Code:
block drop quick on igb3 inet proto udp to any port 443 Traffic does not match and does not blocked.
However, It matches and blocks if I write rule as below:
Code:
block drop quick on igb3 inet proto udp to 10.10.10.10
Do you have any remarks?
I am using PF in FreeBSD 10 Alpha 2.