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;Code: Select all
listen 64.150.160.32:6667; #<< my server IP address.
listen *:6667;My allow block is the following:
Code: Select all
allow {
ip *;
hostname *;
class clients;
maxperip 5;
};Thanks