Fix external network connection on OVN

Change-Id: I9a320011204ff5c6f4bce62ae3ca67ff9994f373
This commit is contained in:
Federico Ressi 2020-10-28 12:56:55 +01:00
parent a87f2c85d3
commit b0563a4ba4
2 changed files with 11 additions and 6 deletions

4
Vagrantfile vendored
View File

@ -99,10 +99,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# using a specific IP.
config.vm.network "private_network", ip: HOST_IP
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.

View File

@ -19,11 +19,20 @@ disable_service tempest
HOST_IP=192.168.33.10
IP_VERSION=4
ENABLE_CHASSIS_AS_GW=true
ENABLE_TLS=true
ML2_L3_PLUGIN=ovn-router,trunk
OVN_BUILD_MODULES=false
OVN_DBS_LOG_LEVEL=dbg
OVN_IGMP_SNOOPING_ENABLE=true
OVN_L3_CREATE_PUBLIC_NETWORK=true
PHYSICAL_NETWORK=public
PUBLIC_INTERFACE=eth0
Q_AGENT=ovn
Q_ML2_PLUGIN_MECHANISM_DRIVERS=ovn,logger
Q_ML2_PLUGIN_TYPE_DRIVERS=local,flat,vlan,geneve
Q_ML2_TENANT_NETWORK_TYPE="geneve"
PUBLIC_INTERFACE=eth2
Q_ML2_TENANT_NETWORK_TYPE=geneve
Q_USE_PROVIDERNET_FOR_PUBLIC=true
enable_service ovn-northd
enable_service ovn-controller