aboutsummaryrefslogtreecommitdiffstats
path: root/starlingx/demo/firewall-host-netdevice/charts/sink-host-netdevice/resources/scripts/init/vsn_start.sh
blob: 63acfff1b88547a23cd9d86c332f6b548aa530a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

apt-get update
apt-get install -y sudo curl net-tools iproute2 inetutils-ping wget darkstat unzip

echo "provision interfaces"

ifconfig veth22 10.10.2.2/24

echo "add route entries"
ip route add 10.10.1.0/24 via 10.10.2.1

echo "update darkstat configuration"
sed -i "s/START_DARKSTAT=.*/START_DARKSTAT=yes/g;s/INTERFACE=.*/INTERFACE=\"-i veth22\"/g" /etc/darkstat/init.cfg

echo "start darkstat"

darkstat -i veth22

echo "done"
sleep infinity