aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/restapi-templates/src/main/json/sdwan-wan-port.json
blob: e3c459398e555f6f44d5a3fe91dcb59affc93c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
    "tnps": [
        {
            "name": ${prop.wan.name},
            "siteId": ${prop.wan.siteId},
            "deviceId": ${prop.wan.deviceId},
            "portId": ${prop.wan.devicePortId},
            "inSubInterfaces": "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
            },
            "description": ${prop.wan.description}
        }
    ]
}