2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[5036] Comments added.

This commit is contained in:
Tomek Mrugalski
2016-12-07 15:07:48 +01:00
parent dfac5a62ce
commit 00d65ea699
2 changed files with 10 additions and 1 deletions

View File

@@ -67,6 +67,10 @@
{
"pools": [ { "pool": "2001:db8:1::/80" } ],
# This defines PD (prefix delegation) pools. In this case
# we have only one pool. That consists of /64 prefixes
# being delegated out of large /48 pool. Each delegated
# prefix will contain an excluded-prefix option.
"pd-pools": [
{
"prefix": "2001:db8:abcd::",

View File

@@ -933,15 +933,20 @@ sub_option_data: LCURLY_BRACKET {
};
// This defines parameters specified inside the map that itself
// is an entry in option-data list.
// is an entry in option-data list. It can either be empty
// or have a non-empty list of parameters.
option_data_params: %empty
| not_empty_option_data_params
;
// Those parameters can either be a single parameter or
// a list of parameters separated by comma.
not_empty_option_data_params: option_data_param
| not_empty_option_data_params COMMA option_data_param
;
// Each single option-data parameter can be one of the following
// expressions.
option_data_param: option_data_name
| option_data_data
| option_data_code