Page 1 of 1

Cannot accept connections on..

Posted: Wed Sep 10, 2008 1:01 am
by Mousetail
Hello. I am a Network Administrator of a server, and I need help on something. I am using Windows running Unreal 3.2.7. I keep getting this "error" when someone tries to connect:
"--- Cannot accept connections <server URL here>[*.6667]:Unknown error
--- *** Notice -- Client connecting on port 6667:"

Yet they connect successfully. The config has port 6667 in the Listen block, and port 6667 is open. Any comments on how I can fix this?

Oh; Listen block is:
listen 127.0.0.1:6667;
listen 127.0.0.1:7000;
listen 127.0.0.1:6697;

Re: Cannot accept connections on..

Posted: Thu Sep 11, 2008 9:45 pm
by [dx]
use

Code: Select all

listen *:6667;

Re: Cannot accept connections on..

Posted: Sat Sep 13, 2008 11:21 pm
by Mousetail
Umm.. It is :) Thanks though. But I've tried everything. Port 6667 is open (via router firewall, software firewall, and Windows Firewall).

Re: Cannot accept connections on..

Posted: Sun Sep 14, 2008 6:41 pm
by Spectre
Mousetail

I would try setting it up as listed below

listen *:6667 { options { clientsonly; }; };
listen *:6697 { options { clientsonly; }; };
listen *:7000 { options { clientsonly; }; };

See if that helps.


Spectre

Re: Cannot accept connections on..

Posted: Tue Feb 24, 2009 6:55 am
by Mousetail
Sorry for the late response. I tried doing the 6667 one and it shows the same error.