I'm new to firewalls so please bear with me. In my rc.conf I have just these two firewall statements;
I notice that when I run ipfw list I get the following list of rules;
Since I haven't specified a rule script, where are these rules coming from? Does IPFW insert a base set of default rules if nothing else is specified?
As always, your help is greatly appreciated.
Code:
firewall_enable="yes"
firewall_type="open"
I notice that when I run ipfw list I get the following list of rules;
Code:
thx1138# ipfw list
00050 divert 8668 ip4 from any to any via fxp0
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
Since I haven't specified a rule script, where are these rules coming from? Does IPFW insert a base set of default rules if nothing else is specified?
As always, your help is greatly appreciated.