Stealth wrote:Delete the }; after hiddenhost-prefix.
Ok thanks that worked but back to the orinal erro of
Code: Select all
* Loading IRCd configuration ..
[warning] unrealircd.conf:99: link hub.mynet.com with SSL option enabled on a non-SSL compile
[warning] unrealircd.conf:192: Duplicate ban::mask directive
[warning] unrealircd.conf:193: Duplicate ban::reason directive
[error] unrealircd.conf:274: set::cloak-keys: (key 2) Keys should be mixed a-zA-Z0-9, like "a2JO6fh3Q6w4oN3s7"
[error] unrealircd.conf:275: set::cloak-keys: (key 3) Keys should be mixed a-zA-Z0-9, like "a2JO6fh3Q6w4oN3s7"
[error] 3 errors encountered
[error] IRCd configuration failed to pass testing
with the conf like so
Code: Select all
set {
network-name "Barkers Media Servers";
default-server "localhost";
services-server "localhost";
stats-server "localhost";
help-channel "#help";
hiddenhost-prefix "BMS";
cloak-keys {
"aoAr1HnR6gl3sJ7hVz4Zb7x4YwpW";
"hdrt6bv45v8b76vbdls7456bev85";
"alcbw347ov56q356vcails465345";
};
hosts {
local "localhost";
global "localhost";
coadmin "localhost";
admin "localhost";
servicesadmin "localhost";
netadmin "localhost";
host-on-oper-up "no";
};
};
*********************EDIT**************************
Fixxed that it needs omse CAPS letters in there aswell at numbers and lowercase letters
okies fix the other errors it turns out warnings aare errors if you have a duplicate ban::mak and reson errors you need to make sure your band nicks are as
Code: Select all
ban nick {
mask "*C*h*a*n*S*e*r*v*";
reason "Reserved for Services";
};
then for 2 or more make sure they are layed out like
Code: Select all
ban nick {
mask "*C*h*a*n*S*e*r*v*";
reason "Reserved for Services";
};
ban nick {
mask "*C*u*n*t*";
reason "Nick unsutable";
};
and if you are using a none SSL make sure you have
Code: Select all
link hub.mynet.com
{
username *;
hostname 1.2.3.4;
bind-ip *;
port 7029;
hub *;
password-connect "LiNk";
password-receive "LiNk";
class servers;
options {
autoconnect;
ssl;
zip;
};
};
Make sure you change it so the ssl; is not in there so like this
Code: Select all
link hub.mynet.com
{
username *;
hostname 1.2.3.4;
bind-ip *;
port 7029;
hub *;
password-connect "LiNk";
password-receive "LiNk";
class servers;
options {
autoconnect;
zip;
};
};