Masayoshi Kobayashi | 79ac505 | 2013-02-27 19:16:14 +0000 | [diff] [blame] | 1 | #! /bin/bash |
Masayoshi Kobayashi | 6a12e6b | 2013-03-12 18:30:35 +0000 | [diff] [blame] | 2 | controller=`hostname` |
Masayoshi Kobayashi | 79ac505 | 2013-02-27 19:16:14 +0000 | [diff] [blame] | 3 | switches=`ifconfig -a | grep sw |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:`host2ip $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 |