aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/restapi-templates/src/main/json/sdwan-wan-port-static.json
blob: fff33cc3b984ff50ab2a1ff14e7bf445b7f17c07 (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
37
38
39
40
41
42
43
{
    "tnps": [
        {
            "id": ${prop.wan.wanPortId},
            "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
                }
             },
            "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}
        }
    ]
}