Update vLB to Ubuntu 1604 and VPP 1707
[demo.git] / vnfs / vLB / scripts / v_lb_init.sh
1 #!/bin/bash
2
3 # Start VPP
4 systemctl start vpp
5 sleep 1
6
7 # Compute the network CIDR from the Netmask
8 mask2cidr() {
9     nbits=0
10     IFS=.
11     for dec in $1 ; do
12         case $dec in
13             255) let nbits+=8;;
14             254) let nbits+=7;;
15             252) let nbits+=6;;
16             248) let nbits+=5;;
17             240) let nbits+=4;;
18             224) let nbits+=3;;
19             192) let nbits+=2;;
20             128) let nbits+=1;;
21             0);;
22             *) echo "Error: $dec is not recognized"; exit 1
23         esac
24     done
25     echo "$nbits"
26 }
27
28 IPADDR1_MASK=$(ifconfig eth3 | grep "Mask" | awk '{print $4}' | awk -F ":" '{print $2}')
29 IPADDR1_CIDR=$(mask2cidr $IPADDR1_MASK)
30 IPADDR2_MASK=$(ifconfig eth1 | grep "Mask" | awk '{print $4}' | awk -F ":" '{print $2}')
31 IPADDR2_CIDR=$(mask2cidr $IPADDR2_MASK)
32
33 # Configure VPP for vPacketGenerator
34 IPADDR1=$(ifconfig eth3 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
35 IPADDR2=$(ifconfig eth1 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
36 HWADDR1=$(ifconfig eth3 | grep HWaddr | tr -s ' ' | cut -d' ' -f5)
37 HWADDR2=$(ifconfig eth1 | grep HWaddr | tr -s ' ' | cut -d' ' -f5)
38 FAKE_HWADDR1=$(echo -n 00; dd bs=1 count=5 if=/dev/urandom 2>/dev/null | hexdump -v -e '/1 ":%02X"')
39 FAKE_HWADDR2=$(echo -n 00; dd bs=1 count=5 if=/dev/urandom 2>/dev/null | hexdump -v -e '/1 ":%02X"')
40 GW=$(route -n | grep "^0.0.0.0" | awk '{print $2}')
41 PKTGEN_IPADDR=$(cat /opt/config/pktgen_ipaddr.txt)
42 VIP=$(cat /opt/config/vip.txt)
43
44 while [ $(ping -c 1 $PKTGEN_IPADDR | grep received | cut -d" " -f4) != 1 ]; 
45 do
46         echo "Wait";
47         sleep 1;
48 done
49
50 sleep 3
51 PKTGEN_MAC=$(arp -n | grep -w $PKTGEN_IPADDR | tr -s ' ' | cut -d' ' -f3)
52
53 ifconfig eth3 down
54 ifconfig eth3 hw ether $FAKE_HWADDR1
55 ip addr flush dev eth3
56 ifconfig eth3 up
57 vppctl tap connect tappub hwaddr $HWADDR1
58 vppctl set int ip address tap-0 $VIP"/"$IPADDR1_CIDR
59 vppctl set int state tap-0 up
60 brctl addbr br0
61 brctl addif br0 tappub
62 brctl addif br0 eth3
63 ifconfig br0 up
64
65 ifconfig eth1 down
66 ifconfig eth1 hw ether $FAKE_HWADDR2
67 ip addr flush dev eth1
68 ifconfig eth1 up
69 vppctl tap connect tap111 hwaddr $HWADDR2
70 vppctl set int ip address tap-1 $IPADDR2"/"$IPADDR2_CIDR
71 vppctl set int state tap-1 up
72 brctl addbr br1
73 brctl addif br1 tap111
74 brctl addif br1 eth1
75 ifconfig br1 up
76 sleep 1
77
78 vppctl lb conf ip4-src-address $IPADDR2
79 vppctl lb vip $IPADDR1"/32" encap gre4
80 sleep 1
81
82 vppctl set ip arp proxy $IPADDR1" - "$IPADDR1
83 vppctl set interface proxy-arp tap-0 enable
84 vppctl set ip arp tap-0 $PKTGEN_IPADDR $PKTGEN_MAC
85
86 cd /opt/FDserver
87 ./dnsmembership.sh &>/dev/null &disown
88
89 # Start VES client
90 cd /opt/VES/code/evel_training/VESreporting/
91 echo 0 > active_dns.txt
92 ./go-client.sh &>/dev/null &disown