Skip to content

Instantly share code, notes, and snippets.

View vy's full-sized avatar

Volkan Yazıcı vy

View GitHub Profile
@vy
vy / of-toolbelt.sh
Created May 27, 2012 14:38
"OpenFlow Toolbelt" shell script
#!/bin/bash
__BIN="$0"
__ACT="$1"; shift
__ARG=("$@")
set -e
OVS_HOME="$HOME/usr-openvswitch"
OVS_VERSION="1.4.1"
@vy
vy / client.sh
Created May 11, 2012 10:48
Linux IP Alias Benchmark
#!/bin/bash
set -e
if [ $# -ne 3 ]; then
echo "Usage: $0 <ADDR_TMPL> <N_WORKERS> <TIMEOUT>"
exit 1
fi
ADDR_TMPL="$1"
N_WORKERS="$2"