blob: 2e14e7efa91a2e95a5425b34d2a4faa41b6346cd [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
Thomas Vachuska97642362019-03-21 11:59:01 -070012# Rely on developer preference for automatically ignited apps
13# Default to drivers and gui2
14export ONOS_APPS=${ONOS_APPS:-drivers,openflow,gui2}
15
tom6a9f2722014-09-13 17:00:02 -070016# Setup some environmental context for developers
Pavlin Radoslavov93617212014-10-16 09:54:04 -070017if [ -z "${JAVA_HOME}" ]; then
18 if [ -x /usr/libexec/java_home ]; then
Thomas Vachuskad8531152014-11-03 14:39:57 -080019 export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
20 elif [ -d /usr/lib/jvm/java-8-oracle ]; then
21 export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
Jonathan Harte3c951e2015-07-14 13:28:35 -070022 elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then
23 export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070024 fi
25fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070026
Jian Li98dc9ad2016-01-06 14:05:47 -080027export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070028
Charles Chan9c938f82019-01-15 14:15:12 -080029# Clean up Karaf environment variables to avoid issues when switching from ONOS 1.x to 2.x
30unset KARAF_VERSION KARAF_ROOT KARAF_LOG
31
tom6a9f2722014-09-13 17:00:02 -070032# Setup a path
Thomas Vachuska4ccc7d32015-09-03 13:39:40 -070033export PATH="$PATH:$ONOS_ROOT/tools/dev/bin"
34export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin"
Devin Lim0d944e22017-06-23 15:17:53 -070035export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin}
36export PATH="$RUN_PACK_PATH:$PATH"
tom1cd74ae2014-10-01 14:58:32 -070037export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080038export PATH="$PATH:$MAVEN/bin"
tom6a9f2722014-09-13 17:00:02 -070039
Roan Huang0fa4bc42015-05-01 15:38:20 +080040# Setup cell enviroment
41export ONOS_CELL=${ONOS_CELL:-local}
42
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070043# Setup default web user/password
44export ONOS_WEB_USER=onos
45export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070046
47# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070048export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
49
Carmelo Casconeb7524272017-06-05 16:53:13 -040050# Setup path to Mininet custom scripts
51export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py
52export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py
53
tom6a9f2722014-09-13 17:00:02 -070054# Convenience utility to warp to various ONOS source projects
55# e.g. 'o api', 'o dev', 'o'
56function o {
Thomas Vachuskabec79b92018-08-07 11:42:17 -070057 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 -070058 egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070059}
60
tom82d6bde2014-09-23 17:33:58 -070061# Short-hand for ONOS build, package and test.
Thomas Vachuskabec79b92018-08-07 11:42:17 -070062alias op="SHLVL=1 bazel build //:onos"
Ray Milkeya1f8e192019-01-23 14:34:25 -080063alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | grep -v "coverage" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors"
Thomas Vachuskabec79b92018-08-07 11:42:17 -070064alias ob="op && ot"
65alias obd="SHLVL=1 bazel build //docs:external //docs:internal"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070066
Thomas Vachuska97642362019-03-21 11:59:01 -070067alias ok="SHLVL=1 bazel run //:onos-local --"
Thomas Vachuskabec79b92018-08-07 11:42:17 -070068alias oh="onos localhost halt"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070069
tom0511a522014-10-04 12:06:02 -070070alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070071alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070072alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080073alias oi='setPrimaryInstance'
tom6a9f2722014-09-13 17:00:02 -070074
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070075# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070076alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070077
Charles M.C. Chan870cc032015-04-24 04:57:42 +080078function filterLocalLog {
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070079 tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
80}
Charles M.C. Chan870cc032015-04-24 04:57:42 +080081alias tlo='filterLocalLog'
Charles M.C. Chane39f3142015-05-22 18:35:24 +080082alias tle='tlo "ERROR|WARN|Exception|Error"'
Charles M.C. Chan870cc032015-04-24 04:57:42 +080083
84function filterLog {
85 ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
86}
87alias olo='filterLog'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070088alias ole='olo "ERROR|WARN|Exception|Error"'
tom6a9f2722014-09-13 17:00:02 -070089
90# Pretty-print JSON output
91alias pp='python -m json.tool'
92
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070093# Short-hand to launch Java API docs, REST API docs and ONOS GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070094alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070095alias rsdocs='onos-rsdocs'
tom1a2908c2014-09-23 16:37:39 -070096alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070097
Thomas Vachuska6066dff2016-10-26 13:57:36 -070098# Short-hand for 'mvn clean install' for us lazy folk
99alias mci='mvn clean install'
Thomas Vachuska6066dff2016-10-26 13:57:36 -0700100
101# Git annotated one-line log
102alias gil='git log --oneline --decorate=short'
tom5c255702014-09-18 06:57:39 -0700103
tom5a18e802014-09-18 12:38:15 -0700104# Test related conveniences
105
tom5a18e802014-09-18 12:38:15 -0700106# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -0700107alias sshctl='onos-ssh'
108alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -0700109
Thomas Vachuskae1125352016-11-09 14:06:51 -0800110# Runs a sequence of STC scenarios until the first failure.
111function stcs {
Thomas Vachuska8cc53182016-11-14 13:06:54 -0800112 for s in "$@"; do
113 if [[ $s =~ ^[0-9]*$ ]]; then
114 printf "Waiting %d seconds...\n" $s
115 sleep $s
116 else
117 printf "Running scenario %s...\n" $s
118 stc $s || return 1
119 fi
120 done
Thomas Vachuskae1125352016-11-09 14:06:51 -0800121}
Thomas Vachuska785f5812015-03-19 01:11:00 -0700122
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700123# Applies the settings in the specified topology recipe file or lists current
124# topo recipe definition if no topo recipe file is given.
125function topo {
126 topo=${1:-""}
127 case "$topo" in
128 "")
129 env | egrep "ONOS_TOPO"
130 env | egrep "(OTD|OTL|OTH)="
131 ;;
132
133 *)
134 [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1
135 unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS
Ray Milkey2c6ffb82018-03-09 08:57:52 -0800136 ONOS_DEVICES=""
137 ONOS_HOSTS=""
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700138 unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p')
139 export ONOS_TOPO=$1
140 . $ONOS_ROOT/tools/test/topos/$1.recipe
141 let d=1; while [ $d -le $OTD ]; do
142 dev="$(printf 'of:%016x' $d)"
143 export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev"
144 let d=d+1;
145 done
146 let h=1; while [ $h -le $OTH ]; do
147 host="$(printf '00:00:00:00:00:%02x/-1' $h)"
148 export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host"
149 let h=h+1
150 done
151 topo
152 esac
153}
154
155# Lists available topo recipes
156function topos {
157 for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do
158 name=$(basename $topo .recipe)
159 printf "%-16s %s\n" \
160 "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \
161 "$(grep '^#' $topo | head -n 1)"
162 done
163}
164
Thomas Vachuska785f5812015-03-19 01:11:00 -0700165# Sets the primary instance to the specified instance number.
166function setPrimaryInstance {
Jon Hallee85e2f2016-06-07 10:36:33 -0700167 export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700168
Ray Milkeyacfb4102018-08-08 11:11:59 -0700169 if [ -z "${OCC1-}" ]; then
Thomas Vachuskafd8cb682018-07-27 12:29:14 -0700170 aux=/tmp/cell-$$.aux
171 let i=1
172 for n in $ONOS_INSTANCES; do
173 echo "export OCC$i=$n" >> $aux
174 let i=i+1
175 done
176 [ -f $aux ] && source $aux && rm $aux
177 fi
178
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700179 export ONOS_CORES=$(env | grep 'OCC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuska785f5812015-03-19 01:11:00 -0700180 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
181 echo $OCI
182}
183
Jordan Halterman980a8c12017-09-22 18:01:19 -0700184# Sets minority (OCMI) and majority (OCMA) variables
185function setMinorityMajority {
186 nodes=($(env | grep 'OC[0-9]*=' | sort | cut -d= -f2))
Jordan Halterman980a8c12017-09-22 18:01:19 -0700187 min=1
188 maj=1
Ray Milkeyca840af2019-02-22 09:16:11 -0800189 node_count="${#nodes[@]}"
190 if [ $node_count -gt 1 ]; then
191 middle=$(expr "$node_count" / "2")
192 index=0
193 for node in "${nodes[@]}"; do
194 if [ "$index" -gt "$middle" ]; then
195 export OCMI${min}=${node}
196 min=$(expr $min + 1)
197 else
198 export OCMA${maj}=${node}
199 maj=$(expr $maj + 1)
200 fi
201 index=$(expr $index + 1)
202 done
203 fi
Jordan Halterman980a8c12017-09-22 18:01:19 -0700204}
205
Thomas Vachuskaa10137c2018-04-03 16:45:59 -0700206# Open Networking Foundation shared test cell warden address
Thomas Vachuska28d46572017-12-05 13:39:27 -0800207export CELL_WARDEN="10.192.19.72"
Thomas Vachuskaca40fe42018-01-29 16:13:26 -0800208export CELL_SLAVE_1=$CELL_WARDEN
209export CELL_SLAVE_2="10.192.19.71"
210export CELL_SLAVE_3="10.192.19.70"
Thomas Vachuska4b09a6f2018-10-29 10:34:20 -0700211export CELL_SLAVES="$CELL_SLAVE_1 $CELL_SLAVE_2 $CELL_SLAVE_3"
Thomas Vachuska1eff3a62016-05-03 01:07:24 -0700212
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700213# Clears cell environment
214function clearCell {
Thomas Vachuska97642362019-03-21 11:59:01 -0700215 unset ONOS_CELL ONOS_IP ONOS_BOOT_FEATURES
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700216 unset OCI OCN OCT ONOS_INSTANCES ONOS_CORES ONOS_FEATURES
Charles Chanc7a60ce2017-05-05 13:56:27 -0700217 unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700218 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700219 unset $(env | sed -n 's:\(^OCC[0-9]\{1,\}\)=.*:\1 :g p')
Jordan Halterman980a8c12017-09-22 18:01:19 -0700220 unset $(env | sed -n 's:\(^OCMI[0-9]\{1,\}\)=.*:\1 :g p')
221 unset $(env | sed -n 's:\(^OCMA[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700222}
223
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700224# Applies the settings in the specified cell file or lists current cell definition
225# if no cell file is given.
226function cell {
Jon Hall7dc59d62016-05-10 14:30:16 -0700227 cell=${1:-""}
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700228 case "$cell" in
229 "borrow")
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700230 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700231 aux="/tmp/cell-$$"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700232 duration=${2:-0}
Thomas Vachuska8e676d92018-11-19 16:01:03 -0800233 spec=${3:-5+3+1}
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700234 spec=${spec//+/%2B}
Thomas Vachuska5420ba32016-05-13 14:45:25 -0400235 user=${4:-$(id -un)}
Ray Milkey32e73d72018-03-09 09:52:29 -0800236 hint=${5:-""}
Thomas Vachuska05e47a32016-10-24 09:35:11 -0700237 query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700238 curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700239 . $aux
240 rm -f $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700241 setPrimaryInstance 1 >/dev/null
Jordan Halterman980a8c12017-09-22 18:01:19 -0700242 setMinorityMajority >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700243 onos-verify-cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700244 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700245 ;;
246 "return")
247 curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700248 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700249 ;;
250
251 "status")
252 curl -sS "http://$CELL_WARDEN:4321/" | sort
253 ;;
254
255 "")
Charles Chan9b152fc2016-11-21 12:06:49 -0800256 env | egrep "^ONOS_CELL"
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700257 env | egrep "^OCC[0-9]+" | sort
Charles Chan9b152fc2016-11-21 12:06:49 -0800258 env | egrep "^OC[0-9]+" | sort
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700259 env | egrep "^OC[INT]" | sort
260 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 -0700261 ;;
262
263 *)
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700264 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1
265 clearCell
Charles Chanc7a60ce2017-05-05 13:56:27 -0700266 export ONOS_USER=sdn
267 export ONOS_GROUP=sdn
268 export ONOS_WEB_USER=onos
269 export ONOS_WEB_PASS=rocks
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700270 export ONOS_CELL=$1
271 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700272 setPrimaryInstance 1 >/dev/null
273 cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700274 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700275 esac
276}
tomecd0fbd2014-09-19 08:47:05 -0700277
tomecd0fbd2014-09-19 08:47:05 -0700278# Lists available cells
279function cells {
tom2482e6f2014-10-01 16:51:48 -0700280 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
Thomas Vachuska785f5812015-03-19 01:11:00 -0700281 printf "%-16s %s\n" \
Yi Tseng7f425d52017-02-02 13:33:59 -0800282 "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
tom2482e6f2014-10-01 16:51:48 -0700283 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
284 done
tomecd0fbd2014-09-19 08:47:05 -0700285}
tom5a18e802014-09-18 12:38:15 -0700286
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800287# Find a process by regex
tom5c255702014-09-18 06:57:39 -0700288function spy {
289 ps -ef | egrep "$@" | grep -v egrep
290}
291
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800292# Kill a process by regex
tom5c255702014-09-18 06:57:39 -0700293function nuke {
tom85258ee2014-10-07 00:10:02 -0700294 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700295}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800296
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700297# Edit a cell file by providing a cell name; opens the cell file in $EDITOR.
298function vicell {
299 local apply=false
300 local create=false
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800301 local ${cdf:=$ONOS_CELL}
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700302 local cpath="${ONOS_ROOT}/tools/test/cells/"
Ayaka Koshibea9985132014-12-18 14:55:22 -0800303
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800304 if [ "$1" = "-h" ] ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700305 printf "usage: vicell [file] [options]\n\noptions:\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800306 printf "\t[file]: cell name (default: current cell)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700307 printf "\t-a: apply the cell after editing\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800308 printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700309 printf "\t-c: create cell file if none exist\n\n"
310 return 1
311 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800312
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700313 while [ $# -gt 0 ]; do
314 case "$1" in
315 -a) apply=true ;;
316 -e) EDITOR=$2; shift ;;
317 -c) create=true ;;
318 *) cdf="$1" ;;
319 esac
320 shift
321 done
Ayaka Koshibea9985132014-12-18 14:55:22 -0800322
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800323 if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700324 printf "${cdf} : no such cell\n" && return 1
325 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800326
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700327 if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then
328 unset EDITOR && vi ${cpath}${cdf}
329 else
330 $EDITOR ${cpath}${cdf}
331 fi
332 ($apply) && cell ${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800333}
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800334
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800335# Autocomplete for certain utilities
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800336. ${ONOS_ROOT}/tools/test/bin/ogroup-opts
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800337
338
339# Load AT&T MPLS topo GEO data
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800340alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json'
Simon Huntcf7e3b52016-02-29 23:26:16 -0800341
342# Load UK topo GEO data
343alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json'
Carmelo Cascone15693a22018-12-12 19:06:57 -0800344
345# Mininet command that uses BMv2 instead of OVS
Carmelo Casconeada7b5b2019-04-23 13:50:03 -0700346alias mn-bmv2='sudo -E mn --custom $BMV2_MN_PY --switch onosbmv2 --controller remote,ip=$OCI'
347alias mn-stratum='sudo -E mn --custom $BMV2_MN_PY --switch stratum --controller remote,ip=$OCI'