Not being recognised as network admin

These are old archives. They are kept for historic purposes only.
Post Reply
lsmithx2
Posts: 1
Joined: Sat Jul 24, 2010 6:03 pm

Not being recognised as network admin

Post by lsmithx2 »

Hello,

i have setup the network admins on the network but i cant get recognised as any
whats wrong here?
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Not being recognised as network admin

Post by katsklaw »

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?
ssfdre38
Posts: 5
Joined: Sat Nov 13, 2010 11:08 pm

Re: Not being recognised as network admin

Post by ssfdre38 »

im also having the same problem on it and i did add it on the flags
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Not being recognised as network admin

Post by katsklaw »

reply with your oper block
ssfdre38
Posts: 5
Joined: Sat Nov 13, 2010 11:08 pm

Re: Not being recognised as network admin

Post by ssfdre38 »

Code: Select all

oper ssfdre38 {
	class           netadmin;
	from {
		userhost *@*
	 ;};
	password "password";
	flags
	{
		netadmin;
		can_zline;
		can_gzline;
		can_gkline;
		global;
		services-admin;
		can_globops;
	};
};
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Not being recognised as network admin

Post by katsklaw »

lets see your netadmin class block
ssfdre38
Posts: 5
Joined: Sat Nov 13, 2010 11:08 pm

Re: Not being recognised as network admin

Post by ssfdre38 »

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;
	};
i did put N in it but it didnt let me start it up with +N
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Not being recognised as network admin

Post by katsklaw »

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;
};
ssfdre38
Posts: 5
Joined: Sat Nov 13, 2010 11:08 pm

Re: Not being recognised as network admin

Post by ssfdre38 »

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 */
};
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Not being recognised as network admin

Post by katsklaw »

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