Kea DDNS: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 3: | Zeile 3: | ||
[[Kategorie:Kea]] | [[Kategorie:Kea]] | ||
* '''vim ''/etc/kea/kea-dhcp-ddns.conf'' ''' | * '''vim ''/etc/kea/kea-dhcp-ddns.conf'' ''' | ||
| + | |||
| + | <syntaxhighlight lang="json"> | ||
| + | "DhcpDdns": { | ||
| + | "ip-address": "127.0.0.1", | ||
| + | "port": 53001, | ||
| + | "dns-server-timeout": 500, | ||
| + | "ncr-protocol": "UDP", | ||
| + | "ncr-format": "JSON", | ||
| + | "tsig-keys": [ | ||
| + | { | ||
| + | "name": "key.four.example.com.", | ||
| + | "algorithm": "HMAC-SHA224", | ||
| + | "secret": "bZEG7Ow8OgAUPfLWV3aAUQ==" | ||
| + | } | ||
| + | ], | ||
| + | "forward-ddns": { | ||
| + | "ddns-domains": [ ] | ||
| + | }, | ||
| + | "reverse-ddns": { | ||
| + | "ddns-domains": [ ] | ||
| + | } | ||
| + | } | ||
| + | </syntaxhighlight> | ||
Version vom 1. Oktober 2024, 10:51 Uhr
- vim /etc/kea/kea-dhcp-ddns.conf
"DhcpDdns": {
"ip-address": "127.0.0.1",
"port": 53001,
"dns-server-timeout": 500,
"ncr-protocol": "UDP",
"ncr-format": "JSON",
"tsig-keys": [
{
"name": "key.four.example.com.",
"algorithm": "HMAC-SHA224",
"secret": "bZEG7Ow8OgAUPfLWV3aAUQ=="
}
],
"forward-ddns": {
"ddns-domains": [ ]
},
"reverse-ddns": {
"ddns-domains": [ ]
}
}