Vâng, nó được hỗ trợ hoàn hảo mà không có bất kỳ vấn đề.
Bạn thậm chí có thể lưu trữ các tên miền hoàn toàn khác biệt trong cùng một máy.
Ví dụ: sử dụng BIND9 làm máy chủ DNS, bạn nên đặt một cái gì đó như thế này vào named.conf
:
zone "example.com" {
type master;
file "/usr/local/etc/namedb/static/example.com";
notify yes;
allow-transfer { nameservers; }
};
};
zone "subzone.example.com" {
type master;
file "/usr/local/etc/namedb/static/subzone.example.com";
notify yes;
allow-transfer { nameservers; }
};
};
Chỉ cần điền vào các tập tin khu vực với dữ liệu khu vực của bạn. Trong tệp vùng chính, bạn cũng có thể chỉ định các subzones một cách chính xác, với các bản ghi MX thậm chí để gửi thư, hãy xem ví dụ này cho tệp example.com
:
; Nameservers records
ns.example.com. IN A 192.168.0.10
ns1.example.com. IN A 192.168.0.3
ns2.example.com. IN A 192.168.0.4
; Delegated internal zones
local.example.com. IN NS ns.example.com.
mgmt.example.com. IN NS ns.example.com.
; Delegated external zones
subzone.example.com. IN NS ns.example.com.
whatever.example.com. IN NS ns.example.com.
; Delegated external zone with its own nameservers (and glue records)
fnord.example.com. IN NS ns1.fnord.example.com.
fnord.example.com. IN NS ns2.fnord.example.com.
ns1.fnord.example.com. IN A 198.51.100.1
ns2.fnord.example.com. IN A 198.51.100.2
; Mailing zones
lists.example.com. IN A 192.168.0.13
IN MX 0 lists.example.com.
IN TXT "v=spf1 mx ~all"
IN SPF "v=spf1 mx ~all"
Hy vọng điều này làm rõ mọi thứ.
sub1.example.com
được ủy quyền cho bạn, bạn không thể ủy quyềnsub1.example.com
cho người khác)