Page 1 of 1

set::hosts:: error...

Posted: Mon Nov 20, 2006 4:03 am
by Pomicio
Hi,

I have been working on setting up my server for over 8 hours now .. lol .. anyways, i have been troubleshooting all the errors that have been happening and I think I am finally almost done. Here are my more recent errors that i need assistance with:

*Loading IRCd configuration ..

[error] unrealircd.conf:71: unknown directive set::local
[error] unrealircd.conf:72: unknown directive set::global
[error] unrealircd.conf:73: unknown directive set::coadmin
[error] unrealircd.conf:74: unknown directive set::admin
[error] unrealircd.conf:75: unknown directive set::servicesadmin
[error] unrealircd.conf:76: unknown directive set::netadmin
[error] unrealircd.conf:77: unknown directive set::host-on-oper-up
[error] set::hosts::global is missing
[error] set::hosts::admin is missing
[error] set::hosts::servicesadmin is missing
[error] set::hosts::netadmin is missing
[error] set::hosts::coadmin is missing
[error] 12 errors encountered


the code that i have in, which i got from a previous post...is:

set
hosts {
local "locop.x.org";
global "ircop.x.org";
coadmin "coadmin.x.org";
admin "admin.x.org";
servicesadmin "csops.x.org";
netadmin "netadmin.x.org";
host-on-oper-up "no";
};

can somebody please help me with this or direct me to where i can receive help? i have check google...and like soo many websites. Any assistance would be greatly appreciated.

Thanks,
Pomicio

Posted: Mon Nov 20, 2006 5:03 am
by Grunt
It's:

Code: Select all

set {
hosts {
local "locop.x.org";
global "ircop.x.org";
coadmin "coadmin.x.org";
admin "admin.x.org";
servicesadmin "csops.x.org";
netadmin "netadmin.x.org";
host-on-oper-up "no";
};
};
I edited my post. Seems I posted too fast after I woke up. :?

Posted: Mon Nov 20, 2006 5:04 am
by SpaceDoG
use example.conf...


set {
network-name "ROXnet";
default-server "irc.roxnet.org";
services-server "services.roxnet.org";
stats-server "stats.roxnet.org";
help-channel "#ROXnet";
hiddenhost-prefix "rox";
/* prefix-quit "no"; */
/* Cloak keys should be the same at all servers on the network.
* They are used for generating masked hosts and should be kept secret.
* The keys should be 3 random strings of 5-100 characters
* (10-20 chars is just fine) and must consist of lowcase (a-z),
* upcase (A-Z) and digits (0-9) [see first key example].
*/
cloak-keys {
"aoAr1HnR6gl3sJ7hVz4Zb7x4YwpW";
"and another one";
"and another one";
};
/* on-oper host */
hosts {
local "locop.roxnet.org";
global "ircop.roxnet.org";
coadmin "coadmin.roxnet.org";
admin "admin.roxnet.org";
servicesadmin "csops.roxnet.org";
netadmin "netadmin.roxnet.org";
host-on-oper-up "no";
};
};