blob: 23900ecb7b44f2b006f6a81fb3e9df063308fca2 [file] [log] [blame]
Thomas Vachuska1627dc82015-11-13 12:22:14 -08001#!/bin/bash
2# -----------------------------------------------------------------------------
3# ONOS network 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:-$OCI}"
10file="${2:-$ONOS_ROOT/tools/test/topos/oe-linear-3.json}"
11url="${3}"
12
13curl -sS --fail -L --user $ONOS_WEB_USER:$ONOS_WEB_PASS \
14 -X POST -H 'Content-Type:application/json' \
15 http://$node:8181/onos/v1/network/configuration/${url} -d@$file