আমি উবুন্টুতে বাইন্ড ডিএনএস স্থাপন করার চেষ্টা করেছি।
আমার দুটি মেশিন রয়েছে (ভিএমওয়্যার):
মেশিন এ ক্লায়েন্ট:
IP: 192.168.1.1 (host-only)
hostname: example.com
মেশিন বি হ'ল ডিএনএস সার্ভার:
IP: 192.168.1.2 (host-only)
/etc/bind/named.conf.local:
zone "example.com" {
type master;
file "/etc/bind/db.example.com";
};
//reverse zone
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.192";
};
/etc/bind/db.example.com:
$TTL 604800
@ IN SOA example.com. root.example.com. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS example.com.
@ IN A 192.168.1.1
@ IN AAAA ::1
/etc/bind/db.192:
$TTL 604800
@ IN SOA 1.168.192.in-addr.arpa. root.example.com. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS example.com.
1 IN PTR example.com.
যখন আমি ক্লায়েন্টে nslookup ব্যবহার করি:
nslookup example.com
Server: 192.168.1.2
Address: 192.168.1.2#53
Name: example.com
Address: 192.168.1.1
nslookup 192.168.1.1
Server: 192.168.1.2
Address: 192.168.1.2#53
** server can't find 1.1.168.192.in-addr.arpa: NXDOMAIN
আপনি এটা ঠিক করতে পারবো?