Skip to content
Snippets Groups Projects
Unverified Commit 0c09c0fe authored by r0zehnal0vak's avatar r0zehnal0vak
Browse files

request FIP from specific subnet

parent 59b5c67b
No related branches found
No related tags found
No related merge requests found
Pipeline #613598 failed
......@@ -26,6 +26,28 @@ There are 2 generally available external networks, which you can allocate floati
and interface in your internal network.
See [Create Router How-to Guide](../../../how-to-guides/create-router).
### Request a Floating IP from a specific subnet
If you want to allocate a Floating IP address (FIP) from a specific subnet, you can do so by specifying the desired subnet during allocation.
Example:
To get a FIP from the 147.251.255.0/24 subnet:
```openstack floating ip create --subnet external-ipv4-general-public-147-251-255-0 external-ipv4-general-public```
This command will return a free floating IP from the specified MUNI subnet.
Make sure to include the `--subnet` option with specified subnet name to allocate floating IP address from MUNI range.
To assign the allocated IP to your instance (replace test and the IP accordingly):
```openstack server add floating ip test 147.251.255.123```
You can verify connectivity like this:
```ncat -zv 147.251.255.123 22```
### Personal Projects
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment