How to conect from outside? (Aion-Novo)

Results 1 to 8 of 8
  1. #1
    Novice UraNuSx is offline
    MemberRank
    Jan 2009 Join Date
    3Posts

    Question How to conect from outside? (Aion-Novo)

    Aion-NOVO Guide (in lan) works ,but no work using... NOIP
    In localhost run perfect ,but no conect via noip Undecided
    This situation is only for the emulator is a baby and no conncet to internet?

    I have done the same with NOIP exactly that Localhost
    All run ok LS & GS... but the moment you enter the client tells me that "No permision to connect this server"

    My doupt is... You can connect from outside, how?

    My Conexion Properties:
    please correct me if I am wrong...
    i use noip = skyaion.servegame.com
    and port = 8080

    ipconfig.xml(GS)
    Spoiler:
    <!--
    ~ This file is part of aion-emu <aion-emu.com>.
    ~
    ~ aion-emu is free software: you can redistribute it and/or modify
    ~ it under the terms of the GNU General Public License as published by
    ~ the Free Software Foundation, either version 3 of the License, or
    ~ (at your option) any later version.
    ~
    ~ aion-emu is distributed in the hope that it will be useful,
    ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
    ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    ~ GNU General Public License for more details.
    ~
    ~ You should have received a copy of the GNU General Public License
    ~ along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
    -->

    <!--
    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
    -->

    <ipconfig default="skyaion.servegame.com">

    <!--
    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>

    database.properties(GS)
    Spoiler:
    #
    # This file is part of aion-emu <aion-emu.com>.
    #
    # aion-emu is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-emu is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
    #

    # This class represents database driver class that will be used while connecting to database
    database.driver=com.mysql.jdbc.Driver

    # This is database url.
    database.url=jdbc:mysql://127.0.0.1:8080/ae_server_gs

    # Database user
    database.user=root

    # Database password
    database.password=*****

    # Minimum amount of database connections that will allways in the pool
    database.connections.min=5

    # Maximum amount of DB connections that server can use
    database.connections.max=100

    # Script context that will be loaded by database factory, it should implement DAO instances
    database.scriptcontext.descriptor=C:/ServerAion/AIONEmulator/gameserver/data/scripts/database/database.xml

    gameserver.properties(GS)
    Spoiler:
    #
    # This file is part of aion-emu <aion-emu.com>.
    #
    # aion-emu is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-emu is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
    #

    # Port that will be used to listen for client connections
    gameserver.network.client.port=7777

    # Host that will be used to listen for client connections
    gameserver.network.client.host=skyaion.servegame.com

    # Maximum online players on the server
    gameserver.network.client.maxplayers=100

    # Address of login server
    gameserver.network.login.address=127.0.0.1:9014

    # Id of this game server
    gameserver.network.login.gsid=1

    # Password of this game server
    gameserver.network.login.password=*****

    # Additional threads that are used to read network data
    gameserver.network.nio.threads.read=0

    # Additional threads that are used to write network data
    gameserver.network.nio.threads.write=0

    # Name of gameserver
    gameserver.name=SkyAion

    database.properties(LS)
    Spoiler:
    #
    # This file is part of aion-emu <aion-emu.com>.
    #
    # aion-emu is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-emu is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
    #

    # This class represents database driver class that will be used while connecting to database
    database.driver=com.mysql.jdbc.Driver

    # This is database url.
    database.url=jdbc:mysql://127.0.0.1:8080/ae_server_ls

    # Database user
    database.user=root

    # Database password
    database.password=*****

    # Minimum amount of database connections that will allways in the pool
    database.connections.min=5

    # Maximum amount of DB connections that server can use
    database.connections.max=100

    # Script context that will be loaded by database factory, it should implement DAO instances
    database.scriptcontext.descriptor=C:/ServerAion/AIONEmulator/gameserver/data/scripts/database/database.xml

    loginserver.properties(LS)
    Spoiler:
    #
    # This file is part of aion-emu <aion-emu.com>.
    #
    # aion-emu is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-emu is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
    #

    # LoginServer will listen for connections on specified port
    loginserver.network.client.port=2106

    # LoginServer will bind specified network interface
    # * - bind all interfaces
    loginserver.network.client.host=skyaion.servegame.com

    # How many times player can try to login before he get's banned for bruteforcing
    loginserver.network.client.logintrybeforeban=5

    # For what time in minutes player should be banned in case of bruteforcing
    loginserver.network.client.bantimeforbruteforcing=15

    # Nuber of additional threads for NIO that will handle only reading
    loginserver.network.nio.threads.read=0

    # Nuber of additional threads for NIO that will handle only writing
    loginserver.network.nio.threads.write=0

    # Create accounts automatically or not?
    loginserver.accounts.autocreate=true


  2. #2

    Re: How to conect from outside? (Aion-Novo)

    can u please be more specific? cuz i might be able to help :D

  3. #3
    Mermaider tinkle is offline
    MemberRank
    Apr 2005 Join Date
    942Posts

    Re: How to conect from outside? (Aion-Novo)

    I believe this user is asking how to set the files up to serving the game online. He wants to use skyaion.servegame.com instead of local (127.0.0.1) or lan (192.x.x.x) .

  4. #4
    Member vans123 is offline
    MemberRank
    Jul 2008 Join Date
    96Posts

    Re: How to conect from outside? (Aion-Novo)

    wow
    another aion server, will you open is for public??

    i would love to test it

  5. #5
    Novice wafel611 is offline
    MemberRank
    Dec 2009 Join Date
    4Posts

    Re: How to conect from outside? (Aion-Novo)

    to delete
    Last edited by wafel611; 07-04-10 at 04:53 PM.

  6. #6
    Enthusiast leantse is offline
    MemberRank
    Sep 2004 Join Date
    HCMLocation
    45Posts

    Re: How to conect from outside? (Aion-Novo)

    <ipconfig default="skyaion.servegame.com">

    <!--
    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>

    change to

    <ipconfig default="skyaion.servegame.com"></ipconfig>

  7. #7
    Member mazir is offline
    MemberRank
    Jul 2005 Join Date
    SwedenLocation
    54Posts

    Re: How to conect from outside? (Aion-Novo)

    also check so all ports that is needed to run is open.

  8. #8
    All CHAOS! X_Sarah_X is offline
    MemberRank
    Jul 2009 Join Date
    BeachLocation
    630Posts

    Re: How to conect from outside? (Aion-Novo)

    A few tips if you are gonna host for public:

    1) Get rid of the repack and use the files from the original SVN
    2) Know your server files well


    To setup your server to connect from over the internet, simply change all the LAN IPs into your external IP.
    Nothing hard about it.



Advertisement