Reverse Zone Calculator

Calculate DNS reverse zones for IP ranges

Zone Boundaries: Understanding where reverse DNS zones align with network boundaries
DNS Delegation: How reverse DNS authority is delegated to authoritative servers
Zone Optimization: Best practices for efficient reverse DNS zone management

Common Examples

Reverse Zone Results

1 Total Reverse Zones
Class C Delegation Delegation Type

Reverse Zones

1.168.192.in-addr.arpa
IPv4 /24
Standard class C reverse zone for 256 addresses

DNS Configuration

BIND Zone Configuration
zone "1.168.192.in-addr.arpa" {
    type master;
    file "/etc/bind/zones/1.168.192.in-addr.arpa";
};
Delegation Commands
# Create zone file for 1.168.192.in-addr.arpa
touch /etc/bind/zones/1.168.192.in-addr.arpa
chown bind:bind /etc/bind/zones/1.168.192.in-addr.arpa
chmod 644 /etc/bind/zones/1.168.192.in-addr.arpa

Zone Delegation Basics

Reverse DNS zones must be delegated at natural boundaries. IPv4 uses octet boundaries (/8, /16, /24) while IPv6 uses nibble boundaries (every 4 bits). Delegation happens from your ISP or hosting provider.

IPv4 Boundaries

IPv4 reverse zones align with classful network boundaries: /8 creates single zones like 10.in-addr.arpa, /16 creates zones like 0.10.in-addr.arpa, and /24 creates zones like 1.0.10.in-addr.arpa.

IPv6 Nibbles

IPv6 reverse zones use nibble boundaries (4-bit increments). Each hex digit becomes a separate label in the ip6.arpa domain. A /48 prefix typically requires 12 nibbles of delegation.

Practical Considerations

Most organizations receive /24 (IPv4) or /48 to /64 (IPv6) delegations from their ISP. Smaller subnets like /28 still require the full /24 zone to be delegated to you for proper reverse DNS operation.