回答:
テーブルではなく、チェーンを作成しようとしていると思います。
-N, --new-chain chain
Create a new user-defined chain by the given name. There must be no target of that name already.
例(-t filter
暗黙):
iptables -N Services
iptables -A INPUT -j Services
iptables -A Services -m tcp -p tcp --dport 80 -j ACCEPT
テーブルは-t
オプションで選択できます:
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
また、を使用しているiptables-restore
場合、上記の2つのルールを組み合わせて次のことができます。
*nat
-A POSTROUTING -j MASQUERADE
COMMIT
*filter
:Services -
-A INPUT -j Services
-A Services -m tcp -p tcp --dport 80 -j ACCEPT
COMMIT
テーブルの作成はカーネルレベルで行われます。通常、カーネルのTCP / IP機能に追加しない限り、新しいものを作成する必要はありません。
-N
フラグを使用して、既存のテーブルの1つに新しいチェーンを作成する可能性があります。