Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #34  
Old 08-08-2014, 05:06 PM
Shin Noir's Avatar
Shin Noir
Legendary Member
 
Join Date: Apr 2002
Location: Seattle, WA
Posts: 506
Default

I'd maybe check:
Do you have DMZ set? Some times DMZ screws with port range.
Do you have a single port forwarded that the port range includes? Some times, port range can be lesser priority than a single port.

And yeah, let us know the router details, there's wizards online.

To debug your setup, seeing if ports are being listened to on your server:
$ netstat -vatn
Here's how mine looks:
Code:
tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:44258           0.0.0.0:*               LISTEN
tcp        0      0 127.0.0.1:59337         127.0.0.1:3306          ESTABLISHED
tcp        0      0 10.0.0.111:22           10.0.0.105:52937        ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59343         ESTABLISHED
tcp        0      0 127.0.0.1:40090         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59339         ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59179         ESTABLISHED
tcp        0      0 127.0.0.1:59345         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59332         ESTABLISHED
tcp        0      0 127.0.0.1:40100         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:40086         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59345         ESTABLISHED
tcp        0      0 127.0.0.1:59339         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40100         ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40090         ESTABLISHED
tcp        0      0 127.0.0.1:40092         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59337         ESTABLISHED
tcp        0      0 127.0.0.1:59179         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:40096         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:59180         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40086         ESTABLISHED
tcp        0      0 127.0.0.1:40088         127.0.0.1:9000          ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40098         ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59347         ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40092         ESTABLISHED
tcp        0      0 127.0.0.1:59343         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:59332         127.0.0.1:3306          ESTABLISHED
tcp        0     96 10.0.0.111:22           10.0.0.105:54820        ESTABLISHED
tcp        0      0 127.0.0.1:3306          127.0.0.1:59180         ESTABLISHED
tcp        0      0 10.0.0.111:22           10.0.0.105:61247        ESTABLISHED
tcp        0      0 127.0.0.1:59347         127.0.0.1:3306          ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40088         ESTABLISHED
tcp        0      0 127.0.0.1:40098         127.0.0.1:9000          ESTABLISHED
tcp        0      0 10.0.0.111:50612        66.55.145.2:5998        ESTABLISHED
tcp        0      0 127.0.0.1:9000          127.0.0.1:40096         ESTABLISHED
tcp6       0      0 :::111                  :::*                    LISTEN
tcp6       0      0 :::80                   :::*                    LISTEN
tcp6       0      0 :::22                   :::*                    LISTEN
tcp6       0      0 ::1:25                  :::*                    LISTEN
tcp6       0      0 :::52100                :::*                    LISTEN
and netstatus -vaun
Code:
Proto Recv-Q Send-Q Local Address           Foreign Address         State
udp        0      0 0.0.0.0:9000            0.0.0.0:*
udp        0      0 0.0.0.0:7000            0.0.0.0:*
udp        0      0 0.0.0.0:7001            0.0.0.0:*
udp        0      0 0.0.0.0:7002            0.0.0.0:*
udp        0      0 0.0.0.0:7003            0.0.0.0:*
udp        0      0 0.0.0.0:7004            0.0.0.0:*
udp        0      0 0.0.0.0:974             0.0.0.0:*
udp        0      0 127.0.0.1:1006          0.0.0.0:*
udp        0      0 0.0.0.0:9675            0.0.0.0:*
udp        0      0 0.0.0.0:7778            0.0.0.0:*
udp        0      0 0.0.0.0:40812           0.0.0.0:*
udp        0      0 0.0.0.0:68              0.0.0.0:*
udp        0      0 0.0.0.0:111             0.0.0.0:*
udp6       0      0 :::974                  :::*
udp6       0      0 :::111                  :::*
udp6       0      0 :::32999                :::*
udp6       0      0 :::59675                :::*
This will let you know if other people can connect to a port that should be followed:
http://www.subnetonline.com/pages/ne...rt-scanner.php
__________________

~Shin Noir
DungeonEQ.com
Reply With Quote
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 07:31 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3