Ich habe ein Problem mit meinem ircd-hybrid
Server. Ich kann mich nur auf der Registerkarte "Status" zum Operator machen, aber nicht, wenn ich Kanälen beitrete.
Da ist mein Operator-Tag in ircd.conf
:
operator {
/* name: the name of the oper */
name = "operator";
/* user: the user@host required for this operator. CIDR is not
* supported. multiple user="" lines are supported.
*/
user = "*@127.0.0.1";
/* password: the password required to oper. By default this will
* need to be encrypted using '/usr/bin/mkpasswd'.
* WARNING: Please do not mix up the 'mkpasswd' program from
* /usr/sbin with this one. If you are root, typing 'mkpasswd'
* will run that one instead and you will receive a strange error.
*
* MD5 is supported. If you want to use it, use mkpasswd -Hmd5.
*/
#password = "3ZokNTld506nY";
password = "$1$oqD3q/0S$wQ1utcJG9Pcutmq6i3qxS.";
/* class: the class the oper joins when they successfully /oper */
class = "opers";
/* privileges: controls the activities and commands an oper are
* allowed to do on the server. All options default to no.
* Available options:
*
* global_kill: allows remote users to be /KILL'd (OLD 'O' flag)
* remote: allows remote SQUIT and CONNECT (OLD 'R' flag)
* kline: allows KILL, KLINE and DLINE (OLD 'K' flag)
* unkline: allows UNKLINE and UNDLINE (OLD 'U' flag)
* gline: allows GLINE (OLD 'G' flag)
* nick_changes: allows oper to see nickchanges (OLD 'N' flag)
* via usermode +n
* rehash: allows oper to REHASH config (OLD 'H' flag)
* die: allows DIE and RESTART (OLD 'D' flag)
* admin: gives admin privileges. admins
* may (un)load modules and see the
* real IPs of servers.
*/
global_kill = yes;
remote = yes;
kline = yes;
unkline = yes;
gline = yes;
die = yes;
rehash = yes;
nick_changes = yes;
admin = yes;
};
Wie kann ich den Server so konfigurieren, dass ein Benutzer, der zuerst einem Kanal beitritt, kein Operator für den Kanal wird?
Das ircd-hybrid-Paket in Debian Jessie (und möglicherweise Ubuntu) enthält das opme-Modul nicht.
Die Version in Debian Stretch funktioniert, aber in / usr / lib / ircd-hybrid / modules / extra. Sie sollten diesen Pfad im Modulabschnitt der ircd.conf hinzufügen.
Sie sollten auch das opme-Flag im Operator-Bereich von ircd.conf hinzufügen und den Daemon neu laden / neu starten.
Dann können Sie tun
quelle