Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Help with ports

Newbie Spellweaver
Joined
Nov 27, 2013
Messages
47
Reaction score
0
hello friends I have windows 7 and quiciera know how I can open the port on my router and my pc that I open firewall and check in and I get intennet that are closed and I can not abrilos
as I can do in that case if you could help me thanks :)


andri21 - Help with ports - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Nov 27, 2013
Messages
47
Reaction score
0
Is the port opened on the centos machine and listening to your wan ip?


I remove and release centos firewall ports with this command

/ sbin / iptables-P INPUT ACCEPT
/ sbin / iptables-P FORWARD ACCEPT
/ sbin / iptables-P OUTPUT ACCEPT
/ sbin / iptables-X -F/sbin/iptables
/ sbin / iptables-t nat-F
/ sbin / iptables-t nat-X
/ sbin / iptables-t mangle-F
/ sbin / iptables-t mangle-X
/ sbin / iptables-L-n

I hope your friend is well answer :)
 
Newbie Spellweaver
Joined
Nov 27, 2013
Messages
47
Reaction score
0
I wanted to know if the service is actually listening on that port and on the wan ip.

is one of the port you try to open and I leave the rest the same port so

38100
38200
38121
38101
I leave all that well: (
 
Newbie Spellweaver
Joined
Nov 27, 2013
Messages
47
Reaction score
0
Post the output of:

this is what you asked me:

netstat -tulpn:
Code:
Proto Recv-Q Send-Q Local Address               Foreign Address            Stat                  e       PID/Program name
tcp        0      0 127.0.0.1:     2208                         0.0.0.0:*                   LIST                  EN      2507/./hpiod
tcp        0      0 0.0.0.0: 32001                          0.0.0.0:*                          LIST                  EN      2625/RockAndRollITS
tcp        0      0 0.0.0.0:38180                         0.0.0.0:*                           LIST                  EN      2667/GlobalDBAgent
tcp        0      0 0.0.0.0:38181                           0.0.0.0:*                           LIST                  EN      2644/DBAgent_01
tcp        0      0 0.0.0.0:38190                         0.0.0.0:*                           LIST                  EN      2714/CashDBAgent
tcp        0      0 0.0.0.0:111                             0.0.0.0:*             LIST                  EN      2202/portmap
tcp        0      0 0.0.0.0:32080                         0.0.0.0:*                           LIST                  EN      2597/AuthDBAgent
tcp        0      0 0.0.0.0:62001                         0.0.0.0:*                          LIST                  EN      2625/RockAndRollITS
tcp        0      0 0.0.0.0:724                            0.0.0.0:*                              LIST                  EN      2238/rpc.statd
tcp        0      0 0.0.0.0:37110                         0.0.0.0:*                           LIST                  EN      2742/EventDBAgent
tcp        0      0 0.0.0.0:22                              0.0.0.0:*                               LIST                  EN      2525/sshd
tcp        0      0 127.0.0.1:631                         0.0.0.0:*                           LIST                  EN      2534/cupsd
tcp        0      0 0.0.0.0:38201                         0.0.0.0:*                           LIST                  EN      2878/PartySvr_01
tcp        0      0 0.0.0.0:38140                         0.0.0.0:*                           LIST                  EN      2770/PCBangDBAgent
tcp        0      0 127.0.0.1:2207                        0.0.0.0:*                         LIST                  EN      2512/python
tcp        0      0 :::22                                             :::*                                                  LIST                  EN      2525/sshd
udp        0      0 0.0.0.0:68                                0.0.0.0:*                                                                         2025/dhclient
udp        0      0 0.0.0.0:68                              0.0.0.0:*                                                                          1835/dhclient
udp        0      0 0.0.0.0:718                            0.0.0.0:*                                                                        2238/rpc.statd
udp        0      0 0.0.0.0:721                            0.0.0.0:*                                                                         2238/rpc.statd
udp        0      0 0.0.0.0:35032                        0.0.0.0:*                                                                    2991/avahi-daemon
udp        0      0 0.0.0.0:5353                          0.0.0.0:*                                                                     2991/avahi-daemon
udp        0      0 0.0.0.0:111                            0.0.0.0:*                                                                         2202/portmap
udp        0      0 0.0.0.0:631                            0.0.0.0:*                                                                         2534/cupsd
udp        0      0 :::48697                                   :::*                                                                                           2991/avahi-daemon
udp        0      0 :::5353                                     :::*                                                                                             2991/avahi-daemon
 
Last edited:
Newbie Spellweaver
Joined
Nov 27, 2013
Messages
47
Reaction score
0
I can't see your ChatNode and WorldSvr daemons listening. Are all daemons running?

if all services are running well and I see my log and I do not get any errors but I get this in worldsrv

[Sun Jan 5 2014 13:04:31.131875 3086642032]: [##ERROR##] open fail ()
[Sun Jan 5 2014 13:04:31.132055 3086642032]: [##ERROR##] open fail ()
[Sun Jan 5 2014 13:04:31.132142 3086642032]: [##ERROR##] open fail ()
[Sun Jan 5 2014 13:04:31.132269 3086642032]: [##ERROR##] open fail ()
[Sun Jan 5 2014 13:04:31.132366 3086642032]: [##ERROR##] open

not if it has to do something?
 
The Cat in the Hat
Legend
Joined
Oct 26, 2005
Messages
4,475
Reaction score
677
Yes, the WorldSvr is trying to listen on a port that is already in use. Use ps -A to identify all running cabal daemons and then kill them with the kill pid (process id) command.
 
Back
Top