blob: f9ec50638dca937279b4c21b65a4e5f795676d5a [file] [log] [blame]
#! /bin/bash
controller=""
switches=`ifconfig -a | grep sw |grep -v eth | awk '{print $1}'`
function host2ip (){
ip=`grep $1 /etc/hosts |grep -v "ip6"| awk '{print $1}'`
echo $ip
}
url=""
for c in $controller; do
url="$url tcp:`host2ip $c`:6633"
done
echo $url
for s in $switches; do
sudo ovs-ofctl del-flows $s
done