U3J-Aion LAN Access

12/24/2012 23:26 shiori1425#1
Hi, I'm trying to open my private server up so my brother can play on my server but it wont let him access the game game server. I play mine on 127.0.0.1. I changed the ipconfig file over to my Router IP address but it still wont let him in the game server. He can log in but loses connection when selecting a server.

I can't set it to my global IP because it's the same on both of our computers.

Anyone have expierence opening U3J-Aion to LAN and willing to help me out?

[Only registered and activated users can see links. Click Here To Register...]

I really appreciate any help I can get on this.

I found out the problem. I had the DNS settings if the IPConfig file wrong and had to set the host variable for my IP.

You can delete this thread.

Thanks.
12/25/2012 01:31 x-AcT#2
The plan to use the "router address" is not that wrong, but it should be your own local network address and not the routers one.
You can find this ip with the "ipconfig" command in console.

Also you'd ensure the ports won't make any trouble. therefore check your software firewall on your pc and maybe also your router configuration.

If nothing works, please post your console logs (both login and game) here.
12/25/2012 02:33 dallas_extreme#3
Before aion-u3j, it was Aion-Extreme 2.1 and 2.5, and I wrote the following addon to the config:

Code:
 <!--
                File that is responsible for network address mapping.
                We can have any number of ip ranges mapped to various network interfaces
                Useful for those who run server in local areas with two (or more) networks
                
                For ipconfig's "default" attribute both DNS and ip address is supported.
                Example: <ipconfig default="216.239.59.104"> = your Internet IP Adress (WAN-IP)
                Examples: <ipconfig default="127.0.0.1"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 127.0.0.1 localhost
                Examples: <ipconfig default="192.168.2.xx"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    localhost
                Examples: <ipconfig default="192.168.2.xx"> for DNS Hosting (yourhost.NO-IP.com) use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    yourhost.no-ip.com (loop-back)
                <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.20"/> // where (192.168.0.20 = your Local IP Adress
                <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.2.20"/>



        <ipconfig default="192.168.100.101"> (Local LAN-IP)
      -->
That should be self-explanatory

BTW the line:

Quote:
For ipconfig's "default" attribute both DNS and ip address is supported.
Was always a mistake. Aion Emu has never supported Host-DNS Adress such "myhost.no-ip.com"
12/25/2012 11:01 x-AcT#4
What's the "add-on" in your quote?
12/25/2012 11:30 dallas_extreme#5
Quote:
Originally Posted by x-AcT View Post
What's the "add-on" in your quote?
This was writen from me, especialy the loopback in the host file. Even my localhost IP Address 192.168.0.20 is from my computer.

Code:
Example: <ipconfig default="216.239.59.104"> = your Internet IP Adress (WAN-IP)
                Examples: <ipconfig default="127.0.0.1"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 127.0.0.1 localhost
                Examples: <ipconfig default="192.168.2.xx"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    localhost
                Examples: <ipconfig default="192.168.2.xx"> for DNS Hosting (yourhost.NO-IP.com) use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    yourhost.no-ip.com (loop-back)
                <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.20"/> // where (192.168.0.20 = your Local IP Adress

The original or usual config was always this:

Code:
<!--
    File that is responsible for network address mapping.
    We can have any number of ip ranges mapped to various network interfaces
    Useful for those who run server in local areas with two (or more) networks


    For ipconfig's "default" attribute both DNS and ip address is supported.
    Example: <ipconfig default="216.239.59.104">
    Examples: <ipconfig default="google.de">
-->


<ipconfig default="127.0.0.1">


    <!--
        IANA-reserved private IPv4 network ranges
        Access only from local networks, external client can't have any of
        the following ip addresses
     -->
    <iprange min="10.0.0.0" max="10.255.255.255" address="10.0.0.0"/>
    <iprange min="172.16.0.0" max="172.31.255.255" address="172.16.0.0"/>
    <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.0"/>


</ipconfig>
12/25/2012 17:49 x-AcT#6
I still don't get it? So you mean the example comment?
12/25/2012 20:19 dallas_extreme#7
Quote:
Originally Posted by x-AcT View Post
I still don't get it? So you mean the example comment?
Exactly :D

Bacause the Line ; Examples: <ipconfig default="google.de"> is totaly wrong, because Aion Emulator has never supported host dns translation.
Second, the loop-back is more for the local web, because you can not call from local browser, for example: myaion-no-ip.com without a loop-back

#Host record

127.0.0.1 aioncore.no-ip.com
192.168.0.20 aioncore.no-ip.com
12/26/2012 21:01 shiori1425#8
Quote:
Originally Posted by x-AcT View Post
The plan to use the "router address" is not that wrong, but it should be your own local network address and not the routers one.
You can find this ip with the "ipconfig" command in console.

Also you'd ensure the ports won't make any trouble. therefore check your software firewall on your pc and maybe also your router configuration.

If nothing works, please post your console logs (both login and game) here.

Hey, I actually did use my PCs IP address, not the routers address. That's what I meant but didn't know how to phrase it at the time do to lack of sleep. haha. I got it running eventually. Thanks for the reply!

Quote:
Originally Posted by dallas_extreme View Post
Before aion-u3j, it was Aion-Extreme 2.1 and 2.5, and I wrote the following addon to the config:

Code:
 <!--
                File that is responsible for network address mapping.
                We can have any number of ip ranges mapped to various network interfaces
                Useful for those who run server in local areas with two (or more) networks
                
                For ipconfig's "default" attribute both DNS and ip address is supported.
                Example: <ipconfig default="216.239.59.104"> = your Internet IP Adress (WAN-IP)
                Examples: <ipconfig default="127.0.0.1"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 127.0.0.1 localhost
                Examples: <ipconfig default="192.168.2.xx"> for Local use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    localhost
                Examples: <ipconfig default="192.168.2.xx"> for DNS Hosting (yourhost.NO-IP.com) use, modify your C:\Windows\System32\drivers\etc\hosts to: 192.168.2.xx    yourhost.no-ip.com (loop-back)
                <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.0.20"/> // where (192.168.0.20 = your Local IP Adress
                <iprange min="192.168.0.0" max="192.168.255.255" address="192.168.2.20"/>



        <ipconfig default="192.168.100.101"> (Local LAN-IP)
      -->
That should be self-explanatory

BTW the line:



Was always a mistake. Aion Emu has never supported Host-DNS Adress such "myhost.no-ip.com"

Hey Dallas, I actually ended up figuring this out somehow. I have it working great over the LAN now, just have to get the little stuff like 3.0 items and working instances now. haha.
Thanks!!
12/27/2012 01:37 dallas_extreme#9
You are welcome :-)