Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
e-INFRA.cz
documentation
Commits
0c09c0fe
Unverified
Commit
0c09c0fe
authored
1 month ago
by
r0zehnal0vak
Browse files
Options
Downloads
Patches
Plain Diff
request FIP from specific subnet
parent
59b5c67b
No related branches found
No related tags found
No related merge requests found
Pipeline
#613598
failed
1 month ago
Stage: test
Stage: build_img
Stage: build
Stage: deploy
Stage: after_test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
topics/compute/openstack/docs/technical-reference/brno-g2-site/networking.md
+22
-0
22 additions, 0 deletions
...stack/docs/technical-reference/brno-g2-site/networking.md
with
22 additions
and
0 deletions
topics/compute/openstack/docs/technical-reference/brno-g2-site/networking.md
+
22
−
0
View file @
0c09c0fe
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment