blob: 1ae3041e42c1265975d1dcbde1ce7a89ed7bf14d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
==========
floatingip
==========
Compute v2
ip floating add
---------------
Add floating-ip to server
.. program:: ip floating add
.. code:: bash
os ip floating add
<ip_address>
<server>
.. describe:: <ip_address>
IP address to add to server
.. describe:: <server>
Server to receive the IP address (name or ID)
ip floating create
------------------
Create new floating-ip
.. program:: ip floating create
.. code:: bash
os ip floating create
<pool>
.. describe:: <pool>
Pool to fetch floating IP from
ip floating delete
------------------
Delete a floating-ip
.. program:: ip floating delete
.. code:: bash
os ip floating delete
<ip_address>
.. describe:: <ip_address>
IP address to delete
ip floating list
----------------
List floating-ips
.. program:: ip floating list
.. code:: bash
os ip floating list
ip floating remove
------------------
Remove floating-ip from server
.. program:: ip floating remove
.. code:: bash
os ip floating remove
<ip_address>
<server>
.. describe:: <ip_address>
IP address to remove from server
.. describe:: <server>
Server to remove the IP address from (name or ID)
|