KEA DHCP DDNS Netzwerk und Serveradministration
Version vom 31. März 2026, 13:26 Uhr von Thomas.will (Diskussion | Beiträge) (→Auf unserem Nameserver)
Auf unserem Nameserver
- Key erzeugen
- cd /etc/bind
- tsig-keygen -a HMAC-SHA256 it213.key >> /etc/bind/named.conf.local
- Keys zuweisen
- cat /etc/bind/named.conf.local
//tsig-keygen -a HMAC-SHA256 it213.key
key "it213.key" {
algorithm hmac-sha256;
secret "Y8zioRKf3L0lWlhZ5FReSdegcnWVD53IIqT9PPle5cU=";
};
zone "it213.int" {
type master;
file "/var/cache/bind/it213.int";
allow-update { key "it213.key"; };
};
zone "213.88.10.in-addr.arpa" {
type master;
file "/var/cache/bind/213.88.10.in-addr.arpa";
allow-update { key "it213.key"; };
};
zone "213.26.172.in-addr.arpa" {
type master;
file "/var/cache/bind/213.26.172.in-addr.arpa";
allow-update { key "it213.key"; };
};
- Name neustarten
- systemctl restart named
Auf dem Kea Server
- apt install