blob: ff0b4b06f88d5eb84770277bc6d133eaff710198 [file] [log] [blame]
Scott Baker761e1062016-06-20 17:18:17 -07001#!/bin/bash
2
Matteo Scandoloaca86652017-08-08 13:05:27 -07003# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Scott Baker761e1062016-06-20 17:18:17 -070017function mac_to_iface {
18 MAC=$1
19 ifconfig|grep $MAC| awk '{print $1}'|grep -v '\.'
20}
21
22iptables -L > /dev/null
23ip6tables -L > /dev/null
24
25STAG={{ s_tags[0] }}
26CTAG={{ c_tags[0] }}
Scott Baker645c0c52017-09-15 10:38:32 -070027VSG=vsg-$STAG-$CTAG
Scott Baker761e1062016-06-20 17:18:17 -070028
Scott Baker645c0c52017-09-15 10:38:32 -070029docker inspect $VSG > /dev/null 2>&1
Scott Baker761e1062016-06-20 17:18:17 -070030if [ "$?" == 1 ]
31then
Scott Baker8e66d662016-10-13 13:22:49 -070032 docker pull {{ docker_remote_image_name }}
Scott Baker645c0c52017-09-15 10:38:32 -070033 docker run -d --name=$VSG --privileged=true --net=none \
34 -v /var/container_volumes/$VSG/mount:/mount:ro \
35 -v /var/container_volumes/$VSG/etc/dnsmasq.d:/etc/dnsmasq.d:ro \
36 -v /var/container_volumes/$VSG/etc/service/message:/etc/service/message \
37 -v /var/container_volumes/$VSG/usr/local/sbin:/usr/local/sbin:ro \
Scott Baker8e66d662016-10-13 13:22:49 -070038 {{ docker_local_image_name }}
Scott Baker761e1062016-06-20 17:18:17 -070039else
Scott Baker645c0c52017-09-15 10:38:32 -070040 docker start $VSG
Scott Baker761e1062016-06-20 17:18:17 -070041fi
42
43# Set up networking via pipework
44WAN_IFACE=br-wan
Scott Baker645c0c52017-09-15 10:38:32 -070045docker exec $VSG ifconfig eth0 >> /dev/null || pipework $WAN_IFACE -i eth0 $VSG {{ wan_container_ip }}/{{ wan_container_netbits }}@{{ wan_container_gateway_ip }} {{ wan_container_mac }}
Scott Baker761e1062016-06-20 17:18:17 -070046
47LAN_IFACE=eth0
48ifconfig $LAN_IFACE >> /dev/null
49if [ "$?" == 0 ]
50then
51 ifconfig $LAN_IFACE.$STAG >> /dev/null || ip link add link $LAN_IFACE name $LAN_IFACE.$STAG type vlan id $STAG
52 ifconfig $LAN_IFACE.$STAG up
Scott Baker645c0c52017-09-15 10:38:32 -070053 docker exec $VSG ifconfig eth1 >> /dev/null || pipework $LAN_IFACE.$STAG -i eth1 $VSG 192.168.0.1/24 @$CTAG
Scott Baker761e1062016-06-20 17:18:17 -070054fi
55
56#HPC_IFACE=$( mac_to_iface {{ hpc_client_mac }} )
Scott Baker645c0c52017-09-15 10:38:32 -070057#docker exec $VSG ifconfig eth2 >> /dev/null || pipework $HPC_IFACE -i eth2 $VSG {{ hpc_client_ip }}/24
Scott Baker761e1062016-06-20 17:18:17 -070058
59# Make sure VM's eth0 (hpc_client) has no IP address
60#ifconfig $HPC_IFACE 0.0.0.0
61
62# Attach to container
Scott Baker645c0c52017-09-15 10:38:32 -070063docker start -a $VSG