diff options
author | Srivahni <srivahni.chivukula@intel.com> | 2017-11-10 17:49:15 -0800 |
---|---|---|
committer | Srivahni <srivahni.chivukula@intel.com> | 2017-11-10 17:51:10 -0800 |
commit | c05adbb8ddb67f49a3cc17b9ea7fc26fa0532d30 (patch) | |
tree | 5937c966c873e72ff9e6e1e16d176c363f208709 /vnfs/vCPE | |
parent | 1dd76f02caee9c9bf1648d1b35a5bfff17f10844 (diff) |
Removed tunnel creation from vGW install script
Removed vG-vGMUX vxlan tunnel creation from vGW install
script to create the tunnel via Directed Graph.
Change-Id: I3d4aa143d299d54bcf638a946fcee70dad24ac15
Issue-ID: INT-63
Signed-off-by: Srivahni <srivahni.chivukula@intel.com>
Diffstat (limited to 'vnfs/vCPE')
-rw-r--r-- | vnfs/vCPE/scripts/v_gw_install.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/vnfs/vCPE/scripts/v_gw_install.sh b/vnfs/vCPE/scripts/v_gw_install.sh index 4b4a7686..043fba5d 100644 --- a/vnfs/vCPE/scripts/v_gw_install.sh +++ b/vnfs/vCPE/scripts/v_gw_install.sh @@ -219,10 +219,7 @@ set dhcp client intfc ${GW_PUB_NIC} hostname vg-1 tap connect lstack address 192.168.1.1/24 set int state tap-0 up -create vxlan tunnel src ${MUX_GW_IP} dst ${MUX_IP_ADDR} vni ${VG_VGMUX_TUNNEL_VNI} - set interface l2 bridge tap-0 10 0 -set interface l2 bridge vxlan_tunnel0 10 1 set bridge-domain arp term 10 loopback create @@ -239,7 +236,7 @@ fi # endif BUILD_STATE != "build" if [[ $BUILD_STATE != "done" ]] then - # Download and install HC2VPP from source + # Download and install HC2VPP from source cd /opt git clone ${HC2VPP_SOURCE_REPO_URL} -b ${HC2VPP_SOURCE_REPO_BRANCH} hc2vpp |