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
44
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}
}
]
}
|