-1

LAN ネットワークのトラフィックを Squid プロキシ経由でリダイレクトしたいのですが、iptablesルールに問題があります。

次のルールを使用する場合:

# iptables -I FORWARD -s 192.168.1.0/255.255.255.0 -p tcp --dport 80 -j DNAT --to-destination 192.168.1.196:3128

次のエラーが表示されます。

x_tables: ip_tables: DNAT target: only valid in nat table, not filter

chainを使用してみPREROUTINGましたが、私の iptables には次のようなものはありません:

# iptables -I PREROUTING -s 192.168.1.0/255.255.255.0 -p tcp --dport 80 -j DNAT --to-destination 192.168.1.196:3128
iptables: No chain/target/match by that name.

私はiptablesバージョンを使用していますv.1.4.10

4

1 に答える 1