I have setup IPFW in FreeBSD 11.
The type in rc.conf is open and it is working:
While I check the rules I see this:
I am confused on last two lines.
is the rule 65535 override 65000 and deny all connections?
But my server's connections are all working fine?
The type in rc.conf is open and it is working:
Code:
firewall_type="open"
Code:
$ sudo ipfw list
00100 allow ip from any to any via lo0
00200 deny ip from any to 127.0.0.0/8
00300 deny ip from 127.0.0.0/8 to any
00400 deny ip from any to ::1
00500 deny ip from ::1 to any
00600 allow ipv6-icmp from :: to ff02::/16
00700 allow ipv6-icmp from fe80::/10 to fe80::/10
00800 allow ipv6-icmp from fe80::/10 to ff02::/16
00900 allow ipv6-icmp from any to any ip6 icmp6types 1
01000 allow ipv6-icmp from any to any ip6 icmp6types 2,135,136
65000 allow ip from any to any
65535 deny ip from any to any
is the rule 65535 override 65000 and deny all connections?
But my server's connections are all working fine?