I've adding IPFW to kernel.
and added
to /etc/rc.conf.
The issues I'm now having:
1. On boot it never loads /usr/local/etc/IPFW.rules just loads the default "...deny ip from any to any"?
2. After I manually load IPFW.rules via (
All local 192.168.0.100 services like sshd(8) httpd all running and following rules after manual script run.
Services on alias 192.168.0.101 such as named are all blocked.
So 2 main questions for now,
1. Why will it not run /usr/local/etc/IPFW.rules on boot when even thou I added
to rc.conf.
2. How can I add access to alias IP.
A bit tired hope this makes sense.
Thank you in advance.
Code:
options IPFIREWALL
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=10
Code:
firewall_enable="YES"
firewall_script="/usr/local/etc/IPFW.rules"
The issues I'm now having:
1. On boot it never loads /usr/local/etc/IPFW.rules just loads the default "...deny ip from any to any"?
2. After I manually load IPFW.rules via (
sh /usr/local/etc/IPFW.rules) rules are the correct but I cannot access an alias IP address that is running bind.All local 192.168.0.100 services like sshd(8) httpd all running and following rules after manual script run.
Services on alias 192.168.0.101 such as named are all blocked.
So 2 main questions for now,
1. Why will it not run /usr/local/etc/IPFW.rules on boot when even thou I added
Code:
firewall_script="/usr/local/etc/IPFW.rules"
2. How can I add access to alias IP.
A bit tired hope this makes sense.
Thank you in advance.