I am running a private minilogin based server and these settings work for me:
loginserver.ini:
Code:
###Your current configuration is as follows:
loginserver.ini:
[LoginServer]
loginserver=192.168.1.2
loginport=5999
worldname=Shadows Of Norrath
worldaddress=192.168.1.2
locked=false
account=
password=
[WorldServer]
Defaultstatus=
Unavailzone=
[ChatChannelServer]
worldshortname=
chataddress=
chatport=
[LoginConfig]
ServerMode=Minilogin
ServerPort=5999
eqemu_config.xml:
Code:
<?xml version="1.0">
<server>
<world>
<shortname>SON</shortname>
<longname>ShadowsOfNorrath</longname>
<address>192.168.1.2</address>
<localaddress>127.0.0.1</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>192.168.1.2</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
</world>
<!-- Database configuration, replaces db.ini. -->
<database>
<host>192.168.1.2</host>
<port>3306</port>
<username>YOURMOTHERS</username>
<password>PASSWORD</password>
<db>eq</db>
</database>
</server>
I try to avoid using 127.0.0.1 or localhost whenever possible.