From b47cff931a6f33275b3b85f456b0236bb76f0be8 Mon Sep 17 00:00:00 2001 From: Hesam Rahimi Date: Fri, 27 Aug 2021 20:57:41 +0000 Subject: New DGs required for creation of a cloud leased-line (E-TREE) service. Issue-ID: SDNC-1594 Signed-off-by: Hesam Rahimi Change-Id: I23e2008c497289c20415f012a77aa4478e7c0815 Former-commit-id: 748b1c0d2e20f88c327673fe3bc32d3d50e5e12b --- .../src/main/json/cll-ethernet-service-loop.json | 61 ++++++++++++++++++++ .../src/main/json/cll-otn-tunnel-domainG.json | 66 ++++++++++++++++++++++ .../src/main/json/cll-otn-tunnel-dst-domain.json | 51 +++++++++++++++++ .../src/main/json/cll-otn-tunnel-src-domain.json | 51 +++++++++++++++++ 4 files changed, 229 insertions(+) create mode 100644 platform-logic/restapi-templates/src/main/json/cll-ethernet-service-loop.json create mode 100644 platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-domainG.json create mode 100644 platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-dst-domain.json create mode 100644 platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-src-domain.json (limited to 'platform-logic/restapi-templates/src/main/json') diff --git a/platform-logic/restapi-templates/src/main/json/cll-ethernet-service-loop.json b/platform-logic/restapi-templates/src/main/json/cll-ethernet-service-loop.json new file mode 100644 index 00000000..e4198aa5 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/cll-ethernet-service-loop.json @@ -0,0 +1,61 @@ +{ + "ietf-eth-tran-service:etht-svc":{ + "etht-svc-instances":[ + { + "etht-svc-name": ${eth-service-name}, + "ietf-optical-slice:slice-id": ${slice-id}, + "etht-svc-descr": "Ethernet-over-OTN", + "etht-svc-type": "ietf-eth-tran-types:p2p-svc", + "te-topology-identifier":{ + "provider-id": ${provider-id}, + "client-id": ${client-id}, + "topology-id": ${topology-id} + }, + "underlay":{ + "otn-tunnels": [ + ${repeat:otn-tunnels-name-list_length: + { + "name": ${otn-tunnels-name-list[${1}].otn-tunnel-name} + }, + } + ] + "resilience":{ + "protection":{ + "enable":"true", + "hold-off-time":"0", + "protection-reversion-disable":"true", + "protection-type":"ietf-te-types:lsp-protection-unprotected", + "wait-to-revert":"0" + } + }, + "admin-status":"ietf-te-types:tunnel-admin-state-up", + "etht-svc-end-points":[ + ${repeat:ethernet-srv-end-points-list_length: + { + "etht-svc-end-point-name": ${ethernet-srv-end-points-list[${1}].ethernet-end-point-name}, + "etht-svc-access-points":[ + { + "access-point-id": ${ethernet-srv-end-points-list[${1}].index-number}, + "access-node-id": ${ethernet-srv-end-points-list[${1}].eth-node-id}, + "access-ltp-id": ${ethernet-srv-end-points-list[${1}].eth-node-tp-id}, + "access-role": ${ethernet-srv-end-points-list[${1}].leafOrRootAccess} + // "ietf-eth-tran-types:leaf-access" + // "ietf-eth-tran-types:root-primary" + } + ], + "outer-tag":{ + "tag-type":"ietf-eth-tran-types:classify-c-vlan", + "vlan-value":${ethernet-srv-end-points-list[${1}].cvlan} + }, + "service-classification-type":"ietf-eth-tran-types:vlan-classification", + "ingress-egress-bandwidth-profile":{ + "bandwidth-profile-type":"ietf-eth-tran-types:mef-10-bwp", + "CIR": ${ethernet-srv-end-points-list[${1}].CIR}, + "EIR": ${ethernet-srv-end-points-list[${1}].EIR} + } + }, + } + ] + ] + } +} diff --git a/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-domainG.json b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-domainG.json new file mode 100644 index 00000000..85b974ee --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-domainG.json @@ -0,0 +1,66 @@ +{ + "ietf-te:te": { + "tunnels": { + "tunnel": [ + { + "name": ${otn-tunnel-name-domainG}, + "source": ${src-node-id}, + "destination": ${dst-node-id}, + "src-tunnel-tp-id": ${src-ttp-id}, + "dst-tunnel-tp-id": ${dst-ttp-id}, + "te-bandwidth": { + "ietf-otn-tunnel:otn": { + "ietf-otn-tunnel:odu-type": "ietf-layer1-types:ODUflex", + "ietf-otn-tunnel:gfp-n": ${gfp-n} + } + }, + "encoding": "ietf-te-types:lsp-encoding-oduk", + "switching-type": "ietf-te-types:switching-otn", + "protection": { + "enable": "true", + "hold-off-time": "0", + "protection-reversion-disable": "true", + "protection-type": "ietf-te-types:lsp-protection-unprotected", + "wait-to-revert": "0" + }, + "admin-state": "ietf-te-types:tunnel-admin-state-up", + "primary-paths":{ + "primary-path" :[ + { + "name":"primary", + "path-in-segment":{ + "label-restrictions":{ + "label-restriction":[ + { + "index" :1, + "label-start":{ + "te-label":{ + "ietf-otn-tunnel:otn-tpn": ${src-tpn-id} + } + } + } + ] + } + }, + "path-out-segment":{ + "label-restrictions":{ + "label-restriction":[ + { + "index" :1, + "label-start":{ + "te-label":{ + "ietf-otn-tunnel:otn-tpn": ${dst-tpn-id} + } + } + } + ] + } + } + } + ] + } + } + ] + } + } +} diff --git a/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-dst-domain.json b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-dst-domain.json new file mode 100644 index 00000000..29d19e04 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-dst-domain.json @@ -0,0 +1,51 @@ +{ + "ietf-te:te": { + "tunnels": { + "tunnel": [ + { + "name": ${otn-tunnel-name-dst-domain}, + "source": ${src-node-id}, + "destination": ${dst-node-id}, + "src-tunnel-tp-id": ${src-ttp-id}, + "te-bandwidth": { + "ietf-otn-tunnel:otn": { + "ietf-otn-tunnel:odu-type": "ietf-layer1-types:ODUflex", + "ietf-otn-tunnel:gfp-n": ${gfp-n} + } + }, + "encoding": "ietf-te-types:lsp-encoding-oduk", + "switching-type": "ietf-te-types:switching-otn", + "protection": { + "enable": "true", + "hold-off-time": "0", + "protection-reversion-disable": "true", + "protection-type": "ietf-te-types:lsp-protection-unprotected", + "wait-to-revert": "0" + }, + "admin-state": "ietf-te-types:tunnel-admin-state-up", + "primary-paths":{ + "primary-path" :[ + { + "name":"primary", + "path-in-segment":{ + "label-restrictions":{ + "label-restriction":[ + { + "index" :1, + "label-start":{ + "te-label":{ + "ietf-otn-tunnel:otn-tpn": ${src-tpn-id} + } + } + } + ] + } + } + } + ] + } + } + ] + } + } +} diff --git a/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-src-domain.json b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-src-domain.json new file mode 100644 index 00000000..6dce14c9 --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/cll-otn-tunnel-src-domain.json @@ -0,0 +1,51 @@ +{ + "ietf-te:te": { + "tunnels": { + "tunnel": [ + { + "name": ${otn-tunnel-name-src-domain}, + "source": ${src-node-id}, + "destination": ${dst-node-id}, + "dst-tunnel-tp-id": ${dst-ttp-id}, + "te-bandwidth": { + "ietf-otn-tunnel:otn": { + "ietf-otn-tunnel:odu-type": "ietf-layer1-types:ODUflex", + "ietf-otn-tunnel:gfp-n": ${gfp-n} + } + }, + "encoding": "ietf-te-types:lsp-encoding-oduk", + "switching-type": "ietf-te-types:switching-otn", + "protection": { + "enable": "true", + "hold-off-time": "0", + "protection-reversion-disable": "true", + "protection-type": "ietf-te-types:lsp-protection-unprotected", + "wait-to-revert": "0" + }, + "admin-state": "ietf-te-types:tunnel-admin-state-up", + "primary-paths":{ + "primary-path" :[ + { + "name":"primary", + "path-out-segment":{ + "label-restrictions":{ + "label-restriction":[ + { + "index" :1, + "label-start":{ + "te-label":{ + "ietf-otn-tunnel:otn-tpn": ${dst-tpn-id} + } + } + } + ] + } + } + } + ] + } + } + ] + } + } +} -- cgit 1.2.3-korg