src/share/api/gss-tsig-list.json
src/share/api/gss-tsig-purge-all.json
src/share/api/gss-tsig-purge.json
+src/share/api/gss-tsig-rekey-all.json
+src/share/api/gss-tsig-rekey.json
src/share/api/ha-continue.json
src/share/api/ha-heartbeat.json
src/share/api/ha-maintenance-cancel.json
The ``gss-tsig-rekey-all`` Command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-The command unconditionally creates new GSS-TSIG keys for (rekeys)
-all DNS servers.
+This command unconditionally creates new GSS-TSIG keys (rekeys) for all DNS servers.
An example command invocation looks like this:
The ``gss-tsig-rekey`` Command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-The command unconditionally creates new GSS-TSIG keys for (rekeys)
-a specified DNS server.
+This command unconditionally creates new GSS-TSIG keys (rekeys) for a specified DNS server.
An example command invocation looks like this:
.. code-block:: json
{
- "command": "gss-tsig-purge",
+ "command": "gss-tsig-rekey",
"arguments": {
"server-id": "foo"
}
api_files += $(top_srcdir)/src/share/api/gss-tsig-list.json
api_files += $(top_srcdir)/src/share/api/gss-tsig-purge-all.json
api_files += $(top_srcdir)/src/share/api/gss-tsig-purge.json
+api_files += $(top_srcdir)/src/share/api/gss-tsig-rekey-all.json
+api_files += $(top_srcdir)/src/share/api/gss-tsig-rekey.json
api_files += $(top_srcdir)/src/share/api/ha-continue.json
api_files += $(top_srcdir)/src/share/api/ha-heartbeat.json
api_files += $(top_srcdir)/src/share/api/ha-maintenance-cancel.json
" \"command\": \"gss-tsig-purge-all\"",
"}"
],
- "description": [ "See <xref linkend=\"command-gss-tsig--purge-all\"/>" ],
+ "description": [ "See <xref linkend=\"command-gss-tsig-purge-all\"/>" ],
"hook": "gss_tsig",
"name": "gss-tsig-purge-all",
"support": [ "kea-dhcp-ddns" ],
{
"access": "write",
"avail": "2.0.0",
- "brief": [ "This command removes not usable GSS-TSIG keys for the specified server."
- ],
+ "brief": [ "This command removes not usable GSS-TSIG keys for the specified server." ],
"cmd-syntax": [
"{",
" \"command\": \"gss-tsig-purge\",",
--- /dev/null
+{
+ "access": "write",
+ "avail": "2.0.0",
+ "brief": [ "This command unconditionally creates new GSS-TSIG keys (rekeys) for all DNS servers." ],
+ "cmd-syntax": [
+ "{",
+ " \"command\": \"gss-tsig-rekey-all\"",
+ "}"
+ ],
+ "description": [ "See <xref linkend=\"command-gss-tsig-rekey-all\"/>" ],
+ "hook": "gss_tsig",
+ "name": "gss-tsig-rekey-all",
+ "support": [ "kea-dhcp-ddns" ],
+ "resp-syntax": [
+ "{",
+ " \"result\": 0,",
+ " \"text\": \"rekeyed\"",
+ "}"
+ ]
+}
--- /dev/null
+{
+ "access": "write",
+ "avail": "2.0.0",
+ "brief": [ "The command unconditionally creates new GSS-TSIG keys for (rekeys) a specified DNS server."
+ ],
+ "cmd-syntax": [
+ "{",
+ " \"command\": \"gss-tsig-rekey\",",
+ " \"arguments\": {",
+ " \"server-id\": \"foo\"",
+ " }",
+ "}"
+ ],
+ "description": [ "See <xref linkend=\"command-gss-tsig-rekey\"/>" ],
+ "hook": "gss_tsig",
+ "name": "gss-tsig-rekey",
+ "support": [ "kea-dhcp-ddns" ],
+ "resp-syntax": [
+ "{",
+ " \"result\": 0,",
+ " \"text\": \"GSS-TSIG server[foo] rekeyed\"",
+ "}"
+ ]
+}