Page 1 of 1

Connecting problem !

Posted: Thu Mar 10, 2005 10:03 pm
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 .

Posted: Thu Mar 10, 2005 11:21 pm
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;