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

cant connect to the server

Sami_san

New Member
Joined
May 20, 2016
Messages
76
Reaction score
1
Hello there.
Ive searched all topics which didnt solve this issue.

I started my tfs 1.2 and tryed to connect to it . Says all the time connection refused. I scaned the ports .

80 open but 7172 or 7171 or 7173 Are Closed. In the console of my tfs i dont get any Error. My config lua seems to be ok :

ip = "myip"
bindOnlyGlobalAddress = false
loginProtocolPort = 7171
gameProtocolPort = 7172
statusProtocolPort = 7171
maxPlayers = 1000

i tryed also with bindOnlyGlobalAddress = true

Im using ubuntu 14.04
I opened the ports with ufc firewall i also disabled the firewall.
The website works same mysql but not the game server. cant connect to that ip.
My HOSTING Service is ovh.
 
SOLVED. Ive been checking are those ports listening so i did a netstat which shown 7171 7172 7173 listening. So i fought ill check iptables BUT the ports were locked.
FOR ANYONE IN THE FUTURE :
sudo /sbin/iptables -I INPUT -p tcp -m tcp --dport 7171 -j ACCEPT
sudo /sbin/iptables -I INPUT -p tcp -m tcp --dport 7172 -j ACCEPT
sudo /sbin/iptables -I INPUT -p tcp -m tcp --dport 7173 -j ACCEPT
 
Back
Top