I reconfigured the host to use OVS for everything in order to gain access to eth0. The OVS bridge was not given an Ethernet address -- instead, those were assigned to each IntPort. Now I can ping the routers on both 192.168.44.1 and 172.16.88.1 from the host. Unfortunately, this arrangement does not allow venet addresses to leave the box. The host and the CTs can communicate, but the CTs can get only see each other and the host.
-------------- /etc/network/interfaces ------------------
# network interface settings
allow-vmbr1 vlan11
iface vlan11 inet static
address 172.16.11.20
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
ovs_options tag=11
allow-vmbr1 open44
iface open44 inet static
address 192.168.44.20
netmask 255.255.255.0
gateway 192.168.44.1
ovs_type OVSIntPort
ovs_bridge vmbr1
allow-vmbr1 open88
iface open88 inet static
address 172.16.88.20
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
auto lo
iface lo inet loopback
allow-vmbr1 eth0
iface eth0 inet manual
ovs_type OVSPort
ovs_bridge vmbr1
auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports vlan11 open44 eth0 open88
iface vmbr0 inet manual
bridge_ports none
bridge_stp off
bridge_fd 0
---------------- ovs-vsctl show ----------------------------
336878e3-a754-4886-87b6-767062daebd8
Bridge "vmbr1"
Port "vlan11"
tag: 11
Interface "vlan11"
type: internal
Port "open88"
Interface "open88"
type: internal
Port "vmbr1"
Interface "vmbr1"
type: internal
Port "eth0"
Interface "eth0"
Port "open44"
Interface "open44"
type: internal
ovs_version: "2.0.90"
-------------- /etc/network/interfaces ------------------
# network interface settings
allow-vmbr1 vlan11
iface vlan11 inet static
address 172.16.11.20
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
ovs_options tag=11
allow-vmbr1 open44
iface open44 inet static
address 192.168.44.20
netmask 255.255.255.0
gateway 192.168.44.1
ovs_type OVSIntPort
ovs_bridge vmbr1
allow-vmbr1 open88
iface open88 inet static
address 172.16.88.20
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
auto lo
iface lo inet loopback
allow-vmbr1 eth0
iface eth0 inet manual
ovs_type OVSPort
ovs_bridge vmbr1
auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports vlan11 open44 eth0 open88
iface vmbr0 inet manual
bridge_ports none
bridge_stp off
bridge_fd 0
---------------- ovs-vsctl show ----------------------------
336878e3-a754-4886-87b6-767062daebd8
Bridge "vmbr1"
Port "vlan11"
tag: 11
Interface "vlan11"
type: internal
Port "open88"
Interface "open88"
type: internal
Port "vmbr1"
Interface "vmbr1"
type: internal
Port "eth0"
Interface "eth0"
Port "open44"
Interface "open44"
type: internal
ovs_version: "2.0.90"