View Single Post
  #1  
Old 01-15-2012, 04:29 AM
smcallister88
Fire Beetle
 
Join Date: Jul 2006
Posts: 24
Default Can not login from external network.

So far I have looked around these forums without luck.
The problem is I can login on the local machine that host the server itself but can not login from outside of my own network. Here are a couple of config files, let me know if there is anything else anyone may need to help.

Also, I am not getting any errors in my 3 server windows as they open or while running, part of what confuses me =)

I did check the db and it is set to public..


eqemu_config.xml
Code:
<?xml version="1.0">
			<server>
				<world>
					<shortname>MyNightShift</shortname>
					<longname>My Night Shift (The Sam Mac Dev.) Still in the works!</longname>
						   
				<!-- Only specify these two if you really think you need to. -->
					<address>mynightshift.servegame.com</address>
					<localaddress>192.168.1.83</localaddress>
				   
				<!-- Loginserver information.  -->
					<loginserver1>
			            <host>eqemulator.net</host>
			            <port>5998</port>
			            <account></account>
			            <password></password>
		            </loginserver1>
			
					<!-- 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. -->
					<http port="9080" enabled="false" mimefile="mime.types" />
				</world>
			
				<!-- Database configuration, replaces db.ini. -->
				<database>
					<host>localhost</host>
					<port>3306</port>
					<username>root</username>
					<password>*mypw</password>
					<db>peq</db>
				</database>
			</server>
eqemulogin.ini
Code:
Port=5999
DumpPacketsIn=true
DumpPacketsOut=true
Trace=true
DatabaseServerName=localhost
DatabaseCatalogName=PEQLoginDB
DatabaseUserName=root
DatabaseUserPassword=*mypw
OPCodePathAndFileName=login_opcodes.conf
login.ini
Code:
[database]
host = localhost
port = 3306
db = PEQLoginDB
user = root
password = *mypw
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = True
dump_packets_in = True
dump_packets_out = True
listen_port = 5999
local_network = 127.0.0.1

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5999
opcodes = login_opcodes.conf

[SoD]
port = 5998
opcodes = login_opcodes_sod.conf

[schema]
account_table = tblloginserveraccounts
world_registration_table = tblworldserverregistration
world_admin_registration_table = tblserveradminregistration
world_server_type_table = tblserverlisttype
Reply With Quote