Slackware 14.2 Linux nftables
O nftable é nativo na instalação do Slackware 14.2
# mv -v nftables.conf /etc/nftables/
- copiar ou mover o nftables.conf (arquivo de configuração) para "/etc/nftables/"
# chmod +x /etc/nftables/nftables.conf
- mudando as permissões
# mv -v rc.nftables /etc/rc.d/
- copiar ou mover o rc.nftables (arquivo de inicialização) para "/etc/rc.d/"
# chmod +x /etc/rc.d/rc.nftables
- tornar o script executável durante a inicialização
# vim /etc/rc.d/rc.inet2
| if [ -x /etc/rc.d/rc.nftables ]; then
| /etc/rc.d/rc.nftables start
| fi
- adicione as linhas acima em "/etc/rc.d/rc.inet2" para a inicialização durante o boot
nftable is native to Slackware 14.2 installation
# mv -v nftables.conf /etc/nftables/
- copy or move nftables.conf (configuration file) to "/etc/nftables/"
# chmod + x /etc/nftables/nftables.conf
- changing permissions
# mv -v rc.nftables /etc/rc.d/
- copy or move rc.nftables (initialization file) to "/etc/rc.d/"
# chmod + x /etc/rc.d/rc.nftables
- make the script executable at startup
# vim /etc/rc.d/rc.inet2
| if [-x /etc/rc.d/rc.nftables]; then
| /etc/rc.d/rc.nftables start
| fi
- add the lines above in "/etc/rc.d/rc.inet2" for boot-up
Slackware® is a registered trademark of Patrick Volkerding, Inc. All logos and graphics are copyrighted.
Linux® is a registered trademark of Linus Torvalds