I'm trying to setup a Hotline server on an internal NATed machine and I'm having problems with getting clients to download. Here's what I have so far: $EXTIF = "eth1" $INTIF = "eth0" $IPTABLES = /sbin/iptables $EXTIP = 12.252.56.159 $IPTABLES -A FORWARD -i $EXTIF -o $INTIF -p tcp --dport 5500:5503 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT $IPTABLES -A FORWARD -i $INTIF -o $EXTIF --dport 5549 -m state --state NEW,ESTABLISHED,RELATED $IPTABLES -A PREROUTING -t nat -p tcp -d $EXTIP --dport 5500:5003 -j DNAT --to $RAGABLE:5500:5503 $IPTABLES -A PREROUTING -t nat --dport 5549 -j SNAT --to $EXTIP According to the Hotline server documentation, incoming connection requests come in on ports 5500 - 5503 while outgoing download connections are on port 5549. People are able to connect to the server just fine, but are unable to download so I'm wondering what rules I need to let the download through. -Chris Born