Setting reverse DNS in Bind in Debian
If you have a simple DNS setting without Reverse DNS, this might help you to setup. Step 1: Add Reverse zone entery in /etc/bind/named.conf // add local zone definitions here zone "0.168.192.in-addr.arpa" { type master; file "/etc/bind/yourdomain.rev"; zone "yourdomain.com" { type master; file "/etc/bind/yourdomain.com"; allow-query { any; }; Step 2: Create the /etc/bind/yourdomain.rev file $TTL 300 0 @ IN SOA ns.yourdomain.com. postmaster.yourdomain.com. ( 1312 ; Serial 300 ; Refresh 150 ; Retry 4W ; Expire 1H ) ; Negative Cache TTL ; ; NS ; IN NS ns.yourdomain.com. 1 IN PTR www.yourdomain.com....