Ranking
Original Post
Connection Issues with Fedora 5 and tbd server.
I extract tbd into my root directory, run tbd and it says no connection when i go to the multiplayer menu on my other pc. I can ping my linux server and everything, but not use toribashd. I have the right ip address and port # in the server.txt file... so basically im just confused.
"She stole my virginity!"---"Well you weren't using it..."
Ich bin muede. Ich brauche einen Feieren...
Re: Connection Issues with Fedora 5 and tbd server.
Firewall?
don't unban, he has hard coded userid bypasses everywhere.
Re: Connection Issues with Fedora 5 and tbd server.
You might need to open the firewall.

as root:
iptables -I INPUT -p tcp -m tcp --dport 20180:20190 -j ACCEPT


Re: Connection Issues with Fedora 5 and tbd server.
the -m tcp is not needed. This will do just as well:
iptables -I INPUT -p tcp --dport 20180:20190 -j ACCEPT
if you want to make the change permanent:
open /etc/sysconfig/iptables as root.

find the line which says:
-A RH-Firewall-1-INPUT -m state ESTABLISHED,RELATED -j ACCEPT
above that line, add this:
-A INPUT -p tcp --dport 20180:20190 -j ACCEPT
Then either restart the computer, or run the following command (as root) to update the change in the firewall.
service iptables restart
I hope that helps (these instructions are designed for Fedora, they may not work with another Distro).
I has a flavour
Re: Connection Issues with Fedora 5 and tbd server.
Ahh ok so that's waht it meant when it loaded something with firewall in it at boot... thanks. I'm new to fedora so... yeah. I'll try that now.
"She stole my virginity!"---"Well you weren't using it..."
Ich bin muede. Ich brauche einen Feieren...