blob: 7e8020930f4ea98ed4a93805895a9bfe8b2aabc9 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Mark McClainb05c8762013-07-06 23:29:39 -04003# Neutron Modular Layer 2 plugin
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04004# ------------------------------
5
6# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +11007_XTRACE_NEUTRON_ML2=$(set +o | grep xtrace)
Bob Kukurac9b0f1a2013-04-23 16:28:24 -04008set +o xtrace
9
Kyle Mesteryb7726592013-07-19 14:26:53 +000010# Enable this to simply and quickly enable tunneling with ML2.
Akihiro Motoki2307f9d2014-08-09 18:58:20 +090011# Select either 'gre', 'vxlan', or 'gre,vxlan'
Attila Fazekas8feaf6c2014-07-27 20:47:04 +020012Q_ML2_TENANT_NETWORK_TYPE=${Q_ML2_TENANT_NETWORK_TYPE:-"vxlan"}
Kyle Mesteryb7726592013-07-19 14:26:53 +000013# This has to be set here since the agent will set this in the config file
Kevin Bentone3cfbf12014-08-04 11:25:20 -060014if [[ "$Q_ML2_TENANT_NETWORK_TYPE" == "gre" || "$Q_ML2_TENANT_NETWORK_TYPE" == "vxlan" ]]; then
Akihiro Motoki2307f9d2014-08-09 18:58:20 +090015 Q_TUNNEL_TYPES=$Q_ML2_TENANT_NETWORK_TYPE
Kyle Mesterybd085502014-04-30 23:50:29 +000016elif [[ "$ENABLE_TENANT_TUNNELS" == "True" ]]; then
Akihiro Motoki2307f9d2014-08-09 18:58:20 +090017 Q_TUNNEL_TYPES=gre
Kyle Mesteryb7726592013-07-19 14:26:53 +000018fi
19
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040020# Default openvswitch L2 agent
21Q_AGENT=${Q_AGENT:-openvswitch}
Hirofumi Ichihara22cf6482015-07-23 18:13:55 +090022if [ -f $TOP_DIR/lib/neutron_plugins/${Q_AGENT}_agent ]; then
23 source $TOP_DIR/lib/neutron_plugins/${Q_AGENT}_agent
24fi
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040025
Kyle Mesteryb7726592013-07-19 14:26:53 +000026# List of MechanismDrivers to load
Kyle Mesterybc632472013-09-06 14:59:30 +000027Q_ML2_PLUGIN_MECHANISM_DRIVERS=${Q_ML2_PLUGIN_MECHANISM_DRIVERS:-openvswitch,linuxbridge}
Kyle Mesteryb7726592013-07-19 14:26:53 +000028# Default GRE TypeDriver options
29Q_ML2_PLUGIN_GRE_TYPE_OPTIONS=${Q_ML2_PLUGIN_GRE_TYPE_OPTIONS:-tunnel_id_ranges=$TENANT_TUNNEL_RANGES}
30# Default VXLAN TypeDriver options
Richard Theis8906b482016-06-08 10:28:37 -050031Q_ML2_PLUGIN_VXLAN_TYPE_OPTIONS=${Q_ML2_PLUGIN_VXLAN_TYPE_OPTIONS:-vni_ranges=$TENANT_TUNNEL_RANGES}
Kyle Mesteryb7726592013-07-19 14:26:53 +000032# Default VLAN TypeDriver options
33Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS=${Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS:-}
Richard Theis8906b482016-06-08 10:28:37 -050034# Default GENEVE TypeDriver options
35Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS=${Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS:-vni_ranges=$TENANT_TUNNEL_RANGES}
Yalei Wanga48e5dc2015-03-06 17:05:11 +080036# List of extension drivers to load, use '-' instead of ':-' to allow people to
37# explicitly override this to blank
38Q_ML2_PLUGIN_EXT_DRIVERS=${Q_ML2_PLUGIN_EXT_DRIVERS-port_security}
Kyle Mesteryb7726592013-07-19 14:26:53 +000039
Kyle Mestery14ea1a22013-09-22 03:04:56 +000040# L3 Plugin to load for ML2
watanabe.isao1c4c16c2016-06-08 14:18:10 +090041# For some flat network environment, they not want to extend L3 plugin.
42# Make sure it is able to set empty to ML2_L3_PLUGIN.
43ML2_L3_PLUGIN=${ML2_L3_PLUGIN-neutron.services.l3_router.l3_router_plugin.L3RouterPlugin}
Kyle Mestery14ea1a22013-09-22 03:04:56 +000044
Ian Wienandaee18c72014-02-21 15:35:08 +110045function populate_ml2_config {
Akihiro Motoki130c90e2013-11-28 16:56:51 +090046 CONF=$1
47 SECTION=$2
48 OPTS=$3
Kyle Mesteryb7726592013-07-19 14:26:53 +000049
Akihiro Motoki130c90e2013-11-28 16:56:51 +090050 if [ -z "$OPTS" ]; then
51 return
52 fi
Kyle Mesteryb7726592013-07-19 14:26:53 +000053 for I in "${OPTS[@]}"; do
54 # Replace the first '=' with ' ' for iniset syntax
55 iniset $CONF $SECTION ${I/=/ }
56 done
57}
58
Ian Wienandaee18c72014-02-21 15:35:08 +110059function neutron_plugin_configure_common {
Mark McClainb05c8762013-07-06 23:29:39 -040060 Q_PLUGIN_CONF_PATH=etc/neutron/plugins/ml2
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040061 Q_PLUGIN_CONF_FILENAME=ml2_conf.ini
Mark McClainb05c8762013-07-06 23:29:39 -040062 Q_PLUGIN_CLASS="neutron.plugins.ml2.plugin.Ml2Plugin"
Bob Melander748fe3d2013-01-31 17:12:56 +010063 # The ML2 plugin delegates L3 routing/NAT functionality to
64 # the L3 service plugin which must therefore be specified.
Isaku Yamahata9e136b42013-12-16 15:52:03 +090065 _neutron_service_plugin_class_add $ML2_L3_PLUGIN
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040066}
67
Ian Wienandaee18c72014-02-21 15:35:08 +110068function neutron_plugin_configure_service {
Attila Fazekas8feaf6c2014-07-27 20:47:04 +020069 if [[ "$Q_ML2_TENANT_NETWORK_TYPE" != "local" ]]; then
Kyle Mestery061d5252013-09-09 08:52:19 +000070 Q_SRV_EXTRA_OPTS+=(tenant_network_types=$Q_ML2_TENANT_NETWORK_TYPE)
Kyle Mesterybd085502014-04-30 23:50:29 +000071 elif [[ "$ENABLE_TENANT_TUNNELS" == "True" ]]; then
Kyle Mesteryb7726592013-07-19 14:26:53 +000072 # This assumes you want a simple configuration, and will overwrite
73 # Q_SRV_EXTRA_OPTS if set in addition to ENABLE_TENANT_TUNNELS.
Kyle Mestery061d5252013-09-09 08:52:19 +000074 Q_SRV_EXTRA_OPTS+=(tenant_network_types=gre)
Kyle Mesteryb7726592013-07-19 14:26:53 +000075 Q_ML2_PLUGIN_GRE_TYPE_OPTIONS=(tunnel_id_ranges=$TENANT_TUNNEL_RANGES)
Kyle Mesterybd085502014-04-30 23:50:29 +000076 elif [[ "$ENABLE_TENANT_VLANS" == "True" ]]; then
Kyle Mestery061d5252013-09-09 08:52:19 +000077 Q_SRV_EXTRA_OPTS+=(tenant_network_types=vlan)
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040078 else
79 echo "WARNING - The ml2 plugin is using local tenant networks, with no connectivity between hosts."
80 fi
81
Kyle Mesteryb7726592013-07-19 14:26:53 +000082 # Allow for overrding VLAN configuration (for example, to configure provider
83 # VLANs) by first checking if Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS is set.
84 if [ "$Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS" == "" ]; then
Kyle Mesterybd085502014-04-30 23:50:29 +000085 if [[ "$ML2_VLAN_RANGES" == "" ]] && [[ "$PHYSICAL_NETWORK" != "" ]]; then
Kyle Mesteryb7726592013-07-19 14:26:53 +000086 ML2_VLAN_RANGES=$PHYSICAL_NETWORK
87 if [[ "$TENANT_VLAN_RANGE" != "" ]]; then
88 ML2_VLAN_RANGES=$ML2_VLAN_RANGES:$TENANT_VLAN_RANGE
89 fi
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040090 fi
Kyle Mesteryb7726592013-07-19 14:26:53 +000091 if [[ "$ML2_VLAN_RANGES" != "" ]]; then
92 Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS=(network_vlan_ranges=$ML2_VLAN_RANGES)
93 fi
Bob Kukurac9b0f1a2013-04-23 16:28:24 -040094 fi
95
yunhong jiang73d32162014-10-06 09:34:35 -070096
97 # Allow for setup the flat type network
Kevin Benton6a42a852016-07-21 11:11:54 -070098 if [[ -z "$Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS" ]]; then
99 if [[ -n "$PHYSICAL_NETWORK" || -n "$PUBLIC_PHYSICAL_NETWORK" ]]; then
100 Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS="flat_networks="
101 if [[ -n "$PHYSICAL_NETWORK" ]]; then
102 Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS+="${PHYSICAL_NETWORK},"
103 fi
104 if [[ -n "$PUBLIC_PHYSICAL_NETWORK" ]]; then
105 Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS+="${PUBLIC_PHYSICAL_NETWORK},"
106 fi
107 fi
yunhong jiang73d32162014-10-06 09:34:35 -0700108 fi
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400109 # REVISIT(rkukura): Setting firewall_driver here for
Mark McClainb05c8762013-07-06 23:29:39 -0400110 # neutron.agent.securitygroups_rpc.is_firewall_enabled() which is
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400111 # used in the server, in case no L2 agent is configured on the
112 # server's node. If an L2 agent is configured, this will get
113 # overridden with the correct driver. The ml2 plugin should
114 # instead use its own config variable to indicate whether security
115 # groups is enabled, and that will need to be set here instead.
116 if [[ "$Q_USE_SECGROUP" == "True" ]]; then
Akihiro Motoki4074e292014-02-14 00:54:58 +0900117 iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.not.a.real.FirewallDriver
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400118 else
Akihiro Motoki4074e292014-02-14 00:54:58 +0900119 iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.firewall.NoopFirewallDriver
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400120 fi
121
Akihiro Motoki130c90e2013-11-28 16:56:51 +0900122 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2 mechanism_drivers=$Q_ML2_PLUGIN_MECHANISM_DRIVERS
Kyle Mestery3ea28ec2013-08-05 12:24:32 +0000123
Richard Theis8906b482016-06-08 10:28:37 -0500124 if [[ -n "$Q_ML2_PLUGIN_TYPE_DRIVERS" ]]; then
125 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2 type_drivers=$Q_ML2_PLUGIN_TYPE_DRIVERS
126 fi
Kyle Mesteryb7726592013-07-19 14:26:53 +0000127
Yalei Wanga48e5dc2015-03-06 17:05:11 +0800128 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2 extension_drivers=$Q_ML2_PLUGIN_EXT_DRIVERS
129
Akihiro Motoki130c90e2013-11-28 16:56:51 +0900130 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2 $Q_SRV_EXTRA_OPTS
Kyle Mesteryb7726592013-07-19 14:26:53 +0000131
Akihiro Motoki130c90e2013-11-28 16:56:51 +0900132 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_gre $Q_ML2_PLUGIN_GRE_TYPE_OPTIONS
Kyle Mesteryb7726592013-07-19 14:26:53 +0000133
Akihiro Motoki130c90e2013-11-28 16:56:51 +0900134 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_vxlan $Q_ML2_PLUGIN_VXLAN_TYPE_OPTIONS
Kyle Mesteryb7726592013-07-19 14:26:53 +0000135
yunhong jiang73d32162014-10-06 09:34:35 -0700136 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_flat $Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS
137
Akihiro Motoki130c90e2013-11-28 16:56:51 +0900138 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_vlan $Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS
Brian Haleyeea76212014-06-27 11:45:50 -0400139
Richard Theis8906b482016-06-08 10:28:37 -0500140 populate_ml2_config /$Q_PLUGIN_CONF_FILE ml2_type_geneve $Q_ML2_PLUGIN_GENEVE_TYPE_OPTIONS
141
Brian Haleyeea76212014-06-27 11:45:50 -0400142 if [[ "$Q_DVR_MODE" != "legacy" ]]; then
143 populate_ml2_config /$Q_PLUGIN_CONF_FILE agent l2_population=True
144 populate_ml2_config /$Q_PLUGIN_CONF_FILE agent tunnel_types=vxlan
145 populate_ml2_config /$Q_PLUGIN_CONF_FILE agent enable_distributed_routing=True
146 fi
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400147}
148
Ian Wienandaee18c72014-02-21 15:35:08 +1100149function has_neutron_plugin_security_group {
Bob Kukurac9b0f1a2013-04-23 16:28:24 -0400150 return 0
151}
152
153# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100154$_XTRACE_NEUTRON_ML2