Server isn't listing properly on MS, even though ports are fowarded.

Status
Not open for further replies.

RailFox

Proud User of SRB2 Linux
So... Yeah.
I had my dad change the computer port 5029 sends to, I decided I didn't like it, so I had him change it back. Now, the old computer's hosted server is refusing to display things on the MS, as if ports aren't fowarded. (Can't get ping, players, etc.)

Comp 1 (Original host comp.) : Windows 7 laptop
Comp 2 (Second host comp.) : Fedora 14 desktop

I've tried commenting out the line in /etc/sysconfig/iptables on the Fedora machine that refers to port 5029, then restarting the iptables service, but no avail.

Any help would be appreciated. Thanks!

-RailFox
 
UDP or TCP? It matters, it should be UDP

iptables -A PREROUTING -t nat -i eth1 -p udp --dport 5029 -j DNAT --to 192.168.1.5:5029

iptables -A INPUT -p udp -m state --state NEW --dport 5029 -i eth1 -j ACCEPT

Change 192.168.1.5 to match your LAN IPv4 address

I'm assuming that a linux box is the NAT device for your network.

How is your network setup?

Can you pastebin a dump of your iptables rules via iptables -L -v -n ?
 
Last edited:
Status
Not open for further replies.

Who is viewing this thread (Total: 1, Members: 0, Guests: 1)

Back
Top