search for: tozeus

Displaying 1 result from an estimated 1 matches for "tozeus".

Did you mean: dozens
2007 Apr 18
0
[Bridge] NAT on a bridge (solved sortof)
...50 ( using a /16 network at home ) Now get the router to send all incomming traffic to .50 DNAT traffic you want on your bridge to .51 and other traffic to say .101 Now it works .. very strange, hey works here. <-------------------- rules ------------------------------> iptables -t nat -N toZeus iptables -t nat -I toZeus -m physdev --physdev-in eth1 \ -s ! x.x.0.0/16 -j DNAT --to x.x.x.51 iptables -t nat -N toHerc iptables -t nat -I toHerc -m physdev --physdev-in eth1 \ -s ! x.x.0.0/16 -j DNAT --to x.x.x.101 iptables -t nat -I PREROUTING -p tcp -m multiport \ -d x.x.x.50 --destination-...