2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-07 17:35:18 +00:00

[lib] Extend host structure to support auth keys for reconfiguration.

See issue #83
This commit is contained in:
mayya
2018-06-10 18:45:34 +02:00
committed by Tomek Mrugalski
parent 2147c6a340
commit 2090af48c1
25 changed files with 445 additions and 65 deletions

View File

@@ -176,6 +176,7 @@ CREATE TABLE IF NOT EXISTS ipv6_reservations (
prefix_len TINYINT(3) UNSIGNED NOT NULL DEFAULT 128,
type TINYINT(4) UNSIGNED NOT NULL DEFAULT 0,
dhcp6_iaid INT UNSIGNED NULL,
auth_key VARCHAR(128) NOT NULL,
host_id INT UNSIGNED NOT NULL,
PRIMARY KEY (reservation_id),
INDEX fk_ipv6_reservations_host_idx (host_id ASC),