View Single Post
  #2  
Old 07-17-2013, 09:33 PM
wolfwalkereci
Discordant
 
Join Date: Dec 2005
Posts: 435
Default

Lets see if I can be of any help. Right now my router is set to forward the following.
9000:UDP -server
10500:UDP -UCS
5998-5999:TCP/UDP - login
7000-7100:UDP - zones

Added -> world,zone,ucs to firewall exception list.

Code:
<?xml version="1.0">
<server>
    <world>
        <shortname>ShortName</shortname>
        <longname>Long Name</longname>

        <!-- Only specify these two if you really think you need to.  (read: You don't) -->
        <address>derp.no-ip.info</address>
        <localaddress>192.168.1.100</localaddress>

        <!-- Loginserver information.  Defaults shown -->
        <loginserver1> <!-- Ignore this one. It's just an example you can login to more then one login -->
            <host>derp.no-ip.info</host>
            <port>5998</port>
            <account>MyUserNamePriv</account>
            <password>MyPassword</password>
        </loginserver1>
        <loginserver2>
            <host>eqemulator.net</host>
            <port>5998</port>
            <account>MyUserNameEMU</account>
            <password>MyPassword</password>
        </loginserver2>
        <!-- Server status.  Default is unlocked -->
        <locked/>
        <!--<unlocked/>-->

        <!-- Sets the ip/port for the tcp connections.  Both zones and console (if enabled).  Defaults are shown -->
        <tcp ip="127.0.0.1" port="9000" telnet="disable"/>

        <!-- Sets the shared key used by zone/launcher to connect to world -->
        <key>longasskeyhere</key>
        
        <!-- Enable and set the port for the HTTP service.  Defaults are shown -->
        <http port="9080" enabled="false" mimefile="mime.types" />
    </world>
    <!-- Chatserver information -->
    <chatserver>
        <host>derp.no-ip.info</host>
        <port>10500</port>
    </chatserver>
    
    <!-- Mailserver information -->
    <mailserver>
        <host>derp.no-ip.info</host>
        <port>10500</port>
    </mailserver>

    <zones>
        <defaultstatus>0</defaultstatus>

        <!-- Sets port range for world to use to auto configure zones -->
        <ports low="7000" high="7100"/>
    </zones>

    <!-- Database configuration, replaces db.ini.  Defaults shown -->
    <database>
        <host>127.0.0.1</host>
        <port>3306</port>
        <username>RandomUserName</username>
        <password>RandomPassword</password>
        <db>peq</db>
    </database>
    
    <qsdatabase>
        <host>127.0.0.1</host>
        <port>3306</port>
        <username>RandomUserName</username>
        <password>RandomPassword</password>
        <db>peq</db>
    </qsdatabase>
    
    <!-- Launcher Configuration -->
    <launcher>
        <!-- <logprefix>logs/zone-</logprefix> -->
        <!-- <logsuffix>.log</logsuffix> -->
        <!-- <exe>zone.exe or ./zone</exe> -->
        <!-- <timers restart="10000" reterminate="10000"> -->
    </launcher>

    <!-- File locations.  Defaults shown -->
    <files>
        <!-- <spells>spells_us.txt</spells> -->
        <!-- <opcodes>opcodes.conf</opcodes> -->
        <!-- <logsettings>log.ini</logsettings> -->
        <!-- <eqtime>eqtime.cfg</eqtime> -->
    </files>
    <!-- Directory locations.  Defaults shown -->
    <directories>
        <!-- <maps>Maps</maps> -->
        <!-- <quests>quests</quests> -->
        <!-- <plugins>plugins</plugins> -->
    </directories>
</server>
Pretty much the same stuff as you'll find in all the other threads.
Double check all your settings and that you are using the correct type in your router for port forwarding. If it doesn't work report back.
Reply With Quote