blob: 57d605cf6a0b97326418d3b2123207310af99d0c [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
Ayaka Koshibee8402da2016-01-12 15:06:45 -080013curl --fail -sSL --user $ONOS_WEB_USER:$ONOS_WEB_PASS \
Thomas Vachuska1627dc82015-11-13 12:22:14 -080014 -X POST -H 'Content-Type:application/json' \
15 http://$node:8181/onos/v1/network/configuration/${url} -d@$file