blob: 1df9842408238028406415cf16c45cde3788eed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2020
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o pipefail
set -o xtrace
set -o errexit
set -o nounset
echo 'start... vpp'
/usr/bin/vpp -c /etc/vpp/startup.conf
echo 'wait vpp be up ...'
until vppctl show ver; do
sleep 1;
done
# Configure VPP for vPacketGenerator
nic=eth0
ip_addr=$(ip addr show $nic | grep inet | awk '{print $2}')
vppctl create host-interface name "$nic"
vppctl set int state "host-$nic" up
vppctl set int ip address "host-$nic" "$ip_addr"
vppctl ip route add "$PROTECTED_NET_CIDR" via "$FW_IPADDR"
vppctl loop create
vppctl set int ip address loop0 11.22.33.1/24
vppctl set int state loop0 up
# Install packet streams
for i in $(seq 1 10); do
cat <<EOL > "/opt/pg_streams/stream_fw_udp"
packet-generator new {
name fw_udp$i
rate 10
node ip4-input
size 64-64
no-recycle
interface loop0
data {
UDP: ${ip_addr%/*} -> $SINK_IPADDR
UDP: 15320 -> 8080
length 128 checksum 0 incrementing 1
}
}
EOL
vppctl exec "/opt/pg_streams/stream_fw_udp"
done
vppctl packet-generator enable
# Start HoneyComb
/opt/honeycomb/honeycomb
|