diff options
author | Marco Platania <platania@research.att.com> | 2018-03-21 17:56:55 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2018-03-21 17:58:52 -0400 |
commit | dae3488a08202f32290bdd08798ca338b0086254 (patch) | |
tree | e144ddd3f69f77ac088cccaff50f714e1231f5ae /vnfs/vLBMS/scripts/set_gre_tunnel.sh | |
parent | 13fdadba0a69e43fcfbd55cf4f473cc0db612640 (diff) |
Fix an issue that prevents vDNS replies
- Replace vLB public IP with private IP towards the packet gen network
Change-Id: If7b4d2ffe4891d9d856a62cc2d41dee1fb4ce397
Issue-ID: INT-447
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'vnfs/vLBMS/scripts/set_gre_tunnel.sh')
-rw-r--r-- | vnfs/vLBMS/scripts/set_gre_tunnel.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vnfs/vLBMS/scripts/set_gre_tunnel.sh b/vnfs/vLBMS/scripts/set_gre_tunnel.sh index 186a00d9..d918211f 100644 --- a/vnfs/vLBMS/scripts/set_gre_tunnel.sh +++ b/vnfs/vLBMS/scripts/set_gre_tunnel.sh @@ -1,14 +1,14 @@ #!/bin/bash -LB_PUBLIC_IP=$(cat /opt/config/lb_public_ipaddr.txt) +LB_TO_PKTGEN_IF=$(cat /opt/config/lb_to_pktgen_if.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 +sed -i "s/x.x.x.x/"$LB_TO_PKTGEN_IF"/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 +ip addr add $LB_TO_PKTGEN_IF"/32" dev gre123 route add default dev gre123 ifconfig eth0 down |