Connecting problem !

These are old archives. They are kept for historic purposes only.
Post Reply
GouroB
Posts: 182
Joined: Thu Oct 28, 2004 7:42 pm
Location: London
Contact:

Connecting problem !

Post by GouroB »

The thing is mysterious ,

umm actually to say it direct , i cant log in to my server . i added my ip in allow block and also a open block for all ip ... given below
allow {
ip *@*;
hostname *@*;
class clients;
maxperip 5;
};

allow {
ip *@127.0.0.1;
hostname *@192.168.*;
class clients;
maxperip 5;
};

allow {
ip *@203.*;
hostname *@*;
class clients;
maxperip 5;
};
and in listen block i used ( assume 001.01.01.001 as my server ip )
listen 001.01.01.001:65453;
{
options
{
clientsonly;
};
};

listen 001.01.01.001:23432;
listen 001.01.01.001:4388;
listen 001.01.01.001:6567;
listen *:6666;
listen *:7766;
now when i try to connect /s 001.01.01.001:65453 or /s 001.01.01.001:23432 or /s 001.01.01.001:4388 ... none of them seems to work . i get " connection timed out msg " ... donno whats wrong in here but its totally mysterious to me .
-=GouroB=-
https://www.shunno.info
Your complete web Solution
Irc.BanglaCafe.com
LargesT Chat server in BanglaDesH
Syzop
UnrealIRCd head coder
Posts: 2179
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

Uhhhhhhhhhhhh... is your IP 1.1.1.1 then? I doubt it, since 1.* should not be used by anyone.
LAN blocks are: 10.*, 192.168.*, and 172.16.0.0-172.31.255.

Actually, unless you are on a shell box with other users/ips on it, I suggest you to just use '*' instead of specifying your IP. So:

Code: Select all

listen *:65453;
{
 options
 {
  clientsonly;
 };
};

listen *:23432;
listen *:4388;
listen *:6567;
listen *:6666;
listen *:7766;
Post Reply