溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ubuntu域名服務(wù)器地址怎么配置

發(fā)布時間:2022-11-28 10:06:13 來源:億速云 閱讀:599 作者:iii 欄目:服務(wù)器

本篇內(nèi)容主要講解“ubuntu域名服務(wù)器地址怎么配置”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“ubuntu域名服務(wù)器地址怎么配置”吧!

1.打開終端輸入以下命令進行安裝配置DNS。

sudo apt install bind9


2.修改配置文件“/etc/bind/named.conf.local”,添加正逆解析文件的配置,修改后如下:

//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
//domain->ip
zone "flovem.home" in {
type master;
file "/var/cache/bind/db.flovem.home";
};
//ip->domain
zone "0.168.192.in-addr.arpa" in {
type master;
file "/var/cache/bind/reverse/db.0.168.192";
};

3.根據(jù)第2步中的配置,添加相應(yīng)的正逆向解析文件,例如:

在/var/cache/bind/目錄下添加文件db.flovem.home:

//正向解析

$TTL 604800

@ IN SOA flovem.home. root.flovem.home. (

2 ; Serial

604800 ; Refresh

86400 ; Retry

2419200 ; Expire

604000) ; Negative Cache TTL

;

; name servers

@ IN NS ns.flovem.home.

@ IN A 192.168.0.102

;ns records

ns IN A 192.168.0.102

;host records

hangzhou IN A 192.168.0.102


在/var/cache/bind/reverse/目錄中添加文件db.0.168.192

//逆向解析

$TTL 604800

@ IN SOA flovem.home. root.flovem.home. (

2 ; Serial Number

604800 ; Refresh

86400 ; Retry

2419200 ; Expire

86400 ); ; Minimum


@ IN NS flovem.home.


66 IN PTR hangzhou.flovem.home.


4.重啟ubuntu使其生效即可。

到此,相信大家對“ubuntu域名服務(wù)器地址怎么配置”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI