Launchpad

The "os port create" command missed some options including: [--security-group SECURITY_GROUP | --no-security- groups] [--extra-dhcp-opt EXTRA_DHCP_OPTS] [--qos-policy QOS_POLICY] [--allowed- address- pair ip_address= IP_ADDR[ ,mac_address= MAC_ADDR] | --no-allowed- address- pairs] [--dns-name DNS_NAME]

====

The option of "os create port command:

usage: openstack port create [-h] [-f {json,shell, table,value, yaml}]
                                 [-c COLUMN] [--max-width <integer>] [--noindent]
                                 [--prefix PREFIX] --network <network>
                                 [--device <device-id>]
                                 [--device- owner <device-owner>]
                                 [--vnic- type <vnic-type>] [--host <host-id>]
                                 [--fixed- ip subnet= <subnet> ,ip-address= <ip-address> ]
                                 [--binding- profile <binding-profile>]
                                 [--enable | --disable]
                                 [--mac- address <mac-address>]
                                 [--security- group <security-group> | --no-security- group]
                                 [--project <project>]
                                 [--project- domain <project-domain>]
                                 <name>

====

The option of "neutron port-create" command:

usage: neutron port-create [-h] [-f {json,shell, table,value, yaml}] [-c COLUMN]
                              [ --max-width <integer>] [--noindent]
                              [ --prefix PREFIX] [--request-format {json}]
                              [ --tenant- id TENANT_ID] [--name NAME]
                              [ --description DESCRIPTION]
                              [ --fixed- ip subnet_ id=SUBNET, ip_address= IP_ADDR]
                              [ --device- id DEVICE_ID]
                              [ --device- owner DEVICE_OWNER] [--admin- state-down]
                              [ --mac-address MAC_ADDRESS]
                              [ --vnic- type <direct | direct-physical | macvtap | normal | baremetal>]
                              [ --binding- profile BINDING_PROFILE]
                              [ --security- group SECURITY_GROUP | --no-security- groups]
                              [ --extra- dhcp-opt EXTRA_DHCP_OPTS]
                              [ --qos-policy QOS_POLICY]
                              [ --allowed- address- pair ip_address= IP_ADDR[ ,mac_address= MAC_ADDR]
                              | --no-allowed- address- pairs] [--dns-name DNS_NAME]
                              NETWORK

Comparing between those results. "os create port" command missed those options

Read the original on bugs.launchpad.net ↗