iptablesで特定のルール削除

表題の件について。

■ 環境

  • Linux

■ iptables

まずは既存のチェインと番号を確認する。

$ iptables -nL --line-numbers

この”–line-numbers“というオプションを知らなかった。

あとは番号を指定して削除するだけである。

$ iptabls -D [chain] [number]

以上。

■ 関連

iptablesのDROPとREJECT