diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-03-21 17:29:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-21 17:29:27 +0000 |
commit | d8ff19612d74d1ace0947294f774c9ef0c992de0 (patch) | |
tree | 6ff00cccdc4046486097afaa392e71e7c46425b4 /vnfs/vLBMS/scripts/remove_dns.sh | |
parent | bf0018f03f9513786c28ae9b12b70cbffb3b719b (diff) | |
parent | fe366e6d7ff18924cf33bd743e9674fa238f2b89 (diff) |
Merge "Add Heat templates and scripts for vLBMS"
Diffstat (limited to 'vnfs/vLBMS/scripts/remove_dns.sh')
-rw-r--r-- | vnfs/vLBMS/scripts/remove_dns.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vnfs/vLBMS/scripts/remove_dns.sh b/vnfs/vLBMS/scripts/remove_dns.sh new file mode 100644 index 00000000..1f6c6562 --- /dev/null +++ b/vnfs/vLBMS/scripts/remove_dns.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +if [ ! "$#" -eq 1 ] +then + echo "Usage: ./remove_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) + +vppctl lb as $IP_TO_PKTGEN_NET"/32" $DNS_IPADDR del +vppctl create gre tunnel src $IP_TO_DNS_NET dst $DNS_IPADDR del + +# 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 +if [[ $CURR_DNS -lt 0 ]] +then + CURR_DNS=0 +fi +echo $CURR_DNS > $FD |