cheers for spoting that the rules were backwards, i think i must have stuffed them up when putting them into the email. is it actually possible for iptables/netfilter to redirect the packets the way i want it to? if it is possible i dont see why it shouldnt work because as i said in the first question warcraft can use any port it pleases therefor the protocol must be able to handle it ----- Original Message ----- From: "Taylor, Grant" <gtaylor@xxxxxxxxxxxxxxxxx> To: "Doug C" <the_wasp@xxxxxxxxxxxxxxxxxx> Cc: <netfilter@xxxxxxxxxxxxxxxxxxx> Sent: Wednesday, April 20, 2005 7:23 AM Subject: Re: Remapping of starcraft UDP port 6112 > > ADSL=$(/sbin/ifconfig hsb0 | grep "inet addr" | awk -F: '{print $2}' | awk '{print $1}'|sed -n 1p) > > > > iptables -A PREROUTING -t nat -j DNAT -p udp -d $ADSL --dport 63001 --to-destination 192.168.0.3:6112 > > iptables -A POSTROUTING -t nat -j SNAT -p udp -s $ADSL --sport 6112 --to-source 192.168.0.3:63001 > > > > iptables -A PREROUTING -t nat -j DNAT -p udp -d $ADSL --dport 63002 --to-destination 192.168.0.56:6112 > > iptables -A POSTROUTING -t nat -j SNAT -p udp -s $ADSL --sport 6112 --to-source 192.168.0.56:63002 > > Doug, it looks like you might be using the wrong source IP to SNAT your traffic to in your POSTROUTING chain. I would use the following rules and see if they work. > > iptables -t nat -A PREROUTING -p udp -d $ADSL --dport 63001 -j DNAT --to-destination 192.168.0.3:6112 > iptables -t nat -A POSTROUTING -p udp -s 192.168.0.3 --sport 6112 -j SNAT --to-source $ADSL:63001 > > iptables -t nat -A PREROUTING -p udp -d $ADSL --dport 63002 -j DNAT --to-destination 192.168.0.56:6112 > iptables -t nat -A POSTROUTING -p udp -s 192.168.0.56 --sport 6112 -j SNAT --to-source $ADSL:63002 > > It looks like you had your IPs backwards in your POSTROUTING rules. However I'm a bit perplexed that your regular SNATing rules did not take care of this. You may also need to explicitly allow traffic for these connections in your FORWARD chain if you have set the default policy to DROP. > > > > Grant. . . . > >