Estos contenidos se han traducido de forma automática para su comodidad, pero Huawei Cloud no garantiza la exactitud de estos. Para consultar los contenidos originales, acceda a la versión en inglés.
Centro de ayuda/
Elastic IP/
Referencia de la API/
Ejemplos de aplicación/
Desvinculación de un EIP de un ECS
Actualización más reciente 2022-11-08 GMT+08:00
Desvinculación de un EIP de un ECS
Escenarios
Esta sección describe cómo desvincular un EIP de un ECS llamando a las API.
Prerrequisitos
- Usted ha comprado un ECS.
- If you use a token for authentication, you must obtain the token and add to the request header when making an API call. Obtain the token by following instructions in section .
El token obtenido de IAM es válido por solo 24 horas. Si desea utilizar un token para la autenticación, puede almacenarlo en caché para evitar llamadas frecuentes.
Procedimiento
- Query EIP details.
- Enviar GET /v1/project_id/publicips/publicip_id. El parámetro project_id indica el ID del proyecto.
- Agregue X-Auth-Token al encabezado de solicitud.
- Check the response message.
- The request is successful if the following response is displayed.
{ "publicip": { "id": "f6318bef-6508-4ea5-a48f-6152b6b1a8fb", "status": "ACTIVE", "type": "5_bgp", "port_id": "a135e9b8-1630-40d2-a6c5-eb534a61efbe", "public_ip_address": "10.xx.xx.162", "private_ip_address": "192.168.1.131", "port_id": "a135e9b8-1630-40d2-a6c5-eb534a61efbe", "tenant_id": "26ae5181a416420998eb2093aaed84d9", "create_time": "2019-03-27 01:33:18", "bandwidth_id": "02da78da-4fb0-4880-b512-f516cdeb8ef3", "bandwidth_name": "test", "bandwidth_share_type": "PER", "bandwidth_size": 1, "enterprise_project_id": "0", "profile": {}, "ip_version": 4 } }
- Para obtener más información sobre los códigos de error cuando la solicitud es anormal, consulte Códigos de error.
- The request is successful if the following response is displayed.
- Unbind the EIP from the ECS NIC.
- Enviar PUT /v1/project_id/publicips/publicip_id. El parámetro project_id indica el ID del proyecto.
- Agregue X-Auth-Token al encabezado de solicitud.
- Specify the following parameters in the request body:
{ "publicip": { "port_id": "" } }
- Check the response message.
- The request is successful if the following response is displayed.
{ "publicip": { "id": "f6318bef-6508-4ea5-a48f-6152b6b1a8fb", "status": "DOWN", "type": "5_bgp", "public_ip_address": "10.xx.xx.162", "bandwidth_id": "02da78da-4fb0-4880-b512-f516cdeb8ef3", "bandwidth_name": "test", "bandwidth_share_type": "PER", "bandwidth_size": 1, "tenant_id": "26ae5181a416420998eb2093aaed84d9", "create_time": "2019-03-27 01:33:18", "enterprise_project_id": "0", "profile": {} "ip_version": 4 } }
- The request is successful if the following response is displayed.
- Para obtener más información sobre los códigos de error cuando la solicitud es anormal, consulte Códigos de error.
Tema principal: Ejemplos de aplicación
Comentarios
¿Le pareció útil esta página?
Deje algún comentario
Muchas gracias por sus comentarios. Seguiremos trabajando para mejorar la documentación.
El sistema está ocupado. Vuelva a intentarlo más tarde.