Hey,Not sure what specifically is wrong at this point (as not really great expert about ovn at the moment), but would like to ask some more questions which might be relevant.1. In openstack_user_config how have you defined network-northd_hosts / network-gateway_hosts ?2. I do see couple of plugins that are not compatible with ovn at least not on existing stable releases, including vpnaas, fwaas, and not sure about neutron_dynamic_routing.services.bgp.bgp_plugin.BgpPlugin since another project intends to provide same functionality:And that one does not work out of the box right now - I was about to check on what's needed to get it working and land support for the upcoming release.3. I'm also not sure about provided mappings, since it seems you wanna have both flat and vlan network, while providing only 1 mapping.In ovs at least (I think ovn is same here) if you have only 1 interface for both cases (flat and vlan) - the only way to have both is map "flat" network as tagged vlan. As interface is added to the bridge and then can't be re-used as other "provider" type.On Tue, Jan 23, 2024, 20:17 jjjamesg <jjjamesg@proton.me> wrote:I can't for the life of me get external connectivity working, openstack itself works i just cant get external connectivity working,I can see ovs has created br-ex with bond1 attached.
ovs-vsctl get open . external_ids:ovn-bridge-mapping shows: "physnst1:br-ex"I have tried creating the network with both:openstack network create --share --external --provider-physical-network physnet1 --provider-network-type vlan --provider-segment 233 publicopenstack network create --share --external --provider-physical-network physnet1 --provider-network-type flat publicnet-flatOnly errors i can see is in the neutron container when i try and either create an instance on said network or attach a fip is is:(similar errors from a vlan type network this is just the error i pulled at the time)ERROR neutron.plugins.ml2.managers [req-de7f1cb8-ac8e-4dd6-ad2a-e14afdb152b5 req-c6a2aaff-ccf9-4ef3-9ef7-1a8e4c7a1e41 9c27de6bdc4449abbbbcd5e5c4951bb9 2fced1ff77f5428eb2b63879bdd608cc - - default default] Failed to bind port 03cc1708-d4a2-4b11-bca2-40ebe0acff60 on host 02 for vnic_type normal using segments [{'id': '2ef64682-b5ff-472b-935d-a3c2b615d70f', 'network_type': 'flat', 'physical_network': 'physnet1', 'segmentation_id': None, 'network_id': '52b4f4e9-47f3-431b-8c45-ec8cc17f561d'}]WARNING neutron.scheduler.dhcp_agent_scheduler [None req-aafa81d9-479c-4f56-be6f-54d4ab3b42aa 1b29a2297a224cdcaaba84e0eac30205 bafabcf2414d4adf98cab165c3f3de12 - - default default] No more DHCP agentsWARNING neutron.api.rpc.agentnotifiers.dhcp_rpc_agent_api [None req-aafa81d9-479c-4f56-be6f-54d4ab3b42aa 1b29a2297a224cdcaaba84e0eac30205 bafabcf2414d4adf98cab165c3f3de12 - - default default] Unable to schedule network 5fa049f5-0ed4-4287-9c63-dd753c853c35: no agents available; will retry on subsequent port and subnet creation events.I just cant figure out WHY this isn't working..Below is my config:################ /etc/network/interfaces:#############auto bond1iface bond1 inet manualbond-slaves eno2 eno4bond-mode 802.3adbond-miimon 100bond-downdelay 200bond-updelay 200bond-lacp-rate 1mtu 9000auto bond1.30iface bond1.30 inet manualvlan-raw-device bond1## (br-pubv is for my public vip)auto bond1.232iface bond1.232 inet manualvlan-raw-device bond1auto br-overlayiface br-overlay inet staticbridge_stp offbridge_waitport 0bridge_fd 0bridge_ports bond1.30addressauto br-pubviface br-pubv inet staticaddressgatewaybridge_stp offbridge_waitport 0bridge_fd 0bridge_ports bond1.232################ openstack_user_config.yml:#############- network:container_bridge: "br-ex"network_interface: "bond1"type: "vlan"range: "232:332"net_name: "physnet1"group_binds:- neutron_ovn_controller################ user_variables.yml#############neutron_plugin_type: ml2.ovnneutron_plugin_base:- ovn-router- qos- neutron.services.ovn_l3.plugin.OVNL3RouterPlugin- neutron_dynamic_routing.services.bgp.bgp_plugin.BgpPlugin- vpnaas- metering- firewall_v2neutron_ml2_drivers_type: "vlan,local,geneve,flat"neutron_provider_networks:network_types: "geneve"network_geneve_ranges: "1:1000"network_vlan_ranges: "physnet1"network_mappings: "physnet1:br-ex"network_interface_mappings: "br-ex:bond1"Bond1 is a trunk port (no native vlan), that has access to both overlay vlan and the 232:332 vlan range which both work when setting either network as a bridge on bond1 so connectivity is there.I have network-northd/gateway_hosts defined as well as:neutron_neutron_conf_overrides:ovn:enable_distributed_floating_ip: Trueopenstack_host_specific_kernel_modules:- name: "openvswitch"pattern: "CONFIG_OPENVSWITCH"This should by all accounts just work, but for some reason for me it's not, what steps have i missed?