link problems

These are old archives. They are kept for historic purposes only.
Post Reply
Nio
Posts: 26
Joined: Wed Apr 14, 2004 10:04 am

link problems

Post 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
jewles
Posts: 263
Joined: Thu Mar 11, 2004 7:41 pm
Location: Herndon, VA

Post 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
FBSD-DEV Project
http://www.fbsd-dev.org

YatesDev Hosting
http://www.yatesdev.com

The Wrong Way
http://www.thewrongway.net
Nio
Posts: 26
Joined: Wed Apr 14, 2004 10:04 am

Post 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;
Post Reply