成为所有频道的运营商 ircd-hybrid

Lin*_*ing 7 ubuntu irc ircd

我的ircd-hybrid服务器有问题。我只能在状态选项卡中让自己成为操作员,而在加入频道时则不能。

有我的运营商标签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;
};
Run Code Online (Sandbox Code Playgroud)

另外,如何配置服务器,以便当用户首先加入频道时,他们不会成为该频道的运营商?

小智 4

  • 连接到您的 IRC 服务器。
  • 获取操作员权限:
    • /oper 运算符
    • 输入您的密码
    • IRC 服务器显示文本“您已进入...暮光之城!”
  • /quote MODLOAD m_opme.so
    • 服务器上的此加载模块“OPME”
  • /引用 opme #channel
    • 现在您拥有#channel 的操作员权限

  • MODLOAD 似乎已被弃用:o) 用新的 MODULE 命令替换了 MODLOAD、MODUNLOAD、MODRELOAD、MODLIST 和 MODRESTART 命令,该命令可以提供 LOAD、UNLO​​AD、RELOAD 和 LIST 参数。MODRESTART 已被完全删除。使用“MODULE RELOAD*”重新加载所有模块。酱:https://github.com/jmaurice/ircd-hybrid/blob/master/NEWS (2认同)