logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

OpenStack Port - Manage Network Ports | Online Free DevTools by Hexmos

Manage network ports with OpenStack Port. Configure virtual network interfaces and control IP address assignments. Free online tool, no registration required.

openstack-port

Manage OpenStack network ports (virtual network interfaces). More information: https://docs.openstack.org/python-openstackclient/latest/cli/command-objects/port.html.

  • List all ports:

openstack port list

  • Show detailed information about a specific port:

openstack port show {{port_id_or_name}}

  • Create a port on a specific network:

openstack port create --network {{network_id_or_name}} {{port_name}}

  • Create a port and assign it a fixed IP 192.168.1.50:

openstack port create --network {{network_id}} --fixed-ip subnet={{subnet_id}},ip-address=192.168.1.50 {{port_name}}

  • Delete a port:

openstack port delete {{port_id_or_name}}

See Also