diff options
author | Marco Platania <platania@research.att.com> | 2018-03-21 10:11:32 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2018-03-21 16:58:22 +0000 |
commit | fe366e6d7ff18924cf33bd743e9674fa238f2b89 (patch) | |
tree | f54feae8c73e50a57f2cb7897147c2c018f0cd23 /vnfs/vLBMS/scripts/add_dns.sh | |
parent | 2b40259f1cfe6a52360e70f696d8efaeeb16d8fa (diff) |
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 <platania@research.att.com>
Diffstat (limited to 'vnfs/vLBMS/scripts/add_dns.sh')
-rw-r--r-- | vnfs/vLBMS/scripts/add_dns.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vnfs/vLBMS/scripts/add_dns.sh b/vnfs/vLBMS/scripts/add_dns.sh new file mode 100644 index 00000000..63977635 --- /dev/null +++ b/vnfs/vLBMS/scripts/add_dns.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +if [ ! "$#" -eq 1 ] +then + echo "Usage: ./add_dns.sh [remote DNS server]" + exit +fi + +DNS_IPADDR=$1 +IP_TO_PKTGEN_NET=$(cat /opt/config/ip_to_pktgen_net.txt) +IP_TO_DNS_NET=$(cat /opt/config/ip_to_dns_net.txt) +GRE_IPADDR=$(cat /opt/config/gre_ipaddr.txt) + +vppctl lb as $IP_TO_PKTGEN_NET"/32" $DNS_IPADDR +GRE=$(vppctl create gre tunnel src $IP_TO_DNS_NET dst $DNS_IPADDR) +vppctl set int ip address $GRE $GRE_IPADDR"/32" +vppctl set int state $GRE up + +# Update the number of vDNSs currently active +FD="/opt/VES/evel/evel-library/code/VESreporting/active_dns.txt" +CURR_DNS=$(cat $FD) +let CURR_DNS=$CURR_DNS+1 +echo $CURR_DNS > $FD |