Displaying 1 result from an estimated 1 matches for "spoof_eth1".
Did you mean:
spoof_eth2
2004 May 08
1
Dual Multipath DSL Script Problem!
...-N eth2
iptables -t mangle -F eth2
iptables -t mangle -A eth2 -p tcp -j LOG --log-prefix " MANGLE_TCP_ETH2 "
iptables -t mangle -A eth2 -p icmp -j LOG --log-prefix " MANGLE_ICMP_ETH2 "
iptables -t mangle -A eth2 -j MARK --set-mark 2
echo "NAT"
iptables -t nat -N SPOOF_ETH1
iptables -t nat -F SPOOF_ETH1
iptables -t nat -A SPOOF_ETH1 -j LOG --log-prefix " SPOOF_ETH1 "
iptables -t nat -A SPOOF_ETH1 -j SNAT --to-source $NET_EXT_IP1
iptables -t nat -N SPOOF_ETH2
iptables -t nat -F SPOOF_ETH2
iptables -t nat -A SPOOF_ETH2 -j LOG --log-prefix " SPOOF_E...