Page 1 of 1
Oper services down?
Posted: Mon Oct 24, 2005 5:00 am
by KriX
Hello,
I've configured my UnrealIRCD Config file,
so I can chat through the network with other Persons.
But when I tryed it with NoNamescript to get ircop (/quote oper KriX mypw, /oper KriX mypw) or with mIRC (/!oper KriX mypw) then I get the following message:
oper services are currently down. please try again later.
my oper bracket looks like:
oper KriX {
class clients;
from {
userhost *@*;
};
password "mypw";
flags {
netadmin;
can_zline;
can_gzline;
can_gkline;
global;
};
};
how can it be that this thing doesn't work?
Greets KriX
Posted: Mon Oct 24, 2005 5:46 am
by Stealth
Try using debug (/debug @debug), and then try opering. The debug window will show what is being sent, and what is being received.
Posted: Mon Oct 24, 2005 11:13 am
by KriX
hm, I've done it.
-> irc.localhost OPER KriX mypw
<- :irc.localhost 440 KriX Oper :Services are currently down. Please try again later.
Posted: Mon Oct 24, 2005 11:26 am
by Dukat
Please paste the output of /quote version
Posted: Mon Oct 24, 2005 11:31 am
by KriX
i think it's the same
here you've got an big scene out of the debugging window
-> localhost PASS mypw
-> localhost NICK Kr1X
-> localhost USER NNSCRIPT "" "localhost" :KriX
<- :irc.localhost NOTICE AUTH :*** Looking up your hostname...
<- :irc.localhost NOTICE AUTH :*** Found your hostname (cached)
<- :irc.localhost NOTICE Kr1X :*** If you are having problems connecting due to ping timeouts, please type /quote pong 605B4BA4 or /raw pong 605B4BA4 now.
<- PING :605B4BA4
-> localhost PONG :605B4BA4
<- :irc.localhost 001 Kr1X :Welcome to the KriX' Internet Relay Chat Server IRC Network Kr1X!NNSCRIPT@localhost.
<- :irc.localhost 002 Kr1X :Your host is irc.localhost, running version Unreal3.2.3
<- :irc.localhost 003 Kr1X :This server was created Sun Mar 13 21:40:50 2005
<- :irc.localhost 004 Kr1X irc.localhost Unreal3.2.3 iowghraAsORTVSxNCWqBzvdHtGp lvhopsmntikrRcaqOALQbSeIKVfMCuzNTGj
<- :irc.localhost 005 Kr1X SAFELIST HCN MAXCHANNELS=6 CHANLIMIT=#:6 MAXLIST=b:60,e:60,I:60 NICKLEN=30 CHANNELLEN=32 TOPICLEN=307 KICKLEN=307 AWAYLEN=307 MAXTARGETS=20 WALLCHOPS WATCH=128 :are supported by this server
<- :irc.localhost 005 Kr1X SILENCE=15 MODES=12 CHANTYPES=# PREFIX=(qaohv)~&@%+ CHANMODES=beI,kfL,lj,psmntirRcOAQKVGCuzNSMTG NETWORK=KriX'-Internet-Relay-Chat-Server CASEMAPPING=ascii EXTBAN=~,cqnr ELIST=MNUCT STATUSMSG=~&@%+ EXCEPTS INVEX CMDS=KNOCK,MAP,DCCALLOW,USERIP :are supported by this server
<- :irc.localhost 251 Kr1X :There are 1 users and 0 invisible on 1 servers
<- :irc.localhost 255 Kr1X :I have 1 clients and 0 servers
<- :irc.localhost 265 Kr1X :Current Local Users: 1 Max: 3
<- :irc.localhost 266 Kr1X :Current Global Users: 1 Max: 1
<- :irc.localhost 422 Kr1X :MOTD File is missing
<- :Kr1X MODE Kr1X :+iwx
-> irc.localhost MODE Kr1X +i
-> irc.localhost WATCH C S
<- :irc.localhost 603 Kr1X :You have 0 and are on 0 WATCH entries
<- :irc.localhost 607 Kr1X :End of WATCH S
-> irc.localhost NOTICE Kr1X :® 35681296
<- :Kr1X!NNSCRIPT@krix-89FB83D NOTICE Kr1X :® 35681296
-> irc.localhost oper KriX mypw
<- :irc.localhost 440 Kr1X Oper :Services are currently down. Please try again later.
-> irc.localhost NOTICE Kr1X :® 35696296
<- :Kr1X!NNSCRIPT@krix-89FB83D NOTICE Kr1X :® 35696296
-> irc.localhost NOTICE Kr1X :® 35711296
<- :Kr1X!NNSCRIPT@krix-89FB83D NOTICE Kr1X :® 35711296
-> irc.localhost NOTICE Kr1X :® 35726296
<- :Kr1X!NNSCRIPT@krix-89FB83D NOTICE Kr1X :® 35726296
-> irc.localhost NOTICE Kr1X :® 35737812
<- :Kr1X!NNSCRIPT@krix-89FB83D NOTICE Kr1X :® 35737812
Posted: Mon Oct 24, 2005 7:44 pm
by Syzop
Perhaps you got an oper alias in your conf (or in one of your included configs?)
alias oper { [etc..]
If so, remove it.
Posted: Tue Oct 25, 2005 4:39 am
by KriX
...
there is really one in my unrealircd.conf
/* Standard Aliasse */
alias Nick { type services; };
alias Chan { type services; };
alias Oper { type services; };
alias Help { type services; };
alias Stat { type stats; };
EDIT:
when I comment this block out,
I really became an oper
BIG THX @ all for your help
Posted: Tue Oct 25, 2005 2:02 pm
by Matridom
KriX wrote:...
/* Standard Aliasse */
alias Oper { type services; };
that's all you really need to comment out.
Posted: Tue Oct 25, 2005 2:52 pm
by Syzop
Matridom wrote:that's all you really need to comment out.
Nah, look again, there's even an alias for nick ;p.
KriX: seems you removed the 'Serv' suffix of all these aliases... It should have been alias NickServ (not Nick) and ChanServ (not Chan), etc etc.
Naturally, I'll fix this in CVS.
Posted: Tue Oct 25, 2005 3:34 pm
by Matridom
Syzop wrote:Matridom wrote:that's all you really need to comment out.
Nah, look again, there's even an alias for nick ;p.
KriX: seems you removed the 'Serv' suffix of all these aliases... It should have been alias NickServ (not Nick) and ChanServ (not Chan), etc etc.
Naturally, I'll fix this in CVS.
missed that. Thanx for pointing it out (i was concentrating on the reported problem, not other possible problems)