Skip to content

Commit dc3d3ea

Browse files
committed
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
1 parent 9e7f0cf commit dc3d3ea

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
===============
2+
ip availability
3+
===============
4+
5+
Network v2
6+
7+
ip availability list
8+
--------------------
9+
10+
List IP availability for network
11+
12+
This command retrieves information about IP availability.
13+
Useful for admins who need a quick way to check the
14+
IP availability for all associated networks.
15+
List specifically returns total IP capacity and the
16+
number of allocated IP addresses from that pool.
17+
18+
.. program:: ip availability list
19+
.. code:: bash
20+
21+
os ip availability list
22+
[--ip-version {4,6}]
23+
[--project <project>]
24+
25+
.. option:: --ip-version {4,6}
26+
27+
List IP availability for specific version
28+
(Default is 4)
29+
30+
.. option:: --project <project>
31+
32+
List IP availability for specific project
33+
(name or ID)
34+
35+
ip availability show
36+
--------------------
37+
38+
Show network IP availability details
39+
40+
This command retrieves information about IP availability.
41+
Useful for admins who need a quick way to
42+
check the IP availability and details for a
43+
specific network.
44+
45+
This command will return information about
46+
IP availability for the network as a whole, and
47+
return availability information for each individual
48+
subnet within the network as well.
49+
50+
51+
.. program:: ip availability show
52+
.. code:: bash
53+
54+
os ip availability show
55+
<network>
56+
57+
.. _ip_availability_show-network
58+
.. describe:: <network>
59+
60+
Show network IP availability for specific
61+
network (name or ID)

0 commit comments

Comments
 (0)