Fix eth0 issues in vLB demo
[demo.git] / vnfs / vLB / scripts / v_packetgen_for_dns_demo_init.sh
1 #!/bin/bash
2
3 # Start VPP
4 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 eth0 | grep "Mask" | awk '{print $4}' | awk -F ":" '{print $2}')
29 #IPADDR1_CIDR=$(mask2cidr $IPADDR1_MASK)
30
31 # Configure VPP for vPacketGenerator
32 IPADDR1=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2)
33 HWADDR1=$(ifconfig eth0 | grep HWaddr | tr -s ' ' | cut -d' ' -f5)
34 FAKE_HWADDR1=$(echo -n 00; dd bs=1 count=5 if=/dev/urandom 2>/dev/null | hexdump -v -e '/1 ":%02X"')
35 VLB_IPADDR=$(cat /opt/config/vlb_ipaddr.txt)
36 GW=$(route -n | grep "^0.0.0.0" | awk '{print $2}')
37
38 ifconfig eth0 down
39 ifconfig eth0 hw ether $FAKE_HWADDR1
40 ip addr flush dev eth0
41 ifconfig eth0 up
42 vppctl tap connect tap111 hwaddr $HWADDR1
43 vppctl set int ip address tap-0 $IPADDR1"/24"
44 #$IPADDR1_CIDR
45 vppctl set int state tap-0 up
46 brctl addbr br0
47 brctl addif br0 tap111
48 brctl addif br0 eth0
49 ifconfig br0 up
50 vppctl ip route add 0.0.0.0/0 via $GW
51 sleep 1
52
53
54 # Set br0 with public IP and valid MAC so that Linux will have public network access
55 ifconfig br0 hw ether $HWADDR1
56 ifconfig br0 $IPADDR1 netmask $IPADDR1_MASK
57 route add default gw $GW
58
59 #Adding static arp entry for VPP so that it will be able to send packets to default GW
60 ping -c 1 $VLB_IPADDR &>/dev/null &disown
61 sleep 3
62
63 GW_MAC=$(arp -n | grep -w $GW | tr -s ' ' | cut -d' ' -f3)
64 VLB_MAC=$(arp -n | grep -w $VLB_IPADDR | tr -s ' ' | cut -d' ' -f3)
65
66 # If VLB is in our network, we will use its MAC
67 if [ ! -z "$VLB_MAC" ]
68 then
69         vppctl set ip arp tap-0 $VLB_IPADDR $VLB_MAC
70 fi
71
72 # Add arp entry for default GW
73 vppctl set ip arp tap-0 $GW $GW_MAC
74
75 # Install packet streams
76 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns1
77 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns2
78 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns3
79 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns4
80 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns5
81 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns6
82 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns7
83 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns8
84 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns9
85 sed -i -e "0,/UDP/ s/UDP:.*/UDP: "$IPADDR1" -> "$VLB_IPADDR"/" /opt/dns_streams/stream_dns10
86
87 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns1
88 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns2
89 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns3
90 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns4
91 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns5
92 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns6
93 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns7
94 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns8
95 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns9
96 sed -i -e "s/.*-> 53.*/    UDP: $RANDOM -> 53/" /opt/dns_streams/stream_dns10
97
98 vppctl exec /opt/dns_streams/stream_dns1
99 vppctl exec /opt/dns_streams/stream_dns2
100 vppctl exec /opt/dns_streams/stream_dns3
101 vppctl exec /opt/dns_streams/stream_dns4
102 vppctl exec /opt/dns_streams/stream_dns5
103 vppctl exec /opt/dns_streams/stream_dns6
104 vppctl exec /opt/dns_streams/stream_dns7
105 vppctl exec /opt/dns_streams/stream_dns8
106 vppctl exec /opt/dns_streams/stream_dns9
107 vppctl exec /opt/dns_streams/stream_dns10
108 sleep 1
109
110 # Start HoneyComb
111 VERSION=$(cat /opt/config/demo_artifacts_version.txt)
112 echo "" > /var/lib/honeycomb/persist/context/data.json
113 echo "" > /var/lib/honeycomb/persist/config/data.json
114 /opt/honeycomb/sample-distribution-$VERSION/honeycomb &>/dev/null &disown
115 sleep 20
116
117 # Enable traffic flows
118 cd /opt
119 chmod +x run_streams_dns.sh
120 ./run_streams_dns.sh &>/dev/null &disown
121