Not being recognised as network admin
Not being recognised as network admin
Hello,
i have setup the network admins on the network but i cant get recognised as any
whats wrong here?
i have setup the network admins on the network but i cant get recognised as any
whats wrong here?
Re: Not being recognised as network admin
are you using the /oper command? do you have the N or netadmin flag in the oper block? are you connecting to the correct server?
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ
Re: Not being recognised as network admin
im also having the same problem on it and i did add it on the flags
Re: Not being recognised as network admin
reply with your oper block
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ
Re: Not being recognised as network admin
Code: Select all
oper ssfdre38 {
class netadmin;
from {
userhost *@*
;};
password "password";
flags
{
netadmin;
can_zline;
can_gzline;
can_gkline;
global;
services-admin;
can_globops;
};
};Re: Not being recognised as network admin
lets see your netadmin class block
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ
Re: Not being recognised as network admin
Code: Select all
set {
kline-address "[email protected]";
modes-on-connect "+ixw";
modes-on-oper "+xwgsDKtWHvqXdn";
oper-auto-join "#opers";
options {
hide-ulines;
/* You can enable ident checking here if you want */
/* identd-check; */
show-connect-info;
};Re: Not being recognised as network admin
that's a set block, not a class block. Please reply with your netadmin class block. below is a sample class block for clients. Another idea is to switch your class from netadmin to clients in your oper block.
Code: Select all
class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ
Re: Not being recognised as network admin
Code: Select all
class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};
class servers
{
pingfreq 90;
maxclients 10; /* Max servers we can have linked at a time */
sendq 1000000;
connfreq 100; /* How many seconds between each connection attempt */
};Re: Not being recognised as network admin
Neither of those class blocks are for netadmins so I'm going to assume you haven't one. Try changing the connection class in your oper block from netadmin to clients. rehash and try again.
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