2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-06 08:55:13 +00:00

[#93,!63] Server selection partially working for global paramneters.

This commit is contained in:
Marcin Siodelski
2018-10-09 20:41:27 +02:00
parent 1d48686b0e
commit 00e880aeb1
7 changed files with 220 additions and 197 deletions

View File

@@ -812,17 +812,10 @@ CREATE TABLE IF NOT EXISTS dhcp4_server (
KEY key_dhcp4_server_modification_ts (modification_ts)
) ENGINE=InnoDB;
# Special server entry meaning "unassigned server". This refers
# to configuration entries that shouldn't be used by any of the
# servers, e.g. when configuration entry is created but an
# administrator doesn't want the servers to start using it yet.
INSERT INTO dhcp4_server(id, tag, description, modification_ts)
VALUES(1, "unassigned", "special type: unassigned server", NOW());
# Special server entry meaning "all servers". This refers to
# the configuration entries owned by all servers.
INSERT INTO dhcp4_server(id, tag, description, modification_ts)
VALUES(2, "all", "special type: all servers", NOW());
VALUES(1, "all", "special type: all servers", NOW());
-- -----------------------------------------------------
-- Table `dhcp4_audit`
@@ -1077,17 +1070,10 @@ CREATE TABLE IF NOT EXISTS dhcp6_server (
KEY key_dhcp6_server_modification_ts (modification_ts)
) ENGINE=InnoDB;
# Special server entry meaning "unassigned server". This refers
# to configuration entries that shouldn't be used by any of the
# servers, e.g. when configuration entry is created but an
# administrator doesn't want the servers to start using it yet.
INSERT INTO dhcp6_server(id, tag, description, modification_ts)
VALUES(1, "unassigned", "special type: unassigned server", NOW());
# Special server entry meaning "all servers". This refers to
# the configuration entries owned by all servers.
INSERT INTO dhcp6_server(id, tag, description, modification_ts)
VALUES(2, "all", "special type: all servers", NOW());
VALUES(1, "all", "special type: all servers", NOW());
-- -----------------------------------------------------
-- Table `dhcp6_audit`