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