| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 1 | # Neutron Linux Bridge plugin | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 2 | # --------------------------- | 
|  | 3 |  | 
|  | 4 | # Save trace setting | 
| Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 5 | LBRIDGE_XTRACE=$(set +o | grep xtrace) | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 6 | set +o xtrace | 
|  | 7 |  | 
| Mehdi Abaakouk | 2814781 | 2013-06-29 14:17:16 +0200 | [diff] [blame] | 8 | source $TOP_DIR/lib/neutron_plugins/linuxbridge_agent | 
|  | 9 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 10 | function neutron_plugin_configure_common { | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 11 | Q_PLUGIN_CONF_PATH=etc/neutron/plugins/linuxbridge | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 12 | Q_PLUGIN_CONF_FILENAME=linuxbridge_conf.ini | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 13 | Q_PLUGIN_CLASS="neutron.plugins.linuxbridge.lb_neutron_plugin.LinuxBridgePluginV2" | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 14 | } | 
|  | 15 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 16 | function neutron_plugin_configure_service { | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 17 | if [[ "$ENABLE_TENANT_VLANS" == "True" ]]; then | 
| Gary Kotton | d42634f | 2013-06-24 09:26:55 +0000 | [diff] [blame] | 18 | iniset /$Q_PLUGIN_CONF_FILE vlans tenant_network_type vlan | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 19 | else | 
|  | 20 | echo "WARNING - The linuxbridge plugin is using local tenant networks, with no connectivity between hosts." | 
|  | 21 | fi | 
|  | 22 |  | 
|  | 23 | # Override ``LB_VLAN_RANGES`` and ``LB_INTERFACE_MAPPINGS`` in ``localrc`` | 
|  | 24 | # for more complex physical network configurations. | 
| Kyle Mestery | bd08550 | 2014-04-30 23:50:29 +0000 | [diff] [blame] | 25 | if [[ "$LB_VLAN_RANGES" == "" ]] && [[ "$PHYSICAL_NETWORK" != "" ]]; then | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 26 | LB_VLAN_RANGES=$PHYSICAL_NETWORK | 
|  | 27 | if [[ "$TENANT_VLAN_RANGE" != "" ]]; then | 
|  | 28 | LB_VLAN_RANGES=$LB_VLAN_RANGES:$TENANT_VLAN_RANGE | 
|  | 29 | fi | 
|  | 30 | fi | 
|  | 31 | if [[ "$LB_VLAN_RANGES" != "" ]]; then | 
| Gary Kotton | d42634f | 2013-06-24 09:26:55 +0000 | [diff] [blame] | 32 | iniset /$Q_PLUGIN_CONF_FILE vlans network_vlan_ranges $LB_VLAN_RANGES | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 33 | fi | 
| Jiajun Liu | e6f2ee5 | 2013-05-14 09:48:15 +0000 | [diff] [blame] | 34 | if [[ "$Q_USE_SECGROUP" == "True" ]]; then | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 35 | iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.linux.iptables_firewall.IptablesFirewallDriver | 
| Jiajun Liu | e6f2ee5 | 2013-05-14 09:48:15 +0000 | [diff] [blame] | 36 | else | 
| Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 37 | iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.firewall.NoopFirewallDriver | 
| Jiajun Liu | e6f2ee5 | 2013-05-14 09:48:15 +0000 | [diff] [blame] | 38 | fi | 
| Kyle Mestery | ebfac64 | 2013-05-17 15:20:56 -0500 | [diff] [blame] | 39 |  | 
|  | 40 | # Define extra "LINUX_BRIDGE" configuration options when q-svc is configured by defining | 
|  | 41 | # the array ``Q_SRV_EXTRA_OPTS``. | 
|  | 42 | # For Example: ``Q_SRV_EXTRA_OPTS=(foo=true bar=2)`` | 
|  | 43 | for I in "${Q_SRV_EXTRA_OPTS[@]}"; do | 
|  | 44 | # Replace the first '=' with ' ' for iniset syntax | 
| Gary Kotton | d42634f | 2013-06-24 09:26:55 +0000 | [diff] [blame] | 45 | iniset /$Q_PLUGIN_CONF_FILE linux_bridge ${I/=/ } | 
| Kyle Mestery | ebfac64 | 2013-05-17 15:20:56 -0500 | [diff] [blame] | 46 | done | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 47 | } | 
|  | 48 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 49 | function has_neutron_plugin_security_group { | 
| Akihiro MOTOKI | 3452f8e | 2013-03-21 14:11:27 +0900 | [diff] [blame] | 50 | # 0 means True here | 
|  | 51 | return 0 | 
|  | 52 | } | 
|  | 53 |  | 
| Isaku Yamahata | 0dd34df | 2012-12-28 13:15:31 +0900 | [diff] [blame] | 54 | # Restore xtrace | 
| Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 55 | $LBRIDGE_XTRACE |