@@ -241,8 +241,7 @@ TENANT_VLAN_RANGE=${TENANT_VLAN_RANGE:-}
241241# If using VLANs for tenant networks, or if using flat or VLAN
242242# provider networks, set in ``localrc`` to the name of the physical
243243# network, and also configure ``OVS_PHYSICAL_BRIDGE`` for the
244- # openvswitch agent or ``LB_PHYSICAL_INTERFACE`` for the linuxbridge
245- # agent, as described below.
244+ # openvswitch agent, as described below.
246245#
247246# Example: ``PHYSICAL_NETWORK=default``
248247PHYSICAL_NETWORK=${PHYSICAL_NETWORK:- public}
@@ -257,18 +256,6 @@ PHYSICAL_NETWORK=${PHYSICAL_NETWORK:-public}
257256# Example: ``OVS_PHYSICAL_BRIDGE=br-eth1``
258257OVS_PHYSICAL_BRIDGE=${OVS_PHYSICAL_BRIDGE:- br-ex}
259258
260- # With the linuxbridge agent, if using VLANs for tenant networks,
261- # or if using flat or VLAN provider networks, set in ``localrc`` to
262- # the name of the network interface to use for the physical
263- # network.
264- #
265- # Example: ``LB_PHYSICAL_INTERFACE=eth1``
266- if [[ $Q_AGENT == " linuxbridge" && -z ${LB_PHYSICAL_INTERFACE} ]]; then
267- default_route_dev=$( (ip route; ip -6 route) | grep ^default | head -n 1 | awk ' {print $5}' )
268- die_if_not_set $LINENO default_route_dev " Failure retrieving default route device"
269- LB_PHYSICAL_INTERFACE=$default_route_dev
270- fi
271-
272259# With the openvswitch plugin, set to True in ``localrc`` to enable
273260# provider GRE tunnels when ``ENABLE_TENANT_TUNNELS`` is False.
274261#
@@ -889,10 +876,6 @@ function cleanup_neutron {
889876 neutron_ovs_base_cleanup
890877 fi
891878
892- if [[ $Q_AGENT == " linuxbridge" ]]; then
893- neutron_lb_cleanup
894- fi
895-
896879 # delete all namespaces created by neutron
897880 for ns in $( sudo ip netns list | grep -o -E ' (qdhcp|qrouter|fip|snat)-[0-9a-f-]*' ) ; do
898881 sudo ip netns delete ${ns}
0 commit comments