blob: ccb8b432e02beeb7f82bbb24671ca8668d391c36 [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
Charles Chan9c938f82019-01-15 14:15:12 -080025# Clean up Karaf environment variables to avoid issues when switching from ONOS 1.x to 2.x
26unset KARAF_VERSION KARAF_ROOT KARAF_LOG
27
tom6a9f2722014-09-13 17:00:02 -070028# Setup a path
Thomas Vachuska4ccc7d32015-09-03 13:39:40 -070029export PATH="$PATH:$ONOS_ROOT/tools/dev/bin"
30export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin"
Devin Lim0d944e22017-06-23 15:17:53 -070031export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin}
32export PATH="$RUN_PACK_PATH:$PATH"
tom1cd74ae2014-10-01 14:58:32 -070033export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080034export PATH="$PATH:$MAVEN/bin"
tom6a9f2722014-09-13 17:00:02 -070035
Roan Huang0fa4bc42015-05-01 15:38:20 +080036# Setup cell enviroment
37export ONOS_CELL=${ONOS_CELL:-local}
38
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070039# Setup default web user/password
40export ONOS_WEB_USER=onos
41export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070042
43# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070044export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
45
Carmelo Casconeb7524272017-06-05 16:53:13 -040046# Setup path to Mininet custom scripts
47export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py
48export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py
49
tom6a9f2722014-09-13 17:00:02 -070050# Convenience utility to warp to various ONOS source projects
51# e.g. 'o api', 'o dev', 'o'
52function o {
Thomas Vachuskabec79b92018-08-07 11:42:17 -070053 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 -070054 egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070055}
56
Thomas Vachuska6066dff2016-10-26 13:57:36 -070057# Buck (if "buck" is not on the PATH)
58[ -z "$(which buck)" ] && alias buck="onos-buck"
tom6a9f2722014-09-13 17:00:02 -070059
tom82d6bde2014-09-23 17:33:58 -070060# Short-hand for ONOS build, package and test.
Thomas Vachuskabec79b92018-08-07 11:42:17 -070061alias op="SHLVL=1 bazel build //:onos"
Carmelo Casconefe59ba02018-09-04 22:31:06 -070062alias 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 -070063alias ob="op && ot"
64alias obd="SHLVL=1 bazel build //docs:external //docs:internal"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070065
Thomas Vachuskabec79b92018-08-07 11:42:17 -070066alias ok="SHLVL=1 bazel run onos-local --"
67alias oh="onos localhost halt"
Thomas Vachuska6066dff2016-10-26 13:57:36 -070068
tom0511a522014-10-04 12:06:02 -070069alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070070alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070071alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080072alias oi='setPrimaryInstance'
tom6a9f2722014-09-13 17:00:02 -070073
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070074# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070075alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuska369e3fb2019-01-02 16:38:37 -080076# alias gl='grep $KARAF_LOG --colour=auto -E -e '
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))
187 middle=$(expr "${#nodes[@]}" / "2")
188 index=0
189 min=1
190 maj=1
191 for node in "${nodes[@]}"; do
192 if [ "$index" -gt "$middle" ]; then
193 export OCMI${min}=${node}
194 min=$(expr $min + 1)
195 else
196 export OCMA${maj}=${node}
197 maj=$(expr $maj + 1)
198 fi
199 index=$(expr $index + 1)
200 done
201}
202
Thomas Vachuskaa10137c2018-04-03 16:45:59 -0700203# Open Networking Foundation shared test cell warden address
Thomas Vachuska28d46572017-12-05 13:39:27 -0800204export CELL_WARDEN="10.192.19.72"
Thomas Vachuskaca40fe42018-01-29 16:13:26 -0800205export CELL_SLAVE_1=$CELL_WARDEN
206export CELL_SLAVE_2="10.192.19.71"
207export CELL_SLAVE_3="10.192.19.70"
Thomas Vachuska4b09a6f2018-10-29 10:34:20 -0700208export CELL_SLAVE_4="10.192.19.77" # disabled
209export CELL_SLAVES="$CELL_SLAVE_1 $CELL_SLAVE_2 $CELL_SLAVE_3"
Thomas Vachuska1eff3a62016-05-03 01:07:24 -0700210
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700211# Clears cell environment
212function clearCell {
213 unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700214 unset OCI OCN OCT ONOS_INSTANCES ONOS_CORES ONOS_FEATURES
Charles Chanc7a60ce2017-05-05 13:56:27 -0700215 unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700216 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700217 unset $(env | sed -n 's:\(^OCC[0-9]\{1,\}\)=.*:\1 :g p')
Jordan Halterman980a8c12017-09-22 18:01:19 -0700218 unset $(env | sed -n 's:\(^OCMI[0-9]\{1,\}\)=.*:\1 :g p')
219 unset $(env | sed -n 's:\(^OCMA[0-9]\{1,\}\)=.*:\1 :g p')
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700220}
221
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700222# Applies the settings in the specified cell file or lists current cell definition
223# if no cell file is given.
224function cell {
Jon Hall7dc59d62016-05-10 14:30:16 -0700225 cell=${1:-""}
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700226 case "$cell" in
227 "borrow")
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700228 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700229 aux="/tmp/cell-$$"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700230 duration=${2:-0}
Thomas Vachuska8e676d92018-11-19 16:01:03 -0800231 spec=${3:-5+3+1}
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700232 spec=${spec//+/%2B}
Thomas Vachuska5420ba32016-05-13 14:45:25 -0400233 user=${4:-$(id -un)}
Ray Milkey32e73d72018-03-09 09:52:29 -0800234 hint=${5:-""}
Thomas Vachuska05e47a32016-10-24 09:35:11 -0700235 query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700236 curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700237 . $aux
238 rm -f $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700239 setPrimaryInstance 1 >/dev/null
Jordan Halterman980a8c12017-09-22 18:01:19 -0700240 setMinorityMajority >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700241 onos-verify-cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700242 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700243 ;;
244 "return")
245 curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700246 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700247 ;;
248
249 "status")
250 curl -sS "http://$CELL_WARDEN:4321/" | sort
251 ;;
252
253 "")
Charles Chan9b152fc2016-11-21 12:06:49 -0800254 env | egrep "^ONOS_CELL"
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700255 env | egrep "^OCC[0-9]+" | sort
Charles Chan9b152fc2016-11-21 12:06:49 -0800256 env | egrep "^OC[0-9]+" | sort
Thomas Vachuska2582fc22018-07-02 14:54:18 -0700257 env | egrep "^OC[INT]" | sort
258 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 -0700259 ;;
260
261 *)
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700262 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1
263 clearCell
Charles Chanc7a60ce2017-05-05 13:56:27 -0700264 export ONOS_USER=sdn
265 export ONOS_GROUP=sdn
266 export ONOS_WEB_USER=onos
267 export ONOS_WEB_PASS=rocks
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700268 export ONOS_CELL=$1
269 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700270 setPrimaryInstance 1 >/dev/null
271 cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700272 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700273 esac
274}
tomecd0fbd2014-09-19 08:47:05 -0700275
Thomas Vachuskae6185572016-05-04 19:26:15 -0700276[ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null
tomecd0fbd2014-09-19 08:47:05 -0700277
278# 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
346alias mn-p4='sudo -E mn --custom $BMV2_MN_PY --switch onosbmv2 --controller remote,ip=$OC1'