Disconnect the security group from the port
Disconnect the security group from the port
carefully
Traffic that was allowed by the group rules will be denied. Active sessions that were set by the group rules will be interrupted on the port.
If you disable all security groups from a port, traffic on the port will be completely blocked.
Control panel
OpenStack CLI
-
In the dashboard, on the top menu, click Products and select Cloud Servers.
-
Go to the Security Groups section.
-
Open the page of the group you want to disable → Ports tab.
-
On the port line, click .
-
If the group was the only group on the port, enter the group name to confirm disconnection.
-
Click Disable.
-
Disconnect the security group from the port:
openstack port unset \
--security-group <security-group> \
<port>Specify:
<security_group>
— The ID or name of the security group can be viewed with the commandopenstack security group list
;<port>
— The port ID can be viewed with the commandopenstack port list
. The list of ports to which the group is assigned can be viewed in the control panel: from the top menu, click Products → Cloud Servers → Security Groups → Security Group page → tab Ports.
-
Optional: disable all security groups assigned to the port:
openstack port set \
--no-security-group \
<port>Specify
<port>
— port ID, can be viewed using theopenstack port list
command.