Verifique o diretório / nome do KERNEL atual:
uname -a
Acesse o diretório:
cd /usr/src/sys/amd64/conf/
Faça uma cópia!
cp GENERIC NOVOKERNEL
Altere ident para o novo nome do Kernel!
ee NOVOKERNEL
Adicione as linhas abaixo:
# Configuracoes firewall.
options IPFIREWALL # enables IPFW
options IPFIREWALL_VERBOSE # enables logging for rules with log keyword
options IPFIREWALL_VERBOSE_LIMIT=5 # limits number of logged packets per-entry
options IPFIREWALL_DEFAULT_TO_ACCEPT # sets default policy to pass what is not explicitly denied
options IPDIVERT # enables NAT
# Fim das opcoes para o firewall.
Acesse o diretório usr/src/
cd /usr/src/
Compile as mudanças do novo Kernel!
make buildkernel KERNCONF=NOVOKERNEL
Instale o novo Kernel!
make installkernel KERNCONF=NOVOKERNEL
Reinicie o Servidor!
Adicione as linhas abaixo no diretório /etc/rc.conf
firewall_enable="YES"
firewall_type="open"
firewall_script="/etc/ipfw.rules"
Adicione a linha abaixo no diretório /etc/sysctl.conf
net.inet.ip.fw.verbose_limit=5
Inicie o IPFW!
service ipfw start
sysctl net.inet.ip.fw.verbose_limit=5