Page 1 of 1

Linking probelms.

Posted: Sun Jun 13, 2004 9:26 am
by |nSaNe
I have checked the manual, but cant see why I am getting this problem.

I am sure someone will point out it is there, but I cant find it..

I have been trying to get this to link sinse last night, and a now asking for help... so if anyone can help me out it would be great.

When I try and force the connect

/Connect

I get this error
Connect: Server WolfDK is not configured for linking
I cant figure out wy the damned thing is not trying to connect at all.

Code: Select all

-- snip by moderator--
/*
 * NEW: link {}
 * OLD: C/N:Lines
 * This defines an okay for a server connection.
 * NOTE: BOTH SERVERS NEED A LINK {} SETTING TO CONNECT PROPERLY!
 * Syntax is as follows:
 * link (server name)
 * {
 *	username	(username, * works too);
 * 	hostname	(ip number/hostmask);
 *	bind-ip		(What IP to bind to when connecting, or *);
 *	port		(port to connect to, if any);
 *	hub (If this is a hub, * works, or servermasks it may bring in);
 *	[or leaf *;]
 *	password-connect "(pass to send)";
 *	password-receive "(pass we should receive)";
 *	class		(class to direct servers into);
 *	options {
 *		(options here*);
 *	};
 *      /* If we use SSL, we can choose what cipher to use in SSL mode
 *       * Retrieve a list by "openssl ciphers", seperate ciphers with :'s
 *      */
 *      ciphers "DES-CBC3-MD5";
 * 
 * };
*/

/*
	options:
	OLD	|	NEW
	S		ssl
	Z		zip
	N/A		autoconnect
	N/A		quarantine
	N/A		nodnscache
*/

/*
link            WolfDK{
	username	*;
	hostname 	83.151.136.182;
	bind-ip 	*;
	port 		7029;
	hub             *;
	password-connect "sysm4n80";
	password-receive "sysm4n80";
	class           servers;
		options {
			/* Note: You should not use autoconnect when linking
			 * services
			 */
			autoconnect;
			ssl;
		};
};
*/
-- snip --

I have removed the O:lines.


I used to do this with ease th the old config file :(


any help is apreciated.

Re: Linking probelms.

Posted: Sun Jun 13, 2004 9:35 am
by Dukat
Please read the whole example configuration file...

Code: Select all

/* Type of comments */
#Comment type 1 (Shell type)
// Comment type 2(C++ style)
/* Comment type 3 (C Style) */
#those lines are ignored by the ircd.

Your link block is commented out :D

Code: Select all

/*
link            WolfDK{
	username	*;
	hostname 	83.151.136.182;
	bind-ip 	*;
	port 		7029;
	hub             *;
	password-connect "sysm4n80";
	password-receive "sysm4n80";
	class           servers;
		options {
			/* Note: You should not use autoconnect when linking
			 * services
			 */
			autoconnect;
			ssl;
		};
};
*/

Uncomment it and it should work. :wink:

Posted: Sun Jun 13, 2004 9:45 am
by |nSaNe
lol

Thats what sitting upw hen you are tired trying to get it working oes to you.

now I feel stupid :D

Cheers mate :)

Posted: Sun Jun 13, 2004 4:20 pm
by jewles
not to mention link::block should be something.yourdomain.tld.

and side note, probably not a good idea to post the entire configuration file it slows down load time for unneeded text.