diff options
| author | Ankur Gupta <ankur.gupta@intel.com> | 2016-03-29 10:51:06 -0600 |
|---|---|---|
| committer | Ankur Gupta <ankur.gupta@intel.com> | 2016-05-02 09:47:07 -0500 |
| commit | dc3d3ea77beb73f0b8cfaa8ac66ed02e03508066 (patch) | |
| tree | ed3230cde26c18311a3ba1538f7684a90cc413ad /doc/source | |
| parent | 9e7f0cf1a544e13d472f49b64d1c5320f6f8d08c (diff) | |
| download | python-openstackclient-dc3d3ea77beb73f0b8cfaa8ac66ed02e03508066.tar.gz | |
Spec to Implement IP Availability
Specification to lay out new commands to be added to OSC.
New feature has been implemented and released for Neutron
and python-neutronclient to display IP usages.
Commands will display the IP usage across all networks, or
detailed IP usage specifics for a given network
Partially Implements Blueprint: neutron-ip-capacity
Change-Id: I1c25de1bd924d92a96c20d60fa24d9e966b92dcd
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/specs/ip-availability.rst | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/doc/source/specs/ip-availability.rst b/doc/source/specs/ip-availability.rst new file mode 100644 index 00000000..cf0c71ff --- /dev/null +++ b/doc/source/specs/ip-availability.rst @@ -0,0 +1,61 @@ +=============== +ip availability +=============== + +Network v2 + +ip availability list +-------------------- + +List IP availability for network + +This command retrieves information about IP availability. +Useful for admins who need a quick way to check the +IP availability for all associated networks. +List specifically returns total IP capacity and the +number of allocated IP addresses from that pool. + +.. program:: ip availability list +.. code:: bash + + os ip availability list + [--ip-version {4,6}] + [--project <project>] + +.. option:: --ip-version {4,6} + + List IP availability for specific version + (Default is 4) + +.. option:: --project <project> + + List IP availability for specific project + (name or ID) + +ip availability show +-------------------- + +Show network IP availability details + +This command retrieves information about IP availability. +Useful for admins who need a quick way to +check the IP availability and details for a +specific network. + +This command will return information about +IP availability for the network as a whole, and +return availability information for each individual +subnet within the network as well. + + +.. program:: ip availability show +.. code:: bash + + os ip availability show + <network> + +.. _ip_availability_show-network +.. describe:: <network> + + Show network IP availability for specific + network (name or ID) |
