Skip to content

Hub-LVol Port Adjustment in Port Tables #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ demo@worker-1 ~> sudo modprobe nbd
| Service | Direction | Source / Target Network | Port(s) | Protocol(s) |
|-----------------------------|-----------|-------------------------|-----------|-------------|
| ICMP | ingress | control | - | ICMP |
| bdts | ingress | storage | 4420 | TCP |
| Cluster Control | ingress | control | 5000 | TCP |
| Storage Node API | ingress | storage, control | 5000 | TCP |
| spdk-http-proxy | ingress | storage, control | 8080 | TCP |

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is actually a range: 8080-8180

| lvol-proxy | ingress | storage, control | 9090-9900 | TCP |
| node-nvmf | ingress | storage, control | 9060-9098 | TCP |
| lvol-nvmf | ingress | storage, control | 9099 | TCP |
| lvol-proxy | ingress | storage, control | 9100-9900 | TCP |

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could be:
lvol-nvmf-port
or just
lvol-nvmf

| SSH | ingress | storage, control, admin | 22 | TCP |
| Docker Daemon Remote Access | ingress | storage, control | 2375 | TCP |
| | | | | |
Expand Down
23 changes: 23 additions & 0 deletions docs/release-notes/25-3-ga.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "25.3-GA"
weight: 1000000
---

Simplyblock is happy to release the general availability release of Simplyblock 25.3.

## New Features

Simplyblock strives to provide a strong product. Following is a list of the enhancements and features that made it into
this release.

## Important Changes

- Firewall rules adjustment: An existing port range _TCP/9090-9900_ was changed to _TCP/9100-9900_. The firewall configuration and AWS Security Groups need to be adjusted accordingly.
- Firewall rules adjustment: A new port range _TCP/9060-9098_ was added. The firewall configuration and AWS Security Groups need to be adjusted accordingly.
- Firewall rules adjustment: A new port _TCP/9099_ was added. The firewall configuration and AWS Security Groups need to be adjusted accordingly.
- Firewall rules adjustment: An existing port _TCP/4420_ has been removed. The firewall configuration and AWS Security Groups need to be adjusted accordingly.

## Known Issues

Simplyblock always seeks to provide a stable and strong release. However, smaller known issues happen. Following is
a list of known issues for the current simplyblock release.
7 changes: 4 additions & 3 deletions snippets/storage-plane-network-port-table.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
| Service | Direction | Source / Target Network | Port(s) | Protocol(s) |
|-----------------------------|-----------|-------------------------|-----------|-------------|
| ICMP | ingress | control | - | ICMP |
| bdts | ingress | storage | 4420 | TCP |
| Cluster Control | ingress | control | 5000 | TCP |
| Storage Node API | ingress | storage, control | 5000 | TCP |
| spdk-http-proxy | ingress | storage, control | 8080-8890 | TCP |
| lvol-proxy | ingress | storage, control | 9090-9900 | TCP |
| node-nvmf | ingress | storage, control | 9060-9098 | TCP |
| lvol-nvmf | ingress | storage, control | 9099 | TCP |
| lvol-proxy | ingress | storage, control | 9100-9900 | TCP |
| SSH | ingress | storage, control, admin | 22 | TCP |
| Docker Daemon Remote Access | ingress | storage, control | 2375 | TCP |
| Docker Swarm Remote Access | ingress | storage, control | 2377 | TCP |
Expand Down