View Single Post
  #2 (permalink)  
Old December 6th, 2002
FuzzeX FuzzeX is offline
Novicius
 
Join Date: December 6th, 2002
Location: Washington, USA
Posts: 4
FuzzeX is flying high
Default

I added the following line to my firewall script and everything seems to work fine:

$IPTABLES -A INPUT -i $EXTIF (external interface) -m state --state NEW,ESTABLISHED,RELATED -p tcp -s $UNIVERSE (where ever you want to accept connections from) -d $EXTIP (external ip address) --dport 6346 -j ACCEPT

If you have a line for a web server you might try copying it and changing the port.

Best of luck.
Reply With Quote