Page 1 of 1

Linking Services Question

Posted: Sat Feb 11, 2006 11:13 pm
by chaokusc
I get an error when i try to link my services...

Code: Select all

error: unrealircd.conf:80: link::hostname is missing
error: unrealircd.conf:80: link::bind-ip is missing
error: unrealircd.conf:80: link::port is missing
error: unrealircd.conf:80: link::password-receive is missing
error: unrealircd.conf:80: link::password-connect is missing
error: unrealircd.conf:80: link::class is missing
unrealircd.conf:82: unknown directive hostname
unrealircd.conf:83: unknown directive bind-ip
unrealircd.conf:84: unknown directive port
unrealircd.conf:85: unknown directive password-connect
unrealircd.conf:86: unknown directive password-receive
error: unrealircd.conf:87: class::pingfreq is missing
error: unrealircd.conf:87: class::maxclients is missing
error: unrealircd.conf:87: class::sendq is missing
error: 10 errors encountered
error: IRCd configuration failed to pass testing
i get these errors from

Code: Select all

link Services.mysiteedited.com{
	username *;
	hostname *;
	bind-ip *;
	port 7029;
	password-connect "mypassedited";
	password-receive "mypassedited";
	class servers;
;}
Does anyone know whats wrong and how i can fix this ?

Posted: Sat Feb 11, 2006 11:20 pm
by JIVXor
You should separate the { of the link Services.mysiteedited.com and the final ; goes after the } .

try this :

Code: Select all

  link Services.mysiteedited.com {  
   username *; 
   hostname *; 
   bind-ip *; 
   port 7029; 
   password-connect "mypassedited"; 
   password-receive "mypassedited"; 
   class servers; 
};
 
should work.

PD: ohh and you're missing all this

Code: Select all

error: unrealircd.conf:87: class::pingfreq is missing 
error: unrealircd.conf:87: class::maxclients is missing 
error: unrealircd.conf:87: class::sendq is missing 
error: 10 errors encountered 
error: IRCd configuration failed to pass testing
 
but I believe that it is because of the first erroneous block(only if the directive Pinfreq and other are under that block that it should not be). Anyway please read this -> http://www.vulnscan.org/UnrealIRCd/unre ... classblock
I recommend you the complete doc ;)

Posted: Sun Feb 12, 2006 12:46 am
by chaokusc
edited and deleted post

Thank You, with a little check with somone elses unrealircd.conf and services.conf i managed to get them sort of working :)

Posted: Sun Feb 12, 2006 1:12 am
by [UnDeRTaKeR]
read this sticky post:
http://forums.unrealircd.com/viewtopic.php?t=329
try this too:
http://www.angrywolf.org/services.php?lang=en

read the docs, they are helpful:
http://www.vulnscan.org/UnrealIRCd/unreal32docs.html

the services connect to the unrealircd, not the other way,
read all of that, and if the problem persists, come back here.