blob: 69e38f4df1557d38c018eaffadc30d3971b810ed [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Mark McClainb05c8762013-07-06 23:29:39 -04003# Neutron Open vSwitch L2 agent
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04004# -----------------------------
5
6# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +11007_XTRACE_NEUTRON_OVSL2=$(set +o | grep xtrace)
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04008set +o xtrace
9
Mark McClainb05c8762013-07-06 23:29:39 -040010source $TOP_DIR/lib/neutron_plugins/ovs_base
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040011
Ian Wienandaee18c72014-02-21 15:35:08 +110012function neutron_plugin_create_nova_conf {
Mark McClainb05c8762013-07-06 23:29:39 -040013 _neutron_ovs_base_configure_nova_vif_driver
Kyle Mesterybd085502014-04-30 23:50:29 +000014 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
Gary Kotton51c681d2014-04-22 01:40:56 -070015 iniset $NOVA_CONF xenserver vif_driver nova.virt.xenapi.vif.XenAPIOpenVswitchDriver
16 iniset $NOVA_CONF xenserver ovs_integration_bridge $XEN_INTEGRATION_BRIDGE
Mark McClainb05c8762013-07-06 23:29:39 -040017 # Disable nova's firewall so that it does not conflict with neutron
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040018 iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
19 fi
20}
21
Ian Wienandaee18c72014-02-21 15:35:08 +110022function neutron_plugin_install_agent_packages {
Mark McClainb05c8762013-07-06 23:29:39 -040023 _neutron_ovs_base_install_agent_packages
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040024}
25
Ian Wienandaee18c72014-02-21 15:35:08 +110026function neutron_plugin_configure_debug_command {
Mark McClainb05c8762013-07-06 23:29:39 -040027 _neutron_ovs_base_configure_debug_command
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040028}
29
Ian Wienandaee18c72014-02-21 15:35:08 +110030function neutron_plugin_configure_dhcp_agent {
Sean M. Collins2a242512016-05-03 09:03:09 -040031 local conf_file=$1
32 iniset $conf_file DEFAULT dhcp_agent_manager neutron.agent.dhcp_agent.DhcpAgentWithStateReport
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040033}
34
Ian Wienandaee18c72014-02-21 15:35:08 +110035function neutron_plugin_configure_l3_agent {
Sean M. Collins2a242512016-05-03 09:03:09 -040036 local conf_file=$1
Mark McClainb05c8762013-07-06 23:29:39 -040037 _neutron_ovs_base_configure_l3_agent
Sean M. Collins2a242512016-05-03 09:03:09 -040038 iniset $conf_file DEFAULT l3_agent_manager neutron.agent.l3_agent.L3NATAgentWithStateReport
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040039}
40
Ian Wienandaee18c72014-02-21 15:35:08 +110041function neutron_plugin_configure_plugin_agent {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040042 # Setup integration bridge
Mark McClainb05c8762013-07-06 23:29:39 -040043 _neutron_ovs_base_setup_bridge $OVS_BRIDGE
44 _neutron_ovs_base_configure_firewall_driver
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040045
46 # Setup agent for tunneling
Kyle Mesterybd085502014-04-30 23:50:29 +000047 if [[ "$OVS_ENABLE_TUNNELING" == "True" ]]; then
Edgar Magana6f335b92014-07-10 15:42:44 -070048 iniset /$Q_PLUGIN_CONF_FILE ovs local_ip $TUNNEL_ENDPOINT_IP
Hirofumi Ichiharad48d6722015-07-04 22:58:44 +090049 iniset /$Q_PLUGIN_CONF_FILE ovs tunnel_bridge $OVS_TUNNEL_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040050 fi
51
52 # Setup physical network bridge mappings. Override
53 # ``OVS_VLAN_RANGES`` and ``OVS_BRIDGE_MAPPINGS`` in ``localrc`` for more
54 # complex physical network configurations.
Kyle Mesterybd085502014-04-30 23:50:29 +000055 if [[ "$OVS_BRIDGE_MAPPINGS" == "" ]] && [[ "$PHYSICAL_NETWORK" != "" ]] && [[ "$OVS_PHYSICAL_BRIDGE" != "" ]]; then
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040056 OVS_BRIDGE_MAPPINGS=$PHYSICAL_NETWORK:$OVS_PHYSICAL_BRIDGE
57
Sean M. Collins54d16f72016-03-15 15:18:14 -040058 # Configure bridge manually with physical interface as port for multi-node
59 _neutron_ovs_base_add_bridge $OVS_PHYSICAL_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040060 fi
61 if [[ "$OVS_BRIDGE_MAPPINGS" != "" ]]; then
Gary Kottond42634f2013-06-24 09:26:55 +000062 iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings $OVS_BRIDGE_MAPPINGS
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040063 fi
Mark McClainb05c8762013-07-06 23:29:39 -040064 AGENT_BINARY="$NEUTRON_BIN_DIR/neutron-openvswitch-agent"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040065
Kyle Mesterybd085502014-04-30 23:50:29 +000066 if [ "$VIRT_DRIVER" == 'xenserver' ]; then
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040067 # Make a copy of our config for domU
Mate Lakat1a247e82014-08-05 14:32:51 +010068 sudo cp /$Q_PLUGIN_CONF_FILE "/$Q_PLUGIN_CONF_FILE.domU"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040069
Huan Xie201e3c12015-08-27 12:34:24 +010070 # change domU's config file to STACK_USER
71 sudo chown $STACK_USER:$STACK_USER /$Q_PLUGIN_CONF_FILE.domU
72
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040073 # Deal with Dom0's L2 Agent:
Mark McClainb05c8762013-07-06 23:29:39 -040074 Q_RR_DOM0_COMMAND="$NEUTRON_BIN_DIR/neutron-rootwrap-xen-dom0 $Q_RR_CONF_FILE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040075
76 # For now, duplicate the xen configuration already found in nova.conf
Gary Kottond42634f2013-06-24 09:26:55 +000077 iniset $Q_RR_CONF_FILE xenapi xenapi_connection_url "$XENAPI_CONNECTION_URL"
78 iniset $Q_RR_CONF_FILE xenapi xenapi_connection_username "$XENAPI_USER"
79 iniset $Q_RR_CONF_FILE xenapi xenapi_connection_password "$XENAPI_PASSWORD"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040080
81 # Under XS/XCP, the ovs agent needs to target the dom0
82 # integration bridge. This is enabled by using a root wrapper
83 # that executes commands on dom0 via a XenAPI plugin.
Huan Xie201e3c12015-08-27 12:34:24 +010084 # XenAPI does not support daemon rootwrap now, so set root_helper_daemon empty
Gary Kottond42634f2013-06-24 09:26:55 +000085 iniset /$Q_PLUGIN_CONF_FILE agent root_helper "$Q_RR_DOM0_COMMAND"
Huan Xie201e3c12015-08-27 12:34:24 +010086 iniset /$Q_PLUGIN_CONF_FILE agent root_helper_daemon ""
87
88 # Disable minimize polling, so that it can always detect OVS and Port changes
89 # This is a problem of xenserver + neutron, bug has been reported
90 # https://bugs.launchpad.net/neutron/+bug/1495423
91 iniset /$Q_PLUGIN_CONF_FILE agent minimize_polling False
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040092
93 # Set "physical" mapping
Gary Kottond42634f2013-06-24 09:26:55 +000094 iniset /$Q_PLUGIN_CONF_FILE ovs bridge_mappings "physnet1:$FLAT_NETWORK_BRIDGE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040095
96 # XEN_INTEGRATION_BRIDGE is the integration bridge in dom0
Gary Kottond42634f2013-06-24 09:26:55 +000097 iniset /$Q_PLUGIN_CONF_FILE ovs integration_bridge $XEN_INTEGRATION_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040098
99 # Set up domU's L2 agent:
100
Huan Xie2f5596e2016-04-05 22:22:48 -0700101 # Create a bridge "br-$VLAN_INTERFACE"
102 _neutron_ovs_base_add_bridge "br-$VLAN_INTERFACE"
103 # Add $VLAN_INTERFACE to that bridge
104 sudo ovs-vsctl -- --may-exist add-port "br-$VLAN_INTERFACE" $VLAN_INTERFACE
Huan Xie201e3c12015-08-27 12:34:24 +0100105
106 # Create external bridge and add port
107 _neutron_ovs_base_add_bridge $PUBLIC_BRIDGE
Huan Xie2f5596e2016-04-05 22:22:48 -0700108 sudo ovs-vsctl -- --may-exist add-port $PUBLIC_BRIDGE $PUBLIC_INTERFACE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400109
110 # Set bridge mappings to "physnet1:br-$GUEST_INTERFACE_DEFAULT"
Huan Xie2f5596e2016-04-05 22:22:48 -0700111 iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs bridge_mappings "physnet1:br-$VLAN_INTERFACE,physnet-ex:$PUBLIC_BRIDGE"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400112 # Set integration bridge to domU's
Gary Kottond42634f2013-06-24 09:26:55 +0000113 iniset "/$Q_PLUGIN_CONF_FILE.domU" ovs integration_bridge $OVS_BRIDGE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400114 # Set root wrap
Gary Kottond42634f2013-06-24 09:26:55 +0000115 iniset "/$Q_PLUGIN_CONF_FILE.domU" agent root_helper "$Q_RR_COMMAND"
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400116 fi
Akihiro Motoki2307f9d2014-08-09 18:58:20 +0900117 iniset /$Q_PLUGIN_CONF_FILE agent tunnel_types $Q_TUNNEL_TYPES
Michal Ptacekc1605552015-09-23 21:02:02 +0100118 iniset /$Q_PLUGIN_CONF_FILE ovs datapath_type $OVS_DATAPATH_TYPE
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400119}
120
Ian Wienandaee18c72014-02-21 15:35:08 +1100121function neutron_plugin_setup_interface_driver {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400122 local conf_file=$1
Martin Hickeydca49de2015-10-20 12:13:19 +0100123 iniset $conf_file DEFAULT interface_driver openvswitch
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400124}
125
Ian Wienandaee18c72014-02-21 15:35:08 +1100126function neutron_plugin_check_adv_test_requirements {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400127 is_service_enabled q-agt && is_service_enabled q-dhcp && return 0
128}
129
130# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100131$_XTRACE_NEUTRON_OVSL2