blob: 57025f57d0b0a569e9ebd6ce2829ab3e9b1957a1 [file] [log] [blame]
tom6a9f2722014-09-13 17:00:02 -07001#!/bin/bash
2# ONOS developer BASH profile conveniences
tom5a18e802014-09-18 12:38:15 -07003# Simply include in your own .bash_aliases or .bash_profile
tom6a9f2722014-09-13 17:00:02 -07004
5# Root of the ONOS source tree
Thomas Vachuska045c01d2014-12-04 00:18:06 -08006export ONOS_ROOT=${ONOS_ROOT:-~/onos}
Thomas Vachuskabec79b92018-08-07 11:42:17 -07007
Ray Milkey8a0c7c72017-07-18 11:37:04 -07008# This is a hack to remove symlinks from the ONOS_ROOT path. To be removed when
9# the protobuf buck rules can handle symlinks
10ONOS_ROOT=$(pushd $ONOS_ROOT >/dev/null && pwd -P && popd >/dev/null)
tom6a9f2722014-09-13 17:00:02 -070011
12# Setup some environmental context for developers
Pavlin Radoslavov93617212014-10-16 09:54:04 -070013if [ -z "${JAVA_HOME}" ]; then
14 if [ -x /usr/libexec/java_home ]; then
Thomas Vachuskad8531152014-11-03 14:39:57 -080015 export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
16 elif [ -d /usr/lib/jvm/java-8-oracle ]; then
17 export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
Jonathan Harte3c951e2015-07-14 13:28:35 -070018 elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then
19 export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070020 fi
21fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070022
Jian Li98dc9ad2016-01-06 14:05:47 -080023export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070024
tom6a9f2722014-09-13 17:00:02 -070025# Setup a path
Thomas Vachuska4ccc7d32015-09-03 13:39:40 -070026export PATH="$PATH:$ONOS_ROOT/tools/dev/bin"
27export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin"
Devin Lim0d944e22017-06-23 15:17:53 -070028export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin}
29export PATH="$RUN_PACK_PATH:$PATH"
tom1cd74ae2014-10-01 14:58:32 -070030export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080031export PATH="$PATH:$MAVEN/bin"
tom6a9f2722014-09-13 17:00:02 -070032
Roan Huang0fa4bc42015-05-01 15:38:20 +080033# Setup cell enviroment
34export ONOS_CELL=${ONOS_CELL:-local}
35
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070036# Setup default web user/password
37export ONOS_WEB_USER=onos
38export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070039
40# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070041export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
42
Carmelo Casconeb7524272017-06-05 16:53:13 -040043# Setup path to Mininet custom scripts
44export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py
45export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py
46
tom6a9f2722014-09-13 17:00:02 -070047# Convenience utility to warp to various ONOS source projects
48# e.g. 'o api', 'o dev', 'o'
49function o {
Thomas Vachuskabec79b92018-08-07 11:42:17 -070050 cd $(find $ONOS_ROOT/ -type d -and \( -name 'bazel-*' -o -name 'buck-out' -o -name '.git' -o -name 'target' -o -name 'gen-src' -o -name 'src' \) -prune -o -type d | \
Thomas Vachuska49367a62017-08-29 09:18:19 -070051 egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070052}
53
Thomas Vachuska6066dff2016-10-26 13:57:36 -070054# Buck (if "buck" is not on the PATH)
55[ -z "$(which buck)" ] && alias buck="onos-buck"
tom6a9f2722014-09-13 17:00:02 -070056
tom82d6bde2014-09-23 17:33:58 -070057# Short-hand for ONOS build, package and test.
Thomas Vachuskabec79b92018-08-07 11:42:17 -070058alias op="SHLVL=1 bazel build //:onos"
Carmelo Casconefe59ba02018-09-04 22:31:06 -070059alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors"
Thomas Vachuskabec79b92018-08-07 11:42:17 -070060alias ob="op && ot"
61alias obd="SHLVL=1 bazel build //docs:external //docs:internal"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070062
Thomas Vachuskabec79b92018-08-07 11:42:17 -070063alias ok="SHLVL=1 bazel run onos-local --"
64alias oh="onos localhost halt"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070065
tom0511a522014-10-04 12:06:02 -070066alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070067alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070068alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080069alias oi='setPrimaryInstance'
tom6a9f2722014-09-13 17:00:02 -070070
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070071# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070072alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080073# alias gl='grep $KARAF_LOG --colour=auto -E -e '
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070074
Charles M.C. Chan870cc032015-04-24 04:57:42 +080075function filterLocalLog {
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070076 tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
77}
Charles M.C. Chan870cc032015-04-24 04:57:42 +080078alias tlo='filterLocalLog'
Charles M.C. Chane39f3142015-05-22 18:35:24 +080079alias tle='tlo "ERROR|WARN|Exception|Error"'
Charles M.C. Chan870cc032015-04-24 04:57:42 +080080
81function filterLog {
82 ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
83}
84alias olo='filterLog'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070085alias ole='olo "ERROR|WARN|Exception|Error"'
tom6a9f2722014-09-13 17:00:02 -070086
87# Pretty-print JSON output
88alias pp='python -m json.tool'
89
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070090# Short-hand to launch Java API docs, REST API docs and ONOS GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070091alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070092alias rsdocs='onos-rsdocs'
tom1a2908c2014-09-23 16:37:39 -070093alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070094
Thomas Vachuska6066dff2016-10-26 13:57:36 -070095# Short-hand for 'mvn clean install' for us lazy folk
96alias mci='mvn clean install'
Thomas Vachuska6066dff2016-10-26 13:57:36 -070097
98# Git annotated one-line log
99alias gil='git log --oneline --decorate=short'
tom5c255702014-09-18 06:57:39 -0700100
tom5a18e802014-09-18 12:38:15 -0700101# Test related conveniences
102
tom5a18e802014-09-18 12:38:15 -0700103# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -0700104alias sshctl='onos-ssh'
105alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -0700106
Thomas Vachuskae1125352016-11-09 14:06:51 -0800107# Runs a sequence of STC scenarios until the first failure.
108function stcs {
Thomas Vachuska8cc53182016-11-14 13:06:54 -0800109 for s in "$@"; do
110 if [[ $s =~ ^[0-9]*$ ]]; then
111 printf "Waiting %d seconds...\n" $s
112 sleep $s
113 else
114 printf "Running scenario %s...\n" $s
115 stc $s || return 1
116 fi
117 done
Thomas Vachuskae1125352016-11-09 14:06:51 -0800118}
Thomas Vachuska785f5812015-03-19 01:11:00 -0700119
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700120# Applies the settings in the specified topology recipe file or lists current
121# topo recipe definition if no topo recipe file is given.
122function topo {
123 topo=${1:-""}
124 case "$topo" in
125 "")
126 env | egrep "ONOS_TOPO"
127 env | egrep "(OTD|OTL|OTH)="
128 ;;
129
130 *)
131 [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1
132 unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS
Ray Milkey2c6ffb82018-03-09 08:57:52 -0800133 ONOS_DEVICES=""
134 ONOS_HOSTS=""
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700135 unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p')
136 export ONOS_TOPO=$1
137 . $ONOS_ROOT/tools/test/topos/$1.recipe
138 let d=1; while [ $d -le $OTD ]; do
139 dev="$(printf 'of:%016x' $d)"
140 export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev"
141 let d=d+1;
142 done
143 let h=1; while [ $h -le $OTH ]; do
144 host="$(printf '00:00:00:00:00:%02x/-1' $h)"
145 export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host"
146 let h=h+1
147 done
148 topo
149 esac
150}
151
152# Lists available topo recipes
153function topos {
154 for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do
155 name=$(basename $topo .recipe)
156 printf "%-16s %s\n" \
157 "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \
158 "$(grep '^#' $topo | head -n 1)"
159 done
160}
161
Thomas Vachuska785f5812015-03-19 01:11:00 -0700162# Sets the primary instance to the specified instance number.
163function setPrimaryInstance {
Jon Hallee85e2f2016-06-07 10:36:33 -0700164 export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700165
Ray Milkeyacfb4102018-08-08 11:11:59 -0700166 if [ -z "${OCC1-}" ]; then
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700167 aux=/tmp/cell-$$.aux
168 let i=1
169 for n in $ONOS_INSTANCES; do
170 echo "export OCC$i=$n" >> $aux
171 let i=i+1
172 done
173 [ -f $aux ] && source $aux && rm $aux
174 fi
175
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700176 export ONOS_CORES=$(env | grep 'OCC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuska785f5812015-03-19 01:11:00 -0700177 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
178 echo $OCI
179}
180
Jordan Halterman980a8c12017-09-22 18:01:19 -0700181# Sets minority (OCMI) and majority (OCMA) variables
182function setMinorityMajority {
183 nodes=($(env | grep 'OC[0-9]*=' | sort | cut -d= -f2))
184 middle=$(expr "${#nodes[@]}" / "2")
185 index=0
186 min=1
187 maj=1
188 for node in "${nodes[@]}"; do
189 if [ "$index" -gt "$middle" ]; then
190 export OCMI${min}=${node}
191 min=$(expr $min + 1)
192 else
193 export OCMA${maj}=${node}
194 maj=$(expr $maj + 1)
195 fi
196 index=$(expr $index + 1)
197 done
198}
199
Thomas Vachuskaa10137c2018-04-03 16:45:59 -0700200# Open Networking Foundation shared test cell warden address
Thomas Vachuska28d46572017-12-05 13:39:27 -0800201export CELL_WARDEN="10.192.19.72"
Thomas Vachuskaca40fe42018-01-29 16:13:26 -0800202export CELL_SLAVE_1=$CELL_WARDEN
203export CELL_SLAVE_2="10.192.19.71"
204export CELL_SLAVE_3="10.192.19.70"
Thomas Vachuska4b09a6f2018-10-29 10:34:20 -0700205export CELL_SLAVE_4="10.192.19.77" # disabled
206export CELL_SLAVES="$CELL_SLAVE_1 $CELL_SLAVE_2 $CELL_SLAVE_3"
Thomas Vachuska1eff3a62016-05-03 01:07:24 -0700207
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700208# Clears cell environment
209function clearCell {
210 unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700211 unset OCI OCN OCT ONOS_INSTANCES ONOS_CORES ONOS_FEATURES
Charles Chanc7a60ce2017-05-05 13:56:27 -0700212 unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700213 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700214 unset $(env | sed -n 's:\(^OCC[0-9]\{1,\}\)=.*:\1 :g p')
Jordan Halterman980a8c12017-09-22 18:01:19 -0700215 unset $(env | sed -n 's:\(^OCMI[0-9]\{1,\}\)=.*:\1 :g p')
216 unset $(env | sed -n 's:\(^OCMA[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700217}
218
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700219# Applies the settings in the specified cell file or lists current cell definition
220# if no cell file is given.
221function cell {
Jon Hall7dc59d62016-05-10 14:30:16 -0700222 cell=${1:-""}
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700223 case "$cell" in
224 "borrow")
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700225 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700226 aux="/tmp/cell-$$"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700227 duration=${2:-0}
Thomas Vachuska8e676d92018-11-19 16:01:03 -0800228 spec=${3:-5+3+1}
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700229 spec=${spec//+/%2B}
Thomas Vachuska5420ba32016-05-13 14:45:25 -0400230 user=${4:-$(id -un)}
Ray Milkey32e73d72018-03-09 09:52:29 -0800231 hint=${5:-""}
Thomas Vachuska05e47a32016-10-24 09:35:11 -0700232 query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700233 curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700234 . $aux
235 rm -f $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700236 setPrimaryInstance 1 >/dev/null
Jordan Halterman980a8c12017-09-22 18:01:19 -0700237 setMinorityMajority >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700238 onos-verify-cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700239 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700240 ;;
241 "return")
242 curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700243 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700244 ;;
245
246 "status")
247 curl -sS "http://$CELL_WARDEN:4321/" | sort
248 ;;
249
250 "")
Charles Chan9b152fc2016-11-21 12:06:49 -0800251 env | egrep "^ONOS_CELL"
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700252 env | egrep "^OCC[0-9]+" | sort
Charles Chan9b152fc2016-11-21 12:06:49 -0800253 env | egrep "^OC[0-9]+" | sort
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700254 env | egrep "^OC[INT]" | sort
255 env | egrep "^ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES|ONOS_CORES|ONOS_DEVICES|ONOS_HOSTS' | sort
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700256 ;;
257
258 *)
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700259 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1
260 clearCell
Charles Chanc7a60ce2017-05-05 13:56:27 -0700261 export ONOS_USER=sdn
262 export ONOS_GROUP=sdn
263 export ONOS_WEB_USER=onos
264 export ONOS_WEB_PASS=rocks
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700265 export ONOS_CELL=$1
266 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700267 setPrimaryInstance 1 >/dev/null
268 cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700269 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700270 esac
271}
tomecd0fbd2014-09-19 08:47:05 -0700272
Thomas Vachuskae6185572016-05-04 19:26:15 -0700273[ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null
tomecd0fbd2014-09-19 08:47:05 -0700274
275# Lists available cells
276function cells {
tom2482e6f2014-10-01 16:51:48 -0700277 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
Thomas Vachuska785f5812015-03-19 01:11:00 -0700278 printf "%-16s %s\n" \
Yi Tseng7f425d52017-02-02 13:33:59 -0800279 "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
tom2482e6f2014-10-01 16:51:48 -0700280 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
281 done
tomecd0fbd2014-09-19 08:47:05 -0700282}
tom5a18e802014-09-18 12:38:15 -0700283
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800284# Find a process by regex
tom5c255702014-09-18 06:57:39 -0700285function spy {
286 ps -ef | egrep "$@" | grep -v egrep
287}
288
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800289# Kill a process by regex
tom5c255702014-09-18 06:57:39 -0700290function nuke {
tom85258ee2014-10-07 00:10:02 -0700291 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700292}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800293
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700294# Edit a cell file by providing a cell name; opens the cell file in $EDITOR.
295function vicell {
296 local apply=false
297 local create=false
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800298 local ${cdf:=$ONOS_CELL}
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700299 local cpath="${ONOS_ROOT}/tools/test/cells/"
Ayaka Koshibea9985132014-12-18 14:55:22 -0800300
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800301 if [ "$1" = "-h" ] ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700302 printf "usage: vicell [file] [options]\n\noptions:\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800303 printf "\t[file]: cell name (default: current cell)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700304 printf "\t-a: apply the cell after editing\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800305 printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700306 printf "\t-c: create cell file if none exist\n\n"
307 return 1
308 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800309
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700310 while [ $# -gt 0 ]; do
311 case "$1" in
312 -a) apply=true ;;
313 -e) EDITOR=$2; shift ;;
314 -c) create=true ;;
315 *) cdf="$1" ;;
316 esac
317 shift
318 done
Ayaka Koshibea9985132014-12-18 14:55:22 -0800319
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800320 if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700321 printf "${cdf} : no such cell\n" && return 1
322 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800323
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700324 if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then
325 unset EDITOR && vi ${cpath}${cdf}
326 else
327 $EDITOR ${cpath}${cdf}
328 fi
329 ($apply) && cell ${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800330}
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800331
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800332# Autocomplete for certain utilities
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800333. ${ONOS_ROOT}/tools/test/bin/ogroup-opts
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800334
335
336# Load AT&T MPLS topo GEO data
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800337alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json'
Simon Huntcf7e3b52016-02-29 23:26:16 -0800338
339# Load UK topo GEO data
340alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json'
Carmelo Cascone15693a22018-12-12 19:06:57 -0800341
342# Mininet command that uses BMv2 instead of OVS
343alias mn-p4='sudo -E mn --custom $BMV2_MN_PY --switch onosbmv2 --controller remote,ip=$OC1'