Commit 162f741d authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

ECOC F5GA Telemetry Demo:

- Corrected underlay controller ports on topology descriptors
- Corrected deploy support services script
parent 13d89fec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
        {"device_id": {"device_uuid": {"uuid": "NCE-T"}}, "name": "NCE-T", "device_type": "ip-sdn-controller",
        "device_drivers": ["DEVICEDRIVER_IETF_ACTN"], "device_config": {"config_rules": [
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/address",  "resource_value": "10.254.0.9"}},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port",     "resource_value": "8081"      }},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port",     "resource_value": "8444"      }},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/settings", "resource_value": {
                "scheme": "https", "username": "admin", "password": "admin", "base_url": "/restconf/v2/data",
                "timeout": 120, "verify": false
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
        {"device_id": {"device_uuid": {"uuid": "NCE-FAN"}}, "name": "NCE-FAN", "device_type": "ip-sdn-controller",
        "device_drivers": ["DEVICEDRIVER_IETF_ACTN"], "device_config": {"config_rules": [
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/address",  "resource_value": "10.254.0.9"}},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port",     "resource_value": "8082"      }},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port",     "resource_value": "8443"      }},
            {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/settings", "resource_value": {
                "scheme": "https", "username": "admin", "password": "admin", "base_url": "/restconf/v2/data",
                "timeout": 120, "verify": false
+2 −2
Original line number Diff line number Diff line
@@ -33,8 +33,8 @@ docker rm --force nce-t-ctrl

# Create SIMAP Server, NCE-FAN Controller, NCE-T Controller
docker run --detach --name simap-server --publish 8080:8080 simap-server:mock
docker run --detach --name nce-fan-ctrl --publish 8081:8080 nce-fan-ctrl:mock
docker run --detach --name nce-t-ctrl   --publish 8082:8080 nce-t-ctrl:mock
docker run --detach --name nce-fan-ctrl --publish 8443:8443 nce-fan-ctrl:mock
docker run --detach --name nce-t-ctrl   --publish 8444:8443 nce-t-ctrl:mock

sleep 2