These are old archives. They are kept for historic purposes only.
Mr_S
Posts: 70 Joined: Sat Jun 26, 2004 7:44 pm
Location: United Kingdom
Contact:
Post
by Mr_S » Tue Jun 29, 2004 1:31 am
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 » Tue Jun 29, 2004 4:42 am
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 » Tue Jun 29, 2004 9:12 am
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 » Wed Jun 30, 2004 2:52 pm
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 » Wed Jun 30, 2004 4:29 pm
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/ .