Is it possible to host a race behind a linux firewall/router ?
I am using a Linux kernel 2.4 with iptables. From different sources I
figured out that GPL (VROC) uses
some ports, so I tried following iptables rules:
iptables -N gpl
iptables -A gpl -i $INTERFACE -p udp --sport 6969:6971 -j ACCEPT
iptables -A gpl -i $INTERFACE -p udp --sport 32766:32786 -j ACCEPT
iptables -A PREROUTING -t nat -p udp --sport 32766:32786 -i $INTERFACE -j
DNAT --to $DEST_LAN_IP
iptables -A PREROUTING -t nat -p udp --sport 6969:6971 -i $INTERFACE -j
DNAT --to $DEST_LAN_IP
iptables -A FORWARD -j gpl
Unfortunatly it doesn't work. Has anybody an idea, what's wrong or missing
here ?
Thanks in advance and a happy new racing year for everybody,
Uli