DNS (named) 主從式設定問題 - Linux
By Daph Bay
at 2021-03-07T17:30
at 2021-03-07T17:30
Table of Contents
手邊有兩台 DNS Server
一台 Master (簡稱為 A) 一台 Slave (簡稱為 B)
原本這兩台是可以正常運作的
A 修改了 Serial 之後重啟或 reload 後可以正常同步到 B
原始設定檔案中沒有 acl 跟 view,但我後來把 A 上面的
zone file 修改成類似這樣:
acl aaa {
1.1.1.1/32;
2.2.2.2/32;
};
acl bbb {
! aaa;
any;
};
view stage {
match-clients { aaa; };
--- 中略 ---
zone "bbbaaa.com" {
type master;
file "data/named.ba.com.stage";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
zone "bbbaaa.com.tw" {
type master;
file "data/named.ba.com.tw.stage";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
};
view prod {
match-clients { bbb; };
--- 中略 ---
zone "bbbaaa.com" {
type master;
file "data/named.ba.com.internal";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
zone "bbbaaa.com.tw" {
type master;
file "data/named.ba.com.tw.internal";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
};
B 的設定基本上相同(換掉 type 為 slave 跟 masters { A_IP };),
但重啟之後 A 原本的正反解設定都可以同步到 B,
但我新增的正解檔案卻好像無法正常同步到 B,
(正常應該是從 A 的 data/named.ba.com.stage 同步到 B 的
slaves/named.ba.com.stage)
反而系統會從 A 裏面的 data/named.ba.com.internal 同步到
B 的 slaves/named.ba.com.stage ,弄了很久還是如此,
不知道有沒有解?先感謝各位幫忙...
--
一台 Master (簡稱為 A) 一台 Slave (簡稱為 B)
原本這兩台是可以正常運作的
A 修改了 Serial 之後重啟或 reload 後可以正常同步到 B
原始設定檔案中沒有 acl 跟 view,但我後來把 A 上面的
zone file 修改成類似這樣:
acl aaa {
1.1.1.1/32;
2.2.2.2/32;
};
acl bbb {
! aaa;
any;
};
view stage {
match-clients { aaa; };
--- 中略 ---
zone "bbbaaa.com" {
type master;
file "data/named.ba.com.stage";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
zone "bbbaaa.com.tw" {
type master;
file "data/named.ba.com.tw.stage";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
};
view prod {
match-clients { bbb; };
--- 中略 ---
zone "bbbaaa.com" {
type master;
file "data/named.ba.com.internal";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
zone "bbbaaa.com.tw" {
type master;
file "data/named.ba.com.tw.internal";
allow-transfer {
B_IP;
};
notify yes;
also-notify {
B_IP;
};
};
};
B 的設定基本上相同(換掉 type 為 slave 跟 masters { A_IP };),
但重啟之後 A 原本的正反解設定都可以同步到 B,
但我新增的正解檔案卻好像無法正常同步到 B,
(正常應該是從 A 的 data/named.ba.com.stage 同步到 B 的
slaves/named.ba.com.stage)
反而系統會從 A 裏面的 data/named.ba.com.internal 同步到
B 的 slaves/named.ba.com.stage ,弄了很久還是如此,
不知道有沒有解?先感謝各位幫忙...
--
Tags:
Linux
All Comments
By Ingrid
at 2021-03-11T10:28
at 2021-03-11T10:28
By Hedy
at 2021-03-13T04:50
at 2021-03-13T04:50
By Doris
at 2021-03-13T22:46
at 2021-03-13T22:46
By Edward Lewis
at 2021-03-14T04:09
at 2021-03-14T04:09
By Quintina
at 2021-03-17T12:46
at 2021-03-17T12:46
Related Posts
virtual box無法辨識出外部的usb設備
By Linda
at 2021-03-06T13:19
at 2021-03-06T13:19
rsync備份系統以及grub重新安裝
By Mason
at 2021-03-03T21:40
at 2021-03-03T21:40
無法安裝Python-numpy-dbg及其他的套件
By Zanna
at 2021-03-03T12:54
at 2021-03-03T12:54
evolution 收信 yahoo gmail之 設定
By Una
at 2021-03-02T21:52
at 2021-03-02T21:52
ubuntu不加sudo讀取不到usrp(硬體pi 4)
By Caroline
at 2021-03-02T11:25
at 2021-03-02T11:25