Page 1 of 1

link problems

Posted: Tue Sep 07, 2004 10:37 pm
by Nio
my conf:

Code: Select all

me
{
	name "nio.phantomnet.ath.cx";
	info "PhantomNet";
	numeric 1;
};

link            matrozoc.phantomnet.ath.cx
{
	username	*;
	hostname 	313.249.175.223;
	bind-ip 	*;
	port 		6667;
	hub             *;
	password-connect "link";
	password-receive "link";
	class           default;
		options {
			/* Note: You should not use autoconnect when linking
			 * services
			 */
			autoconnect;
			
		 	zip;
my friend's conf:

Code: Select all

me
{
	name "matrozoc.phantomnet.ath.cx";
	info "PhantomNet";
	numeric 1;
};

link            nio.phantomnet.ath.cx
{
	username	*;
       hostname 	313.149.184.253;
	bind-ip 	*;
	port 		6667;
	hub             *;
	password-connect "link";
	password-receive "link";
	class           default;
		options {
			/* Note: You should not use autoconnect when linking
			 * services
			 */
			autoconnect;
			
		 	zip;
		};
};
313.249.175.223 is my friend's ip and
313.149.184.253 my ip

i get problems like
[01:37:45] -nio.phantomnet.ath.cx- *** Notice -- No response from matrozoc.phantomnet.ath.cx[313.249.175.223], closing link
-
[01:37:45] -nio.phantomnet.ath.cx- *** Notice -- Connection to matrozoc.phantomnet.ath.cx[313.249.175.223] activated.
-
[01:37:46] -nio.phantomnet.ath.cx- *** Notice -- No response from matrozoc.phantomnet.ath.cx[313.249.175.223], closing link
-
[01:37:46] -nio.phantomnet.ath.cx- *** Notice -- Connection to matrozoc.phantomnet.ath.cx[313.249.175.223] activated.

and sometimes other
thnx

Posted: Tue Sep 07, 2004 10:49 pm
by jewles
there are serveral problems with this...

1. you can't have the same numeric
2. you shouldn't link on the same ports a clients
3. what listen ports are open
4. does 'default' class exist

Posted: Tue Sep 07, 2004 11:06 pm
by Nio
my should be:

Code: Select all

me 
{ 
   name "nio.phantomnet.ath.cx"; 
   info "PhantomNet"; 
   numeric 1; 
}; 

link            matrozoc.phantomnet.ath.cx 
{ 
   username   *; 
   hostname    313.249.175.223; 
   bind-ip    *; 
   port       6667; 
   hub             *; 
   password-connect "link"; 
   password-receive "link"; 
      options { 
         /* Note: You should not use autoconnect when linking 
          * services 
          */ 
         autoconnect; 
          
          zip;
and my friend's should be:

Code: Select all

me 
{ 
   name "matrozoc.phantomnet.ath.cx"; 
   info "PhantomNet"; 
   numeric 2; 
}; 

link            nio.phantomnet.ath.cx 
{ 
   username   *; 
       hostname    313.149.184.253; 
   bind-ip    *; 
   port       6667; 
   hub             *; 
   password-connect "link"; 
   password-receive "link"; 
      options { 
         /* Note: You should not use autoconnect when linking 
          * services 
          */ 
         autoconnect; 
          
          zip; 
      }; 
};
and now will be ok?

and the 2 conf have that:

Code: Select all

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

listen         *:8067;
listen         *:6667;