3.21.1. Show fixed IP information

 
MethodURIDescription
GET/v2/{tenant_id}/os-fixed-ips/{fixed_ip}

Shows information for a specified fixed IP address.

Normal response codes: 200

 3.21.1.1. Request

This table shows the URI parameters for the show fixed ip information request:

NameTypeDescription

{tenant_id}

​String

The ID for the tenant or account in a multi-tenancy cloud.

{fixed_ip}

​String

The fixed IP of interest to you.

This operation does not require a request body.

 3.21.1.2. Response

 

Example 3.171. Show fixed IP information: JSON response

{
    "fixed_ip": {
        "address": "192.168.1.1",
        "cidr": "192.168.1.0/24",
        "host": "host",
        "hostname": "openstack"
    }
}

 

Example 3.172. Show fixed IP information: XML response

<?xml version='1.0' encoding='UTF-8'?>
<fixed_ip>
  <cidr>192.168.1.0/24</cidr>
  <hostname>openstack</hostname>
  <host>host</host>
  <address>192.168.1.1</address>
</fixed_ip>

This operation does not return a response body.

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page


loading table of contents...