Cannot accept connections on..

These are old archives. They are kept for historic purposes only.
Post Reply
Mousetail
Posts: 4
Joined: Tue Aug 19, 2008 6:36 am

Cannot accept connections on..

Post 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;
[dx]
Posts: 107
Joined: Sat Jun 16, 2007 1:03 am

Re: Cannot accept connections on..

Post by [dx] »

use

Code: Select all

listen *:6667;
Mousetail
Posts: 4
Joined: Tue Aug 19, 2008 6:36 am

Re: Cannot accept connections on..

Post by Mousetail »

Umm.. It is :) Thanks though. But I've tried everything. Port 6667 is open (via router firewall, software firewall, and Windows Firewall).
Spectre
Posts: 23
Joined: Sat Jun 03, 2006 12:19 am
Location: Florida
Contact:

Re: Cannot accept connections on..

Post 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
Mousetail
Posts: 4
Joined: Tue Aug 19, 2008 6:36 am

Re: Cannot accept connections on..

Post by Mousetail »

Sorry for the late response. I tried doing the 6667 one and it shows the same error.
Post Reply