aboutsummaryrefslogtreecommitdiffstats
path: root/starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh
diff options
context:
space:
mode:
Diffstat (limited to 'starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh')
-rw-r--r--starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh b/starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh
new file mode 100644
index 00000000..63acfff1
--- /dev/null
+++ b/starlingx/demo/firewall-sriov/charts/sink-sriov/resources/scripts/init/vsn_start.sh
@@ -0,0 +1,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 \ No newline at end of file