Fixing scripts.
[pingpong.git] / Code / Projects / PacketLevelSignatureExtractor / execute_vpn_unsw_all_detection.sh
old mode 100644 (file)
new mode 100755 (executable)
index 88d5988..10f5054
@@ -1,25 +1,27 @@
-#!/bin/bash\r
-\r
-# Arg1 should point to the folder with UNSW traces (PCAP files w/o any expected events).\r
-UNSW_TRACES_DIR=$1\r
-\r
-# Arg2 should point to the base directory  for signature files (i.e., /some/local/path/experimental_result/standalone)\r
-SIGNATURES_BASE_DIR=$2\r
-readonly SIGNATURES_BASE_DIR\r
-\r
-# Arg3 should point to base directory where the detection results for the UNSW trace are to be output.\r
-# Subfolders will be created for each individual pcap file in UNSW_TRACES_DIR.\r
-OUTPUT_DIR=$3\r
-readonly OUTPUT_DIR\r
-\r
-#set -x # echo invoked commands to std out\r
-\r
-for PCAP_FILE in $UNSW_TRACES_DIR/*.pcap; do\r
-    # skip non pcap files\r
-    [ -e "$PCAP_FILE" ] || continue\r
-    # make an output sub dir in the base output dir that is the filename minus extension\r
-    OUTPUT_SUB_DIR=$(basename "$PCAP_FILE" .pcap)\r
-    ./execute_layer2_unb_all_detection.sh $PCAP_FILE $SIGNATURES_BASE_DIR $OUTPUT_DIR/$OUTPUT_SUB_DIR\r
-done\r
-\r
-\r
+#!/bin/bash
+
+# Arg1 should point to the folder with UNSW traces (PCAP files w/o any expected events).
+UNSW_TRACES_DIR=$1
+
+# Arg2 should point to the base directory  for signature files (i.e., /some/local/path/experimental_result/standalone)
+SIGNATURES_BASE_DIR=$2
+readonly SIGNATURES_BASE_DIR
+
+# Arg3 should point to base directory where the detection results for the UNSW trace are to be output.
+# Subfolders will be created for each individual pcap file in UNSW_TRACES_DIR.
+OUTPUT_DIR=$3
+readonly OUTPUT_DIR
+
+VPN="-vpn 00:c1:b1:14:eb:31"
+
+#set -x # echo invoked commands to std out
+
+for PCAP_FILE in $UNSW_TRACES_DIR/*.pcap; do
+    # skip non pcap files
+    [ -e "$PCAP_FILE" ] || continue
+    # make an output sub dir in the base output dir that is the filename minus extension
+    OUTPUT_SUB_DIR=$(basename "$PCAP_FILE" .pcap)
+    ./execute_layer2_unb_all_detection.sh $PCAP_FILE $SIGNATURES_BASE_DIR $OUTPUT_DIR/$OUTPUT_SUB_DIR $VPN
+done
+
+