added benchmark and configure bundle
diff --git a/scripts/addDPN.sh b/scripts/addDPN.sh
index 9c77d37..b1d04d2 100755
--- a/scripts/addDPN.sh
+++ b/scripts/addDPN.sh
@@ -1,15 +1,22 @@
#!/bin/bash
-curl -i --header "Content-type: application/json" --request POST -u onos:rocks --data '{
- "dpns": [
- {
- "dpn-id": "1",
- "dpn-name": "site1-anchor1",
- "dpn-groups": [
- "foo"
- ],
- "node-id": "node1",
- "network-id": "network1"
- }
- ]
-}' 'http://localhost:8181/onos/restconf/data/ietf-dmm-fpcagent:tenants/tenant=default/fpc-topology'
-./getTenants.sh
\ No newline at end of file
+
+if [ "$#" -eq 1 ]; then
+ echo ""
+ curl -i --header "Content-type: application/json" --request POST -u onos:rocks --data '{
+ "dpns": [
+ {
+ "dpn-id": '$1',
+ "dpn-name": "site1-anchor1",
+ "dpn-groups": [
+ "foo"
+ ],
+ "node-id": "node'$1'",
+ "network-id": "network'$1'"
+ }
+ ]
+ }' 'http://localhost:8181/onos/restconf/data/ietf-dmm-fpcagent:tenants/tenant=default/fpc-topology'
+ ./getTenants.sh
+ echo ""
+else
+ echo "usage: "$0" dpnId"
+fi
\ No newline at end of file