HELP! Ipconfig.xml

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Mawerick37
Posts: 11
Joined: Wed Oct 12, 2011 10:02 am

HELP! Ipconfig.xml

Post by Mawerick37 »

Hi, i need help for setting Ipconfig.xml.

My IP is: 87.2.**.***
My router IP is: 192.168.1.100
Subnet mask: 255.255.255.0
Default Gateway: 192.168.1.254

My now dont work. My ipconfig now is:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="87.2.**.***" 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="87.2.**.***" />    <define subnet="172.16.0.0/19" address="172.16.0.0" />    <define subnet="192.168.0.0/16" address="192.168.0.100" /></gameserver>

Could anybody paste here, the ipconfig file that i should use? thx :D
User avatar
Dumpster
Posts: 254
Joined: Thu Nov 04, 2010 5:15 am
Location: U.S.A

Re: HELP! Ipconfig.xml

Post by Dumpster »

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="87.2.**.***" 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>
Makes no claim to know anything about anything.
blarke
Posts: 77
Joined: Thu Nov 18, 2010 7:48 am

Re: HELP! Ipconfig.xml

Post by blarke »

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="87.2.**.***" 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.[b]100[/b]" /></gameserver>
isnt it supposed to look like this?
User avatar
Dumpster
Posts: 254
Joined: Thu Nov 04, 2010 5:15 am
Location: U.S.A

Re: HELP! Ipconfig.xml

Post by Dumpster »

the only thing that needs to be altered is this line

Code: Select all

<gameserver address="87.2.**.***" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd">
Makes no claim to know anything about anything.
User avatar
MetalBlack
Posts: 30
Joined: Wed May 23, 2007 6:43 am

Re: HELP! Ipconfig.xml

Post by MetalBlack »

try this

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="wan ip" 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="192.168.1.0/24" address="server lan ip" />    <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>
Post Reply