Displaying 1 result from an estimated 1 matches for "toherc".
2007 Apr 18
0
[Bridge] NAT on a bridge (solved sortof)
...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-ports \
ftp,sftp,ssh,smtp,ssmtp,http,pop3,pop3s,imap,imaps \
-j toZeus
iptables -t nat -I PREROUTING -p udp -m mul...