Здравствуйте, гость ( Вход | Регистрация )

Навигация

Ссылки форума

Навигация по форуму

 
Reply to this topicStart new topic
Юзеры дальше выбора сервера пройти не могут
Мирон
сообщение 1.3.2009, 20:27
Сообщение #1



Новичок
Группа: Members
Сообщений: 14
Регистрация: 28.3.2008
Поблагодарили: 0 *


Всем привет! Использую сборку L2emu 1250, интернет у меня настроен через локальный модем + динамический ип. Юзаю сервис no-ip.com. Итого вот такая схема:

noip.com -> динамич ип моего компа -> мой модем ( ип модема 192.168.0.1 ) -> комп сервера ( ип 192.168.0.3 ).

Мой локальный модем переадресовывает автоматом все порты на мой сервер. Так что тут проблем нет.

Сам, через настроенный l2.ini на noip.com, я легко к себе захожу на сервак, другие люди, проходят Логин пароль ( еси не прально ввели, то не проходят) и при выборе сервера видят мой серв в ОНЛАЙНЕ, а так же пингуется он. НО подключится к нему не могут, ничего просто не происходит. В консоле серверов ничего не показывает с ошибками...

Gameserver/network:
Код
# ---------------------------------
# Section: Network Connection Setup
# ---------------------------------
# Bind ip of the gameserver, use 0.0.0.0 to bind on all available IPs
# This is The IP/Port Gameserver will Assume and Use.
GameServerHostName = 0.0.0.0
GameServerPort = 7777

# this is the Loginserver host and port that this gameserver will try to connect to.
LoginPort = 9014
LoginHost = 192.168.0.3

# This is transmitted to the clients connecting from an external network,
# so it has to be a public IP or resolvable hostname.
ExternalHostname = 192.168.0.3

# This is transmitted to the client from the same network,
# so it has to be a local IP or resolvable hostname
InternalHostname = 127.0.0.1

# Network traffic optimization: minimum time between sending char's hp/mp status update packet.
NetworkTrafficOptimization = true
NetworkTrafficOptimizationStatusMs = 400
NetworkTrafficOptimizationBroadcastMs = 800

# ------------------------------------
# Section: Subnets & Advanced  Routing
# ------------------------------------
# Define optional networks and router IPs
#
# Format:
#
# Subnet = host, net/mask; host, net/mask, net/mask
#
#          host - IP address (200.100.200.100) or
#                 fully qualified domain name (example.org)
#
#          net/mask - mask 192.168.0.0/16 or 192.168.0.0/255.255.0.0
#                     would be 192.168.*.*
#
# External - external hostname, you defined in server.properties
# Internal - internal hostname, you defined in server.properties
#
# Example:
# Subnet = 169.254.1.100, 169.254.0.0/16, 111.222.333.0/255.255.255.0
InternalNetworks =
OptionalNetworks =

Subnet = Internal, 192.168.0.3/32, 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12
Subnet = External, 0.0.0.0/0

# ---------------
# Section: Telnet
# ---------------
# Enables /Disables Telnet Server.
EnableTelnet = false

# This is the port telnet server will bind to
# default 23, telnet port.
StatusPort = 23

# If the following is not set, a random password is generated on server startup.
# default l2emuproject, fell free to change it.
StatusPW = l2emuproject

# Use alternative telnet, requiring to do a real login with a GM so your GM-name can be used for messaged instead of "telnet".
AltTelnet = true

# if a password is not set, telnet server will generate a random one, so you define the size of it.
TelnetPasswordLength = 10

# Hosts must be resolvable to an IP.
# define here the IPs allowed to connect to your server via Telnet.
# The format is as follows:
# ListOfHosts = 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
# NOTE: Make sure there are no spaces between hosts/ips !
ListOfHosts = 192.168.0.3,localhost

# ----------------------------
# Section: Database Connection
# ----------------------------
# MySQL Driver we will use to connect to database
Driver= com.mysql.jdbc.Driver
# here are some other drivers :
# Driver= org.hsqldb.jdbcDriver
# Driver= com.microsoft.sqlserver.jdbc.SQLServerDriver

# URL to connect to database.
URL = jdbc:mysql://localhost/l2db
# here are some other url's :
# URL = jdbc:hsqldb:hsql://localhost/L2Emu_DB
# URL = jdbc:sqlserver://localhost/database=L2Emu_DB/user=sa/password=

# your database login (by default MySQL uses = root, Warning: Not a Safe Setting! try to use your own login)
Login = root

# your database password (by default MySQL uses = root, Warning: Not a Safe Setting! try to use your own pass)
Password = password

# define here how many connections are allowed at the same time.
MaximumDbConnections = 50


Loginserver/network:
Код
# ==========
# Connection
# ==========

# Bind ip of the loginserver, use 0.0.0.0 to bind on all available IPs
LoginServerHostName = 192.168.0.3
LoginServerPort = 2106

# The port, ip on which login will listen for GameServers
LoginPort = 9014
LoginHostName = 192.168.0.3

# The delay between IP Update Time.
# set this delay in minutes after which the login updates the gameservers IP's
# (usefull when ip is dynamic)
# (0 = disabled) in Minutes
IpUpdateTime = 10


