Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian Schrader
Kea
Commits
c33bbfc4
Commit
c33bbfc4
authored
Feb 01, 2017
by
Tomek Mrugalski
🛰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[5105] User's Guide updated.
parent
45e72569
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
doc/guide/dhcp4-srv.xml
doc/guide/dhcp4-srv.xml
+28
-0
doc/guide/dhcp6-srv.xml
doc/guide/dhcp6-srv.xml
+27
-0
No files found.
doc/guide/dhcp4-srv.xml
View file @
c33bbfc4
...
...
@@ -1016,6 +1016,34 @@ temporarily override a list of interface names and listen on all interfaces.
structures. "Type" designates the format of the data: the meanings of
the various types is given in
<xref
linkend=
"dhcp-types"
/>
.
</para>
<para>
When the data field is a string, and that string contains the comma
(,; U+002C) character, the comma must be escaped with a reverse solidus
character (\; U+005C). For example, the string
"
foo,bar
"
would be represented as:
<screen>
"Dhcp4": {
"subnet4": [
{
"pools": [
{
<userinput>
"option-data": [
{
"name": "boot-file-name",
"data": "foo\,bar"
}
]
</userinput>
},
...
],
...
},
...
],
...
}
</screen>
</para>
<para>
Some options are designated as arrays, which means that more than one
value is allowed in such an option. For example the option time-servers
...
...
doc/guide/dhcp6-srv.xml
View file @
c33bbfc4
...
...
@@ -1050,6 +1050,33 @@ temporarily override a list of interface names and listen on all interfaces.
which was not assigned by IANA) are listed in
<xref
linkend=
"dhcp6-exp-options-list"
/>
.
</para>
<para>
When the data field is a string, and that string contains the comma
(,; U+002C) character, the comma must be escaped with a reverse solidus
character (\; U+005C). For example, the string
"
EST5EDT4,M3.2.0/02:00,M11.1.0/02:00
"
would be
represented as:
<screen>
"Dhcp6": {
"subnet6": [
{
"pools": [
{
<userinput>
"option-data": [
{
"name": "new-posix-timezone",
"data": "EST5EDT4\,M3.2.0/02:00\,M11.1.0/02:00"
}
]
</userinput>
},
...
],
...
},
...
],
...
}
</screen>
</para>
<para>
Some options are designated as arrays, which means that more than one
value is allowed in such an option. For example the option dns-servers
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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