Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
Ok guys, now i come here in search for help. When im trying to connect to my server from outside my lan, the loginserver works just fine and accepts my username and password and takes me to chanel selection, after that it says that cant connect to gameserver. i have centos 6.3, firewall down, every single port open, well you can say that my server is all open like a blond working at the RedZone...
If anyone as some idea, pls help..
P.S. the last thing i tryed is puting in the gameserver newstob, in ip 0.0.0.0 so it uses all ips... doesnt work...
Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
If any1 has even a small idea, please post here... any help is welcome!!!
Posts: 335
Threads: 22
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Aug 2011
Reputation:
0
you need to give the gameserver your outside IP, the client will get sendet the ip thats in the setting file of the GameServer
Posts: 77
Threads: 6
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jul 2011
Reputation:
0
I have the same problem and when i put outside ip i have system error bind ;/
Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
well, like our friend here posted... tell me one thing, as we dont need any wildcards in the gameserver config, the ip option shouldnt be change to something like ExternalIP= x.x.x.x.x? Just like MW3, in the INI you put like this to work for outside... im lost friends...give me a hand
Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
awww... no1 likes me... no1 helps me XD
Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
ok, another question. any1 knows why the gameserver reports Binding to 255.255.255.255 when i set in the config IP=ALL???
Posts: 1,163
Threads: 160
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
I had this very same problem when I setup ep2 for the first time but found looking in the guides helped xD
This post fixed my connection passed server list:
Insert into _auth db: / In die _auth db einfügen:
-- ----------------------------
-- Table structure for `t_iplist`
-- ----------------------------
DROP TABLE IF EXISTS `t_iplist`;
CREATE TABLE `t_iplist` (
`a_index` int(11) NOT NULL AUTO_INCREMENT,
`a_ipstart_N` bigint(13) NOT NULL DEFAULT '0',
`a_ipend_N` bigint(13) NOT NULL DEFAULT '0',
`a_nation_S` varchar(50) NOT NULL DEFAULT '',
`a_nationcode` int(11) NOT NULL DEFAULT '-1',
PRIMARY KEY (`a_index`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_iplist
-- ----------------------------
INSERT INTO `t_iplist` VALUES ('6', '0', '9999999999', 'US', '-1');
INSERT INTO `t_iplist` VALUES ('7', '0', '9999999999', 'DE', '-1');
Also change this mysql variable "lower_case_table_names" to 2, to fix some problems. (Only OpenSuse)
Und ändert diese mysql variable "lower_case_table_names" auf 2 um ein paar probleme zu beheben. (Nur OpenSuse)
Cretis Falo
Posts: 281
Threads: 22
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2012
Reputation:
0
I had this very same problem when I setup ep2 for the first time but found looking in the guides helped xD
This post fixed my connection passed server list:
this fixed outside ip problem?