diff options
author | Marco Platania <platania@research.att.com> | 2017-06-05 15:35:45 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2017-06-05 15:35:45 -0400 |
commit | 9f94d8c2fd838c1607f630dfdd5f936605d9873f (patch) | |
tree | a9d3150f74a788bdb829e8a8dd6f95d722ca4af4 /vnfs/vLB/scripts/v_lb_init.sh | |
parent | a8a9fec9dd7ab059c46a686d81a9b2c41537d6b8 (diff) |
Parametrize CIDR and Netmask in the demos
Change-Id: I01f46fc1ee5cd1774e3db2e3381081dc9fc4c967
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'vnfs/vLB/scripts/v_lb_init.sh')
-rwxr-xr-x | vnfs/vLB/scripts/v_lb_init.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vnfs/vLB/scripts/v_lb_init.sh b/vnfs/vLB/scripts/v_lb_init.sh index e41c4ef3..8767a943 100755 --- a/vnfs/vLB/scripts/v_lb_init.sh +++ b/vnfs/vLB/scripts/v_lb_init.sh @@ -27,6 +27,8 @@ mask2cidr() { IPADDR1_MASK=$(ifconfig eth0 | grep "Mask" | awk '{print $4}' | awk -F ":" '{print $2}') IPADDR1_CIDR=$(mask2cidr $IPADDR1_MASK) +IPADDR2_MASK=$(ifconfig eth1 | grep "Mask" | awk '{print $4}' | awk -F ":" '{print $2}') +IPADDR2_CIDR=$(mask2cidr $IPADDR2_MASK) # Configure VPP for vPacketGenerator IPADDR1=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2) @@ -54,7 +56,7 @@ ifconfig eth1 hw ether $FAKE_HWADDR2 ip addr flush dev eth1 ifconfig eth1 up vppctl tap connect tap111 hwaddr $HWADDR2 -vppctl set int ip address tap-1 $IPADDR2"/24" +vppctl set int ip address tap-1 $IPADDR2"/"$IPADDR2_CIDR vppctl set int state tap-1 up brctl addbr br1 brctl addif br1 tap111 |