**Get ID of your VM, in this instance named my-vm**
```
VM_ID=$(openstack server list --name my-vm -f value -c ID)
```
**Create port for the network**
```
openstack port create --network public-muni-v6-432 --security-group default --host ${VM_ID} ipv6-port
```
Additional port configuration is available in [official CLI documentation](https://docs.openstack.org/python-openstackclient/train/cli/command-objects/port.html).