From: Francis Dupont Date: Tue, 2 Jan 2018 09:49:11 +0000 (+0100) Subject: [5495] Missed example X-Git-Tag: trac5491_base~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2397981316232079a92a75d8e3cec86627bf348f;p=thirdparty%2Fkea.git [5495] Missed example --- diff --git a/doc/examples/ddns/comments.json b/doc/examples/ddns/comments.json new file mode 100644 index 0000000000..c6e7ee889e --- /dev/null +++ b/doc/examples/ddns/comments.json @@ -0,0 +1,59 @@ +// This is an example configuration file for D2, Kea's DHCP-DDNS processor. +// It uses embedded (i.e., which will be included in configuration objects +// and not stripped by at lexical analysis) comments. + +{ +"DhcpDdns": +{ + + // Global scope + "comment": "A DHCP-DDNS server", + "ip-address": "172.16.1.10", + "port": 53001, + "dns-server-timeout" : 1000, + + "forward-ddns": + { + "ddns-domains": + [ + // In DDNS domain + { + "comment": "DdnsDomain for zone 'four.example.com.'", + "name": "four.example.com.", + "key-name": "d2.md5.key", + // In DNS server + "dns-servers": + [ + { + "comment": "four.example.com. server", + "ip-address": "172.16.1.1" + } + ] + } + ] + }, + + // In TSIG key + "tsig-keys": + [ + { + "comment": "four.example.com. key", + "name": "d2.md5.key", + "algorithm": "HMAC-MD5", + "secret": "LSWXnfkKZjdPJI5QxlpnfQ==" + } + ] +}, + +"Logging": { + // In loggers + "loggers": [ + { + "comment": "A logger", + "name": "kea-dhcp-ddns" + } + ] +} + + +}