configuration-templates – Rev 51

Subversion Repositories:
Rev:
###########################################################################
##  Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3      ##
##  Please see: http://www.gnu.org/licenses/gpl.html for legal details,  ##
##  rights of fair usage, the disclaimer and warranty conditions.        ##
###########################################################################
## DDNS configuration file for the subnet.                               ##
###########################################################################

### DDNS block using standard update sytle and configuring a forward and 
### reverse-zone for the local network.
ddns-updates on;
ddns-update-style standard;
update-optimization off;
# Do not allow clients to override server DDNS updates.
ignore client-updates;
# Create DNS records even for static IP reservations.
update-static-leases on;
# Offer and maintain only one lease per MAC / DHCPID client.
one-lease-per-client true;

### Forward domain TLD.
ddns-domainname "home.";
### Corresponding forward zone to update.
zone home. {
    primary 127.0.0.1;
    key rndc-key;
}

### Rerverse domain.
ddns-rev-domainname "in-addr.arpa.";
### Corresponding reverse zone to update.
zone 0.168.192.in-addr.arpa. {
    primary 127.0.0.1;
    key rndc-key;
}

Generated by GNU Enscript 1.6.5.90.