# Remote Error: IpAddressGenerationFailure No More IP Addresses Available on Network

## Problem

* The ***pf9-neutron-l3-agent*** service fails to start. The following error is logged in */var/log/pf9/pf9-neutron-l3-agent.log.*

{% tabs %}
{% tab title="None" %}

```none
ERROR neutron.agent.l3.router_info RemoteError: Remote error: IpAddressGenerationFailure No more IP addresses available on network [UUID].
```

{% endtab %}
{% endtabs %}

* The list network namespace output is empty.

{% tabs %}
{% tab title="None" %}

```none
$ ip netns list
```

{% endtab %}
{% endtabs %}

## Environment

* Platform9 Managed OpenStack - v3.6.0 and Higher
* Neutron

## Cause

* The IP addresses in the subnet allocation pool for the external network are exhausted.
* Either they all may be in use or may have stale IPs that need to be cleaned up.

## Resolution

1. Identify the floating IP addresses not associated with any port.

{% tabs %}
{% tab title="None" %}

```none
$ openstack floating ip list --network [network uuid] | grep None
```

{% endtab %}
{% endtabs %}

1. Delete the floating IPs with no port association.

{% tabs %}
{% tab title="None" %}

```none
$ openstack floating ip delete [UUID]
```

{% endtab %}
{% endtabs %}

1. Start the Neutron L3 Agent service as root.

{% tabs %}
{% tab title="None" %}

```none
# systemctl start pf9-neutron-l3-agent.service
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://platform9.com/kb/pmo/solution/remote-error-ipaddressgenerationfailure-no-more-ip-addresses-av.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
