Page 1 of 1

Unreal IRCd not allowing remote connections.

Posted: Mon Nov 13, 2006 2:04 am
by Hellhound
Hello,

I had a friend compile and install UnrealIRCd 3.2 for me, and when I started to configure it, it will not allow any remote connections at all.

I have read the docs* many times, and still can not figure out a reason why it will not work.

I have allowed outgoing traffic on port 6667 and 7000 through PSA.

My listen block is the following:

Code: Select all

listen         *:7000
{
	options
	{
		ssl;
		clientsonly;
	};
};
listen 127.0.0.1:6667;
I have attempted many other things for the listen block, such as the following:

Code: Select all

listen         64.150.160.32:6667;  #<< my server IP address.
listen         *:6667;
None of which allow remote connection.

My allow block is the following:

Code: Select all

allow {
	ip *;
	hostname *;
	class clients;
	maxperip 5;
};
Any ideas? I've had many people look at it, and have been in the Unreal support channel and still can not get it working. I am stumped, and maybe someone else has an idea.

Thanks

Re: Unreal IRCd not allowing remote connections.

Posted: Wed Nov 10, 2010 10:08 pm
by deleted-46527

Code: Select all

listen *:6667

listen *:7000 {
	options {
		ssl;
		clientsonly;
	};
};
People need to connect via server IP address / host or web address that is binded to the IP address which has the machine running your IRCd.