blob: d3a4f0d0cd48c25d2f52ee9c91720b9536126387 [file] [log] [blame]
Thomas Vachuskadcadc2b2014-10-29 12:03:29 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# ONOS topology configuration uploader.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9node="${1:-$OC1}"
10file="${2:-$ONOS_ROOT/tools/test/topos/oe-linear-3.json}"
11
12curl -sS --fail -L -X POST -H 'Content-Type:application/json' \
13 http://$node:8181/onos/v1/config/topology -d@$file