In ml2_conf.ini file, what does it mean when the attribute “tenant_network_types” is set to multiple values?
E.g. tenant_network_types = vlan,gre,vxlan
I was told this let user to create different network types for the tenants.
However, I don’t see the option to specify the network type when creating a network.
localadmin@qa4:~/devstack$ neutron help net-create
usage: neutron net-create [-h] [-f {shell,table,value}] [-c COLUMN]
[--max-width <integer>] [--prefix PREFIX]
[--request-format {json,xml}]
[--tenant-id TENANT_ID] [--admin-state-down]
[--shared]
NAME
Create a network for a given tenant.
positional arguments:
NAME Name of network to create.
optional arguments:
-h, --help show this help message and exit
--request-format {json,xml}
The XML or JSON request format.
--tenant-id TENANT_ID
The owner tenant ID.
--admin-state-down Set admin state up to false.
--shared Set the network as shared.
output formatters:
output formatter options
-f {shell,table,value}, --format {shell,table,value}
the output format, defaults to table
-c COLUMN, --column COLUMN
specify the column(s) to include, can be repeated
table formatter:
--max-width <integer>
Maximum display width, 0 to disable
shell formatter:
a format a UNIX shell can parse (variable="value")
--prefix PREFIX add a prefix to all variable names
Is it possible to have VM1 of tenant 1 uses VLAN, and VM1 of tenant2 uses GRE; when both VMs reside at the same compute node?