Miniuser | 50a5112 | 2013-03-14 18:10:41 -0700 | [diff] [blame] | 1 | #! /bin/bash |
2 | controller="10.128.4.12 10.128.4.13 10.128.4.14 10.128.4.15 10.128.4.16" | ||||
3 | switches=`ifconfig -a | grep "^s" |grep -v eth | awk '{print $1}'` | ||||
4 | |||||
5 | function host2ip (){ | ||||
6 | ip=`grep $1 /etc/hosts |grep -v "ip6"| awk '{print $1}'` | ||||
7 | echo $ip | ||||
8 | } | ||||
9 | |||||
10 | url="" | ||||
11 | for c in $controller; do | ||||
12 | url="$url tcp:$c:6633" | ||||
13 | done | ||||
14 | echo $url | ||||
15 | for s in $switches; do | ||||
16 | echo "set switch $s controller $url" | ||||
17 | sudo ovs-vsctl set-controller $s $url | ||||
18 | done |