记一次Neutron无法创建网络问题的解决

现象

在GUI界面创建网络时,提示:

Unable to create the network. No tenant network is available for allocation.
Neutron server returns request_ids: [‘req-33ea0c01-a4fe-4af4-afd3-bdcdcf9347bc’]

问题分析

自己的ml2层配置:

[ml2]
type_drivers = flat,vlan,vxlan
tenant_network_types = vxlan
mechanism_drivers = linuxbridge,l2population
extension_drivers = port_security

可见,我加载了3个type_driver: flat,vlan,vxlan;
其中,普通用户默认的网络类型是vxlan,也就是说我的vxlan的相关配置可能写错了。

查看配置ml2_type_vxlan,没有内容。
查看安装时使用的官方Queen版本的安装向导文档,这里是需要配置vni_ranges的。

[ml2_type_vxlan]
#…
vni_ranges = 1:1000

原因

自己在配置ml2_type_vxlan时,将参数vni_ranges=1:1000错误写在了ml2_type_vlan中。
修正后,可以正确创建网络。

参考链接

https://docs.openstack.org/neutron/queens/install/controller-install-option2-ubuntu.html
https://ask.openstack.org/en/question/85338/neutron-net-create-unable-to-create-the-network-no-tenant-network-is-available-for-allocation/

你可能感兴趣的:(OpenStack)