Sean Dague | e263c82 | 2014-12-05 14:25:28 -0500 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 3 | # Neutron Cisco plugin |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 4 | # --------------------------- |
| 5 | |
| 6 | # Save trace setting |
Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 7 | CISCO_XTRACE=$(set +o | grep xtrace) |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 8 | set +o xtrace |
| 9 | |
| 10 | # Scecify the VSM parameters |
| 11 | Q_CISCO_PLUGIN_VSM_IP=${Q_CISCO_PLUGIN_VSM_IP:-} |
| 12 | # Specify the VSM username |
| 13 | Q_CISCO_PLUGIN_VSM_USERNAME=${Q_CISCO_PLUGIN_VSM_USERNAME:-admin} |
| 14 | # Specify the VSM passward for above username |
| 15 | Q_CISCO_PLUGIN_VSM_PASSWORD=${Q_CISCO_PLUGIN_VSM_PASSWORD:-} |
| 16 | # Specify the uVEM integration bridge name |
| 17 | Q_CISCO_PLUGIN_INTEGRATION_BRIDGE=${Q_CISCO_PLUGIN_INTEGRATION_BRIDGE:-br-int} |
| 18 | # Specify if tunneling is enabled |
| 19 | Q_CISCO_PLUGIN_ENABLE_TUNNELING=${Q_CISCO_PLUGIN_ENABLE_TUNNELING:-True} |
| 20 | # Specify the VXLAN range |
| 21 | Q_CISCO_PLUGIN_VXLAN_ID_RANGES=${Q_CISCO_PLUGIN_VXLAN_ID_RANGES:-5000:10000} |
| 22 | # Specify the VLAN range |
| 23 | Q_CISCO_PLUGIN_VLAN_RANGES=${Q_CISCO_PLUGIN_VLAN_RANGES:-vlan:1:4094} |
| 24 | |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 25 | # This routine put a prefix on an existing function name |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 26 | function _prefix_function { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 27 | declare -F $1 > /dev/null || die "$1 doesn't exist" |
| 28 | eval "$(echo "${2}_${1}()"; declare -f ${1} | tail -n +2)" |
| 29 | } |
| 30 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 31 | function _has_n1kv_subplugin { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 32 | local subplugin |
| 33 | for subplugin in ${Q_CISCO_PLUGIN_SUBPLUGINS[@]}; do |
| 34 | if [[ "$subplugin" == "n1kv" ]]; then |
| 35 | return 0 |
| 36 | fi |
| 37 | done |
| 38 | return 1 |
| 39 | } |
| 40 | |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 41 | # Prefix openvswitch plugin routines with "ovs" in order to differentiate from |
| 42 | # cisco plugin routines. This means, ovs plugin routines will coexist with cisco |
| 43 | # plugin routines in this script. |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 44 | source $TOP_DIR/lib/neutron_plugins/openvswitch |
| 45 | _prefix_function neutron_plugin_create_nova_conf ovs |
| 46 | _prefix_function neutron_plugin_install_agent_packages ovs |
| 47 | _prefix_function neutron_plugin_configure_common ovs |
| 48 | _prefix_function neutron_plugin_configure_debug_command ovs |
| 49 | _prefix_function neutron_plugin_configure_dhcp_agent ovs |
| 50 | _prefix_function neutron_plugin_configure_l3_agent ovs |
| 51 | _prefix_function neutron_plugin_configure_plugin_agent ovs |
| 52 | _prefix_function neutron_plugin_configure_service ovs |
| 53 | _prefix_function neutron_plugin_setup_interface_driver ovs |
| 54 | _prefix_function has_neutron_plugin_security_group ovs |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 55 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 56 | function has_neutron_plugin_security_group { |
Pritesh Kothari | 107278f | 2014-09-15 09:29:55 -0700 | [diff] [blame] | 57 | return 1 |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 60 | function is_neutron_ovs_base_plugin { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 61 | return |
| 62 | } |
| 63 | |
| 64 | # populate required nova configuration parameters |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 65 | function neutron_plugin_create_nova_conf { |
Pritesh Kothari | 107278f | 2014-09-15 09:29:55 -0700 | [diff] [blame] | 66 | _neutron_ovs_base_configure_nova_vif_driver |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 69 | function neutron_plugin_install_agent_packages { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 70 | # Cisco plugin uses openvswitch to operate in one of its configurations |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 71 | ovs_neutron_plugin_install_agent_packages |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | # Configure common parameters |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 75 | function neutron_plugin_configure_common { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 76 | # setup default subplugins |
| 77 | if [ ! -v Q_CISCO_PLUGIN_SUBPLUGINS ]; then |
| 78 | declare -ga Q_CISCO_PLUGIN_SUBPLUGINS |
Pritesh Kothari | 107278f | 2014-09-15 09:29:55 -0700 | [diff] [blame] | 79 | Q_CISCO_PLUGIN_SUBPLUGINS=(n1kv) |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 80 | fi |
Pritesh Kothari | 107278f | 2014-09-15 09:29:55 -0700 | [diff] [blame] | 81 | Q_PLUGIN_CONF_PATH=etc/neutron/plugins/cisco |
| 82 | Q_PLUGIN_CONF_FILENAME=cisco_plugins.ini |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 83 | Q_PLUGIN_CLASS="neutron.plugins.cisco.network_plugin.PluginV2" |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 86 | function neutron_plugin_configure_debug_command { |
Rob | 2a6215d | 2014-10-20 13:28:47 +0100 | [diff] [blame] | 87 | : |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 90 | function neutron_plugin_configure_dhcp_agent { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 91 | iniset $Q_DHCP_CONF_FILE DEFAULT dhcp_agent_manager neutron.agent.dhcp_agent.DhcpAgentWithStateReport |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 94 | function neutron_plugin_configure_l3_agent { |
Rob | 2a6215d | 2014-10-20 13:28:47 +0100 | [diff] [blame] | 95 | : |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | # Configure n1kv plugin |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 99 | function _configure_n1kv_subplugin { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 100 | local cisco_cfg_file=$1 |
| 101 | |
| 102 | # populate the cisco plugin cfg file with the VSM information |
| 103 | echo "Configuring n1kv in $cisco_cfg_file-- $Q_CISCO_PLUGIN_VSM_IP $Q_CISCO_PLUGIN_VSM_USERNAME $Q_CISCO_PLUGIN_VSM_PASSWORD" |
| 104 | iniset $cisco_cfg_file N1KV:$Q_CISCO_PLUGIN_VSM_IP username $Q_CISCO_PLUGIN_VSM_USERNAME |
| 105 | iniset $cisco_cfg_file N1KV:$Q_CISCO_PLUGIN_VSM_IP password $Q_CISCO_PLUGIN_VSM_PASSWORD |
| 106 | |
| 107 | iniset $cisco_cfg_file CISCO_N1K integration_bridge $Q_CISCO_PLUGIN_INTEGRATION_BRIDGE |
| 108 | iniset $cisco_cfg_file CISCO_N1K enable_tunneling $Q_CISCO_PLUGIN_ENABLE_TUNNELING |
| 109 | iniset $cisco_cfg_file CISCO_N1K vxlan_id_ranges $Q_CISCO_PLUGIN_VXLAN_ID_RANGES |
| 110 | iniset $cisco_cfg_file CISCO_N1K network_vlan_ranges $Q_CISCO_PLUGIN_VLAN_RANGES |
| 111 | |
| 112 | # Setup the integration bridge by calling the ovs_base |
| 113 | OVS_BRIDGE=$Q_CISCO_PLUGIN_INTEGRATION_BRIDGE |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 114 | _neutron_ovs_base_setup_bridge $OVS_BRIDGE |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 117 | function neutron_plugin_configure_plugin_agent { |
Rob | 2a6215d | 2014-10-20 13:28:47 +0100 | [diff] [blame] | 118 | : |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 121 | function neutron_plugin_configure_service { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 122 | local subplugin |
| 123 | local cisco_cfg_file |
| 124 | |
Pritesh Kothari | 107278f | 2014-09-15 09:29:55 -0700 | [diff] [blame] | 125 | cisco_cfg_file=/$Q_PLUGIN_CONF_FILE |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 126 | |
| 127 | # Setup the [CISCO_PLUGINS] section |
| 128 | if [[ ${#Q_CISCO_PLUGIN_SUBPLUGINS[@]} > 2 ]]; then |
| 129 | die $LINENO "At most two subplugins are supported." |
| 130 | fi |
| 131 | |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 132 | # Setup the subplugins |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 133 | inicomment $cisco_cfg_file CISCO_PLUGINS vswitch_plugin |
| 134 | inicomment $cisco_cfg_file CISCO_TEST host |
| 135 | for subplugin in ${Q_CISCO_PLUGIN_SUBPLUGINS[@]}; do |
| 136 | case $subplugin in |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 137 | n1kv) iniset $cisco_cfg_file CISCO_PLUGINS vswitch_plugin neutron.plugins.cisco.n1kv.n1kv_neutron_plugin.N1kvNeutronPluginV2;; |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 138 | *) die $LINENO "Unsupported cisco subplugin: $subplugin";; |
| 139 | esac |
| 140 | done |
| 141 | |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 142 | if _has_n1kv_subplugin; then |
| 143 | _configure_n1kv_subplugin $cisco_cfg_file |
| 144 | fi |
| 145 | } |
| 146 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 147 | function neutron_plugin_setup_interface_driver { |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 148 | local conf_file=$1 |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 149 | iniset $conf_file DEFAULT interface_driver neutron.agent.linux.interface.OVSInterfaceDriver |
Baodong (Robert) Li | 901419d | 2013-06-10 08:39:26 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | # Restore xtrace |
Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 153 | $CISCO_XTRACE |