我想通过 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
我尝试过使用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