I am using EQEMULoginServer. I had to change the eqemu_config.xml to say the login server is at host 127.0.0.1 instead of the dynamic dns name. Will I have issue when people externally connect?
I know. I should just test but I am wondering if anyone else has more experience using eqemuloginserver and a recent config of the eqemu_config.xml.
Have the following:
eqemuloginserver starts ok.
below is my eqemu_config: I am using underfoot:
<server>
<world>
<shortname>eqafdod</shortname>
<longname>The Everquest Afterlife, Dragons of Doom</longname>
<!-- Only specify these two if you really think you need to. (read: You don't) -->
<!-- <address>ucdatasolutions.com</address> -->
<!-- <localaddress>192.168.46.131</localaddress> -->
<!-- <localaddress>192.168.50.131</localaddress> -->
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>127.0.0.1</host>
<port>5999</port>
<account>****</account>
<password>*****</password>
</loginserver>
<!-- 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="localhost" port="9000" telnet="disable"/>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>some long random string</key>
<!-- Enable and set the port for the HTTP service. Defaults are shown -->
<http port="9080" enabled="false" mimefile="mime.types" />
</world>
<!-- Chatserver (channels) information. Defaults shown -->
<chatserver>
<host>channels.ucdatasolutions.com</host>
<port>7778</port>
</chatserver>
<!-- Mailserver (in-game mail) information. Defaults shown -->
<mailserver>
<host>channels.ucdatasolutions.com</host>
<port>7779</port>
</mailserver>
<zones>
<defaultstatus>20</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>localhost</host>
<port>3306</port>
<username>*****</username>
<password>********</password>
<db>peq</db>
</database>
|