From 7ae5d89c48bd3982626afe03891eab2e2d31e746 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Mon, 6 Aug 2018 19:04:39 +0200 Subject: Client and server scripts --- run-client.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 run-client.sh (limited to 'run-client.sh') diff --git a/run-client.sh b/run-client.sh new file mode 100755 index 0000000..e4b0f8f --- /dev/null +++ b/run-client.sh @@ -0,0 +1,26 @@ +#! /bin/bash + +. config.sh + +function run { + $ods_path/bin/onlineDetectorSimulatorClient "$@" +} + +ip=$1 +mtu=1500 #max 9000 +[ -n "$1" ] || { echo "Usage: run [mtu]" ; exit 1 ; } +[ -n "$2" ] && mtu=$2 + + +int=$(ip route show to match "$ip" | grep src | awk '{ print $3 }') +ip link set $int mtu $mtu + +if [ $mtu -le 1500 ]; then + sed -i '' -e 's/numberOfProjectionsPerPacket.*/numberOfProjectionsPerPacket = 40/' config.cfg + run 80000 "$ip" +elif [ $mtu -eq 9000 ]; then + sed -i '' -e 's/numberOfProjectionsPerPacket.*/numberOfProjectionsPerPacket = 250/' config.cfg + run 20000 "$ip" +fi + + -- cgit v1.2.3