# Telnet is disabled by default.
EnableTelnet = false

# ============
# Port Related
# ============
# This is the port telnet server will bind to
StatusPort = 12345

# ============
# Pass Related
# ============
# If the following is not set, a random password is generated on server startup.
# StatusPW = somePass

# =====
# Hosts
# =====
# This list can contain IPs or Hosts of clients you wish to allow.
# Hosts must be resolvable to an IP.
# The format is as follows:
# ListOfHosts = 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
# Make sure there are no spaces between hosts/ips
ListOfHosts = 192.168.0.3,localhost


# --------------------
# Database Information
# --------------------

# Define MySQL Driver
Driver = com.mysql.jdbc.Driver

# here you have some more drivers:
# Driver = org.hsqldb.jdbcDriver
# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver

# Define MySQL Driver URL.
URL = jdbc:mysql://localhost/l2db

# here you have some more urls:
# URL = jdbc:hsqldb:hsql://localhost/L2Emu_DB
# URL = jdbc:sqlserver://localhost/database = L2Emu_DB/user = sa /password = (your pass)

# Your login to Database (default = root)
Login = root

# Your password to database (default = root)
Password = password

# Define how many connections are allowed on your database.
MaximumDbConnections = 10


Заранее благодарен за помощь!
Go to the top of the page
 
+Quote Post
BlickBoy
сообщение 1.3.2009, 20:34
Сообщение #2



Умелец
Группа: Banned
Сообщений: 273
Регистрация: 20.9.2008
Поблагодарили: 54 *


попробуй
ГС
Код
# Bind ip of the gameserver, use 0.0.0.0 to bind on all available IPs
# This is The IP/Port Gameserver will Assume and Use.
GameServerHostName =0.0.0.0
GameServerPort = 7777

# this is the Loginserver host and port that this gameserver will try to connect to.
LoginPort = 9014
LoginHost = 0.0.0.0

# This is transmitted to the clients connecting from an external network,
# so it has to be a public IP or resolvable hostname.
ExternalHostname = [b]то что получил на no-ip или свой внутренний[/b]
# This is transmitted to the client from the same network,
# so it has to be a local IP or resolvable hostname
InternalHostname =127.0.0.1



ЛС

Код
# Bind ip of the loginserver, use 0.0.0.0 to bind on all available IPs
LoginServerHostName = 0.0.0.0
LoginServerPort = 2106
# The port, ip on which login will listen for GameServers
LoginPort = 9014
LoginHostName = 0.0.0.0
Go to the top of the page
 
+Quote Post
Мирон
сообщение 1.3.2009, 20:40
Сообщение #3



Новичок
Группа: Members
Сообщений: 14
Регистрация: 28.3.2008
Поблагодарили: 0 *


Вроде как не помогло по способу Рекрута. :(
Go to the top of the page
 
+Quote Post
manywmz
сообщение 1.3.2009, 20:45
Сообщение #4



Новичок
Группа: Members
Сообщений: 26
Регистрация: 23.2.2009
Поблагодарили: 5 *


минимальный протокол в конфинге поставь 1
Go to the top of the page
 
+Quote Post
Мирон
сообщение 1.3.2009, 20:48
Сообщение #5



Новичок
Группа: Members
Сообщений: 14
Регистрация: 28.3.2008
Поблагодарили: 0 *


MinProtocolRevision = 1
MaxProtocolRevision = 999
-
Выставил, все-равно нифига :(
Go to the top of the page
 
+Quote Post
BlickBoy
сообщение 1.3.2009, 20:49
Сообщение #6



Умелец
Группа: Banned
Сообщений: 273
Регистрация: 20.9.2008
Поблагодарили: 54 *


Цитата(manywmz @ 1.3.2009, 20:50) *
минимальный протокол в конфинге поставь 1

гейм сервер бы ругался при несоответствии протоколов, но можно и попробовать
Go to the top of the page
 
+Quote Post
Мирон
сообщение 1.3.2009, 21:03
Сообщение #7



Новичок
Группа: Members
Сообщений: 14
Регистрация: 28.3.2008
Поблагодарили: 0 *


Ни гейм, ни логин сервера не ругаются...

Ой прошу прощения, Рекрут тебе огромное спасибо,
ExternalHostname = мойник.no-ip.com
спас!!!!!

Уважуха и респект!)
Go to the top of the page
 
+Quote Post
Гость_kis6666_*
сообщение 7.3.2009, 11:58
Сообщение #8




Guests


Поблагодарили: *


Открой порты 7777, 2106, 9014, и пропишы в Брандмауере но выключи его вообще прописка обьязательна порты открывай в модеме
Go to the top of the page
 
+Quote Post
Гость_kis6666_*
сообщение 1.4.2009, 0:41
Сообщение #9




Guests


Поблагодарили: *


Цитата(kis6666 @ 7.3.2009, 13:03) *
Открой порты 7777, 2106, 9014, и пропишы в Брандмауере но выключи его вообще прописка обьязательна порты открывай в модеме



Devils-Sword
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic
1 чел. читают эту тему (гостей: 1, скрытых пользователей: 0)
Пользователей: 0

 

RSS Текстовая версия Сейчас: 30.6.2026, 7:36