how to configure IP addresses to access external ipconfig.xm
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 3
- Joined: Tue May 10, 2011 10:15 pm
how to configure IP addresses to access external ipconfig.xm
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4614
L2JDP Revision Number:7988
Hello!
how to configure IP addresses to access external ipconfig.xml?
My ipconfig.xml is this:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="127.0.0.1" 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>
My ip is fixed 84,220,226,128 what I have to change so that you can access from the outside?
» Find Revision
L2J Revision Number:4614
L2JDP Revision Number:7988
Hello!
how to configure IP addresses to access external ipconfig.xml?
My ipconfig.xml is this:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="127.0.0.1" 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>
My ip is fixed 84,220,226,128 what I have to change so that you can access from the outside?
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: how to configure IP addresses to access external ipconfi
<?xml version="1.0" encoding="UTF-8"?>
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="84.220.226.128" 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>
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="84.220.226.128" 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>
-
- Posts: 3
- Joined: Tue May 10, 2011 10:15 pm
-
- Posts: 164
- Joined: Fri Nov 16, 2007 1:44 am
Re: how to configure IP addresses to access external ipconfi
Yes its only this.
But maybe you have to forward prots on your router.
But maybe you have to forward prots on your router.
-
- Posts: 1160
- Joined: Thu Aug 30, 2007 5:17 pm
Re: how to configure IP addresses to access external ipconfi
<?xml version="1.0" encoding="UTF-8"?>unclesam wrote:only this?
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="84.220.226.128" 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" /> put internal here as well
</gameserver>
- Shaka
- Posts: 277
- Joined: Wed Jun 13, 2007 7:43 pm
- Location: VENEZUELA
- Contact:
Re: how to configure IP addresses to access external ipconfi
but what if the external ip is dynamic?
Answer:
using dns name, hostname and domain, but I work behind the router using NAT / Firewall.
Answer:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="ns1.domain.net" 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>
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: how to configure IP addresses to access external ipconfi
<gameserver address="ns1.domain.net" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd">
It is true.
You must edit hosts file.
It is true.
You must edit hosts file.
- zippel
- Posts: 123
- Joined: Wed Feb 09, 2011 7:21 pm
- Location: [RF] Krasnoyarsk
- Contact:
Re: how to configure IP addresses to access external ipconfi
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="109.95.45.15" 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" /></gameserver>
-
- Posts: 9
- Joined: Mon May 16, 2011 2:54 pm
Re: how to configure IP addresses to access external ipconfi
<?xml version="1.0" encoding="UTF-8"?>
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="XXXXXXXXXXXX" 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.2.2" address="192.168.2.2" />
</gameserver>
ok cany ou tell me this is right where the X,s is where i put my donamee in right and for using a router i open port,s 7777,2016,9014 etc and put the 192 where it is now thxs for helping
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
<gameserver address="XXXXXXXXXXXX" 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.2.2" address="192.168.2.2" />
</gameserver>
ok cany ou tell me this is right where the X,s is where i put my donamee in right and for using a router i open port,s 7777,2016,9014 etc and put the 192 where it is now thxs for helping
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: how to configure IP addresses to access external ipconfi
search google "whats my ip"
-
- Posts: 9
- Joined: Mon May 16, 2011 2:54 pm
Re: how to configure IP addresses to access external ipconfi
i know my ip i just want to know am i doing it right and put in the right place
-
- Posts: 4
- Joined: Thu Oct 06, 2011 1:50 pm
Re: how to configure IP addresses to access external ipconfi
I've a similar problem, people can't connect to my server:
I've all the ports open, firewall disabled,
LoginserverHostname = * and LoginHostname = *
on my ipconfig.xml
But people can't access to my server. I can
Any idea?
Thanks for all.
I've all the ports open, firewall disabled,
LoginserverHostname = * and LoginHostname = *
on my ipconfig.xml
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><!-- Externalhost here (Internet IP) or Localhost IP for local test --><gameserver address="l2jtest.no-ip.info" 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.1.129" /></gameserver>
Any idea?
Thanks for all.
-
- Posts: 77
- Joined: Thu Nov 18, 2010 7:48 am
Re: how to configure IP addresses to access external ipconfi
Firewall or routing?
At the moment, I can't even trace to your IP.
> tracert 87.222.18.102
Tracing route to 102.18.222.87.dynamic.jazztel.es [87.222.18.102]
over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms 192.168.1.1
2 27 ms 25 ms 30 ms catv-80-99-128-254.catv.broadband.hu [80.99.128.
254]
3 8 ms 7 ms 10 ms catv-89-135-223-78.catv.broadband.hu [89.135.223
.78]
4 99 ms 24 ms 23 ms de-fra01a-rd3-xe-4-1-0.aorta.net [84.116.130.189
]
5 23 ms 38 ms 22 ms de-fra01a-ri2-xe-4-0-0.aorta.net [84.116.130.138
]
6 23 ms 22 ms 25 ms de-fra01a-ri2-PNI-GLX.aorta.net [213.46.179.66]
7 100 ms 48 ms 53 ms 64.214.128.242
8 49 ms 64 ms 50 ms 218.216.106.212.static.jazztel.es [212.106.216.2
18]
9 * * * Request timed out.
10 * * * Request timed out.
11 * *
At the moment, I can't even trace to your IP.
> tracert 87.222.18.102
Tracing route to 102.18.222.87.dynamic.jazztel.es [87.222.18.102]
over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms 192.168.1.1
2 27 ms 25 ms 30 ms catv-80-99-128-254.catv.broadband.hu [80.99.128.
254]
3 8 ms 7 ms 10 ms catv-89-135-223-78.catv.broadband.hu [89.135.223
.78]
4 99 ms 24 ms 23 ms de-fra01a-rd3-xe-4-1-0.aorta.net [84.116.130.189
]
5 23 ms 38 ms 22 ms de-fra01a-ri2-xe-4-0-0.aorta.net [84.116.130.138
]
6 23 ms 22 ms 25 ms de-fra01a-ri2-PNI-GLX.aorta.net [213.46.179.66]
7 100 ms 48 ms 53 ms 64.214.128.242
8 49 ms 64 ms 50 ms 218.216.106.212.static.jazztel.es [212.106.216.2
18]
9 * * * Request timed out.
10 * * * Request timed out.
11 * *
-
- Posts: 4
- Joined: Thu Oct 06, 2011 1:50 pm
Re: how to configure IP addresses to access external ipconfi
Thats my IP, so everything is Ok, my firewall is disabled.
So, any idea?
Thanks for all.
So, any idea?
Thanks for all.
-
- Posts: 1
- Joined: Sun Oct 23, 2011 9:48 pm
Re: how to configure IP addresses to access external ipconfi
I'm having the same problem. I can connect through LAN (adding 192.168.1.3 to my hosts file) but my friends can't even log in from their computers.
My NAT table looks like this

I'm at 192.168.1.2 and the server is set up in 192.168.1.3. I also have a domain directly to my IP, but I also used my actual external IP and still nothing.
Any clues?
Asabar, lo has arreglado? :b
Thanks beforehand.
My NAT table looks like this
I'm at 192.168.1.2 and the server is set up in 192.168.1.3. I also have a domain directly to my IP, but I also used my actual external IP and still nothing.
Any clues?
Asabar, lo has arreglado? :b
Thanks beforehand.