আমি ডিবিআইএন-এ বিআইএনডি 9 ব্যবহার করে ল্যান ডিএনএস সার্ভারটি কনফিগার করার চেষ্টা করছি।
প্রসঙ্গ: নেটওয়ার্ক মাস্ক: 255.255.0.0, নেটওয়ার্ক আইপি: 10.1.xxx.xxx
আমি একটি সর্বজনীন ডোমেন উদাহরণ ডট কমের মালিক , বাহ্যিক এনএস দ্বারা পরিচালিত এবং আমার লক্ষ্য সমস্ত সাবডোমেনস lan.example.com পরিচালনা করা , যেমন ঠিকানা নোড 1.lan। উদাহরণ.কম হ'ল আইপি 10.1.1.1
বর্তমান কনফিগারেশন
/etc/bind/name.conf:
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
/etc/bind/named.conf.options:
options {
directory "/var/cache/bind";
forwarders {
EXTERNAL_DNS_NAMESERVERS;
};
dnssec-validation auto;
recursion yes;
allow-query { 10/24; 127.0.0.1; };
allow-recursion { 10/24; 127.0.0.1; };
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
listen-on port 53 { 127.0.0.1; 10.1.0.2; } ;
};
/etc/bind/named.conf.local:
zone "lan.example.com" {
type master ;
allow-query { 10/24; 127.0.0.1; };
file "/etc/bind/zone.lan.example.com" ;
};
zone "0.1.10.in-addr-arpa" {
type master ;
notify no ;
allow-query { 10/24; 127.0.0.1; };
file "/etc/bind/zone.0.1.10.in-addr.arpa" ;
} ;
zone "2.1.10.in-addr-arpa" {
type master ;
notify no ;
allow-query { 10/24; 127.0.0.1; };
file "/etc/bind/zone.2.1.10.in-addr.arpa" ;
} ;
/etc/bind/named.conf.default-zones:
zone "." {
type hint;
file "/etc/bind/db.root";
};
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
/etc/bind/zone.lan.example.com:
; zone.lan.example.com BIND9 configuration file.
;
$TTL 604800
@ IN SOA ns.lan.example.com. root.localhost. (
201212041 ; serial no. (increment by +1 after every edit!)
604800 ; refresh
86400 ; retry after failure
2419200 ; expired
604800); TTL negative cache
;
@ IN NS ns.lan.example.com.
@ IN A 127.0.0.1
;
; A records - Local machines and addresses:
; Servers:
router IN A 10.1.0.1 ; Router
ns IN A 10.1.0.2 ; NS Server
server IN A 10.1.0.2 ; Server
media IN A 10.1.0.3 ; Media Server
;
; Workstations:
node1 IN A 10.1.1.1 ; node1
সমস্যা:
client 10.1.0.1#50808: query (cache) 'a.root-servers.net/A/IN' denied
client 10.1.0.2#59641: query (cache) 'example.com/A/IN' denied
client MY_EXTERNAL_IP#37853: query 'server.lan.example.com/A/IN' denied
client MY_EXTERNAL_IP#56367: query (cache) 'superuser.com/A/IN' denied
যখন আমি নেমসারভার ns.lan.example.com এ সার্ভার.lan.example.com খনন করার চেষ্টা করি তখন সমস্ত কিছু কাজ করে, যদি আমি অন্য মেশিন থেকে এটি করার চেষ্টা করি তবে এটি ব্যর্থ হয়।
আমি কীভাবে এটি সমাধান করতে পারি?
আগাম ধন্যবাদ