From fe366e6d7ff18924cf33bd743e9674fa238f2b89 Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Wed, 21 Mar 2018 10:11:32 -0400 Subject: Add Heat templates and scripts for vLBMS - Heat templates that install the vLBMS components - Installation scripts that install and configure the VNF components Change-Id: Ie1911a67b830d5543c96174fb915afd30d8daf0c Issue-ID: INT-447 Signed-off-by: Marco Platania --- vnfs/vLBMS/scripts/set_gre_tunnel.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vnfs/vLBMS/scripts/set_gre_tunnel.sh (limited to 'vnfs/vLBMS/scripts/set_gre_tunnel.sh') diff --git a/vnfs/vLBMS/scripts/set_gre_tunnel.sh b/vnfs/vLBMS/scripts/set_gre_tunnel.sh new file mode 100644 index 00000000..186a00d9 --- /dev/null +++ b/vnfs/vLBMS/scripts/set_gre_tunnel.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +LB_PUBLIC_IP=$(cat /opt/config/lb_public_ipaddr.txt) +LB_PRIVATE_IP=$(cat /opt/config/lb_private_ipaddr.txt) +MY_PRIVATE_IP=$(cat /opt/config/local_private_ipaddr.txt) + +sed -i "s/x.x.x.x/"$LB_PUBLIC_IP"/g" /etc/bind/named.conf.options + +ip tunnel add gre123 mode gre remote $LB_PRIVATE_IP local $MY_PRIVATE_IP ttl 255 +ip link set gre123 up +ip addr add $LB_PUBLIC_IP"/32" dev gre123 +route add default dev gre123 +ifconfig eth0 down + +service bind9 restart -- cgit 1.2.3-korg