如何在 ircd-hybrid 中获得操作员权限?
How to get operator rights in ircd-hybrid?
我已经在 Ubuntu 服务器 14.04.2 上安装了 ircd-hybrid,它是 运行,我可以连接。但是当我尝试 /oper 时,我没有获得操作员权限,它只是说 "Only few of mere mortals may try to enter the twilight zone"。我配置错了吗?还是无法通过互联网进行 /oper 而只能在本地网络上使用?
我在 ircd.conf 文件中的配置是除此更改条目外的标准配置:
auth {
user = "*@*";
class = "users";
password = "secret";
# flags = need_ident;
};
#operator {
name = "op";
user = "*@*";
password = "hello";
encrypted = no;
class = "opers";
}
我以普通用户身份使用密码 "secret" 连接到服务器并尝试使用
获得权限
/oper op hello
有什么错误的建议吗?
operator 标签被注释掉了。将“#operator {”替换为 "operator {",然后在使用 SIGHUP 重新散列 ircd 后重试。
我已经在 Ubuntu 服务器 14.04.2 上安装了 ircd-hybrid,它是 运行,我可以连接。但是当我尝试 /oper 时,我没有获得操作员权限,它只是说 "Only few of mere mortals may try to enter the twilight zone"。我配置错了吗?还是无法通过互联网进行 /oper 而只能在本地网络上使用?
我在 ircd.conf 文件中的配置是除此更改条目外的标准配置:
auth {
user = "*@*";
class = "users";
password = "secret";
# flags = need_ident;
};
#operator {
name = "op";
user = "*@*";
password = "hello";
encrypted = no;
class = "opers";
}
我以普通用户身份使用密码 "secret" 连接到服务器并尝试使用
获得权限/oper op hello
有什么错误的建议吗?
operator 标签被注释掉了。将“#operator {”替换为 "operator {",然后在使用 SIGHUP 重新散列 ircd 后重试。