Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Subnet IP version |
| 3 | IP_VERSION=${IP_VERSION:-"4+6"} |
| 4 | # Validate IP_VERSION |
| 5 | if [[ $IP_VERSION != "4" ]] && [[ $IP_VERSION != "6" ]] && [[ $IP_VERSION != "4+6" ]]; then |
| 6 | die $LINENO "IP_VERSION must be either 4, 6, or 4+6" |
| 7 | fi |
| 8 | # Specify if the initial private and external networks should be created |
| 9 | NEUTRON_CREATE_INITIAL_NETWORKS=${NEUTRON_CREATE_INITIAL_NETWORKS:-True} |
| 10 | |
| 11 | ## Provider Network Information |
| 12 | PROVIDER_SUBNET_NAME=${PROVIDER_SUBNET_NAME:-"provider_net"} |
| 13 | IPV6_PROVIDER_SUBNET_NAME=${IPV6_PROVIDER_SUBNET_NAME:-"provider_net_v6"} |
| 14 | IPV6_PROVIDER_FIXED_RANGE=${IPV6_PROVIDER_FIXED_RANGE:-} |
| 15 | IPV6_PROVIDER_NETWORK_GATEWAY=${IPV6_PROVIDER_NETWORK_GATEWAY:-} |
| 16 | |
| 17 | PUBLIC_BRIDGE=${PUBLIC_BRIDGE:-br-ex} |
Ihar Hrachyshka | 7b5c7dc | 2016-07-15 20:17:13 +0200 | [diff] [blame] | 18 | PUBLIC_BRIDGE_MTU=${PUBLIC_BRIDGE_MTU:-1500} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 19 | |
Kevin Benton | 1554ade | 2016-07-22 09:40:19 -0700 | [diff] [blame] | 20 | # If Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE=True, assign the gateway IP of the public |
| 21 | # subnet to the public bridge interface even if Q_USE_PROVIDERNET_FOR_PUBLIC is |
| 22 | # used. |
| 23 | Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE=${Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE:-True} |
| 24 | |
YAMAMOTO Takashi | 1aa4368 | 2016-07-21 19:37:04 +0900 | [diff] [blame] | 25 | # The name of the default router |
| 26 | Q_ROUTER_NAME=${Q_ROUTER_NAME:-router1} |
| 27 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 28 | # If Q_USE_PUBLIC_VETH=True, create and use a veth pair instead of |
| 29 | # PUBLIC_BRIDGE. This is intended to be used with |
| 30 | # Q_USE_PROVIDERNET_FOR_PUBLIC=True. |
| 31 | Q_USE_PUBLIC_VETH=${Q_USE_PUBLIC_VETH:-False} |
| 32 | Q_PUBLIC_VETH_EX=${Q_PUBLIC_VETH_EX:-veth-pub-ex} |
| 33 | Q_PUBLIC_VETH_INT=${Q_PUBLIC_VETH_INT:-veth-pub-int} |
| 34 | |
vsaienko | d894221 | 2016-05-13 12:51:30 +0300 | [diff] [blame] | 35 | # The next variable is configured by plugin |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 36 | # e.g. _configure_neutron_l3_agent or lib/neutron_plugins/* |
| 37 | # |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 38 | # L3 routers exist per tenant |
| 39 | Q_L3_ROUTER_PER_TENANT=${Q_L3_ROUTER_PER_TENANT:-True} |
| 40 | |
| 41 | |
Tim Swanson | bb7d2f2 | 2017-12-16 17:14:10 -0500 | [diff] [blame] | 42 | # Use providernet for public network |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 43 | # |
Tim Swanson | bb7d2f2 | 2017-12-16 17:14:10 -0500 | [diff] [blame] | 44 | # If Q_USE_PROVIDERNET_FOR_PUBLIC=True, use a provider network |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 45 | # for external interface of neutron l3-agent. In that case, |
| 46 | # PUBLIC_PHYSICAL_NETWORK specifies provider:physical_network value |
| 47 | # used for the network. In case of ofagent, you should add the |
| 48 | # corresponding entry to your OFAGENT_PHYSICAL_INTERFACE_MAPPINGS. |
| 49 | # For openvswitch agent, you should add the corresponding entry to |
| 50 | # your OVS_BRIDGE_MAPPINGS. |
| 51 | # |
| 52 | # eg. (ofagent) |
| 53 | # Q_USE_PROVIDERNET_FOR_PUBLIC=True |
| 54 | # Q_USE_PUBLIC_VETH=True |
| 55 | # PUBLIC_PHYSICAL_NETWORK=public |
| 56 | # OFAGENT_PHYSICAL_INTERFACE_MAPPINGS=public:veth-pub-int |
| 57 | # |
| 58 | # eg. (openvswitch agent) |
| 59 | # Q_USE_PROVIDERNET_FOR_PUBLIC=True |
| 60 | # PUBLIC_PHYSICAL_NETWORK=public |
| 61 | # OVS_BRIDGE_MAPPINGS=public:br-ex |
Tim Swanson | bb7d2f2 | 2017-12-16 17:14:10 -0500 | [diff] [blame] | 62 | # |
| 63 | # The provider-network-type defaults to flat, however, the values |
| 64 | # PUBLIC_PROVIDERNET_TYPE and PUBLIC_PROVIDERNET_SEGMENTATION_ID could |
| 65 | # be set to specify the parameters for an alternate network type. |
Kevin Benton | 1554ade | 2016-07-22 09:40:19 -0700 | [diff] [blame] | 66 | Q_USE_PROVIDERNET_FOR_PUBLIC=${Q_USE_PROVIDERNET_FOR_PUBLIC:-True} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 67 | PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK:-public} |
| 68 | |
| 69 | # Generate 40-bit IPv6 Global ID to comply with RFC 4193 |
| 70 | IPV6_GLOBAL_ID=`uuidgen | sed s/-//g | cut -c 23- | sed -e "s/\(..\)\(....\)\(....\)/\1:\2:\3/"` |
| 71 | |
| 72 | # IPv6 gateway and subnet defaults, in case they are not customized in localrc |
| 73 | IPV6_RA_MODE=${IPV6_RA_MODE:-slaac} |
| 74 | IPV6_ADDRESS_MODE=${IPV6_ADDRESS_MODE:-slaac} |
| 75 | IPV6_PUBLIC_SUBNET_NAME=${IPV6_PUBLIC_SUBNET_NAME:-ipv6-public-subnet} |
| 76 | IPV6_PRIVATE_SUBNET_NAME=${IPV6_PRIVATE_SUBNET_NAME:-ipv6-private-subnet} |
Kevin Benton | 4bfbc29 | 2016-11-15 17:26:05 -0800 | [diff] [blame] | 77 | IPV6_ADDRS_SAFE_TO_USE=${IPV6_ADDRS_SAFE_TO_USE:-fd$IPV6_GLOBAL_ID::/56} |
| 78 | # if we got larger than a /64 safe to use, we only use the first /64 to |
| 79 | # avoid side effects outlined in rfc7421 |
Clark Boylan | a5afa7d | 2016-11-18 12:32:19 -0800 | [diff] [blame] | 80 | FIXED_RANGE_V6=${FIXED_RANGE_V6:-$(echo $IPV6_ADDRS_SAFE_TO_USE | awk -F '/' '{ print $1"/"($2>63 ? $2 : 64) }')} |
Brian Haley | 31813e9 | 2016-08-22 15:39:22 -0400 | [diff] [blame] | 81 | IPV6_PRIVATE_NETWORK_GATEWAY=${IPV6_PRIVATE_NETWORK_GATEWAY:-} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 82 | IPV6_PUBLIC_RANGE=${IPV6_PUBLIC_RANGE:-2001:db8::/64} |
| 83 | IPV6_PUBLIC_NETWORK_GATEWAY=${IPV6_PUBLIC_NETWORK_GATEWAY:-2001:db8::2} |
| 84 | IPV6_ROUTER_GW_IP=${IPV6_ROUTER_GW_IP:-2001:db8::1} |
| 85 | |
| 86 | # Gateway and subnet defaults, in case they are not customized in localrc |
Brian Haley | 31813e9 | 2016-08-22 15:39:22 -0400 | [diff] [blame] | 87 | NETWORK_GATEWAY=${NETWORK_GATEWAY:-} |
| 88 | PUBLIC_NETWORK_GATEWAY=${PUBLIC_NETWORK_GATEWAY:-} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 89 | PRIVATE_SUBNET_NAME=${PRIVATE_SUBNET_NAME:-"private-subnet"} |
| 90 | PUBLIC_SUBNET_NAME=${PUBLIC_SUBNET_NAME:-"public-subnet"} |
| 91 | |
| 92 | # Subnetpool defaults |
rajinir | c58a155 | 2016-09-27 17:14:59 -0500 | [diff] [blame] | 93 | USE_SUBNETPOOL=${USE_SUBNETPOOL:-True} |
Jens Rosenboom | f069acf | 2017-02-24 16:25:59 +0100 | [diff] [blame] | 94 | SUBNETPOOL_NAME_V4=${SUBNETPOOL_NAME:-"shared-default-subnetpool-v4"} |
| 95 | SUBNETPOOL_NAME_V6=${SUBNETPOOL_NAME:-"shared-default-subnetpool-v6"} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 96 | |
Kevin Benton | 4bfbc29 | 2016-11-15 17:26:05 -0800 | [diff] [blame] | 97 | SUBNETPOOL_PREFIX_V4=${SUBNETPOOL_PREFIX_V4:-$IPV4_ADDRS_SAFE_TO_USE} |
| 98 | SUBNETPOOL_PREFIX_V6=${SUBNETPOOL_PREFIX_V6:-$IPV6_ADDRS_SAFE_TO_USE} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 99 | |
Kevin Benton | 4bfbc29 | 2016-11-15 17:26:05 -0800 | [diff] [blame] | 100 | SUBNETPOOL_SIZE_V4=${SUBNETPOOL_SIZE_V4:-26} |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 101 | SUBNETPOOL_SIZE_V6=${SUBNETPOOL_SIZE_V6:-64} |
| 102 | |
Henry Gessau | 734f144 | 2016-09-17 19:28:53 -0400 | [diff] [blame] | 103 | default_v4_route_devs=$(ip -4 route | grep ^default | awk '{print $5}') |
Henry Gessau | 734f144 | 2016-09-17 19:28:53 -0400 | [diff] [blame] | 104 | |
aojeagarcia | 866efef | 2018-09-28 10:43:46 +0200 | [diff] [blame] | 105 | default_v6_route_devs=$(ip -6 route list match default table all | grep via | awk '{print $5}') |
Monty Taylor | c12d1d9 | 2016-08-23 19:07:57 -0500 | [diff] [blame] | 106 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 107 | function _determine_config_l3 { |
Angus Lees | a1c70f2 | 2016-05-31 14:43:14 +1000 | [diff] [blame] | 108 | local opts="--config-file $NEUTRON_CONF --config-file $Q_L3_CONF_FILE" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 109 | echo "$opts" |
| 110 | } |
| 111 | |
| 112 | function _configure_neutron_l3_agent { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 113 | |
| 114 | cp $NEUTRON_DIR/etc/l3_agent.ini.sample $Q_L3_CONF_FILE |
| 115 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 116 | iniset $Q_L3_CONF_FILE DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL |
Sean M. Collins | a2ed055 | 2016-05-11 15:35:10 -0400 | [diff] [blame] | 117 | iniset $Q_L3_CONF_FILE AGENT root_helper "$Q_RR_COMMAND" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 118 | if [[ "$Q_USE_ROOTWRAP_DAEMON" == "True" ]]; then |
Sean M. Collins | a2ed055 | 2016-05-11 15:35:10 -0400 | [diff] [blame] | 119 | iniset $Q_L3_CONF_FILE AGENT root_helper_daemon "$Q_RR_DAEMON_COMMAND" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 120 | fi |
| 121 | |
| 122 | _neutron_setup_interface_driver $Q_L3_CONF_FILE |
| 123 | |
Stephen Finucane | 24e29f2 | 2016-06-15 14:31:51 +0100 | [diff] [blame] | 124 | neutron_plugin_configure_l3_agent $Q_L3_CONF_FILE |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 125 | |
Slawek Kaplonski | b1a89eb | 2021-08-26 21:42:32 +0200 | [diff] [blame] | 126 | _configure_public_network_connectivity |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | # Explicitly set router id in l3 agent configuration |
| 130 | function _neutron_set_router_id { |
| 131 | if [[ "$Q_L3_ROUTER_PER_TENANT" == "False" ]]; then |
| 132 | iniset $Q_L3_CONF_FILE DEFAULT router_id $ROUTER_ID |
| 133 | fi |
| 134 | } |
| 135 | |
| 136 | # Get ext_gw_interface depending on value of Q_USE_PUBLIC_VETH |
| 137 | function _neutron_get_ext_gw_interface { |
| 138 | if [[ "$Q_USE_PUBLIC_VETH" == "True" ]]; then |
| 139 | echo $Q_PUBLIC_VETH_EX |
| 140 | else |
| 141 | # Disable in-band as we are going to use local port |
| 142 | # to communicate with VMs |
| 143 | sudo ovs-vsctl set Bridge $PUBLIC_BRIDGE \ |
| 144 | other_config:disable-in-band=true |
| 145 | echo $PUBLIC_BRIDGE |
| 146 | fi |
| 147 | } |
| 148 | |
| 149 | function create_neutron_initial_network { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 150 | # Allow drivers that need to create an initial network to do so here |
| 151 | if type -p neutron_plugin_create_initial_network_profile > /dev/null; then |
| 152 | neutron_plugin_create_initial_network_profile $PHYSICAL_NETWORK |
| 153 | fi |
| 154 | |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 155 | if is_networking_extension_supported "auto-allocated-topology"; then |
rajinir | c58a155 | 2016-09-27 17:14:59 -0500 | [diff] [blame] | 156 | if [[ "$USE_SUBNETPOOL" == "True" ]]; then |
| 157 | if [[ "$IP_VERSION" =~ 4.* ]]; then |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 158 | SUBNETPOOL_V4_ID=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" subnet pool create $SUBNETPOOL_NAME_V4 --default-prefix-length $SUBNETPOOL_SIZE_V4 --pool-prefix $SUBNETPOOL_PREFIX_V4 --share --default -f value -c id) |
rajinir | c58a155 | 2016-09-27 17:14:59 -0500 | [diff] [blame] | 159 | fi |
| 160 | if [[ "$IP_VERSION" =~ .*6 ]]; then |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 161 | SUBNETPOOL_V6_ID=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" subnet pool create $SUBNETPOOL_NAME_V6 --default-prefix-length $SUBNETPOOL_SIZE_V6 --pool-prefix $SUBNETPOOL_PREFIX_V6 --share --default -f value -c id) |
rajinir | c58a155 | 2016-09-27 17:14:59 -0500 | [diff] [blame] | 162 | fi |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 163 | fi |
| 164 | fi |
| 165 | |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 166 | if is_provider_network; then |
| 167 | die_if_not_set $LINENO PHYSICAL_NETWORK "You must specify the PHYSICAL_NETWORK" |
| 168 | die_if_not_set $LINENO PROVIDER_NETWORK_TYPE "You must specify the PROVIDER_NETWORK_TYPE" |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 169 | NET_ID=$(openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" network create $PHYSICAL_NETWORK --provider-network-type $PROVIDER_NETWORK_TYPE --provider-physical-network "$PHYSICAL_NETWORK" ${SEGMENTATION_ID:+--provider-segment $SEGMENTATION_ID} --share -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 170 | die_if_not_set $LINENO NET_ID "Failure creating NET_ID for $PHYSICAL_NETWORK" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 171 | |
| 172 | if [[ "$IP_VERSION" =~ 4.* ]]; then |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 173 | if [ -z $SUBNETPOOL_V4_ID ]; then |
| 174 | fixed_range_v4=$FIXED_RANGE |
| 175 | fi |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 176 | SUBNET_ID=$(openstack --os-cloud devstack --os-region "$REGION_NAME" subnet create --ip-version 4 ${ALLOCATION_POOL:+--allocation-pool $ALLOCATION_POOL} $PROVIDER_SUBNET_NAME --gateway $NETWORK_GATEWAY ${SUBNETPOOL_V4_ID:+--subnet-pool $SUBNETPOOL_V4_ID} --network $NET_ID ${fixed_range_v4:+--subnet-range $fixed_range_v4} -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 177 | die_if_not_set $LINENO SUBNET_ID "Failure creating SUBNET_ID for $PROVIDER_SUBNET_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 178 | fi |
| 179 | |
Sean M. Collins | e34ec99 | 2016-06-07 12:36:50 -0400 | [diff] [blame] | 180 | if [[ "$IP_VERSION" =~ .*6 ]]; then |
Jan Stodt | 05dc1aa | 2016-08-25 15:46:02 +0200 | [diff] [blame] | 181 | die_if_not_set $LINENO IPV6_PROVIDER_FIXED_RANGE "IPV6_PROVIDER_FIXED_RANGE has not been set, but Q_USE_PROVIDER_NETWORKING is true and IP_VERSION includes 6" |
| 182 | die_if_not_set $LINENO IPV6_PROVIDER_NETWORK_GATEWAY "IPV6_PROVIDER_NETWORK_GATEWAY has not been set, but Q_USE_PROVIDER_NETWORKING is true and IP_VERSION includes 6" |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 183 | if [ -z $SUBNETPOOL_V6_ID ]; then |
| 184 | fixed_range_v6=$IPV6_PROVIDER_FIXED_RANGE |
| 185 | fi |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 186 | IPV6_SUBNET_ID=$(openstack --os-cloud devstack --os-region "$REGION_NAME" subnet create --ip-version 6 --gateway $IPV6_PROVIDER_NETWORK_GATEWAY $IPV6_PROVIDER_SUBNET_NAME ${SUBNETPOOL_V6_ID:+--subnet-pool $SUBNETPOOL_V6_ID} --network $NET_ID ${fixed_range_v6:+--subnet-range $fixed_range_v6} -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 187 | die_if_not_set $LINENO IPV6_SUBNET_ID "Failure creating IPV6_SUBNET_ID for $IPV6_PROVIDER_SUBNET_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 188 | fi |
| 189 | |
| 190 | if [[ $Q_AGENT == "openvswitch" ]]; then |
| 191 | sudo ip link set $OVS_PHYSICAL_BRIDGE up |
| 192 | sudo ip link set br-int up |
| 193 | sudo ip link set $PUBLIC_INTERFACE up |
| 194 | fi |
| 195 | else |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 196 | NET_ID=$(openstack --os-cloud devstack --os-region "$REGION_NAME" network create "$PRIVATE_NETWORK_NAME" -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 197 | die_if_not_set $LINENO NET_ID "Failure creating NET_ID for $PRIVATE_NETWORK_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 198 | |
| 199 | if [[ "$IP_VERSION" =~ 4.* ]]; then |
| 200 | # Create IPv4 private subnet |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 201 | SUBNET_ID=$(_neutron_create_private_subnet_v4) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 202 | fi |
| 203 | |
| 204 | if [[ "$IP_VERSION" =~ .*6 ]]; then |
| 205 | # Create IPv6 private subnet |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 206 | IPV6_SUBNET_ID=$(_neutron_create_private_subnet_v6) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 207 | fi |
| 208 | fi |
| 209 | |
Sean M. Collins | c35110e | 2016-05-18 10:38:51 -0400 | [diff] [blame] | 210 | if is_networking_extension_supported "router" && is_networking_extension_supported "external-net"; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 211 | # Create a router, and add the private subnet as one of its interfaces |
| 212 | if [[ "$Q_L3_ROUTER_PER_TENANT" == "True" ]]; then |
| 213 | # create a tenant-owned router. |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 214 | ROUTER_ID=$(openstack --os-cloud devstack --os-region "$REGION_NAME" router create $Q_ROUTER_NAME -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 215 | die_if_not_set $LINENO ROUTER_ID "Failure creating router $Q_ROUTER_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 216 | else |
| 217 | # Plugin only supports creating a single router, which should be admin owned. |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 218 | ROUTER_ID=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" router create $Q_ROUTER_NAME -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 219 | die_if_not_set $LINENO ROUTER_ID "Failure creating router $Q_ROUTER_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 220 | fi |
| 221 | |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 222 | EXTERNAL_NETWORK_FLAGS="--external" |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 223 | if is_networking_extension_supported "auto-allocated-topology"; then |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 224 | EXTERNAL_NETWORK_FLAGS="$EXTERNAL_NETWORK_FLAGS --default" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 225 | fi |
| 226 | # Create an external network, and a subnet. Configure the external network as router gw |
| 227 | if [ "$Q_USE_PROVIDERNET_FOR_PUBLIC" = "True" ]; then |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 228 | EXT_NET_ID=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" network create "$PUBLIC_NETWORK_NAME" $EXTERNAL_NETWORK_FLAGS --provider-network-type ${PUBLIC_PROVIDERNET_TYPE:-flat} ${PUBLIC_PROVIDERNET_SEGMENTATION_ID:+--provider-segment $PUBLIC_PROVIDERNET_SEGMENTATION_ID} --provider-physical-network ${PUBLIC_PHYSICAL_NETWORK} -f value -c id) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 229 | else |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 230 | EXT_NET_ID=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" network create "$PUBLIC_NETWORK_NAME" $EXTERNAL_NETWORK_FLAGS -f value -c id) |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 231 | fi |
| 232 | die_if_not_set $LINENO EXT_NET_ID "Failure creating EXT_NET_ID for $PUBLIC_NETWORK_NAME" |
| 233 | |
| 234 | if [[ "$IP_VERSION" =~ 4.* ]]; then |
| 235 | # Configure router for IPv4 public access |
| 236 | _neutron_configure_router_v4 |
| 237 | fi |
| 238 | |
| 239 | if [[ "$IP_VERSION" =~ .*6 ]]; then |
| 240 | # Configure router for IPv6 public access |
| 241 | _neutron_configure_router_v6 |
| 242 | fi |
| 243 | fi |
| 244 | } |
| 245 | |
| 246 | # Create private IPv4 subnet |
| 247 | function _neutron_create_private_subnet_v4 { |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 248 | if [ -z $SUBNETPOOL_V4_ID ]; then |
| 249 | fixed_range_v4=$FIXED_RANGE |
| 250 | fi |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 251 | local subnet_params="--ip-version 4 " |
Brian Haley | 31813e9 | 2016-08-22 15:39:22 -0400 | [diff] [blame] | 252 | if [[ -n "$NETWORK_GATEWAY" ]]; then |
| 253 | subnet_params+="--gateway $NETWORK_GATEWAY " |
| 254 | fi |
Slawek Kaplonski | 24b65ad | 2021-06-22 15:31:46 +0200 | [diff] [blame] | 255 | |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 256 | subnet_params+="${SUBNETPOOL_V4_ID:+--subnet-pool $SUBNETPOOL_V4_ID} " |
| 257 | subnet_params+="${fixed_range_v4:+--subnet-range $fixed_range_v4} " |
| 258 | subnet_params+="--network $NET_ID $PRIVATE_SUBNET_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 259 | local subnet_id |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 260 | subnet_id=$(openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" subnet create $subnet_params -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 261 | die_if_not_set $LINENO subnet_id "Failure creating private IPv4 subnet" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 262 | echo $subnet_id |
| 263 | } |
| 264 | |
| 265 | # Create private IPv6 subnet |
| 266 | function _neutron_create_private_subnet_v6 { |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 267 | die_if_not_set $LINENO IPV6_RA_MODE "IPV6 RA Mode not set" |
| 268 | die_if_not_set $LINENO IPV6_ADDRESS_MODE "IPV6 Address Mode not set" |
| 269 | local ipv6_modes="--ipv6-ra-mode $IPV6_RA_MODE --ipv6-address-mode $IPV6_ADDRESS_MODE" |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 270 | if [ -z $SUBNETPOOL_V6_ID ]; then |
| 271 | fixed_range_v6=$FIXED_RANGE_V6 |
| 272 | fi |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 273 | local subnet_params="--ip-version 6 " |
Brian Haley | 31813e9 | 2016-08-22 15:39:22 -0400 | [diff] [blame] | 274 | if [[ -n "$IPV6_PRIVATE_NETWORK_GATEWAY" ]]; then |
| 275 | subnet_params+="--gateway $IPV6_PRIVATE_NETWORK_GATEWAY " |
| 276 | fi |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 277 | subnet_params+="${SUBNETPOOL_V6_ID:+--subnet-pool $SUBNETPOOL_V6_ID} " |
Brian Haley | 1ec93a8 | 2017-01-12 16:11:11 -0500 | [diff] [blame] | 278 | subnet_params+="${fixed_range_v6:+--subnet-range $fixed_range_v6} " |
| 279 | subnet_params+="$ipv6_modes --network $NET_ID $IPV6_PRIVATE_SUBNET_NAME " |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 280 | local ipv6_subnet_id |
Eliad Cohen | fdfc144 | 2022-08-16 13:00:45 -0400 | [diff] [blame] | 281 | ipv6_subnet_id=$(openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" subnet create $subnet_params -f value -c id) |
Slawek Kaplonski | cebd00a | 2022-02-17 11:57:30 +0100 | [diff] [blame] | 282 | die_if_not_set $LINENO ipv6_subnet_id "Failure creating private IPv6 subnet" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 283 | echo $ipv6_subnet_id |
| 284 | } |
| 285 | |
| 286 | # Create public IPv4 subnet |
| 287 | function _neutron_create_public_subnet_v4 { |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 288 | local subnet_params="--ip-version 4 " |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 289 | subnet_params+="${Q_FLOATING_ALLOCATION_POOL:+--allocation-pool $Q_FLOATING_ALLOCATION_POOL} " |
Brian Haley | 31813e9 | 2016-08-22 15:39:22 -0400 | [diff] [blame] | 290 | if [[ -n "$PUBLIC_NETWORK_GATEWAY" ]]; then |
| 291 | subnet_params+="--gateway $PUBLIC_NETWORK_GATEWAY " |
| 292 | fi |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 293 | subnet_params+="--network $EXT_NET_ID --subnet-range $FLOATING_RANGE --no-dhcp " |
| 294 | subnet_params+="$PUBLIC_SUBNET_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 295 | local id_and_ext_gw_ip |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 296 | id_and_ext_gw_ip=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" subnet create $subnet_params | grep -e 'gateway_ip' -e ' id ') |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 297 | die_if_not_set $LINENO id_and_ext_gw_ip "Failure creating public IPv4 subnet" |
| 298 | echo $id_and_ext_gw_ip |
| 299 | } |
| 300 | |
| 301 | # Create public IPv6 subnet |
| 302 | function _neutron_create_public_subnet_v6 { |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 303 | local subnet_params="--ip-version 6 " |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 304 | subnet_params+="--gateway $IPV6_PUBLIC_NETWORK_GATEWAY " |
Armando Migliaccio | 4f11ff3 | 2016-10-27 06:15:23 -0700 | [diff] [blame] | 305 | subnet_params+="--network $EXT_NET_ID --subnet-range $IPV6_PUBLIC_RANGE --no-dhcp " |
| 306 | subnet_params+="$IPV6_PUBLIC_SUBNET_NAME" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 307 | local ipv6_id_and_ext_gw_ip |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 308 | ipv6_id_and_ext_gw_ip=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" subnet create $subnet_params | grep -e 'gateway_ip' -e ' id ') |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 309 | die_if_not_set $LINENO ipv6_id_and_ext_gw_ip "Failure creating an IPv6 public subnet" |
| 310 | echo $ipv6_id_and_ext_gw_ip |
| 311 | } |
| 312 | |
| 313 | # Configure neutron router for IPv4 public access |
| 314 | function _neutron_configure_router_v4 { |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 315 | openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" router add subnet $ROUTER_ID $SUBNET_ID |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 316 | # Create a public subnet on the external network |
| 317 | local id_and_ext_gw_ip |
| 318 | id_and_ext_gw_ip=$(_neutron_create_public_subnet_v4 $EXT_NET_ID) |
| 319 | local ext_gw_ip |
| 320 | ext_gw_ip=$(echo $id_and_ext_gw_ip | get_field 2) |
| 321 | PUB_SUBNET_ID=$(echo $id_and_ext_gw_ip | get_field 5) |
| 322 | # Configure the external network as the default router gateway |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 323 | openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" router set --external-gateway $EXT_NET_ID $ROUTER_ID |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 324 | |
Radosław Piliszek | 9529878 | 2021-06-08 16:19:40 +0000 | [diff] [blame] | 325 | # This logic is specific to using OVN or the l3-agent for layer 3 |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 326 | if ([[ $Q_AGENT == "ovn" ]] && [[ "$OVN_L3_CREATE_PUBLIC_NETWORK" == "True" ]] && is_service_enabled q-svc neutron-api) || is_service_enabled q-l3 neutron-l3; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 327 | # Configure and enable public bridge |
| 328 | local ext_gw_interface="none" |
| 329 | if is_neutron_ovs_base_plugin; then |
| 330 | ext_gw_interface=$(_neutron_get_ext_gw_interface) |
| 331 | elif [[ "$Q_AGENT" = "linuxbridge" ]]; then |
Kevin Benton | 6a42a85 | 2016-07-21 11:11:54 -0700 | [diff] [blame] | 332 | # Get the device the neutron router and network for $FIXED_RANGE |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 333 | # will be using. |
Kevin Benton | 6a42a85 | 2016-07-21 11:11:54 -0700 | [diff] [blame] | 334 | if [ "$Q_USE_PROVIDERNET_FOR_PUBLIC" = "True" ]; then |
| 335 | # in provider nets a bridge mapping uses the public bridge directly |
| 336 | ext_gw_interface=$PUBLIC_BRIDGE |
| 337 | else |
| 338 | # e.x. brq3592e767-da for NET_ID 3592e767-da66-4bcb-9bec-cdb03cd96102 |
| 339 | ext_gw_interface=brq${EXT_NET_ID:0:11} |
| 340 | fi |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 341 | fi |
| 342 | if [[ "$ext_gw_interface" != "none" ]]; then |
| 343 | local cidr_len=${FLOATING_RANGE#*/} |
| 344 | local testcmd="ip -o link | grep -q $ext_gw_interface" |
| 345 | test_with_retry "$testcmd" "$ext_gw_interface creation failed" |
Kevin Benton | 1554ade | 2016-07-22 09:40:19 -0700 | [diff] [blame] | 346 | if [[ $(ip addr show dev $ext_gw_interface | grep -c $ext_gw_ip) == 0 && ( $Q_USE_PROVIDERNET_FOR_PUBLIC == "False" || $Q_USE_PUBLIC_VETH == "True" || $Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE == "True" ) ]]; then |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 347 | sudo ip addr add $ext_gw_ip/$cidr_len dev $ext_gw_interface |
| 348 | sudo ip link set $ext_gw_interface up |
| 349 | fi |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 350 | ROUTER_GW_IP=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" port list -c 'Fixed IP Addresses' --device-owner network:router_gateway | awk -F'ip_address' '{ print $2 }' | cut -f2 -d\' | tr '\n' ' ') |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 351 | die_if_not_set $LINENO ROUTER_GW_IP "Failure retrieving ROUTER_GW_IP" |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 352 | fi |
| 353 | _neutron_set_router_id |
| 354 | fi |
| 355 | } |
| 356 | |
| 357 | # Configure neutron router for IPv6 public access |
| 358 | function _neutron_configure_router_v6 { |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 359 | openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" router add subnet $ROUTER_ID $IPV6_SUBNET_ID |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 360 | # Create a public subnet on the external network |
| 361 | local ipv6_id_and_ext_gw_ip |
| 362 | ipv6_id_and_ext_gw_ip=$(_neutron_create_public_subnet_v6 $EXT_NET_ID) |
| 363 | local ipv6_ext_gw_ip |
| 364 | ipv6_ext_gw_ip=$(echo $ipv6_id_and_ext_gw_ip | get_field 2) |
| 365 | local ipv6_pub_subnet_id |
| 366 | ipv6_pub_subnet_id=$(echo $ipv6_id_and_ext_gw_ip | get_field 5) |
| 367 | |
| 368 | # If the external network has not already been set as the default router |
| 369 | # gateway when configuring an IPv4 public subnet, do so now |
| 370 | if [[ "$IP_VERSION" == "6" ]]; then |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 371 | openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" router set --external-gateway $EXT_NET_ID $ROUTER_ID |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 372 | fi |
| 373 | |
Gregory Thiemonge | 949f5ad | 2021-03-15 18:25:04 +0100 | [diff] [blame] | 374 | # This logic is specific to using OVN or the l3-agent for layer 3 |
Slawek Kaplonski | a52041c | 2022-11-18 11:39:56 +0100 | [diff] [blame] | 375 | if ([[ $Q_AGENT == "ovn" ]] && [[ "$OVN_L3_CREATE_PUBLIC_NETWORK" == "True" ]] && is_service_enabled q-svc neutron-api) || is_service_enabled q-l3 neutron-l3; then |
aojeagarcia | 866efef | 2018-09-28 10:43:46 +0200 | [diff] [blame] | 376 | # if the Linux host considers itself to be a router then it will |
| 377 | # ignore all router advertisements |
Henry Gessau | 734f144 | 2016-09-17 19:28:53 -0400 | [diff] [blame] | 378 | # Ensure IPv6 RAs are accepted on interfaces with a default route. |
Monty Taylor | c12d1d9 | 2016-08-23 19:07:57 -0500 | [diff] [blame] | 379 | # This is needed for neutron-based devstack clouds to work in |
| 380 | # IPv6-only clouds in the gate. Please do not remove this without |
| 381 | # talking to folks in Infra. |
Henry Gessau | 734f144 | 2016-09-17 19:28:53 -0400 | [diff] [blame] | 382 | for d in $default_v6_route_devs; do |
Drago Rosson | b34d459 | 2016-09-26 13:23:23 -0500 | [diff] [blame] | 383 | # Slashes must be used in this sysctl command because route devices |
| 384 | # can have dots in their names. If dots were used, dots in the |
| 385 | # device name would be reinterpreted as a slash, causing an error. |
| 386 | sudo sysctl -w net/ipv6/conf/$d/accept_ra=2 |
Henry Gessau | 734f144 | 2016-09-17 19:28:53 -0400 | [diff] [blame] | 387 | done |
Jens Harbott | 0c9a6ca | 2019-09-19 13:57:43 +0000 | [diff] [blame] | 388 | # Ensure IPv6 forwarding is enabled on the host |
| 389 | sudo sysctl -w net.ipv6.conf.all.forwarding=1 |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 390 | # Configure and enable public bridge |
| 391 | # Override global IPV6_ROUTER_GW_IP with the true value from neutron |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 392 | # NOTE(slaweq): when enforce scopes is enabled in Neutron, router's |
| 393 | # gateway ports aren't visible in API because such ports don't belongs |
| 394 | # to any tenant. Because of that, at least temporary we need to find |
| 395 | # IPv6 address of the router's gateway in a bit different way. |
| 396 | # It can be reverted when bug |
| 397 | # https://bugs.launchpad.net/neutron/+bug/1959332 will be fixed |
| 398 | IPV6_ROUTER_GW_IP=$(openstack --os-cloud devstack-admin-demo --os-region "$REGION_NAME" router show $ROUTER_ID -c external_gateway_info -f json | grep -C 1 $ipv6_pub_subnet_id | grep ip_address | awk '{print $2}' | tr -d '"') |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 399 | die_if_not_set $LINENO IPV6_ROUTER_GW_IP "Failure retrieving IPV6_ROUTER_GW_IP" |
| 400 | |
| 401 | if is_neutron_ovs_base_plugin; then |
| 402 | local ext_gw_interface |
| 403 | ext_gw_interface=$(_neutron_get_ext_gw_interface) |
| 404 | local ipv6_cidr_len=${IPV6_PUBLIC_RANGE#*/} |
| 405 | |
Julia Kreger | 6964ba4 | 2022-04-25 08:48:20 -0700 | [diff] [blame] | 406 | # Configure interface for public bridge by setting the interface |
| 407 | # to "up" in case the job is running entirely private network based |
| 408 | # testing. |
| 409 | sudo ip link set $ext_gw_interface up |
Yi Zhao | a464ea7 | 2016-05-12 10:32:58 +0800 | [diff] [blame] | 410 | sudo ip -6 addr replace $ipv6_ext_gw_ip/$ipv6_cidr_len dev $ext_gw_interface |
Gregory Thiemonge | 949f5ad | 2021-03-15 18:25:04 +0100 | [diff] [blame] | 411 | # Any IPv6 private subnet that uses the default IPV6 subnet pool |
| 412 | # and that is plugged into the default router (Q_ROUTER_NAME) will |
| 413 | # be reachable from the devstack node (ex: ipv6-private-subnet). |
| 414 | # Some scenario tests (such as octavia-tempest-plugin) rely heavily |
| 415 | # on this feature. |
Matt Van Dijk | d7a3f5c | 2016-08-16 15:46:58 +0000 | [diff] [blame] | 416 | local replace_range=${SUBNETPOOL_PREFIX_V6} |
| 417 | if [[ -z "${SUBNETPOOL_V6_ID}" ]]; then |
| 418 | replace_range=${FIXED_RANGE_V6} |
| 419 | fi |
| 420 | sudo ip -6 route replace $replace_range via $IPV6_ROUTER_GW_IP dev $ext_gw_interface |
Sean M. Collins | 2a24251 | 2016-05-03 09:03:09 -0400 | [diff] [blame] | 421 | fi |
| 422 | _neutron_set_router_id |
| 423 | fi |
| 424 | } |
watanabe.isao | 4f4d95a | 2016-05-12 20:35:20 +0900 | [diff] [blame] | 425 | |
Sean M. Collins | c35110e | 2016-05-18 10:38:51 -0400 | [diff] [blame] | 426 | function is_networking_extension_supported { |
| 427 | local extension=$1 |
| 428 | # TODO(sc68cal) cache this instead of calling every time |
Slawek Kaplonski | 14a0c09 | 2022-01-28 09:44:40 +0100 | [diff] [blame] | 429 | EXT_LIST=$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" extension list --network -c Alias -f value) |
Sean M. Collins | c35110e | 2016-05-18 10:38:51 -0400 | [diff] [blame] | 430 | [[ $EXT_LIST =~ $extension ]] && return 0 |
| 431 | } |
Slawek Kaplonski | faed11d | 2021-11-18 10:36:57 +0100 | [diff] [blame] | 432 | |
| 433 | function plugin_agent_add_l3_agent_extension { |
| 434 | local l3_agent_extension=$1 |
| 435 | if [[ -z "$L3_AGENT_EXTENSIONS" ]]; then |
| 436 | L3_AGENT_EXTENSIONS=$l3_agent_extension |
| 437 | elif [[ ! ,${L3_AGENT_EXTENSIONS}, =~ ,${l3_agent_extension}, ]]; then |
| 438 | L3_AGENT_EXTENSIONS+=",$l3_agent_extension" |
| 439 | fi |
| 440 | } |