oper

These are old archives. They are kept for historic purposes only.
Post Reply
Mr_S
Posts: 70
Joined: Sat Jun 26, 2004 7:44 pm
Location: United Kingdom
Contact:

oper

Post by Mr_S »

i can connect mirc (finally!!) to my localhost and am working towards a website now to link with the server.. but i cant oper up

Code: Select all

oper [mynamehere] {
	class           clients;
	from {
		userhost *@*.*;
	};
	password "mypw-hereobv";
	flags
	{
		netadmin;
		global;
                can_overide;  
	};
};

When i try to oper up ~ i get a message "No O-lines for your host"

Any suggestions??

(ps ive read all the oper features in FAQ anddddd in this forum + official documentaion)
Josh
Posts: 19
Joined: Wed May 19, 2004 3:39 pm
Location: New York, U.S.

Post by Josh »

If you're connecting through /server localhost your hostmask will have no dots (.) include within it, therefore userhost *@*.*; becomes userhost *@*;, or it could even become userhost *@localhost;

Code: Select all

oper [mynamehere] { 
   class           clients; 
   from { 
      userhost *@*; 
   }; 
   password "mypw-hereobv"; 
   flags 
   { 
      netadmin; 
      global; 
                can_override;  
   }; 
};
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post by AngryWolf »

Additionally, you may get rid of the global operflag, because netadmin already includes it.
roothorick
Posts: 12
Joined: Wed Jun 30, 2004 2:37 pm

Post by roothorick »

AngryWolf wrote:Additionally, you may get rid of the global operflag, because netadmin already includes it.
It's worthwhile to note that UnrealIRCd 3.2 example.conf includes both in the "bobsmith" example, which apparently is misleading.
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post by AngryWolf »

Hmm... I didn't know that, haven't look in the example.conf for ages. Then I suggest you to report it at http://bugs.unrealircd.org/. :)
Post Reply