View Single Post
  #1  
Old 11-26-2017, 02:18 PM
Minirva
Fire Beetle
 
Join Date: Nov 2012
Posts: 19
Default Help With My First Server (Login Issue)

Hello,

I am going to guess I am missing something very simple here but for the life of me can not find the fix.

I used Akkas PEQ Server Installer.

As of right now, my friend (and I am expecting nobody) can log onto my server. I did open up my DMZ yesterday and when it was open he could log in. I did some tweaking and now even if I open up the DMZ, he can not log into the server. I reverted everything back, opened the DMZ and again nothing. So I have screwed something up!

I don't believe I am missing any port ranges. Open are 5998-5999, 7000-7500, 9000-9100, all set to TCP/UDP.

As they stand right now....

My eqemu_config is as follows:
Quote:
<?xml version="1.0">
<server>
<world>
<shortname>Quiet Solitude</shortname>
<longname>Quiet Solitude Test</longname>

<address>192.168.0.18</address>
<localaddress>192.168.0.18</localaddress>

<loginserver1>
<legacy>1</legacy>
<host>login.eqemulator.net</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver1>
<loginserver2>
<host>192.168.0.18</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver2>



<tcp ip="127.0.0.1" port="9001"/>
<telnet ip="0.0.0.0" port="9000" enabled="true"/>

<key>92VKOEWlBUEaZebfT3WMkg1MO2cfC9Q</key>

<http port="9080" enabled="true" mimefile="mime.types" />
</world>

<chatserver>
<host>login.eqemulator.net</host>
<port>7500</port>
</chatserver>

<mailserver>
<host>login.eqemulator.net</host>
<port>7500</port>
</mailserver>

<zones>
<defaultstatus>0</defaultstatus>

<ports low="7000" high="7400"/>
</zones>

<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>eqemu</password>
<db>peq</db>
</database>

<qsdatabase>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>eqemu</password>
<db>peq</db>
</qsdatabase>

<webinterface>
<port>9081</port>
</webinterface>

<launcher>
</launcher>

<files>
</files>
<directories>
</directories>
</server>
Login.ini is:
Quote:
[database]
host = localhost
port = 3306
db = peq
user = root
password = eqemu
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 192.168.0.18
auto_create_accounts = TRUE

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = loginserver_server_accounts
world_registration_table = loginserver_world_server_registration
world_admin_registration_table = loginserver_server_admin_registration
world_server_type_table = loginserver_server_list_type
I have tried everything within my limited knowledge and from what posts and information i could find on this topic. Any help would be greatly appreciated. Thanks
Reply With Quote