Anope Support > 2.0.x/1.9.x Support

OperServ access denied

(1/1)

Stefan:
Hi,

Im new to this world. but wen i do :

--- Code: ---OPERSERV LOGIN XXXXX
--- End code ---
I get:

--- Code: ---Password accepted
--- End code ---

But when I do :

--- Code: ---/os oper list
--- End code ---
I get

--- Code: ---Access denied
--- End code ---

My user in anope service.conf

--- Code: ---oper
{
name = "Klapvogn"
type = "Services Root"
password = "XXXXX"
require_oper = yes
host = "@"
}
--- End code ---

What do I do wrong ?

I think I have answered my own question :D

in unrealircd.conf i had

--- Code: ---oper Klapvogn {
class opers;
mask {
tls yes;
identified yes;
}
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}
--- End code ---

I changed the class:

--- Code: ---oper Klapvogn {
class clients;
mask {
tls yes;
identified yes;
}
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}
--- End code ---

Now I can /os oper list

Lord255:
not sure about your answer.
ircd and anope's oper are two different things.
changing class in ircd's class, irrelevant i think.
as an oper you should not use a clients class btw.

PeGaSuS:
- In your UnrealIRCd oper block, the mask item is totally wrong. It should look like the following:

--- Code: ---oper Klapvogn {
class opers;
mask *; /* if you want to permit any IP. */
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}

--- End code ---
If you really want to force opers to use TLS and be identified to services before being able to oper-up, just add the following on the oper block (if service are down they can't oper up due to need +r):

--- Code: ---require-modes "zr";
--- End code ---

- On Anope side, your host is also wrong. It should look like the following:

--- Code: ---oper
{
name = "Klapvogn"
type = "Services Root"
password = "XXXXX"
require_oper = yes
host = "*@*"
}

--- End code ---

Cheers

Navigation

[0] Message Index

Go to full version