kea-ctrl-agent.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  2. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
  3. [<!ENTITY mdash "&#8212;">]>
  4. <!--
  5. - Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
  6. -
  7. - This Source Code Form is subject to the terms of the Mozilla Public
  8. - License, v. 2.0. If a copy of the MPL was not distributed with this
  9. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
  10. -->
  11. <refentry>
  12. <refentryinfo>
  13. <productname>ISC Kea</productname>
  14. <date>Sep. 28, 2016</date>
  15. <edition>1.1.0</edition>
  16. <author>
  17. <contrib>The Kea software has been written by a number of
  18. engineers working for ISC: Tomek Mrugalski, Stephen Morris, Marcin
  19. Siodelski, Thomas Markwalder, Francis Dupont, Jeremy C. Reed,
  20. Wlodek Wencel and Shawn Routhier. That list is roughly in the
  21. chronological order in which the authors made their first
  22. contribution. For a complete list of authors and
  23. contributors, see AUTHORS file.</contrib>
  24. <orgname>Internet Systems Consortium, Inc.</orgname>
  25. </author>
  26. </refentryinfo>
  27. <refmeta>
  28. <refentrytitle>kea-ctrl-agent</refentrytitle>
  29. <manvolnum>8</manvolnum>
  30. <refmiscinfo class="manual">Kea</refmiscinfo>
  31. </refmeta>
  32. <refnamediv>
  33. <refname>kea-ctrl-agent</refname>
  34. <refpurpose>Control Agent process in Kea</refpurpose>
  35. </refnamediv>
  36. <docinfo>
  37. <copyright>
  38. <year>2016</year>
  39. <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
  40. </copyright>
  41. </docinfo>
  42. <refsynopsisdiv>
  43. <cmdsynopsis>
  44. <command>kea-ctrl-agent</command>
  45. <arg><option>-v</option></arg>
  46. <arg><option>-V</option></arg>
  47. <arg><option>-W</option></arg>
  48. <arg><option>-d</option></arg>
  49. <arg><option>-c<replaceable class="parameter">config-file</replaceable></option></arg>
  50. <arg><option>-t<replaceable class="parameter">config-file</replaceable></option></arg>
  51. </cmdsynopsis>
  52. </refsynopsisdiv>
  53. <refsect1>
  54. <title>DESCRIPTION</title>
  55. <para>
  56. The <command>kea-ctrl-agent</command> provides a REST service for
  57. controlling Kea services. The received HTTP requests are decapsulated
  58. and forwarded to the respective Kea services in JSON format. Received
  59. JSON responses are encapsulated within HTTP responses and returned to
  60. the controlling entity. Some commands may be handled by the Control
  61. Agent directly, and not forwarded to any Kea service.
  62. </para>
  63. </refsect1>
  64. <refsect1>
  65. <title>ARGUMENTS</title>
  66. <para>The arguments are as follows:</para>
  67. <variablelist>
  68. <varlistentry>
  69. <term><option>-v</option></term>
  70. <listitem><para>
  71. Display the version.
  72. </para></listitem>
  73. </varlistentry>
  74. <varlistentry>
  75. <term><option>-V</option></term>
  76. <listitem><para>
  77. Display the extended version.
  78. </para></listitem>
  79. </varlistentry>
  80. <varlistentry>
  81. <term><option>-W</option></term>
  82. <listitem><para>
  83. Display the configuration report.
  84. </para></listitem>
  85. </varlistentry>
  86. <varlistentry>
  87. <term><option>-d</option></term>
  88. <listitem><para>
  89. Verbose mode sets the logging level to debug. This is primarily
  90. for development purposes in stand-alone mode.
  91. </para></listitem>
  92. </varlistentry>
  93. <varlistentry>
  94. <term><option>-c</option></term>
  95. <listitem><para>
  96. Configuration file including the configuration for the Control Agent
  97. server. It may also contain configuration entries for other Kea
  98. services.
  99. </para></listitem>
  100. </varlistentry>
  101. <varlistentry>
  102. <term><option>-t</option></term>
  103. <listitem><para>
  104. Check the syntax of the configuration file and report the
  105. first error if any. Note that not all parameters are
  106. completely checked, in particular, service and client
  107. sockets are not opened, and hook libraries are not loaded.
  108. </para></listitem>
  109. </varlistentry>
  110. </variablelist>
  111. </refsect1>
  112. <refsect1>
  113. <title>DOCUMENTATION</title>
  114. <para>Kea comes with an extensive Kea User's Guide documentation
  115. that covers all aspects of running the Kea software -
  116. compilation, installation, configuration, configuration examples
  117. and many more. Kea also features a Kea Messages Manual, which
  118. lists all possible messages Kea can print with a brief
  119. description for each of them. Both documents are typically
  120. available in various formats (txt, html, pdf) with your Kea
  121. distribution. The on-line version is available at
  122. http://kea.isc.org/docs/.</para>
  123. <para>
  124. Kea source code is documented in the Kea Developer's Guide. It's
  125. on-line version is available at http://kea.isc.org. Please
  126. follow Developer's Guide link.
  127. </para>
  128. <para>
  129. Kea project website is available at: http://kea.isc.org.
  130. </para>
  131. </refsect1>
  132. <refsect1>
  133. <title>MAILING LISTS AND SUPPORT</title>
  134. <para>
  135. There are two mailing lists available for Kea project. kea-users
  136. (kea-users at lists.isc.org) is intended for Kea users, while kea-dev
  137. (kea-dev at lists.isc.org) is intended for Kea developers, prospective
  138. contributors and other advanced users. Both lists are available at
  139. http://lists.isc.org. The community provides best effort type of support
  140. on both of those lists.
  141. </para>
  142. <para>
  143. ISC provides professional support for Kea services. See
  144. https://www.isc.org/kea/ for details.
  145. </para>
  146. </refsect1>
  147. <refsect1>
  148. <title>HISTORY</title>
  149. <para>
  150. The <command>kea-ctrl-agent</command> was first coded in December 2016
  151. by Marcin Siodelski.
  152. </para>
  153. </refsect1>
  154. <refsect1>
  155. <title>SEE ALSO</title>
  156. <para>
  157. <citerefentry>
  158. <refentrytitle>kea-dhcp4</refentrytitle>
  159. <manvolnum>8</manvolnum>
  160. </citerefentry>,
  161. <citerefentry>
  162. <refentrytitle>kea-dhcp6</refentrytitle>
  163. <manvolnum>8</manvolnum>
  164. </citerefentry>,
  165. <citerefentry>
  166. <refentrytitle>kea-dhcp-ddns</refentrytitle>
  167. <manvolnum>8</manvolnum>
  168. </citerefentry>,
  169. <citerefentry>
  170. <refentrytitle>kea-admin</refentrytitle>
  171. <manvolnum>8</manvolnum>
  172. </citerefentry>,
  173. <citerefentry>
  174. <refentrytitle>keactrl</refentrytitle>
  175. <manvolnum>8</manvolnum>
  176. </citerefentry>,
  177. <citerefentry>
  178. <refentrytitle>perfdhcp</refentrytitle>
  179. <manvolnum>8</manvolnum>
  180. </citerefentry>,
  181. <citerefentry>
  182. <refentrytitle>kea-lfc</refentrytitle>
  183. <manvolnum>8</manvolnum>
  184. </citerefentry>,
  185. <citetitle>Kea Administrator's Guide</citetitle>.
  186. </para>
  187. </refsect1>
  188. </refentry><!--
  189. - Local variables:
  190. - mode: sgml
  191. - End:
  192. -->