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
510bc2c8
Commit
510bc2c8
authored
Feb 28, 2017
by
Tomek Mrugalski
🛰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[5061] User's Guide updated.
parent
5ab41adb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
0 deletions
+43
-0
doc/Makefile.am
doc/Makefile.am
+2
-0
doc/guide/dhcp4-srv.xml
doc/guide/dhcp4-srv.xml
+22
-0
doc/guide/dhcp6-srv.xml
doc/guide/dhcp6-srv.xml
+19
-0
No files found.
doc/Makefile.am
View file @
510bc2c8
...
...
@@ -10,6 +10,7 @@ nobase_dist_doc_DATA = examples/ddns/sample1.json
nobase_dist_doc_DATA
+=
examples/ddns/template.json
nobase_dist_doc_DATA
+=
examples/kea4/advanced.json
nobase_dist_doc_DATA
+=
examples/kea4/backends.json
nobase_dist_doc_DATA
+=
examples/kea4/cassandra.json
nobase_dist_doc_DATA
+=
examples/kea4/classify.json
nobase_dist_doc_DATA
+=
examples/kea4/dhcpv4-over-dhcpv6.json
nobase_dist_doc_DATA
+=
examples/kea4/hooks.json
...
...
@@ -23,6 +24,7 @@ nobase_dist_doc_DATA += examples/kea4/single-subnet.json
nobase_dist_doc_DATA
+=
examples/kea4/with-ddns.json
nobase_dist_doc_DATA
+=
examples/kea6/advanced.json
nobase_dist_doc_DATA
+=
examples/kea6/backends.json
nobase_dist_doc_DATA
+=
examples/kea6/cassandra.json
nobase_dist_doc_DATA
+=
examples/kea6/classify.json
nobase_dist_doc_DATA
+=
examples/kea6/dhcpv4-over-dhcpv6.json
nobase_dist_doc_DATA
+=
examples/kea6/duid.json
...
...
doc/guide/dhcp4-srv.xml
View file @
510bc2c8
...
...
@@ -447,6 +447,11 @@ be followed by a comma and another object definition.</para>
the DHCPv4 server. In this case, set the value to the empty string:
<screen>
"Dhcp4": { "lease-database": {
<userinput>
"host" : ""
</userinput>
, ... }, ... }
</screen>
Should the database use a port different than standard, it may be
specified as well:
<screen>
"Dhcp4": { "lease-database": {
<userinput>
"port" : 12345
</userinput>
, ... }, ... }
</screen>
Should the database be located on a different system, you may need to specify a longer interval
for the connection timeout:
...
...
@@ -456,6 +461,17 @@ be followed by a comma and another object definition.</para>
The default value of five seconds should be more than adequate for local connections.
If a timeout is given though, it should be an integer greater than zero.
</para>
<para>
Note that host parameter is used by MySQL and PostgreSQL
backends. Cassandra has a concept of contact points that could be
used to contact the cluster, instead of a single IP or
hostname. It takes a list of comma separated IP addresses. This may be specified as:
<screen>
"Dhcp4": { "lease-database": {
<userinput>
"contact-points" : "192.0.2.1,192.0.2.2"
</userinput>
, ... }, ... }
</screen>
</para>
<para>
Finally, the credentials of the account under which the server will
access the database should be set:
<screen>
...
...
@@ -515,6 +531,12 @@ If a timeout is given though, it should be an integer greater than zero.
<screen>
"Dhcp4": { "hosts-database": {
<userinput>
"host" : ""
</userinput>
, ... }, ... }
</screen>
Should the database use a port different than standard, it may be
specified as well:
<screen>
"Dhcp4": { "hosts-database": {
<userinput>
"port" : 12345
</userinput>
, ... }, ... }
</screen>
</para>
<para>
Finally, the credentials of the account under which the server will
access the database should be set:
...
...
doc/guide/dhcp6-srv.xml
View file @
510bc2c8
...
...
@@ -442,6 +442,11 @@ be followed by a comma and another object definition.</para>
the DHCPv6 server. In this case, set the value to the empty string:
<screen>
"Dhcp6": { "lease-database": {
<userinput>
"host" : ""
</userinput>
, ... }, ... }
</screen>
Should the database use a port different than standard, it may be
specified as well:
<screen>
"Dhcp4": { "lease-database": {
<userinput>
"port" : 12345
</userinput>
, ... }, ... }
</screen>
Should the database be located on a different system, you may need to specify a longer interval
for the connection timeout:
...
...
@@ -451,6 +456,17 @@ be followed by a comma and another object definition.</para>
The default value of five seconds should be more than adequate for local connections.
If a timeout is given though, it should be an integer greater than zero.
</para>
<para>
Note that host parameter is used by MySQL and PostgreSQL
backends. Cassandra has a concept of contact points that could be
used to contact the cluster, instead of a single IP or
hostname. It takes a list of comma separated IP addresses. This may be specified as:
<screen>
"Dhcp4": { "lease-database": {
<userinput>
"contact-points" : "192.0.2.1,192.0.2.2"
</userinput>
, ... }, ... }
</screen>
</para>
<para>
Finally, the credentials of the account under which the server will
access the database should be set:
<screen>
...
...
@@ -509,6 +525,9 @@ If a timeout is given though, it should be an integer greater than zero.
the DHCPv6 server. In this case, set the value to the empty string:
<screen>
"Dhcp6": { "hosts-database": {
<userinput>
"host" : ""
</userinput>
, ... }, ... }
</screen>
<screen>
"Dhcp4": { "hosts-database": {
<userinput>
"port" : 12345
</userinput>
, ... }, ... }
</screen>
</para>
<para>
Finally, the credentials of the account under which the server will
...
...
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