Closed connection from (IP) after login on LIVE server..

kaiyongkai

New member
Messages
17
Points
0
I managed to get it working on my local machine. However, when i ported out on live server, I cannot connect to char server(maybe). After login and server select it just loads for a while and failed to connect. Server logs says Closed connection from (IP).. 
Here's my conf files:

char-server.conf

// Login Server IP
login_ip: "127.0.0.1"

//bind_ip: "127.0.0.1"

// Login Server Port
login_port: 6900

// Character Server IP
char_ip: "SERVER.PUBLIC.IP.HERE"



map-server.conf

// Character Server IP
char_ip: "127.0.0.1"

// The map server listens on the interface with this IP address.
// NOTE: This allows you to run multiple servers on multiple interfaces
// while using the same ports for each server.
//bind_ip: "127.0.0.1"

// Character Server Port
char_port: 6121

// Map Server IP
map_ip: "SERVER.PUBLIC.IP.HERE"



network.conf

lan_subnets: (
"127.0.0.1:255.0.0.0",
// "192.168.1.1:255.255.255.0",
)

allowed: (
//"0.0.0.0:0.0.0.0",
"127.0.0.1:255.0.0.0",
)

trusted: (
"127.0.0.1:255.0.0.0",
)



Anything wrong with this configuration for live server?

error log from server:

Code:
[Notice]: Authentication accepted (account: test, id: 2000000, ip: MY.PC.WITH.MY.RAGNAROK.IP)
[Status]: Connection of the account 'test' accepted.
[Info]: Closed connection from 'MY.PC.WITH.MY.RAGNAROK.IP'
 
Try changing the subnet to 0.0.0.0.

 
Back
Top