Acho que você está procurando criar uma cadeia , não uma tabela.
-N, --new-chain chain
Create a new user-defined chain by the given name. There must be no target of that name already.
Exemplo ( -t filter
está implícito):
iptables -N Services
iptables -A INPUT -j Services
iptables -A Services -m tcp -p tcp --dport 80 -j ACCEPT
As tabelas podem ser selecionadas com a opção -t
:
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
E se você estiver usando iptables-restore
, as duas regras acima podem ser combinadas para:
*nat
-A POSTROUTING -j MASQUERADE
COMMIT
*filter
:Services -
-A INPUT -j Services
-A Services -m tcp -p tcp --dport 80 -j ACCEPT
COMMIT