Page 1 of 1

Why oh why does 6667 not let me connect?

Posted: Sat Jul 12, 2008 12:36 pm
by jones
Hi guys,

Seems I've got a strange issue on my hands.

Just setup a server, which works fine. The only problem is that I can't seem to connect on 6667. I have added 6666-6669 in the unrealircd.conf and added them to iptables. 6666,6668,6669 all connect fine, 6667 simply does not.

Code: Select all

listen         74.50.119.72:6697
{
        options
        {
                ssl;
                clientsonly;
        };
};

listen         *:8067;
listen         74.50.119.72:6667;
listen         74.50.119.72:6668;
listen         74.50.119.72:6669;
listen         74.50.119.72:6666;
 
Any ideas?

Re: Why oh why does 6667 not let me connect?

Posted: Sat Jul 12, 2008 4:25 pm
by Spectre
Jones,

I have mine set this way and it works well.

listen *:4400 { options { serversonly; }; };
listen *:6663-6669 { options { clientsonly; }; };
listen *:7000 { options { clientsonly; }; };

See if that works for you.