blob: e1913a51f9345210bd4469ea774ac14fdf200660 (
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
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# 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 nounset
set -o pipefail
set -o xtrace
set -o errexit
# install_dependencies() - Install required dependencies
function install_dependencies {
apt-get update
apt install -y wget darkstat net-tools unzip
# Configure and run Darkstat
sed -i "s/START_DARKSTAT=.*/START_DARKSTAT=yes/g;s/INTERFACE=.*/INTERFACE=\"-i eth1\"/g" /etc/darkstat/init.cfg
systemctl restart darkstat
}
# install_vfw_scripts() -
function install_vfw_scripts {
pushd /opt
wget -q "https://nexus.onap.org/content/repositories/staging/org/onap/demo/vnf/vfw/vfw-scripts/${version}/vfw-scripts-${version}.zip"
unzip "vfw-scripts-${version}.zip"
chmod +x *.sh
mv vsink.sh /etc/init.d
update-rc.d vsink.sh defaults
systemctl start sink
popd
}
mkdir -p /opt/config/
echo "$protected_net_cidr" > /opt/config/protected_net_cidr.txt
echo "$vfw_private_ip_0" > /opt/config/fw_ipaddr.txt
echo "$vsn_private_ip_0" > /opt/config/sink_ipaddr.txt
echo "$demo_artifacts_version" > /opt/config/demo_artifacts_version.txt
echo "$protected_net_gw" > /opt/config/protected_net_gw.txt
echo "$protected_private_net_cidr" > /opt/config/unprotected_net.txt
install_dependencies
install_vfw_scripts
|