Linking Services Question

These are old archives. They are kept for historic purposes only.
Post Reply
chaokusc
Posts: 6
Joined: Fri Feb 10, 2006 3:35 am

Linking Services Question

Post 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 ?
JIVXor
Posts: 134
Joined: Fri Sep 09, 2005 10:53 pm
Location: Cuba

Post 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 ;)
chaokusc
Posts: 6
Joined: Fri Feb 10, 2006 3:35 am

Post 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 :)
Last edited by chaokusc on Sun Feb 12, 2006 1:17 am, edited 1 time in total.
[UnDeRTaKeR]
Posts: 84
Joined: Mon Nov 21, 2005 6:15 am
Location: Cuba

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