我有一个注册域名,我想让irc.mydomain.com
任何公共用户都可以通过端口 6667 访问该域名。
我目前正在运行 ircd-hybrid,但它仅设置为接受本地主机连接。
我这边需要从 DNS 方面做什么才能irc.mydomain.com
指向我的服务器并连接到 6667?
从 ircd 的配置文件中,我看到了以下内容:
324 connect {
325 /* name: the name of the server */
326 name = "irc.example.net";
327
328 /* host: the host or IP to connect to. If a hostname is used it
329 * must match the reverse dns of the server.
330 */
331 host = "127.0.0.1";
332
333 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
334 * The remote server will have these passwords reversed.
335 */
336 send_password = "password";
337 accept_password = "password";
338
339 /* compressed: controls whether traffic is compressed via ziplinks.
340 * By default this is disabled
341 */
342 compressed = no;
343 };
那么,我是否应该将名称设置为“irc.mydomain.com”,然后在 DNS 管理器中创建一个 A 记录条目,以便 irc.mydomain.com 指向我的服务器的 IP 地址?或者这个过程不是必需的,我只需要创建一个 PTR 记录?
另外,之后我是否只需将主机更新为服务器的公共 IP?还是保留本地 IP?同样,我希望它可以公开访问...
答案1
只需转到您的 DNS 管理并将“irc.mydomain.com”设为主机现有名称的 CNAME。或者,将其设为具有正确 IP 地址的 A 记录。
“连接”块与出站服务器到服务器的连接有关。