blob: 854de504db5443492ab2d842487261806787b8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# -----------------------------------------------------------------------------
# Starts the specified mininet topology.
# -----------------------------------------------------------------------------
cd $(dirname $0)
topo=${1:-att-onos.py}
[ -n "$1" ] && shift
sudo python $topo "$@"
|