summaryrefslogtreecommitdiffstats
path: root/scripts/mount_vpp_into_odl.sh
diff options
context:
space:
mode:
authorjuraj.linkes <jlinkes@cisco.com>2017-04-04 15:04:47 +0200
committerjuraj.linkes <jlinkes@cisco.com>2017-05-03 15:23:35 +0200
commite385c470ca3c58d5038d50a86380847bb6a5a56b (patch)
tree24d04da8a20290de37053589fdba9cc31d9e6b70 /scripts/mount_vpp_into_odl.sh
parentd00c547178fdf5637a3b42112f5c3e6ae29fb260 (diff)
Reworked helper scripts and fixed typos
Added scripts for odl handling Change-Id: Idf715e1c8357a52ef1cd93f58b87c0b92211f85b Signed-off-by: juraj.linkes <jlinkes@cisco.com>
Diffstat (limited to 'scripts/mount_vpp_into_odl.sh')
-rwxr-xr-xscripts/mount_vpp_into_odl.sh12
1 files changed, 5 insertions, 7 deletions
diff --git a/scripts/mount_vpp_into_odl.sh b/scripts/mount_vpp_into_odl.sh
index a5cf148..a0a6ccb 100755
--- a/scripts/mount_vpp_into_odl.sh
+++ b/scripts/mount_vpp_into_odl.sh
@@ -5,6 +5,8 @@ display_usage() {
exit 85
}
+. $(dirname $0)/variables.sh
+
if [ $# -lt 3 ]
then
display_usage
@@ -15,13 +17,10 @@ odl_ip=$1
vpp_host=$2
vpp_ip=$3
-vpp_username=admin
-vpp_password=admin
-
post_data='{"node" : [
{"node-id":"'$vpp_host'",
"netconf-node-topology:host":"'$vpp_ip'",
-"netconf-node-topology:port":"2831",
+"netconf-node-topology:port":"'$vpp_port'",
"netconf-node-topology:tcp-only":false,
"netconf-node-topology:keepalive-delay":0,
"netconf-node-topology:username":"'$vpp_username'",
@@ -29,10 +28,9 @@ post_data='{"node" : [
"netconf-node-topology:connection-timeout-millis":10000,
"netconf-node-topology:default-request-timeout-millis":10000,
"netconf-node-topology:max-connection-attempts":10,
-"netconf-node-topology:between-attempts-timeout-millis":10000,
-"netconf-node-topology:schema-cache-directory":"hcmount"}
+"netconf-node-topology:between-attempts-timeout-millis":10000}
]
}
'
-curl -u admin:admin -X POST -d "$post_data" -H 'Content-Type: application/json' http://$odl_ip:8081/restconf/config/network-topology:network-topology/network-topology:topology/topology-netconf/
+curl -u $odl_username:$odl_password -X POST -d "$post_data" -H 'Content-Type: application/json' http://$odl_ip:$odl_port/restconf/config/network-topology:network-topology/network-topology:topology/topology-netconf/