aboutsummaryrefslogtreecommitdiffstats
path: root/prototypes
diff options
context:
space:
mode:
authorManuel Buil <manuel.buil@ericsson.com>2016-05-10 11:05:58 +0200
committerManuel Buil <manuel.buil@ericsson.com>2016-05-10 19:41:01 +0200
commit1d62a3a8acb616ed0afe724e55f3adcd214a566c (patch)
treea3e40c83d8c830b2424d029ce719ac3ca8880bea /prototypes
parentd45fec5d38ec41f1f4babc9d54723437072693f8 (diff)
The configuration of the coexistence between SFC and Netvirt is added
Change-Id: I3ce03c38677ac67df3aae0363048be21b7939bde Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
Diffstat (limited to 'prototypes')
-rwxr-xr-xprototypes/sfc_tacker/poc.tacker-up.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/prototypes/sfc_tacker/poc.tacker-up.sh b/prototypes/sfc_tacker/poc.tacker-up.sh
index be647b409..4dbb37240 100755
--- a/prototypes/sfc_tacker/poc.tacker-up.sh
+++ b/prototypes/sfc_tacker/poc.tacker-up.sh
@@ -350,6 +350,18 @@ function populate_rc() {
done
}
+
+#Configure ODL so that it allows the coexistence between Netvirt and SFC
+function coexistence() {
+ curl -i -u admin:admin -H 'Content-type: application/json' -X PUT \
+ -d '{"netvirt-providers-config":{"table-offset":"1"}}' \
+ http://${mgmt_addr}:${odl_port}/restconf/config/netvirt-providers-config:netvirt-providers-config
+
+ curl -i -u admin:admin -H 'Content-type: application/json' -X PUT \
+ -d '{"sfc-of-renderer-config":{"sfc-of-table-offset":"150","sfc-of-app-egress-table-offset":"11"}}' \
+ http://${mgmt_addr}:${odl_port}/restconf/config/sfc-of-renderer:sfc-of-renderer-config
+}
+
envSetup
deployTackerClient
deployJsonrpclib
@@ -359,6 +371,7 @@ deployTackerServer
populate_client
orchestarte
populate_rc
+coexistence
remove_repo "$MYREPO"
remove_repo "$DEPREPO"