ใช่ได้รับการสนับสนุนอย่างสมบูรณ์แบบโดยไม่มีปัญหาใด ๆ
คุณสามารถโฮสต์โดเมนที่แตกต่างอย่างสมบูรณ์ในเครื่องเดียวกัน
ตัวอย่างเช่นการใช้ 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
ให้ผู้อื่นได้)