답변:
예, 문제없이 완벽하게 지원됩니다.
동일한 머신에서 완전히 다른 도메인을 호스팅 할 수도 있습니다.
예를 들어 BIND9를 DNS 서버로 사용하면 다음과 같이 입력해야합니다 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; }
};
};
영역 파일로 영역 파일을 채우십시오. 메인 존 파일에서 메일 링을위한 MX 레코드도 포함하여 서브 존을 적절하게 지정할 수 있습니다. 파일에 대한 다음 예제를 살펴보십시오 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"
이것이 모든 것을 명확히하기를 바랍니다.
sub1.example.com
당신에게 위임 된 경우sub1.example.com
다른 사람에게 위임 할 수 없습니다 )