summaryrefslogtreecommitdiffstats
path: root/kud/tests/cFW/firewall/init.sh
diff options
context:
space:
mode:
authorRitu Sood <Ritu.Sood@intel.com>2020-06-28 03:06:50 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-28 03:06:50 +0000
commit8e446beb55c68314896f16cb3105816cacc05f84 (patch)
treeb4a91164192c8fd96e933e51cea55737383cb8ce /kud/tests/cFW/firewall/init.sh
parent5a06648cdee4011b355c4be59ff265462e4c3d76 (diff)
parentdd79554660e0f81cc8723243235e82e8769490f7 (diff)
Merge "Update cFW instruction set"
Diffstat (limited to 'kud/tests/cFW/firewall/init.sh')
-rwxr-xr-xkud/tests/cFW/firewall/init.sh43
1 files changed, 43 insertions, 0 deletions
diff --git a/kud/tests/cFW/firewall/init.sh b/kud/tests/cFW/firewall/init.sh
new file mode 100755
index 00000000..71db2e2d
--- /dev/null
+++ b/kud/tests/cFW/firewall/init.sh
@@ -0,0 +1,43 @@
+#!/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 vFirewall
+nic_protected=eth1
+nic_unprotected=eth2
+ip_protected_addr=$(ip addr show $nic_protected | grep inet | awk '{print $2}')
+ip_unprotected_addr=$(ip addr show $nic_unprotected | grep inet | awk '{print $2}')
+
+vppctl create host-interface name "$nic_protected"
+vppctl create host-interface name "$nic_unprotected"
+
+vppctl set int ip address "host-$nic_protected" "$ip_protected_addr"
+vppctl set int ip address "host-$nic_unprotected" "$ip_unprotected_addr"
+
+vppctl set int state "host-$nic_protected" up
+vppctl set int state "host-$nic_unprotected" up
+
+# Start HoneyComb
+#/opt/honeycomb/honeycomb &>/dev/null &disown
+/opt/honeycomb/honeycomb
+
+# Start VES client
+#/opt/VESreporting/vpp_measurement_reporter "$DCAE_COLLECTOR_IP" "$DCAE_COLLECTOR_PORT" eth1