blob: b1d04d221a7791ba473a5db34f4f89a606436941 [file] [log] [blame]
Dimitrios Mavrommatis45eb6d62017-12-03 22:07:36 -08001#!/bin/bash
Dimitrios Mavrommatisa9df5962017-12-05 15:11:04 -08002
3if [ "$#" -eq 1 ]; then
4 echo ""
5 curl -i --header "Content-type: application/json" --request POST -u onos:rocks --data '{
6 "dpns": [
7 {
8 "dpn-id": '$1',
9 "dpn-name": "site1-anchor1",
10 "dpn-groups": [
11 "foo"
12 ],
13 "node-id": "node'$1'",
14 "network-id": "network'$1'"
15 }
16 ]
17 }' 'http://localhost:8181/onos/restconf/data/ietf-dmm-fpcagent:tenants/tenant=default/fpc-topology'
18 ./getTenants.sh
19 echo ""
20else
21 echo "usage: "$0" dpnId"
22fi