Fix vPacketGen IP address in change_ports script 75/8975/1
authorMarco Platania <platania@research.att.com>
Mon, 28 Aug 2017 20:49:36 +0000 (16:49 -0400)
committerMarco Platania <platania@research.att.com>
Mon, 28 Aug 2017 20:49:36 +0000 (16:49 -0400)
- Retrieve the correct local IP to set up VPP streams

Change-Id: I39e25e751e4f364a66f0f715b85809c5d7c6be48
Issue-ID: UCA-34
Signed-off-by: Marco Platania <platania@research.att.com>
vnfs/vLB/scripts/vdnspacketgen_change_streams_ports.sh

index adfc1f1..e472388 100644 (file)
@@ -16,7 +16,7 @@ vppctl pac del dns10
 
 #Update destination (vLB) IP
 VLB_IPADDR=$(cat /opt/config/vlb_ipaddr.txt)
-IPADDR1=$(ifconfig br0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
+IPADDR1=$(cat /opt/config/local_private_ipaddr.txt)
 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns1
 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns2
 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns3