» Find Revision
L2J Revision Number: 4912
L2JDP Revision Number: 8347
I wonder how to set up my servers in the following situation ...
I have a dedicated server with ...
- One Loginserver
- Two Gameservers (port 7777 and 7778)
Both servers responding to IP xxx.xxx.xxx.xxx
I registered a third gameserver (port 7779) in loginserver but the IP of my third gamserver is yyy.yyy.yyy.yyy
They are different servers in different locations and different IPs and networks.
I got to the third gameserver register in loginserver without problems, but when I try to connect to this third server does not connect.
settings for my third gameserver...
server.properties
# The IP of loginserger
LoginHost = xxx.xxx.xxx.xxx
GameserverPort = 7779
ipconfig.xml
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="yyy.yyy.yyy.yyy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd"> <!-- Localhost here --> <define subnet="127.0.0.0/8" address="127.0.0.1" /> <!-- Internalhosts here (LANs IPs) --> <define subnet="10.0.0.0/8" address="10.0.0.0" /> <define subnet="172.16.0.0/19" address="172.16.0.0" /> <define subnet="192.168.0.0/16" address="192.168.0.0" /></gameserver>
server.properties
# The IP of loginserger
LoginHost = xxx.xxx.xxx.xxx
GameserverPort = 7777 and 7778
ipconfig.xml
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="xxx.xxx.xxx.xxx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd"> <!-- Localhost here --> <define subnet="127.0.0.0/8" address="127.0.0.1" /> <!-- Internalhosts here (LANs IPs) --> <define subnet="10.0.0.0/8" address="10.0.0.0" /> <define subnet="172.16.0.0/19" address="172.16.0.0" /> <define subnet="192.168.0.0/16" address="192.168.0.0" /></gameserver>
The firewall and router port of loginserver are open (2106, 7777, 7778, 9014*)
* Open to third GS login.
I can only connect to gameservers 1 and 2, the third gameserver that is on another server with another IP and other network I can't connect.
Can anyone tell me if this type of configuration can be done? If this can be done where I'm wrong?
Thanks!!