If not ODL is installed install it on first controller
[sdnvpn.git] / odl-pipeline / lib / flash-all-bridges.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2017 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 export bridges="admin|private|public|storage"
10 for br in $(ifconfig |grep -v br-external |grep "^br" |grep -E $bridges |awk '{print $1}');do
11   sudo ip addr flush dev $br;
12 done