This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eo pipefail | |
# List of bridges to create space delimited | |
bridges="sw-r0-eth0 sw-r0-eth1 sw-r0-eth2 sw-r0-eth3" | |
# Veths peirs to create with the following format, space delimited | |
# <veth dev 1>[|options]:<veth dev 1>[|options] | |
# where options are a comma delimited key=values pair | |
# options: master=<master bridge> or dhcp |