Netperf と OUTPUT iptables ルール

Netperf と OUTPUT iptables ルール

特定のホストとポートの送信トラフィックをブロックしようとしています。

私が使用している iptables コマンドは次のとおりです。

iptables --wait --append OUTPUT --jump DROP --source 192.168.136.216 --destination 192.168.137.156 --out-interface enp12s0f0 --protocol tcp --dport 15900

次に、192.168.137.156 で netserver を起動し、ローカルで netperf を起動します。

netperf -H 192.168.129.156,inet -l 2 -t TCP_STREAM -- -H 192.168.129.156 -L 192.168.128.216 -P ,15900

Netperf は正常に終了し、ネットサーバー ホストでパケットをスニッフィングできるようになりました。

11:44:48.697129 IP 192.168.128.216.62395 > 192.168.129.156.15900: Flags [S], seq 162822509, win 29200, options [mss 1460,sackOK,TS val 180200064 ecr 0,nop,wscale 7], length 0

送信トラフィックがブロックされないのはなぜですか? この iptables コマンドは間違っていますか?

関連情報