blob: 3942428483e41ebac05fdcc60b187aa9922d990f [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
Thomas Vachuska36008462016-01-07 15:38:20 -080013curl --fail -L --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