更新时间:2023-12-27 GMT+08:00
更新浮动IP
功能介绍
更新浮动IP。
更新时需在URL中给出浮动IP地址的ID。
port_id为空,则表示浮动IP从端口解绑。
该接口有以下使用约束:
- 绑定浮动IP过程中,如果浮动IP处于“error”状态,请先尝试执行浮动IP解绑定动作。
- 不支持直接把已经绑定浮动IP的端口重新绑定到另外一个浮动IP上,必须先解绑再绑定。
请求消息
参数名称 |
类型 |
必选 |
说明 |
---|---|---|---|
floatingip |
floatingip object |
是 |
floatingip对象列表,参见表3。 |
响应消息
参数名称 |
类型 |
说明 |
---|---|---|
floatingip |
floatingip object |
floatingip对象列表,参见表5。 |
属性 |
类型 |
说明 |
---|---|---|
status |
String |
网络状态,可以为ACTIVE, DOWN或ERROR。
|
id |
String |
浮动IP地址的id。 |
floating_ip_address |
String |
浮动IP地址。 |
floating_network_id |
String |
外部网络的id。 |
router_id |
String |
所属路由器id。 |
port_id |
String |
端口id |
fixed_ip_address |
String |
关联端口的私有IP地址。 |
tenant_id |
String |
项目ID 。 |
dns_name |
String |
DNS名称 该参数当前仅在“华南-广州”开放 |
dns_domain |
String |
DNS域地址 该参数当前仅在“华南-广州”开放 |
请求示例
- 解绑实例。
PUT https://{Endpoint}/v2.0/floatingips/b997e0d4-3359-4c74-8f88-bc0af81cd5a2 { "floatingip": { "port_id": null } }
- 绑定实例,port id为f91f5763-c5a2-4458-979d-61e48b3c3fac。
PUT https://{Endpoint}/v2.0/floatingips/b997e0d4-3359-4c74-8f88-bc0af81cd5a2 { "floatingip": { "port_id": "f91f5763-c5a2-4458-979d-61e48b3c3fac" } }
响应示例
状态码: 200
(浮动IP与端口解绑)
{ "floatingip": { "id": "b997e0d4-3359-4c74-8f88-bc0af81cd5a2", "status": "DOWN", "router_id": null, "tenant_id": "bbfe8c41dd034a07bebd592bf03b4b0c", "floating_network_id": "0a2228f2-7f8a-45f1-8e09-9039e1d09975", "fixed_ip_address": null, "floating_ip_address": "88.88.215.205", "port_id": null, } }
(浮动IP与端口绑定)
{ "floatingip": { "id": "b997e0d4-3359-4c74-8f88-bc0af81cd5a2", "status": "DOWN", "router_id": null, "tenant_id": "bbfe8c41dd034a07bebd592bf03b4b0c", "floating_network_id": "0a2228f2-7f8a-45f1-8e09-9039e1d09975", "fixed_ip_address": "192.168.10.3", "floating_ip_address": "88.88.215.205", "port_id": "f91f5763-c5a2-4458-979d-61e48b3c3fac", } }
状态码
请参见状态码。
错误码
请参见错误码。