登録済みirc.mydomain.com
のドメインがあり、パブリックユーザーがポート6667経由でアクセスできるドメインを作成したい。
現在ircd-hybridを実行していますが、ローカルホスト接続を受け入れるように設定されているだけです。
私のirc.mydomain.com
サーバーをポイントし、6676に接続するために、DNS側から私の側で何が必要ですか?
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に更新するだけですか?それともローカルに留まりますか?繰り返しますが、私はそれが公にアクセスできるようにしたい...
私の最初の考えは、serverinfoでvhostを指定することでしたが、その「実世界」の例はありません。
—
メダーオムラリエフ
connect {}
ブロックを使用する必要はないと思います。