Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
00d65ea6
Commit
00d65ea6
authored
Dec 07, 2016
by
Tomek Mrugalski
🛰
Browse files
[5036] Comments added.
parent
dfac5a62
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/examples/kea6/advanced.json
View file @
00d65ea6
...
...
@@ -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::"
,
...
...
src/bin/dhcp6/dhcp6_parser.yy
View file @
00d65ea6
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment