diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-10 18:26:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-10 18:26:22 +0000 |
commit | 4ae2e625c652dfeefd271f8579fcf65e12e783e5 (patch) | |
tree | ad3ac713d732765a4acaf12d5a04214958376282 /platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json | |
parent | a33c6ad87b758ad4d4700b4b394b3c756db58966 (diff) | |
parent | 7e01da537f44b15b2ae39ed5d9a71d467ec097db (diff) |
Merge "zte 3rd party controller for sdwan"
Former-commit-id: eb0fe6f9efb11193847d5847ed8fca0c4ad9a0f8
Diffstat (limited to 'platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json')
-rw-r--r-- | platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json b/platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json new file mode 100644 index 00000000..55e603ec --- /dev/null +++ b/platform-logic/restapi-templates/src/main/json/sdwan-site-wan-zte-add.json @@ -0,0 +1,45 @@ +{ + "tnps": [ + { + "name": ${prop.wan.name}, + "siteId": ${prop.wan.siteId}, + "deviceId": ${prop.wan.deviceId}, + "portId": ${prop.wan.devicePortId}, + "inSubInterface": false, + "vlanId": "null", + "ipConnection": { + "ipv4": { + "publicIP": ${prop.wan.ip-address}, + "accessType": "IPoE", + "ipMode": "Static", + "customerAddress": ${prop.wan.ip-address}, + "prefixLength": ${prop.wan.prefixLength}, + "providerAddress": ${prop.wan.providerIpAddress}, + "peerIp": "null", + "userName": "null", + "userKey": "null" + } + }, + "transportNetworkInfo": { + "transportNetworkId": ${prop.wan.transportNetworkId}, + "workMode": "active" + }, + "attributes": { + "inputBandwidth": ${prop.wan.inputBandwidth}, + "outputBandwidth": ${prop.wan.outputBandwidth}, + "mtu": 1500, + "TCPmss": 1200 + }, + "ntp": [ + { + "serverIP": "11.11.11.11", + "authentication": false, + "mode": "MD5", + "authKey": "123456", + "authId": 123 + } + ], + "description": ${prop.wan.description} + } + ] +} |