• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Connect problem

Stempel2

New Member
Joined
Aug 11, 2013
Messages
35
Reaction score
1
Hello i got problem, noone cloud login into my server and even enter on my website with accmaker.. so I openned new ports.. 7171,7272,7172,80 and 3306 on my modem/router (technicolor tc7200).
It helped only with website, its now for everyone but on my ots only I can log in.. rest of people when entering on their account, getting character list and waiting.. later they got message "connection refused error 10061".
I have set local ip adress in config.lua "127.0.0.1".

Code:
-- World / Ip / Port
    worldId = 0
    ip = "127.0.0.1"
    worldType = "open"
    bindOnlyGlobalAddress = false
    loginPort = 7171
    gamePort = "7172"
    statusPort = 7171
    loginOnlyWithLoginServer = false

any explains??
 
You need to change

PHP:
-- World / Ip / Port
    worldId = 0
    ip = "YOUR CURRENTLY IP YOU GET IT FROM www.whatismyip.com"
    worldType = "open"
    bindOnlyGlobalAddress = false
    loginPort = 7171
    gamePort = "7172"
    statusPort = 7171
    loginOnlyWithLoginServer = false
 
So port 7171 is still not open and reachable.
Maybe a firewall is still blocking it? Windows Firewall, maybe?

Can you please post your router configuration regarding port forwarding, your local IP address (enter "ipconfig" in command line), your global IP address (What's My IP Address? Networking Tools & More) and your current config.lua connection settings?
 
Firewall is off.
http://img24.imageshack.us/img24/8070/8b0i.png screen shoot from router configuration
http://img832.imageshack.us/img832/5725/1shm.png its ipconfig
global ip 89.76.164.140.
Code:
 -- Connection config
    loginTries = 20
    retryTimeout = 5 * 1000
    loginTimeout = 60 * 1000
    maxPlayers = 200
    displayOnOrOffAtCharlist = false
    onePlayerOnlinePerAccount = true
    allowClones = 0
    statusTimeout = 1000
    replaceKickOnLogin = true
    forceSlowConnectionsToDisconnect = false
    premiumPlayerSkipWaitList = true
    packetsPerSecond = 50
 
You added multiple forwards for ports 7171, 7172 and 80 - this is not possible.
Remove all forwards where the Target IP Address is NOT 192.168.0.10.

Also remove all forwards for MySQL port 3306. This is not necessary and you should NEVER make your database accessible from the internet.
Also remove forwards for port 7272, which is not in use.
 
Back
Top