2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

Add new file

This commit is contained in:
Suzanne Goldlust
2018-10-04 09:59:54 -04:00
committed by Tomek Mrugalski
parent 7a09bc67de
commit 474af3ae39

46
doc/api/network4-add.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "network4-add",
"brief": "The network4-add command is used to add a new shared network.",
"description": "See <xref linkend=\"idp75\"/>",
"support": [ "kea-dhcp4", "kea-dhcp6" ],
"avail": "1.3.0",
"hook": "subnet_cmds",
"cmd-syntax": "{
\"command\": \"network4-add\",
\"arguments\": {
\"shared-networks\": [ {
\"name\": \"floor13\",
\"subnet4\": [
{
\"id\": 100,
\"pools\": [ { \"pool\": \"192.0.2.2-192.0.2.99\" } ],
\"subnet\": \"192.0.2.0/24\",
\"option-data\": [
{
\"name\": \"routers\",
\"data\": \"192.0.2.1\"
}
]
},
{
\"id\": 101,
\"pools\": [ { \"pool\": \"192.0.3.2-192.0.3.99\" } ],
\"subnet\": \"192.0.3.0/24\",
\"option-data\": [
{
\"name\": \"routers\",
\"data\": \"192.0.3.1\"
}
]
} ]
} ]
}
}",
"resp-syntax": "{
\"arguments\": {
\"shared-networks\": [ { \"name\": \"floor13\" } ]
},
\"result\": 0,
\"text\": \"A new IPv4 shared network \'floor13\' added\"
}",
}