mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-02 15:05:16 +00:00
[5184] Add authoritative flag to sample configs
This commit is contained in:
committed by
Tomek Mrugalski
parent
121c30d0f0
commit
c39d33a6ff
@@ -115,6 +115,12 @@
|
|||||||
// can be overridden on a subnet level.
|
// can be overridden on a subnet level.
|
||||||
"match-client-id": true,
|
"match-client-id": true,
|
||||||
|
|
||||||
|
// By default, Kea ignores requests by clients for unknown IP addresses,
|
||||||
|
// because other non-cooperating DHCP servers could reside on the same
|
||||||
|
// network (RFC 2131). This parameter is defined globally, but can be
|
||||||
|
// overriden on a subnet level
|
||||||
|
"authoritative": false,
|
||||||
|
|
||||||
// The following list defines subnets. Each subnet consists of at
|
// The following list defines subnets. Each subnet consists of at
|
||||||
// least subnet and pool entries. One extra feature that requires
|
// least subnet and pool entries. One extra feature that requires
|
||||||
// some explanation is user-context. This is a structure that you can
|
// some explanation is user-context. This is a structure that you can
|
||||||
@@ -157,6 +163,14 @@
|
|||||||
"relay": {
|
"relay": {
|
||||||
"ip-address": "192.168.1.1"
|
"ip-address": "192.168.1.1"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// This particular subnet has the authoritative value changed.
|
||||||
|
// This casuses Kea to reply to requests with unknown IP addresses
|
||||||
|
// with a DHCPNAK message.
|
||||||
|
"pools": [ { "pool": "192.0.5.100 - 192.0.5.200" } ],
|
||||||
|
"subnet": "192.0.5.0/24",
|
||||||
|
"authoritative": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@@ -40,6 +40,12 @@
|
|||||||
// globally, but can be overridden on a subnet level.
|
// globally, but can be overridden on a subnet level.
|
||||||
"match-client-id": true,
|
"match-client-id": true,
|
||||||
|
|
||||||
|
// By default, Kea ignores requests by clients for unknown IP addresses,
|
||||||
|
// because other non-cooperating DHCP servers could reside on the same
|
||||||
|
// network (RFC 2131). This parameter is defined globally, but can be
|
||||||
|
// overriden on a subnet level
|
||||||
|
"authoritative": false,
|
||||||
|
|
||||||
// The following list defines subnets. Each subnet consists of at
|
// The following list defines subnets. Each subnet consists of at
|
||||||
// least subnet and pool entries.
|
// least subnet and pool entries.
|
||||||
"subnet4": [
|
"subnet4": [
|
||||||
|
@@ -50,6 +50,7 @@
|
|||||||
"match-client-id": false,
|
"match-client-id": false,
|
||||||
"option-data": [ ],
|
"option-data": [ ],
|
||||||
"rebind-timer": 150,
|
"rebind-timer": 150,
|
||||||
|
"authoritative": true,
|
||||||
|
|
||||||
// If all the traffic coming from that shared network is reachable
|
// If all the traffic coming from that shared network is reachable
|
||||||
// via relay and that relay always use the same IP address, you
|
// via relay and that relay always use the same IP address, you
|
||||||
|
Reference in New Issue
Block a user