catalystwan 0.41.2__py3-none-any.whl → 0.41.2.dev1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (504) hide show
  1. catalystwan/__init__.py +3 -2
  2. catalystwan/api/administration.py +13 -2
  3. catalystwan/api/api_container.py +4 -1
  4. catalystwan/api/builders/__init__.py +14 -0
  5. catalystwan/api/builders/feature_profiles/__init__.py +0 -0
  6. catalystwan/api/builders/feature_profiles/application_priority.py +58 -0
  7. catalystwan/api/builders/feature_profiles/builder_factory.py +59 -0
  8. catalystwan/api/builders/feature_profiles/cli.py +76 -0
  9. catalystwan/api/builders/feature_profiles/mixins.py +44 -0
  10. catalystwan/api/builders/feature_profiles/other.py +79 -0
  11. catalystwan/api/builders/feature_profiles/report.py +155 -0
  12. catalystwan/api/builders/feature_profiles/service.py +248 -0
  13. catalystwan/api/builders/feature_profiles/system.py +80 -0
  14. catalystwan/api/builders/feature_profiles/transport.py +256 -0
  15. catalystwan/api/builders/feature_profiles/uc_voice.py +287 -0
  16. catalystwan/api/config_group_api.py +41 -16
  17. catalystwan/api/configuration_groups/parcel.py +100 -30
  18. catalystwan/api/feature_profile_api.py +2021 -242
  19. catalystwan/api/policy_api.py +470 -116
  20. catalystwan/api/template_api.py +113 -44
  21. catalystwan/api/templates/README.md +61 -47
  22. catalystwan/api/templates/cli_template.py +17 -7
  23. catalystwan/api/templates/device_template/device_template.py +127 -32
  24. catalystwan/api/templates/feature_template.py +3 -3
  25. catalystwan/api/templates/models/aaa_model.py +387 -0
  26. catalystwan/api/templates/models/cisco_aaa_model.py +289 -42
  27. catalystwan/api/templates/models/cisco_banner_model.py +11 -2
  28. catalystwan/api/templates/models/cisco_bfd_model.py +31 -36
  29. catalystwan/api/templates/models/cisco_bgp_model.py +382 -131
  30. catalystwan/api/templates/models/cisco_logging_model.py +80 -43
  31. catalystwan/api/templates/models/cisco_ntp_model.py +34 -15
  32. catalystwan/api/templates/models/cisco_omp_model.py +70 -60
  33. catalystwan/api/templates/models/cisco_ospf.py +143 -74
  34. catalystwan/api/templates/models/cisco_ospfv3.py +217 -95
  35. catalystwan/api/templates/models/cisco_secure_internet_gateway.py +304 -142
  36. catalystwan/api/templates/models/cisco_snmp_model.py +66 -52
  37. catalystwan/api/templates/models/cisco_system.py +238 -129
  38. catalystwan/api/templates/models/cisco_vpn_interface_model.py +632 -275
  39. catalystwan/api/templates/models/cisco_vpn_model.py +433 -270
  40. catalystwan/api/templates/models/cli_template.py +3 -2
  41. catalystwan/api/templates/models/omp_vsmart_model.py +46 -10
  42. catalystwan/api/templates/models/security_vsmart_model.py +11 -8
  43. catalystwan/api/templates/models/supported.py +10 -4
  44. catalystwan/api/templates/models/system_vsmart_model.py +164 -27
  45. catalystwan/api/templates/models/vpn_vsmart_interface_model.py +198 -0
  46. catalystwan/api/templates/models/vpn_vsmart_model.py +124 -0
  47. catalystwan/apigw_auth.py +6 -2
  48. catalystwan/dataclasses.py +2 -53
  49. catalystwan/endpoints/__init__.py +41 -41
  50. catalystwan/endpoints/certificate_management_device.py +4 -0
  51. catalystwan/endpoints/cluster_management.py +27 -7
  52. catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +107 -0
  53. catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +60 -0
  54. catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +83 -0
  55. catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +88 -0
  56. catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +62 -0
  57. catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +35 -12
  58. catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +154 -0
  59. catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +88 -0
  60. catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +164 -11
  61. catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +93 -0
  62. catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +144 -26
  63. catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +77 -0
  64. catalystwan/endpoints/configuration/network_hierarchy.py +32 -0
  65. catalystwan/endpoints/configuration/policy/abstractions.py +49 -0
  66. catalystwan/endpoints/configuration/policy/definition/access_control_list.py +6 -11
  67. catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +6 -11
  68. catalystwan/endpoints/configuration/policy/definition/aip.py +52 -0
  69. catalystwan/endpoints/configuration/policy/definition/amp.py +52 -0
  70. catalystwan/endpoints/configuration/policy/definition/app_route.py +50 -0
  71. catalystwan/endpoints/configuration/policy/definition/cflowd.py +46 -0
  72. catalystwan/endpoints/configuration/policy/definition/control.py +6 -11
  73. catalystwan/endpoints/configuration/policy/definition/device_access.py +6 -11
  74. catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +6 -11
  75. catalystwan/endpoints/configuration/policy/definition/dial_peer.py +57 -0
  76. catalystwan/endpoints/configuration/policy/definition/dns_security.py +50 -0
  77. catalystwan/endpoints/configuration/policy/definition/fxo_port.py +57 -0
  78. catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +57 -0
  79. catalystwan/endpoints/configuration/policy/definition/fxs_port.py +57 -0
  80. catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +6 -11
  81. catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +52 -0
  82. catalystwan/endpoints/configuration/policy/definition/mesh.py +2 -11
  83. catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +57 -0
  84. catalystwan/endpoints/configuration/policy/definition/qos_map.py +2 -11
  85. catalystwan/endpoints/configuration/policy/definition/rewrite.py +6 -11
  86. catalystwan/endpoints/configuration/policy/definition/route_policy.py +50 -0
  87. catalystwan/endpoints/configuration/policy/definition/rule_set.py +2 -11
  88. catalystwan/endpoints/configuration/policy/definition/security_group.py +6 -11
  89. catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +59 -0
  90. catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +50 -0
  91. catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +52 -0
  92. catalystwan/endpoints/configuration/policy/definition/traffic_data.py +6 -11
  93. catalystwan/endpoints/configuration/policy/definition/url_filtering.py +50 -0
  94. catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +6 -11
  95. catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +50 -0
  96. catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +6 -11
  97. catalystwan/endpoints/configuration/policy/list/app.py +3 -16
  98. catalystwan/endpoints/configuration/policy/list/app_probe.py +6 -15
  99. catalystwan/endpoints/configuration/policy/list/as_path.py +3 -16
  100. catalystwan/endpoints/configuration/policy/list/class_map.py +3 -16
  101. catalystwan/endpoints/configuration/policy/list/color.py +3 -16
  102. catalystwan/endpoints/configuration/policy/list/community.py +3 -16
  103. catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +6 -15
  104. catalystwan/endpoints/configuration/policy/list/data_prefix.py +3 -16
  105. catalystwan/endpoints/configuration/policy/list/expanded_community.py +6 -15
  106. catalystwan/endpoints/configuration/policy/list/extended_community.py +52 -0
  107. catalystwan/endpoints/configuration/policy/list/fax_protocol.py +48 -0
  108. catalystwan/endpoints/configuration/policy/list/fqdn.py +3 -16
  109. catalystwan/endpoints/configuration/policy/list/geo_location.py +3 -16
  110. catalystwan/endpoints/configuration/policy/list/identity.py +48 -0
  111. catalystwan/endpoints/configuration/policy/list/ips_signature.py +6 -15
  112. catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +3 -16
  113. catalystwan/endpoints/configuration/policy/list/local_app.py +3 -16
  114. catalystwan/endpoints/configuration/policy/list/local_domain.py +3 -16
  115. catalystwan/endpoints/configuration/policy/list/media_profile.py +52 -0
  116. catalystwan/endpoints/configuration/policy/list/mirror.py +3 -16
  117. catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +52 -0
  118. catalystwan/endpoints/configuration/policy/list/policer.py +3 -16
  119. catalystwan/endpoints/configuration/policy/list/port.py +3 -16
  120. catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +6 -15
  121. catalystwan/endpoints/configuration/policy/list/prefix.py +4 -16
  122. catalystwan/endpoints/configuration/policy/list/protocol_name.py +6 -15
  123. catalystwan/endpoints/configuration/policy/list/region.py +2 -10
  124. catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +52 -0
  125. catalystwan/endpoints/configuration/policy/list/site.py +3 -16
  126. catalystwan/endpoints/configuration/policy/list/sla.py +3 -16
  127. catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +52 -0
  128. catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +52 -0
  129. catalystwan/endpoints/configuration/policy/list/tloc.py +3 -16
  130. catalystwan/endpoints/configuration/policy/list/translation_profile.py +52 -0
  131. catalystwan/endpoints/configuration/policy/list/translation_rules.py +52 -0
  132. catalystwan/endpoints/configuration/policy/list/trunkgroup.py +48 -0
  133. catalystwan/endpoints/configuration/policy/list/umbrella_data.py +52 -0
  134. catalystwan/endpoints/configuration/policy/list/url_allow_list.py +3 -16
  135. catalystwan/endpoints/configuration/policy/list/url_block_list.py +3 -16
  136. catalystwan/endpoints/configuration/policy/list/vpn.py +3 -16
  137. catalystwan/endpoints/configuration/policy/list/zone.py +3 -16
  138. catalystwan/endpoints/configuration/policy/security_template.py +2 -3
  139. catalystwan/endpoints/configuration/policy/voice_template.py +39 -0
  140. catalystwan/endpoints/configuration/policy_group.py +30 -0
  141. catalystwan/endpoints/configuration/software_actions.py +2 -4
  142. catalystwan/endpoints/configuration/topology_group.py +51 -0
  143. catalystwan/endpoints/configuration_dashboard_status.py +2 -2
  144. catalystwan/endpoints/configuration_device_template.py +15 -1
  145. catalystwan/endpoints/configuration_feature_profile.py +8 -11
  146. catalystwan/endpoints/configuration_general_template.py +31 -0
  147. catalystwan/endpoints/configuration_group.py +28 -5
  148. catalystwan/endpoints/configuration_settings.py +90 -1
  149. catalystwan/endpoints/configuration_template_master.py +48 -0
  150. catalystwan/endpoints/endpoints_container.py +79 -19
  151. catalystwan/endpoints/real_time_monitoring/reboot_history.py +1 -3
  152. catalystwan/endpoints/tenant_migration.py +2 -0
  153. catalystwan/exceptions.py +17 -0
  154. catalystwan/integration_tests/base.py +81 -0
  155. catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
  156. catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
  157. catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +33 -0
  158. catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +33 -0
  159. catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +32 -0
  160. catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +433 -0
  161. catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +54 -0
  162. catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +106 -0
  163. catalystwan/integration_tests/feature_profile/sdwan/test_other.py +49 -0
  164. catalystwan/integration_tests/feature_profile/sdwan/test_service.py +1078 -0
  165. catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +322 -0
  166. catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +85 -0
  167. catalystwan/integration_tests/feature_profile/sdwan/test_system.py +368 -0
  168. catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +127 -0
  169. catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +1698 -0
  170. catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +93 -0
  171. catalystwan/integration_tests/profile_builder/__init__.py +0 -0
  172. catalystwan/integration_tests/profile_builder/test_pb_service.py +197 -0
  173. catalystwan/integration_tests/profile_builder/test_pb_transport.py +226 -0
  174. catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +277 -0
  175. catalystwan/integration_tests/test_data/__init__.py +117 -0
  176. catalystwan/integration_tests/test_find_template_values.py +7 -18
  177. catalystwan/integration_tests/test_network_hierarchy.py +82 -0
  178. catalystwan/integration_tests/test_settings.py +30 -0
  179. catalystwan/models/common.py +1898 -2
  180. catalystwan/models/configuration/common.py +1 -0
  181. catalystwan/models/configuration/feature_profile/common.py +634 -149
  182. catalystwan/models/configuration/feature_profile/parcel.py +238 -0
  183. catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +13 -0
  184. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +298 -0
  185. catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +344 -0
  186. catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +218 -0
  187. catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +61 -0
  188. catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +31 -0
  189. catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +102 -0
  190. catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +1057 -0
  191. catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +23 -0
  192. catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +18 -0
  193. catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +15 -0
  194. catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +13 -0
  195. catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +110 -0
  196. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +23 -0
  197. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +493 -0
  198. catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +171 -0
  199. catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +25 -0
  200. catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +44 -0
  201. catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +147 -0
  202. catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +110 -0
  203. catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +62 -48
  204. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +34 -20
  205. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +8 -6
  206. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +22 -0
  207. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +7 -5
  208. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +13 -4
  209. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +9 -7
  210. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +34 -0
  211. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +7 -5
  212. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +15 -0
  213. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +254 -0
  214. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +11 -9
  215. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +25 -10
  216. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +27 -0
  217. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +15 -0
  218. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +15 -0
  219. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policier.py → policer.py} +12 -10
  220. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +29 -10
  221. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +23 -8
  222. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +21 -0
  223. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +12 -31
  224. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +16 -10
  225. catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +8 -7
  226. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +64 -0
  227. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +79 -0
  228. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +8 -6
  229. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +7 -5
  230. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +7 -5
  231. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +7 -5
  232. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +30 -0
  233. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +58 -0
  234. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +7 -5
  235. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +7 -5
  236. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +72 -0
  237. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +7 -5
  238. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +137 -0
  239. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +26 -0
  240. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +21 -11
  241. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +126 -0
  242. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +165 -0
  243. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -10
  244. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +148 -0
  245. catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +14 -18
  246. catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +26 -0
  247. catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +609 -0
  248. catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospf.py +55 -47
  249. catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospfv3.py +74 -72
  250. catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +91 -0
  251. catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +76 -41
  252. catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +107 -64
  253. catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +26 -0
  254. catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +39 -42
  255. catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +7 -88
  256. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +231 -155
  257. catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +38 -108
  258. catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +77 -84
  259. catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +101 -0
  260. catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +62 -56
  261. catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +111 -120
  262. catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +56 -57
  263. catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +15 -21
  264. catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +358 -110
  265. catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +38 -0
  266. catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +17 -25
  267. catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +50 -58
  268. catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +12 -21
  269. catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +27 -31
  270. catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +19 -0
  271. catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +379 -0
  272. catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +59 -0
  273. catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +58 -10
  274. catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +30 -0
  275. catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +290 -0
  276. catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +69 -0
  277. catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +157 -0
  278. catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +157 -0
  279. catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +163 -0
  280. catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +162 -0
  281. catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +75 -0
  282. catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +103 -0
  283. catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +120 -0
  284. catalystwan/models/configuration/feature_profile/sdwan/system/security.py +179 -0
  285. catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +173 -0
  286. catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +29 -0
  287. catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +425 -0
  288. catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +60 -0
  289. catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +23 -0
  290. catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +36 -0
  291. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +96 -0
  292. catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +63 -0
  293. catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +93 -0
  294. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +26 -23
  295. catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +71 -0
  296. catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +37 -0
  297. catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +121 -0
  298. catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +124 -0
  299. catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +285 -0
  300. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +173 -0
  301. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +389 -0
  302. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +46 -0
  303. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +137 -0
  304. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +219 -0
  305. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +405 -0
  306. catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +195 -0
  307. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +62 -0
  308. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +436 -0
  309. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +179 -0
  310. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +380 -0
  311. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +193 -0
  312. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +17 -0
  313. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +51 -0
  314. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +86 -0
  315. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +69 -0
  316. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +42 -0
  317. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +31 -0
  318. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +26 -0
  319. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +57 -0
  320. catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +40 -0
  321. catalystwan/models/configuration/network_hierarchy/__init__.py +22 -0
  322. catalystwan/models/configuration/network_hierarchy/cflowd.py +120 -0
  323. catalystwan/models/configuration/network_hierarchy/node.py +88 -0
  324. catalystwan/models/configuration/policy_group.py +74 -0
  325. catalystwan/models/configuration/profile_type.py +1 -6
  326. catalystwan/models/configuration/topology_group.py +52 -0
  327. catalystwan/models/policy/__init__.py +275 -69
  328. catalystwan/models/policy/centralized.py +26 -29
  329. catalystwan/models/policy/{definitions → definition}/access_control_list.py +47 -17
  330. catalystwan/models/policy/{definitions → definition}/access_control_list_ipv6.py +42 -18
  331. catalystwan/models/policy/definition/aip.py +60 -0
  332. catalystwan/models/policy/definition/amp.py +65 -0
  333. catalystwan/models/policy/definition/app_route.py +246 -0
  334. catalystwan/models/policy/definition/cflowd.py +95 -0
  335. catalystwan/models/policy/{definitions → definition}/control.py +48 -25
  336. catalystwan/models/policy/{definitions → definition}/device_access.py +22 -11
  337. catalystwan/models/policy/{definitions → definition}/device_access_ipv6.py +20 -11
  338. catalystwan/models/policy/definition/dial_peer.py +60 -0
  339. catalystwan/models/policy/definition/dns_security.py +130 -0
  340. catalystwan/models/policy/definition/fxo_port.py +63 -0
  341. catalystwan/models/policy/definition/fxs_did_port.py +58 -0
  342. catalystwan/models/policy/definition/fxs_port.py +56 -0
  343. catalystwan/models/policy/{definitions → definition}/hub_and_spoke.py +18 -4
  344. catalystwan/models/policy/definition/intrusion_prevention.py +55 -0
  345. catalystwan/models/policy/{definitions → definition}/mesh.py +13 -1
  346. catalystwan/models/policy/definition/pri_isdn_port.py +48 -0
  347. catalystwan/models/policy/{definitions → definition}/qos_map.py +39 -32
  348. catalystwan/models/policy/{definitions → definition}/rewrite.py +12 -2
  349. catalystwan/models/policy/definition/route_policy.py +187 -0
  350. catalystwan/models/policy/{definitions → definition}/rule_set.py +66 -48
  351. catalystwan/models/policy/{definitions → definition}/security_group.py +38 -14
  352. catalystwan/models/policy/definition/srst_phone_profile.py +37 -0
  353. catalystwan/models/policy/definition/ssl_decryption.py +209 -0
  354. catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +87 -0
  355. catalystwan/models/policy/{definitions → definition}/traffic_data.py +184 -61
  356. catalystwan/models/policy/definition/url_filtering.py +70 -0
  357. catalystwan/models/policy/{definitions → definition}/vpn_membership.py +13 -1
  358. catalystwan/models/policy/definition/vpn_qos_map.py +46 -0
  359. catalystwan/models/policy/{definitions → definition}/zone_based_firewall.py +93 -32
  360. catalystwan/models/policy/list/app.py +44 -0
  361. catalystwan/models/policy/list/app_probe.py +42 -0
  362. catalystwan/models/policy/list/as_path.py +30 -0
  363. catalystwan/models/policy/list/class_map.py +30 -0
  364. catalystwan/models/policy/list/color.py +28 -0
  365. catalystwan/models/policy/list/communities.py +83 -0
  366. catalystwan/models/policy/list/data_ipv6_prefix.py +30 -0
  367. catalystwan/models/policy/list/data_prefix.py +30 -0
  368. catalystwan/models/policy/list/fax_protocol.py +45 -0
  369. catalystwan/models/policy/list/fqdn.py +24 -0
  370. catalystwan/models/policy/list/geo_location.py +33 -0
  371. catalystwan/models/policy/list/identity.py +29 -0
  372. catalystwan/models/policy/list/ips_signature.py +27 -0
  373. catalystwan/models/policy/list/ipv6_prefix.py +33 -0
  374. catalystwan/models/policy/list/local_app.py +45 -0
  375. catalystwan/models/policy/list/local_domain.py +36 -0
  376. catalystwan/models/policy/list/media_profile.py +44 -0
  377. catalystwan/models/policy/list/mirror.py +27 -0
  378. catalystwan/models/policy/list/modem_pass_through.py +27 -0
  379. catalystwan/models/policy/list/policer.py +39 -0
  380. catalystwan/models/policy/list/port.py +33 -0
  381. catalystwan/models/policy/list/preferred_color_group.py +82 -0
  382. catalystwan/models/policy/list/prefix.py +33 -0
  383. catalystwan/models/policy/list/protocol_name.py +26 -0
  384. catalystwan/models/policy/list/region.py +45 -0
  385. catalystwan/models/policy/list/scalable_group_tag.py +30 -0
  386. catalystwan/models/policy/list/site.py +34 -0
  387. catalystwan/models/policy/list/sla.py +77 -0
  388. catalystwan/models/policy/list/supervisory_disconnect.py +62 -0
  389. catalystwan/models/policy/list/threat_grid_api_key.py +32 -0
  390. catalystwan/models/policy/list/tloc.py +32 -0
  391. catalystwan/models/policy/list/translation_profile.py +32 -0
  392. catalystwan/models/policy/list/translation_rules.py +29 -0
  393. catalystwan/models/policy/list/trunkgroup.py +56 -0
  394. catalystwan/models/policy/list/umbrella_data.py +30 -0
  395. catalystwan/models/policy/list/url.py +39 -0
  396. catalystwan/models/policy/list/vpn.py +40 -0
  397. catalystwan/models/policy/list/zone.py +46 -0
  398. catalystwan/models/policy/localized.py +34 -16
  399. catalystwan/models/policy/policy.py +13 -9
  400. catalystwan/models/policy/policy_definition.py +673 -173
  401. catalystwan/models/policy/policy_list.py +38 -27
  402. catalystwan/models/policy/security.py +145 -46
  403. catalystwan/models/policy/voice.py +77 -0
  404. catalystwan/models/settings.py +41 -0
  405. catalystwan/models/templates.py +79 -0
  406. catalystwan/response.py +6 -2
  407. catalystwan/session.py +1 -1
  408. catalystwan/tests/builders/test_report.py +60 -0
  409. catalystwan/tests/builders/uc_voice.py +85 -0
  410. catalystwan/tests/models/__init__.py +0 -0
  411. catalystwan/tests/models/test_digital_interface.py +56 -0
  412. catalystwan/tests/templates/definitions/aaa_basic.json +96 -0
  413. catalystwan/tests/templates/definitions/aaa_complex.json +464 -0
  414. catalystwan/tests/templates/definitions/{iuo.json → cisco_aaa.json} +44 -15
  415. catalystwan/tests/templates/definitions/cisco_aaa_complex.json +361 -0
  416. catalystwan/tests/templates/definitions/cisco_logging_complex.json +268 -0
  417. catalystwan/tests/templates/definitions/cisco_ntp_complex.json +143 -0
  418. catalystwan/tests/templates/definitions/cisco_omp_complex.json +175 -0
  419. catalystwan/tests/templates/definitions/cisco_ospf_complex.json +302 -0
  420. catalystwan/tests/templates/definitions/cisco_sig.json +405 -0
  421. catalystwan/tests/templates/definitions/cisco_snmp_complex.json +258 -0
  422. catalystwan/tests/templates/definitions/cisco_system_complex.json +502 -0
  423. catalystwan/tests/templates/definitions/{Basic_Cisco_VPN_Model.json → cisco_vpn_basic.json} +2 -2
  424. catalystwan/tests/templates/definitions/{complex_cisco_vpn.json → cisco_vpn_complex.json} +27 -12
  425. catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +821 -0
  426. catalystwan/tests/templates/definitions/omp_vsmart_1.json +26 -0
  427. catalystwan/tests/templates/definitions/{omp_2.json → omp_vsmart_2.json} +16 -2
  428. catalystwan/tests/templates/definitions/{omp_3.json → omp_vsmart_3.json} +16 -2
  429. catalystwan/tests/templates/definitions/omp_vsmart_complex.json +73 -0
  430. catalystwan/tests/templates/definitions/security_vsmart_complex.json +24 -0
  431. catalystwan/tests/templates/definitions/system_vsmart_complex.json +193 -0
  432. catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +17 -0
  433. catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +179 -0
  434. catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +42 -0
  435. catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +208 -0
  436. catalystwan/tests/templates/models/__init__.py +46 -13
  437. catalystwan/tests/templates/models/aaa.py +106 -0
  438. catalystwan/tests/templates/models/cisco_aaa.py +81 -48
  439. catalystwan/tests/templates/models/cisco_banner.py +2 -2
  440. catalystwan/tests/templates/models/cisco_bfd.py +4 -6
  441. catalystwan/tests/templates/models/cisco_logging.py +65 -0
  442. catalystwan/tests/templates/models/cisco_ntp.py +17 -0
  443. catalystwan/tests/templates/models/cisco_omp.py +37 -0
  444. catalystwan/tests/templates/models/cisco_ospf.py +60 -0
  445. catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +95 -0
  446. catalystwan/tests/templates/models/cisco_snmp.py +40 -0
  447. catalystwan/tests/templates/models/cisco_system.py +108 -3
  448. catalystwan/tests/templates/models/cisco_vpn.py +42 -72
  449. catalystwan/tests/templates/models/cisco_vpn_interface.py +200 -0
  450. catalystwan/tests/templates/models/omp_vsmart.py +28 -8
  451. catalystwan/tests/templates/models/security_vsmart.py +11 -0
  452. catalystwan/tests/templates/models/system_vsmart.py +37 -0
  453. catalystwan/tests/templates/models/vpn_vsmart.py +32 -0
  454. catalystwan/tests/templates/models/vpn_vsmart_interface.py +54 -0
  455. catalystwan/tests/templates/schemas/aaa.json +1096 -0
  456. catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
  457. catalystwan/tests/templates/schemas/cisco_logging.json +577 -0
  458. catalystwan/tests/templates/schemas/cisco_ntp.json +265 -0
  459. catalystwan/tests/templates/schemas/cisco_omp.json +479 -0
  460. catalystwan/tests/templates/schemas/cisco_ospf.json +908 -0
  461. catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +1520 -0
  462. catalystwan/tests/templates/schemas/cisco_snmp.json +561 -0
  463. catalystwan/tests/templates/schemas/cisco_system.json +242 -0
  464. catalystwan/tests/templates/schemas/cisco_vpn.json +53 -1
  465. catalystwan/tests/templates/schemas/cisco_vpn_interface.json +3348 -0
  466. catalystwan/tests/templates/schemas/omp-vsmart.json +20 -0
  467. catalystwan/tests/templates/schemas/security-vsmart.json +58 -0
  468. catalystwan/tests/templates/schemas/system-vsmart.json +2585 -0
  469. catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +859 -0
  470. catalystwan/tests/templates/schemas/vpn-vsmart.json +445 -0
  471. catalystwan/tests/templates/test_chose_model.py +6 -10
  472. catalystwan/tests/templates/test_deserialize_model.py +4 -4
  473. catalystwan/tests/templates/test_find_template_values.py +229 -0
  474. catalystwan/tests/templates/test_find_template_values_2.py +193 -0
  475. catalystwan/tests/templates/test_serialize_model.py +1 -2
  476. catalystwan/tests/test_cli_template.py +8 -9
  477. catalystwan/tests/test_endpoints.py +42 -11
  478. catalystwan/tests/test_feature_profile_api.py +282 -0
  479. catalystwan/tests/test_models_common.py +53 -0
  480. catalystwan/tests/test_templates.py +16 -19
  481. catalystwan/utils/feature_template/find_template_values.py +17 -4
  482. catalystwan/utils/model.py +45 -0
  483. catalystwan/utils/persona.py +5 -0
  484. catalystwan/utils/type_check.py +22 -0
  485. catalystwan/workflows/backup_restore_device_templates.py +467 -0
  486. catalystwan/workflows/tenant_migration.py +1 -1
  487. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev1.dist-info}/METADATA +20 -1
  488. catalystwan-0.41.2.dev1.dist-info/RECORD +636 -0
  489. catalystwan/ENDPOINTS.md +0 -611
  490. catalystwan/api/configuration_groups/parcels/cellular_controller.py +0 -33
  491. catalystwan/api/templates/device_template/device_template_payload.json.j2 +0 -19
  492. catalystwan/models/configuration/config_migration.py +0 -36
  493. catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +0 -26
  494. catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +0 -409
  495. catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +0 -288
  496. catalystwan/models/policy/lists.py +0 -330
  497. catalystwan/models/policy/lists_entries.py +0 -444
  498. catalystwan/tests/templates/definitions/complex_aaa.json +0 -277
  499. catalystwan/tests/templates/definitions/omp_1.json +0 -11
  500. catalystwan/utils/timezone.py +0 -422
  501. catalystwan-0.41.2.dist-info/RECORD +0 -353
  502. /catalystwan/tests/templates/definitions/{banner_1.json → cisco_banner.json} +0 -0
  503. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev1.dist-info}/LICENSE +0 -0
  504. {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,3348 @@
1
+ {
2
+ "name": "Interface",
3
+ "xmlPath": [],
4
+ "xmlRootTag": "interface",
5
+ "parentPath": "</vpn-instance>",
6
+ "uniqueKey": "if-name",
7
+ "nameSpace": "http://viptela.com/vpn",
8
+ "fields": [
9
+ {
10
+ "key": "if-name",
11
+ "description": "Interface Name",
12
+ "details": "Interface name: ge0/<0-..> or ge0/<0-..>.vlanid or irb<bridgeid:1-63> or loopback<string> or natpool-<1..31> when present",
13
+ "optionType": [
14
+ "constant",
15
+ "variable"
16
+ ],
17
+ "defaultOption": "constant",
18
+ "dataType": {
19
+ "type": "string",
20
+ "regex": "(ge|Ethernet|GigabitEthernet|mgmt|Cellular|Serial|Vlan|Multilink|ATM|DIALER|TenGigabitEthernet|TwoGigabitEthernet|FiveGigabitEthernet|TwentyFiveGigabitEthernet|TwentyFiveGigE|HundredGigE|FortyGigabitEthernet|FastEthernet|Loopback|ipsec|gre|VirtualPortGroup|Tunnel)([0-9]*(. ?[1-9][0-9]*)*|[0-9/]+|[0-9]+/[0-9]+/[0-9]+:[0-9]+|[0-9]+/[0-9]+/[0-9]+|[0-9]+/[0-9]+|[0-9]+)",
21
+ "minLength": 1,
22
+ "maxLength": 32
23
+ },
24
+ "dataPath": [],
25
+ "objectType": "object"
26
+ },
27
+ {
28
+ "key": "description",
29
+ "description": "Description",
30
+ "details": "Interface description",
31
+ "optionType": [
32
+ "constant",
33
+ "variable",
34
+ "ignore"
35
+ ],
36
+ "defaultOption": "ignore",
37
+ "dataType": {
38
+ "type": "string",
39
+ "minLength": 1,
40
+ "maxLength": 128
41
+ },
42
+ "dataPath": [],
43
+ "objectType": "object"
44
+ },
45
+ {
46
+ "key": "poe",
47
+ "description": "Power Over Ethernet",
48
+ "details": "Configure interface as Power-over-Ethernet source",
49
+ "optionType": [
50
+ "constant",
51
+ "variable",
52
+ "ignore"
53
+ ],
54
+ "defaultOption": "ignore",
55
+ "dataType": {
56
+ "type": "boolean",
57
+ "default": "false"
58
+ },
59
+ "dataPath": [],
60
+ "objectType": "object",
61
+ "deviceModels": [
62
+ "vedge-100",
63
+ "vedge-ISR1100-4GLTE",
64
+ "vedge-ISR1100X-4G",
65
+ "vedge-100-W2",
66
+ "vedge-100-WM",
67
+ "vedge-100-M2",
68
+ "vedge-100-M",
69
+ "vedge-ISR1100-4G"
70
+ ]
71
+ },
72
+ {
73
+ "key": "address",
74
+ "description": "IPv4 Address/ prefix-length",
75
+ "details": "Assign IPv4 address",
76
+ "optionType": [
77
+ "constant",
78
+ "variable",
79
+ "ignore"
80
+ ],
81
+ "defaultOption": "ignore",
82
+ "dataType": {
83
+ "type": "ipv4-prefix"
84
+ },
85
+ "dataPath": [
86
+ "ip"
87
+ ],
88
+ "objectType": "object"
89
+ },
90
+ {
91
+ "key": "secondary-address",
92
+ "description": "Secondary IP Address",
93
+ "details": "Assign secondary IP addresses",
94
+ "optionType": [
95
+ "constant",
96
+ "ignore"
97
+ ],
98
+ "defaultOption": "ignore",
99
+ "dataPath": [
100
+ "ip"
101
+ ],
102
+ "objectType": "tree",
103
+ "maxElements": 4,
104
+ "primaryKeys": [
105
+ "address"
106
+ ],
107
+ "children": [
108
+ {
109
+ "key": "address",
110
+ "description": "IP Address",
111
+ "details": "IP Address",
112
+ "optionType": [
113
+ "constant",
114
+ "variable",
115
+ "ignore"
116
+ ],
117
+ "defaultOption": "ignore",
118
+ "dataType": {
119
+ "type": "ipv4-prefix"
120
+ },
121
+ "dataPath": [],
122
+ "objectType": "object"
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "key": "dhcp-client",
128
+ "description": "DHCP",
129
+ "details": "Enable DHCP",
130
+ "optionType": [
131
+ "constant",
132
+ "variable",
133
+ "ignore"
134
+ ],
135
+ "defaultOption": "ignore",
136
+ "dataType": {
137
+ "type": "boolean",
138
+ "default": "false"
139
+ },
140
+ "dataPath": [
141
+ "ip"
142
+ ],
143
+ "objectType": "object"
144
+ },
145
+ {
146
+ "key": "dhcp-distance",
147
+ "description": "DHCP Distance",
148
+ "details": "Set administrative distance for DHCP default route",
149
+ "optionType": [
150
+ "constant",
151
+ "variable",
152
+ "ignore"
153
+ ],
154
+ "defaultOption": "ignore",
155
+ "dataType": {
156
+ "type": "number",
157
+ "min": 1,
158
+ "max": 65536,
159
+ "default": 1
160
+ },
161
+ "dataPath": [
162
+ "ip"
163
+ ],
164
+ "objectType": "object"
165
+ },
166
+ {
167
+ "key": "address",
168
+ "description": "IPv6 Address",
169
+ "details": "Assign IPv6 address",
170
+ "optionType": [
171
+ "constant",
172
+ "variable",
173
+ "ignore"
174
+ ],
175
+ "defaultOption": "ignore",
176
+ "dataType": {
177
+ "type": "ipv6-prefix"
178
+ },
179
+ "dataPath": [
180
+ "ipv6"
181
+ ],
182
+ "objectType": "object"
183
+ },
184
+ {
185
+ "key": "dhcp-client",
186
+ "description": "DHCP",
187
+ "details": "Enable DHCPv6",
188
+ "optionType": [
189
+ "constant",
190
+ "variable",
191
+ "ignore"
192
+ ],
193
+ "defaultOption": "ignore",
194
+ "dataType": {
195
+ "type": "boolean",
196
+ "default": "false"
197
+ },
198
+ "dataPath": [
199
+ "ipv6"
200
+ ],
201
+ "objectType": "object"
202
+ },
203
+ {
204
+ "key": "secondary-address",
205
+ "description": "Secondary IPv6 Address",
206
+ "details": "Assign secondary IPv6 addresses",
207
+ "optionType": [
208
+ "constant",
209
+ "ignore"
210
+ ],
211
+ "defaultOption": "ignore",
212
+ "dataPath": [
213
+ "ipv6"
214
+ ],
215
+ "objectType": "tree",
216
+ "maxElements": 2,
217
+ "primaryKeys": [
218
+ "address"
219
+ ],
220
+ "children": [
221
+ {
222
+ "key": "address",
223
+ "description": "IPv6 Address",
224
+ "details": "IPv6 Address",
225
+ "optionType": [
226
+ "constant",
227
+ "variable",
228
+ "ignore"
229
+ ],
230
+ "defaultOption": "ignore",
231
+ "dataType": {
232
+ "type": "ipv6-prefix"
233
+ },
234
+ "dataPath": [],
235
+ "objectType": "object"
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "key": "access-list",
241
+ "description": "ACL IPv6",
242
+ "details": "Apply IPv6 access list",
243
+ "optionType": [
244
+ "constant",
245
+ "ignore"
246
+ ],
247
+ "defaultOption": "ignore",
248
+ "dataPath": [
249
+ "ipv6"
250
+ ],
251
+ "objectType": "tree",
252
+ "primaryKeys": [
253
+ "direction"
254
+ ],
255
+ "children": [
256
+ {
257
+ "key": "direction",
258
+ "description": "Direction",
259
+ "details": "Direction",
260
+ "optionType": [
261
+ "constant"
262
+ ],
263
+ "defaultOption": "constant",
264
+ "dataType": {
265
+ "type": "enum",
266
+ "values": [
267
+ {
268
+ "key": "in",
269
+ "value": "in"
270
+ },
271
+ {
272
+ "key": "out",
273
+ "value": "out"
274
+ }
275
+ ]
276
+ },
277
+ "dataPath": [],
278
+ "objectType": "object"
279
+ },
280
+ {
281
+ "key": "acl-name",
282
+ "description": "Access List",
283
+ "details": "Name of access list",
284
+ "optionType": [
285
+ "constant",
286
+ "variable"
287
+ ],
288
+ "defaultOption": "constant",
289
+ "dataType": {
290
+ "type": "string",
291
+ "minLength": 1,
292
+ "maxLength": 32
293
+ },
294
+ "dataPath": [],
295
+ "objectType": "object"
296
+ }
297
+ ]
298
+ },
299
+ {
300
+ "key": "dhcp-helper",
301
+ "description": "DHCP Helper",
302
+ "details": "List of DHCP IPv4 helper addresses",
303
+ "optionType": [
304
+ "constant",
305
+ "variable",
306
+ "ignore"
307
+ ],
308
+ "defaultOption": "ignore",
309
+ "minElements": 1,
310
+ "maxElements": 8,
311
+ "dataType": {
312
+ "type": "ipv4"
313
+ },
314
+ "dataPath": [],
315
+ "objectType": "list"
316
+ },
317
+ {
318
+ "key": "dhcp-helper-v6",
319
+ "description": "DHCPv6 Helper",
320
+ "details": "DHCPv6 Helper",
321
+ "optionType": [
322
+ "constant",
323
+ "variable",
324
+ "ignore"
325
+ ],
326
+ "defaultOption": "ignore",
327
+ "dataPath": [
328
+ "ipv6"
329
+ ],
330
+ "objectType": "tree",
331
+ "primaryKeys": [
332
+ "address"
333
+ ],
334
+ "minElements": 1,
335
+ "maxElements": 8,
336
+ "children": [
337
+ {
338
+ "key": "address",
339
+ "description": "DHCPv6 Helper",
340
+ "details": "DHCPv6 Helper address",
341
+ "optionType": [
342
+ "constant",
343
+ "variable"
344
+ ],
345
+ "defaultOption": "constant",
346
+ "dataType": {
347
+ "type": "ipv6"
348
+ },
349
+ "dataPath": [],
350
+ "objectType": "object"
351
+ },
352
+ {
353
+ "key": "vpn",
354
+ "description": "DHCPv6 Helper VPN",
355
+ "details": "DHCPv6 Helper VPN",
356
+ "optionType": [
357
+ "constant",
358
+ "variable",
359
+ "ignore"
360
+ ],
361
+ "defaultOption": "ignore",
362
+ "dataType": {
363
+ "type": "number",
364
+ "min": 1,
365
+ "max": 65536
366
+ },
367
+ "dataPath": [],
368
+ "objectType": "object"
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "key": "tracker",
374
+ "description": "Tracker",
375
+ "details": "Enable tracker for this interface",
376
+ "optionType": [
377
+ "constant",
378
+ "variable",
379
+ "ignore"
380
+ ],
381
+ "defaultOption": "ignore",
382
+ "dataType": {
383
+ "type": "string"
384
+ },
385
+ "dataPath": [],
386
+ "objectType": "list"
387
+ },
388
+ {
389
+ "key": "auto-bandwidth-detect",
390
+ "description": "Auto Detect Bandwidth",
391
+ "details": "Interface auto detect bandwidth",
392
+ "optionType": [
393
+ "constant",
394
+ "variable",
395
+ "ignore"
396
+ ],
397
+ "defaultOption": "ignore",
398
+ "dataType": {
399
+ "type": "boolean",
400
+ "default": "false"
401
+ },
402
+ "dataPath": [],
403
+ "objectType": "object"
404
+ },
405
+ {
406
+ "key": "iperf-server",
407
+ "description": "Iperf Server",
408
+ "details": "Iperf server for auto bandwidth detect",
409
+ "optionType": [
410
+ "constant",
411
+ "variable",
412
+ "ignore"
413
+ ],
414
+ "defaultOption": "ignore",
415
+ "dataType": {
416
+ "type": "ipv4"
417
+ },
418
+ "dataPath": [],
419
+ "objectType": "object"
420
+ },
421
+ {
422
+ "key": "nat",
423
+ "description": "NAT",
424
+ "details": "Network Address Translation on this interface",
425
+ "optionType": [
426
+ "constant",
427
+ "variable",
428
+ "ignore"
429
+ ],
430
+ "defaultOption": "ignore",
431
+ "dataType": {
432
+ "type": "boolean",
433
+ "default": "false"
434
+ },
435
+ "dataPath": [],
436
+ "objectType": "node-only"
437
+ },
438
+ {
439
+ "key": "nat-choice",
440
+ "description": "NAT Type",
441
+ "details": "NAT type",
442
+ "optionType": [
443
+ "constant",
444
+ "variable"
445
+ ],
446
+ "defaultOption": "constant",
447
+ "dataType": {
448
+ "type": "radioButtonList",
449
+ "default": "interface",
450
+ "values": [
451
+ {
452
+ "label": "Interface",
453
+ "value": "interface"
454
+ },
455
+ {
456
+ "label": "Pool",
457
+ "value": "pool"
458
+ },
459
+ {
460
+ "label": "Loopback",
461
+ "value": "loopback"
462
+ }
463
+ ]
464
+ },
465
+ "dataPath": [
466
+ "nat"
467
+ ],
468
+ "objectType": "object"
469
+ },
470
+ {
471
+ "key": "udp-timeout",
472
+ "description": "UDP Timeout",
473
+ "details": "Set NAT UDP session timeout, in minutes",
474
+ "optionType": [
475
+ "constant",
476
+ "variable",
477
+ "ignore"
478
+ ],
479
+ "defaultOption": "ignore",
480
+ "dataType": {
481
+ "type": "number",
482
+ "min": 1,
483
+ "max": 8947,
484
+ "default": 1
485
+ },
486
+ "dataPath": [
487
+ "nat"
488
+ ],
489
+ "objectType": "object"
490
+ },
491
+ {
492
+ "key": "tcp-timeout",
493
+ "description": "TCP Timeout",
494
+ "details": "Set NAT TCP session timeout, in minutes",
495
+ "optionType": [
496
+ "constant",
497
+ "variable",
498
+ "ignore"
499
+ ],
500
+ "defaultOption": "ignore",
501
+ "dataType": {
502
+ "type": "number",
503
+ "min": 1,
504
+ "max": 8947,
505
+ "default": 60
506
+ },
507
+ "dataPath": [
508
+ "nat"
509
+ ],
510
+ "objectType": "object"
511
+ },
512
+ {
513
+ "key": "range-start",
514
+ "description": "NAT Pool Range Start",
515
+ "details": "Starting IP address of NAT pool range",
516
+ "optionType": [
517
+ "constant",
518
+ "variable"
519
+ ],
520
+ "defaultOption": "constant",
521
+ "dataType": {
522
+ "type": "ipv4"
523
+ },
524
+ "dataPath": [
525
+ "nat",
526
+ "natpool"
527
+ ],
528
+ "objectType": "object"
529
+ },
530
+ {
531
+ "key": "range-end",
532
+ "description": "NAT Pool Range End",
533
+ "details": "Ending IP address of NAT pool range",
534
+ "optionType": [
535
+ "constant",
536
+ "variable"
537
+ ],
538
+ "defaultOption": "constant",
539
+ "dataType": {
540
+ "type": "ipv4"
541
+ },
542
+ "dataPath": [
543
+ "nat",
544
+ "natpool"
545
+ ],
546
+ "objectType": "object"
547
+ },
548
+ {
549
+ "key": "overload",
550
+ "description": "Overload",
551
+ "details": "Enable port translation(PAT)",
552
+ "optionType": [
553
+ "constant",
554
+ "variable",
555
+ "ignore"
556
+ ],
557
+ "defaultOption": "ignore",
558
+ "dataType": {
559
+ "type": "boolean",
560
+ "default": "true"
561
+ },
562
+ "dataPath": [
563
+ "nat"
564
+ ],
565
+ "objectType": "object"
566
+ },
567
+ {
568
+ "key": "loopback-interface",
569
+ "description": "NAT Inside Source Loopback Interface",
570
+ "details": "Configure NAT Inside Loopback Interface",
571
+ "optionType": [
572
+ "constant",
573
+ "variable",
574
+ "ignore"
575
+ ],
576
+ "defaultOption": "ignore",
577
+ "dataType": {
578
+ "type": "string",
579
+ "minLength": 1,
580
+ "maxLength": 32
581
+ },
582
+ "dataPath": [
583
+ "nat",
584
+ "interface"
585
+ ],
586
+ "objectType": "object"
587
+ },
588
+ {
589
+ "key": "prefix-length",
590
+ "description": "NAT Pool Prefix Length",
591
+ "details": "Ending IP address of NAT Pool Prefix Length",
592
+ "optionType": [
593
+ "constant",
594
+ "variable"
595
+ ],
596
+ "defaultOption": "constant",
597
+ "dataType": {
598
+ "type": "number"
599
+ },
600
+ "dataPath": [
601
+ "nat",
602
+ "natpool"
603
+ ],
604
+ "objectType": "object"
605
+ },
606
+ {
607
+ "key": "enable",
608
+ "description": "NAT64",
609
+ "details": "NAT64 on this interface",
610
+ "optionType": [
611
+ "constant",
612
+ "variable",
613
+ "ignore"
614
+ ],
615
+ "defaultOption": "ignore",
616
+ "dataType": {
617
+ "type": "boolean",
618
+ "default": "false"
619
+ },
620
+ "dataPath": [
621
+ "nat64"
622
+ ],
623
+ "objectType": "node-only"
624
+ },
625
+ {
626
+ "key": "nat64",
627
+ "description": "NAT64",
628
+ "details": "NAT64 on this interface",
629
+ "optionType": [
630
+ "constant",
631
+ "variable",
632
+ "ignore"
633
+ ],
634
+ "defaultOption": "ignore",
635
+ "dataType": {
636
+ "type": "boolean",
637
+ "default": "false"
638
+ },
639
+ "dataPath": [],
640
+ "objectType": "node-only"
641
+ },
642
+ {
643
+ "key": "nat66",
644
+ "description": "NAT66",
645
+ "details": "NAT66 on this interface",
646
+ "optionType": [
647
+ "constant",
648
+ "ignore"
649
+ ],
650
+ "defaultOption": "ignore",
651
+ "dataType": {
652
+ "type": "boolean",
653
+ "default": "false"
654
+ },
655
+ "dataPath": [],
656
+ "objectType": "node-only"
657
+ },
658
+ {
659
+ "key": "static-nat66",
660
+ "description": "Static Nat",
661
+ "details": "static NAT",
662
+ "optionType": [
663
+ "constant",
664
+ "variable"
665
+ ],
666
+ "defaultOption": "constant",
667
+ "dataPath": [
668
+ "nat66"
669
+ ],
670
+ "objectType": "tree",
671
+ "primaryKeys": [
672
+ "source-prefix",
673
+ "source-vpn-id"
674
+ ],
675
+ "children": [
676
+ {
677
+ "key": "source-prefix",
678
+ "description": "Source Prefix",
679
+ "details": "Source Prefix",
680
+ "optionType": [
681
+ "constant",
682
+ "variable",
683
+ "ignore"
684
+ ],
685
+ "defaultOption": "constant",
686
+ "dataType": {
687
+ "type": "ipv6-prefix"
688
+ },
689
+ "dataPath": [],
690
+ "objectType": "object"
691
+ },
692
+ {
693
+ "key": "translated-source-prefix",
694
+ "description": "Translated Source Prefix",
695
+ "details": "Translated Source Prefix",
696
+ "optionType": [
697
+ "constant",
698
+ "variable",
699
+ "ignore"
700
+ ],
701
+ "defaultOption": "constant",
702
+ "dataType": {
703
+ "type": "string"
704
+ },
705
+ "dataPath": [],
706
+ "objectType": "object"
707
+ },
708
+ {
709
+ "key": "source-vpn-id",
710
+ "description": "Source VPN ID",
711
+ "details": "Source VPN ID",
712
+ "optionType": [
713
+ "constant",
714
+ "variable",
715
+ "ignore"
716
+ ],
717
+ "defaultOption": "constant",
718
+ "dataType": {
719
+ "type": "number",
720
+ "min": 0,
721
+ "max": 65530,
722
+ "default": 0
723
+ },
724
+ "dataPath": [],
725
+ "objectType": "object"
726
+ },
727
+ {
728
+ "key": "egress-interface",
729
+ "description": "Egress Interface",
730
+ "details": "Egress Interface",
731
+ "optionType": [
732
+ "constant",
733
+ "variable",
734
+ "ignore"
735
+ ],
736
+ "defaultOption": "ignore",
737
+ "dataType": {
738
+ "type": "boolean",
739
+ "default": "false",
740
+ "label": {
741
+ "on": "Yes",
742
+ "off": "No"
743
+ }
744
+ },
745
+ "dataPath": [],
746
+ "objectType": "object"
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "key": "static",
752
+ "description": "Static Rules",
753
+ "details": "Configure static NAT entries",
754
+ "optionType": [
755
+ "constant",
756
+ "variable",
757
+ "ignore"
758
+ ],
759
+ "defaultOption": "ignore",
760
+ "dataPath": [
761
+ "nat"
762
+ ],
763
+ "objectType": "tree",
764
+ "primaryKeys": [
765
+ "source-ip",
766
+ "translate-ip"
767
+ ],
768
+ "children": [
769
+ {
770
+ "key": "source-ip",
771
+ "description": "Source IP Address",
772
+ "details": "Source IP address to be translated",
773
+ "optionType": [
774
+ "constant",
775
+ "variable"
776
+ ],
777
+ "defaultOption": "constant",
778
+ "dataType": {
779
+ "type": "ipv4"
780
+ },
781
+ "dataPath": [],
782
+ "objectType": "object"
783
+ },
784
+ {
785
+ "key": "translate-ip",
786
+ "description": "Translated Source IP Address",
787
+ "details": "Statically translated source IP address",
788
+ "optionType": [
789
+ "constant",
790
+ "variable"
791
+ ],
792
+ "defaultOption": "constant",
793
+ "dataType": {
794
+ "type": "ipv4"
795
+ },
796
+ "dataPath": [],
797
+ "objectType": "object"
798
+ },
799
+ {
800
+ "key": "static-nat-direction",
801
+ "description": "Static NAT Direction",
802
+ "details": "Direction of static NAT translation",
803
+ "optionType": [
804
+ "constant",
805
+ "variable",
806
+ "notIgnore"
807
+ ],
808
+ "defaultOption": "notIgnore",
809
+ "dataType": {
810
+ "type": "enum",
811
+ "values": [
812
+ {
813
+ "key": "inside",
814
+ "value": "Inside"
815
+ },
816
+ {
817
+ "key": "outside",
818
+ "value": "Outside"
819
+ }
820
+ ],
821
+ "default": "inside"
822
+ },
823
+ "dataPath": [],
824
+ "objectType": "object"
825
+ },
826
+ {
827
+ "key": "source-vpn",
828
+ "description": "Source VPN ID",
829
+ "details": "Configure VPN ID",
830
+ "optionType": [
831
+ "constant",
832
+ "variable",
833
+ "ignore"
834
+ ],
835
+ "defaultOption": "ignore",
836
+ "dataType": {
837
+ "type": "number",
838
+ "min": 0,
839
+ "max": 65530,
840
+ "default": 0
841
+ },
842
+ "dataPath": [],
843
+ "objectType": "object"
844
+ }
845
+ ]
846
+ },
847
+ {
848
+ "key": "static-port-forward",
849
+ "description": "Port Forward",
850
+ "details": "Configure Port Forward entries",
851
+ "optionType": [
852
+ "constant",
853
+ "variable",
854
+ "ignore"
855
+ ],
856
+ "defaultOption": "ignore",
857
+ "dataPath": [
858
+ "nat"
859
+ ],
860
+ "objectType": "tree",
861
+ "primaryKeys": [
862
+ "source-ip",
863
+ "translate-ip",
864
+ "proto",
865
+ "source-port",
866
+ "translate-port"
867
+ ],
868
+ "children": [
869
+ {
870
+ "key": "source-ip",
871
+ "description": "Source IP Address",
872
+ "details": "Source IP address to be translated",
873
+ "optionType": [
874
+ "constant",
875
+ "variable"
876
+ ],
877
+ "defaultOption": "constant",
878
+ "dataType": {
879
+ "type": "ipv4"
880
+ },
881
+ "dataPath": [],
882
+ "objectType": "object"
883
+ },
884
+ {
885
+ "key": "translate-ip",
886
+ "description": "Translated Source IP Address",
887
+ "details": "Statically translated source IP address",
888
+ "optionType": [
889
+ "constant",
890
+ "variable"
891
+ ],
892
+ "defaultOption": "constant",
893
+ "dataType": {
894
+ "type": "ipv4"
895
+ },
896
+ "dataPath": [],
897
+ "objectType": "object"
898
+ },
899
+ {
900
+ "key": "static-nat-direction",
901
+ "description": "Static NAT Direction",
902
+ "details": "Direction of static NAT translation",
903
+ "optionType": [
904
+ "constant",
905
+ "variable",
906
+ "notIgnore"
907
+ ],
908
+ "defaultOption": "notIgnore",
909
+ "dataType": {
910
+ "type": "enum",
911
+ "values": [
912
+ {
913
+ "key": "inside",
914
+ "value": "Inside"
915
+ },
916
+ {
917
+ "key": "outside",
918
+ "value": "Outside"
919
+ }
920
+ ],
921
+ "default": "inside"
922
+ },
923
+ "dataPath": [],
924
+ "objectType": "object"
925
+ },
926
+ {
927
+ "key": "source-port",
928
+ "description": "Source Port",
929
+ "details": "Source Port",
930
+ "optionType": [
931
+ "constant",
932
+ "variable"
933
+ ],
934
+ "defaultOption": "constant",
935
+ "dataType": {
936
+ "type": "number",
937
+ "default": 0,
938
+ "min": 0,
939
+ "max": 65535
940
+ },
941
+ "dataPath": [],
942
+ "objectType": "object"
943
+ },
944
+ {
945
+ "key": "translate-port",
946
+ "description": "Translate Port",
947
+ "details": "Translate Port",
948
+ "optionType": [
949
+ "constant",
950
+ "variable"
951
+ ],
952
+ "defaultOption": "constant",
953
+ "dataType": {
954
+ "type": "number",
955
+ "default": 0,
956
+ "min": 0,
957
+ "max": 65535
958
+ },
959
+ "dataPath": [],
960
+ "objectType": "object"
961
+ },
962
+ {
963
+ "key": "proto",
964
+ "description": "Protocol",
965
+ "details": "Protocol",
966
+ "optionType": [
967
+ "constant",
968
+ "variable"
969
+ ],
970
+ "defaultOption": "constant",
971
+ "dataType": {
972
+ "type": "enum",
973
+ "values": [
974
+ {
975
+ "key": "tcp",
976
+ "value": "TCP"
977
+ },
978
+ {
979
+ "key": "udp",
980
+ "value": "UDP"
981
+ }
982
+ ]
983
+ },
984
+ "dataPath": [],
985
+ "objectType": "object"
986
+ },
987
+ {
988
+ "key": "source-vpn",
989
+ "description": "Source VPN ID",
990
+ "details": "Configure VPN ID",
991
+ "optionType": [
992
+ "constant",
993
+ "variable",
994
+ "ignore"
995
+ ],
996
+ "defaultOption": "ignore",
997
+ "dataType": {
998
+ "type": "number",
999
+ "min": 0,
1000
+ "max": 65530,
1001
+ "default": 0
1002
+ },
1003
+ "dataPath": [],
1004
+ "objectType": "object"
1005
+ }
1006
+ ]
1007
+ },
1008
+ {
1009
+ "key": "enable-core-region",
1010
+ "description": "Enable Core Region",
1011
+ "details": "Enable core region",
1012
+ "optionType": [
1013
+ "constant",
1014
+ "ignore"
1015
+ ],
1016
+ "defaultOption": "ignore",
1017
+ "dataType": {
1018
+ "type": "boolean",
1019
+ "default": "false",
1020
+ "label": {
1021
+ "on": "On",
1022
+ "off": "Off"
1023
+ }
1024
+ },
1025
+ "dataPath": [
1026
+ "tunnel-interface"
1027
+ ],
1028
+ "objectType": "object"
1029
+ },
1030
+ {
1031
+ "key": "core-region",
1032
+ "description": "Core Region",
1033
+ "details": "Enable core region",
1034
+ "optionType": [
1035
+ "constant",
1036
+ "variable",
1037
+ "ignore"
1038
+ ],
1039
+ "defaultOption": "ignore",
1040
+ "dataType": {
1041
+ "type": "enum",
1042
+ "values": [
1043
+ {
1044
+ "key": "core",
1045
+ "value": "Only in Core Region"
1046
+ },
1047
+ {
1048
+ "key": "core-shared",
1049
+ "value": "Shared Between Core and Primary Regions"
1050
+ }
1051
+ ],
1052
+ "default": "core"
1053
+ },
1054
+ "dataPath": [
1055
+ "tunnel-interface"
1056
+ ],
1057
+ "objectType": "object"
1058
+ },
1059
+ {
1060
+ "key": "secondary-region",
1061
+ "description": "Enable Secondary Region",
1062
+ "details": "Enable secondary region",
1063
+ "optionType": [
1064
+ "constant",
1065
+ "variable",
1066
+ "ignore"
1067
+ ],
1068
+ "defaultOption": "ignore",
1069
+ "dataType": {
1070
+ "type": "enum",
1071
+ "values": [
1072
+ {
1073
+ "key": "off",
1074
+ "value": "Off"
1075
+ },
1076
+ {
1077
+ "key": "secondary-only",
1078
+ "value": "Only in Secondary Region"
1079
+ },
1080
+ {
1081
+ "key": "secondary-shared",
1082
+ "value": "Shared Between Primary and Secondary Regions"
1083
+ }
1084
+ ],
1085
+ "default": "off"
1086
+ },
1087
+ "dataPath": [
1088
+ "tunnel-interface"
1089
+ ],
1090
+ "objectType": "object"
1091
+ },
1092
+ {
1093
+ "key": "encapsulation",
1094
+ "description": "Encapsulation",
1095
+ "details": "Encapsulation for TLOC",
1096
+ "optionType": [
1097
+ "constant",
1098
+ "variable"
1099
+ ],
1100
+ "defaultOption": "constant",
1101
+ "dataPath": [
1102
+ "tunnel-interface"
1103
+ ],
1104
+ "objectType": "tree",
1105
+ "primaryKeys": [
1106
+ "encap"
1107
+ ],
1108
+ "children": [
1109
+ {
1110
+ "key": "encap",
1111
+ "description": "Encapsulation",
1112
+ "details": "Encapsulation",
1113
+ "optionType": [
1114
+ "constant"
1115
+ ],
1116
+ "defaultOption": "constant",
1117
+ "dataType": {
1118
+ "type": "enum",
1119
+ "values": [
1120
+ {
1121
+ "key": "gre",
1122
+ "value": "gre"
1123
+ },
1124
+ {
1125
+ "key": "ipsec",
1126
+ "value": "ipsec"
1127
+ }
1128
+ ]
1129
+ },
1130
+ "dataPath": [],
1131
+ "objectType": "object"
1132
+ },
1133
+ {
1134
+ "key": "preference",
1135
+ "description": "Preference",
1136
+ "details": "Set preference for TLOC",
1137
+ "optionType": [
1138
+ "constant",
1139
+ "variable",
1140
+ "ignore"
1141
+ ],
1142
+ "defaultOption": "ignore",
1143
+ "dataType": {
1144
+ "type": "number",
1145
+ "min": 0,
1146
+ "max": 4294967295
1147
+ },
1148
+ "dataPath": [],
1149
+ "objectType": "object"
1150
+ },
1151
+ {
1152
+ "key": "weight",
1153
+ "description": "Weight",
1154
+ "details": "Set weight for TLOC",
1155
+ "optionType": [
1156
+ "constant",
1157
+ "variable",
1158
+ "ignore"
1159
+ ],
1160
+ "defaultOption": "ignore",
1161
+ "dataType": {
1162
+ "type": "number",
1163
+ "min": 1,
1164
+ "max": 255,
1165
+ "default": 1
1166
+ },
1167
+ "dataPath": [],
1168
+ "objectType": "object"
1169
+ }
1170
+ ]
1171
+ },
1172
+ {
1173
+ "key": "border",
1174
+ "description": "Border",
1175
+ "details": "Set TLOC as border TLOC",
1176
+ "optionType": [
1177
+ "constant",
1178
+ "variable",
1179
+ "ignore"
1180
+ ],
1181
+ "defaultOption": "ignore",
1182
+ "dataType": {
1183
+ "type": "boolean",
1184
+ "default": "false"
1185
+ },
1186
+ "dataPath": [
1187
+ "tunnel-interface"
1188
+ ],
1189
+ "objectType": "object"
1190
+ },
1191
+ {
1192
+ "key": "per-tunnel-qos",
1193
+ "description": "Per-tunnel Qos",
1194
+ "details": "Per-tunnel Qos",
1195
+ "optionType": [
1196
+ "constant",
1197
+ "variable",
1198
+ "notIgnore"
1199
+ ],
1200
+ "defaultOption": "notIgnore",
1201
+ "dataType": {
1202
+ "type": "boolean",
1203
+ "default": "false"
1204
+ },
1205
+ "dataPath": [],
1206
+ "objectType": "object"
1207
+ },
1208
+ {
1209
+ "key": "per-tunnel-qos-aggregator",
1210
+ "description": "Per-tunnel QoS Aggregator",
1211
+ "details": "Per-tunnel QoS Aggregator",
1212
+ "optionType": [
1213
+ "constant",
1214
+ "variable",
1215
+ "notIgnore"
1216
+ ],
1217
+ "defaultOption": "notIgnore",
1218
+ "dataType": {
1219
+ "type": "boolean",
1220
+ "default": "false"
1221
+ },
1222
+ "dataPath": [],
1223
+ "objectType": "object"
1224
+ },
1225
+ {
1226
+ "key": "mode",
1227
+ "description": "Set tunnel QoS mode",
1228
+ "details": "Set tunnel QoS mode",
1229
+ "optionType": [
1230
+ "constant",
1231
+ "variable",
1232
+ "notIgnore"
1233
+ ],
1234
+ "defaultOption": "notIgnore",
1235
+ "dataType": {
1236
+ "type": "enum",
1237
+ "values": [
1238
+ {
1239
+ "key": "hub",
1240
+ "value": "hub"
1241
+ },
1242
+ {
1243
+ "key": "spoke",
1244
+ "value": "spoke"
1245
+ }
1246
+ ]
1247
+ },
1248
+ "dataPath": [
1249
+ "tunnel-interface",
1250
+ "tunnel-qos"
1251
+ ],
1252
+ "objectType": "object"
1253
+ },
1254
+ {
1255
+ "key": "tunnels-bandwidth",
1256
+ "description": "Tunnels Bandwidth Percent",
1257
+ "details": "Tunnels Bandwidth Percent",
1258
+ "optionType": [
1259
+ "constant",
1260
+ "variable",
1261
+ "notIgnore"
1262
+ ],
1263
+ "defaultOption": "notIgnore",
1264
+ "dataType": {
1265
+ "type": "number",
1266
+ "min": 1,
1267
+ "max": 99,
1268
+ "default": 50
1269
+ },
1270
+ "dataPath": [
1271
+ "tunnel-interface"
1272
+ ],
1273
+ "objectType": "object"
1274
+ },
1275
+ {
1276
+ "key": "group",
1277
+ "description": "Groups",
1278
+ "details": "List of groups",
1279
+ "optionType": [
1280
+ "constant",
1281
+ "variable",
1282
+ "ignore"
1283
+ ],
1284
+ "defaultOption": "ignore",
1285
+ "dataType": {
1286
+ "type": "number",
1287
+ "min": 1,
1288
+ "max": 4294967295
1289
+ },
1290
+ "dataPath": [
1291
+ "tunnel-interface"
1292
+ ],
1293
+ "objectType": "list"
1294
+ },
1295
+ {
1296
+ "key": "value",
1297
+ "description": "Color",
1298
+ "details": "Set color for TLOC",
1299
+ "optionType": [
1300
+ "constant",
1301
+ "variable",
1302
+ "ignore"
1303
+ ],
1304
+ "defaultOption": "ignore",
1305
+ "dataType": {
1306
+ "type": "enum",
1307
+ "values": [
1308
+ {
1309
+ "key": "default",
1310
+ "value": "default"
1311
+ },
1312
+ {
1313
+ "key": "mpls",
1314
+ "value": "mpls"
1315
+ },
1316
+ {
1317
+ "key": "metro-ethernet",
1318
+ "value": "metro-ethernet"
1319
+ },
1320
+ {
1321
+ "key": "biz-internet",
1322
+ "value": "biz-internet"
1323
+ },
1324
+ {
1325
+ "key": "public-internet",
1326
+ "value": "public-internet"
1327
+ },
1328
+ {
1329
+ "key": "lte",
1330
+ "value": "lte"
1331
+ },
1332
+ {
1333
+ "key": "3g",
1334
+ "value": "3g"
1335
+ },
1336
+ {
1337
+ "key": "red",
1338
+ "value": "red"
1339
+ },
1340
+ {
1341
+ "key": "green",
1342
+ "value": "green"
1343
+ },
1344
+ {
1345
+ "key": "blue",
1346
+ "value": "blue"
1347
+ },
1348
+ {
1349
+ "key": "gold",
1350
+ "value": "gold"
1351
+ },
1352
+ {
1353
+ "key": "silver",
1354
+ "value": "silver"
1355
+ },
1356
+ {
1357
+ "key": "bronze",
1358
+ "value": "bronze"
1359
+ },
1360
+ {
1361
+ "key": "custom1",
1362
+ "value": "custom1"
1363
+ },
1364
+ {
1365
+ "key": "custom2",
1366
+ "value": "custom2"
1367
+ },
1368
+ {
1369
+ "key": "custom3",
1370
+ "value": "custom3"
1371
+ },
1372
+ {
1373
+ "key": "private1",
1374
+ "value": "private1"
1375
+ },
1376
+ {
1377
+ "key": "private2",
1378
+ "value": "private2"
1379
+ },
1380
+ {
1381
+ "key": "private3",
1382
+ "value": "private3"
1383
+ },
1384
+ {
1385
+ "key": "private4",
1386
+ "value": "private4"
1387
+ },
1388
+ {
1389
+ "key": "private5",
1390
+ "value": "private5"
1391
+ },
1392
+ {
1393
+ "key": "private6",
1394
+ "value": "private6"
1395
+ }
1396
+ ],
1397
+ "default": "default"
1398
+ },
1399
+ "dataPath": [
1400
+ "tunnel-interface",
1401
+ "color"
1402
+ ],
1403
+ "objectType": "object"
1404
+ },
1405
+ {
1406
+ "key": "max-control-connections",
1407
+ "description": "Maximum Control Connections",
1408
+ "details": "Set the maximum number of control connections for this TLOC",
1409
+ "optionType": [
1410
+ "constant",
1411
+ "variable",
1412
+ "ignore"
1413
+ ],
1414
+ "defaultOption": "ignore",
1415
+ "dataType": {
1416
+ "type": "number",
1417
+ "min": 0,
1418
+ "max": 100
1419
+ },
1420
+ "dataPath": [
1421
+ "tunnel-interface"
1422
+ ],
1423
+ "objectType": "object"
1424
+ },
1425
+ {
1426
+ "key": "control-connections",
1427
+ "description": "Control Connection",
1428
+ "details": "Allow Control Connection",
1429
+ "optionType": [
1430
+ "constant",
1431
+ "variable",
1432
+ "ignore"
1433
+ ],
1434
+ "defaultOption": "ignore",
1435
+ "dataType": {
1436
+ "type": "boolean",
1437
+ "default": "true"
1438
+ },
1439
+ "dataPath": [
1440
+ "tunnel-interface"
1441
+ ],
1442
+ "objectType": "object",
1443
+ "objectStatus": "deprecated"
1444
+ },
1445
+ {
1446
+ "key": "vbond-as-stun-server",
1447
+ "description": "vBond As Stun Server",
1448
+ "details": "Put this wan interface in STUN mode only",
1449
+ "optionType": [
1450
+ "constant",
1451
+ "variable",
1452
+ "ignore"
1453
+ ],
1454
+ "defaultOption": "ignore",
1455
+ "dataType": {
1456
+ "type": "boolean",
1457
+ "default": "false"
1458
+ },
1459
+ "dataPath": [
1460
+ "tunnel-interface"
1461
+ ],
1462
+ "objectType": "object"
1463
+ },
1464
+ {
1465
+ "key": "exclude-controller-group-list",
1466
+ "description": "Exclude Controller Group List",
1467
+ "details": "Exclude the following controller groups defined in this list",
1468
+ "optionType": [
1469
+ "constant",
1470
+ "variable",
1471
+ "ignore"
1472
+ ],
1473
+ "defaultOption": "ignore",
1474
+ "dataType": {
1475
+ "type": "number",
1476
+ "min": 0,
1477
+ "max": 100
1478
+ },
1479
+ "dataPath": [
1480
+ "tunnel-interface"
1481
+ ],
1482
+ "objectType": "list"
1483
+ },
1484
+ {
1485
+ "key": "vmanage-connection-preference",
1486
+ "description": "vManage Connection Preference",
1487
+ "details": "Set interface preference for control connection to vManage <0..8>",
1488
+ "optionType": [
1489
+ "constant",
1490
+ "variable",
1491
+ "ignore"
1492
+ ],
1493
+ "defaultOption": "ignore",
1494
+ "dataType": {
1495
+ "type": "number",
1496
+ "min": 0,
1497
+ "max": 8,
1498
+ "default": 5
1499
+ },
1500
+ "dataPath": [
1501
+ "tunnel-interface"
1502
+ ],
1503
+ "objectType": "object"
1504
+ },
1505
+ {
1506
+ "key": "port-hop",
1507
+ "description": "Port Hop",
1508
+ "details": "Disallow port hopping on the tunnel interface",
1509
+ "optionType": [
1510
+ "constant",
1511
+ "variable",
1512
+ "ignore"
1513
+ ],
1514
+ "defaultOption": "ignore",
1515
+ "dataType": {
1516
+ "type": "boolean",
1517
+ "default": "true"
1518
+ },
1519
+ "dataPath": [
1520
+ "tunnel-interface"
1521
+ ],
1522
+ "objectType": "object"
1523
+ },
1524
+ {
1525
+ "key": "restrict",
1526
+ "description": "Restrict",
1527
+ "details": "Restrict this TLOC behavior",
1528
+ "optionType": [
1529
+ "constant",
1530
+ "variable",
1531
+ "ignore"
1532
+ ],
1533
+ "defaultOption": "ignore",
1534
+ "dataType": {
1535
+ "type": "boolean",
1536
+ "default": "false"
1537
+ },
1538
+ "dataPath": [
1539
+ "tunnel-interface",
1540
+ "color"
1541
+ ],
1542
+ "objectType": "node-only"
1543
+ },
1544
+ {
1545
+ "key": "dst-ip",
1546
+ "description": "GRE tunnel destination IP",
1547
+ "details": "Extend the TLOC to a remote node over GRE tunnel",
1548
+ "optionType": [
1549
+ "constant",
1550
+ "variable",
1551
+ "ignore"
1552
+ ],
1553
+ "defaultOption": "ignore",
1554
+ "dataType": {
1555
+ "type": "ipv4"
1556
+ },
1557
+ "dataPath": [
1558
+ "tunnel-interface",
1559
+ "tloc-extension-gre-to"
1560
+ ],
1561
+ "objectType": "object"
1562
+ },
1563
+ {
1564
+ "key": "carrier",
1565
+ "description": "Carrier",
1566
+ "details": "Set carrier for TLOC",
1567
+ "optionType": [
1568
+ "constant",
1569
+ "variable",
1570
+ "ignore"
1571
+ ],
1572
+ "defaultOption": "ignore",
1573
+ "dataType": {
1574
+ "type": "enum",
1575
+ "values": [
1576
+ {
1577
+ "key": "default",
1578
+ "value": "default"
1579
+ },
1580
+ {
1581
+ "key": "carrier1",
1582
+ "value": "carrier1"
1583
+ },
1584
+ {
1585
+ "key": "carrier2",
1586
+ "value": "carrier2"
1587
+ },
1588
+ {
1589
+ "key": "carrier3",
1590
+ "value": "carrier3"
1591
+ },
1592
+ {
1593
+ "key": "carrier4",
1594
+ "value": "carrier4"
1595
+ },
1596
+ {
1597
+ "key": "carrier5",
1598
+ "value": "carrier5"
1599
+ },
1600
+ {
1601
+ "key": "carrier6",
1602
+ "value": "carrier6"
1603
+ },
1604
+ {
1605
+ "key": "carrier7",
1606
+ "value": "carrier7"
1607
+ },
1608
+ {
1609
+ "key": "carrier8",
1610
+ "value": "carrier8"
1611
+ }
1612
+ ],
1613
+ "default": "default"
1614
+ },
1615
+ "dataPath": [
1616
+ "tunnel-interface"
1617
+ ],
1618
+ "objectType": "object"
1619
+ },
1620
+ {
1621
+ "key": "nat-refresh-interval",
1622
+ "description": "NAT Refresh Interval",
1623
+ "details": "Set time period of nat refresh packets <1...60> seconds",
1624
+ "optionType": [
1625
+ "constant",
1626
+ "variable",
1627
+ "ignore"
1628
+ ],
1629
+ "defaultOption": "ignore",
1630
+ "dataType": {
1631
+ "type": "number",
1632
+ "min": 1,
1633
+ "max": 60,
1634
+ "default": 5
1635
+ },
1636
+ "dataPath": [
1637
+ "tunnel-interface"
1638
+ ],
1639
+ "objectType": "object"
1640
+ },
1641
+ {
1642
+ "key": "hello-interval",
1643
+ "description": "Hello Interval",
1644
+ "details": "Set time period of control hello packets <100..600000> milli seconds",
1645
+ "optionType": [
1646
+ "constant",
1647
+ "variable",
1648
+ "ignore"
1649
+ ],
1650
+ "defaultOption": "ignore",
1651
+ "dataType": {
1652
+ "type": "number",
1653
+ "min": 100,
1654
+ "max": 600000,
1655
+ "default": 1000
1656
+ },
1657
+ "dataPath": [
1658
+ "tunnel-interface"
1659
+ ],
1660
+ "objectType": "object"
1661
+ },
1662
+ {
1663
+ "key": "hello-tolerance",
1664
+ "description": "Hello Tolerance",
1665
+ "details": "Set tolerance of control hello packets <12..6000> seconds",
1666
+ "optionType": [
1667
+ "constant",
1668
+ "variable",
1669
+ "ignore"
1670
+ ],
1671
+ "defaultOption": "ignore",
1672
+ "dataType": {
1673
+ "type": "number",
1674
+ "min": 12,
1675
+ "max": 6000,
1676
+ "default": 12
1677
+ },
1678
+ "dataPath": [
1679
+ "tunnel-interface"
1680
+ ],
1681
+ "objectType": "object"
1682
+ },
1683
+ {
1684
+ "key": "bind",
1685
+ "description": "Bind Loopback Tunnel",
1686
+ "details": "Bind loopback tunnel interface to a physical interface",
1687
+ "optionType": [
1688
+ "constant",
1689
+ "variable",
1690
+ "ignore"
1691
+ ],
1692
+ "defaultOption": "ignore",
1693
+ "dataType": {
1694
+ "type": "string",
1695
+ "minLength": 1,
1696
+ "maxLength": 32
1697
+ },
1698
+ "dataPath": [
1699
+ "tunnel-interface"
1700
+ ],
1701
+ "objectType": "object"
1702
+ },
1703
+ {
1704
+ "key": "last-resort-circuit",
1705
+ "description": "Last-Resort Circuit",
1706
+ "details": "Set TLOC as last resort",
1707
+ "optionType": [
1708
+ "constant",
1709
+ "variable",
1710
+ "ignore"
1711
+ ],
1712
+ "defaultOption": "ignore",
1713
+ "dataType": {
1714
+ "type": "boolean",
1715
+ "default": "false"
1716
+ },
1717
+ "dataPath": [
1718
+ "tunnel-interface"
1719
+ ],
1720
+ "objectType": "object"
1721
+ },
1722
+ {
1723
+ "key": "low-bandwidth-link",
1724
+ "description": "Low-Bandwidth Link",
1725
+ "details": "Set the interface as a low-bandwidth circuit",
1726
+ "optionType": [
1727
+ "constant",
1728
+ "variable",
1729
+ "ignore"
1730
+ ],
1731
+ "defaultOption": "ignore",
1732
+ "dataType": {
1733
+ "type": "boolean",
1734
+ "default": "false"
1735
+ },
1736
+ "dataPath": [
1737
+ "tunnel-interface"
1738
+ ],
1739
+ "objectType": "object"
1740
+ },
1741
+ {
1742
+ "key": "tunnel-tcp-mss-adjust",
1743
+ "description": "Tunnel TCP MSS",
1744
+ "details": "Tunnel TCP MSS on SYN packets, in bytes",
1745
+ "optionType": [
1746
+ "constant",
1747
+ "variable",
1748
+ "ignore"
1749
+ ],
1750
+ "defaultOption": "ignore",
1751
+ "dataType": {
1752
+ "type": "number",
1753
+ "min": 500,
1754
+ "max": 1460
1755
+ },
1756
+ "dataPath": [
1757
+ "tunnel-interface"
1758
+ ],
1759
+ "objectType": "object"
1760
+ },
1761
+ {
1762
+ "key": "clear-dont-fragment",
1763
+ "description": "Clear-Dont-Fragment",
1764
+ "details": "Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)",
1765
+ "optionType": [
1766
+ "constant",
1767
+ "variable",
1768
+ "ignore"
1769
+ ],
1770
+ "defaultOption": "ignore",
1771
+ "dataType": {
1772
+ "type": "boolean",
1773
+ "default": "false"
1774
+ },
1775
+ "dataPath": [
1776
+ "tunnel-interface"
1777
+ ],
1778
+ "objectType": "object"
1779
+ },
1780
+ {
1781
+ "key": "propagate-sgt",
1782
+ "description": "CTS SGT Propagation",
1783
+ "details": "CTS SGT Propagation configuration",
1784
+ "optionType": [
1785
+ "constant",
1786
+ "variable",
1787
+ "ignore"
1788
+ ],
1789
+ "defaultOption": "ignore",
1790
+ "dataType": {
1791
+ "type": "boolean",
1792
+ "default": "false"
1793
+ },
1794
+ "dataPath": [
1795
+ "tunnel-interface"
1796
+ ],
1797
+ "objectType": "object"
1798
+ },
1799
+ {
1800
+ "key": "network-broadcast",
1801
+ "description": "Network Broadcast",
1802
+ "details": "Accept and respond to network-prefix-directed broadcasts)",
1803
+ "optionType": [
1804
+ "constant",
1805
+ "variable",
1806
+ "ignore"
1807
+ ],
1808
+ "defaultOption": "ignore",
1809
+ "dataType": {
1810
+ "type": "boolean",
1811
+ "default": "false"
1812
+ },
1813
+ "dataPath": [
1814
+ "tunnel-interface"
1815
+ ],
1816
+ "objectType": "object"
1817
+ },
1818
+ {
1819
+ "key": "all",
1820
+ "description": "All",
1821
+ "details": "Allow all traffic. Overrides all other allow-service options if allow-service all is set",
1822
+ "optionType": [
1823
+ "constant",
1824
+ "variable",
1825
+ "ignore"
1826
+ ],
1827
+ "defaultOption": "ignore",
1828
+ "dataType": {
1829
+ "type": "boolean",
1830
+ "default": "false"
1831
+ },
1832
+ "dataPath": [
1833
+ "tunnel-interface",
1834
+ "allow-service"
1835
+ ],
1836
+ "objectType": "object"
1837
+ },
1838
+ {
1839
+ "key": "bgp",
1840
+ "description": "BGP",
1841
+ "details": "Allow/deny BGP",
1842
+ "optionType": [
1843
+ "constant",
1844
+ "variable",
1845
+ "ignore"
1846
+ ],
1847
+ "defaultOption": "ignore",
1848
+ "dataType": {
1849
+ "type": "boolean",
1850
+ "default": "false"
1851
+ },
1852
+ "dataPath": [
1853
+ "tunnel-interface",
1854
+ "allow-service"
1855
+ ],
1856
+ "objectType": "object"
1857
+ },
1858
+ {
1859
+ "key": "dhcp",
1860
+ "description": "DHCP",
1861
+ "details": "Allow/Deny DHCP",
1862
+ "optionType": [
1863
+ "constant",
1864
+ "variable",
1865
+ "ignore"
1866
+ ],
1867
+ "defaultOption": "ignore",
1868
+ "dataType": {
1869
+ "type": "boolean",
1870
+ "default": "true"
1871
+ },
1872
+ "dataPath": [
1873
+ "tunnel-interface",
1874
+ "allow-service"
1875
+ ],
1876
+ "objectType": "object"
1877
+ },
1878
+ {
1879
+ "key": "dns",
1880
+ "description": "DNS",
1881
+ "details": "Allow/Deny DNS",
1882
+ "optionType": [
1883
+ "constant",
1884
+ "variable",
1885
+ "ignore"
1886
+ ],
1887
+ "defaultOption": "ignore",
1888
+ "dataType": {
1889
+ "type": "boolean",
1890
+ "default": "true"
1891
+ },
1892
+ "dataPath": [
1893
+ "tunnel-interface",
1894
+ "allow-service"
1895
+ ],
1896
+ "objectType": "object"
1897
+ },
1898
+ {
1899
+ "key": "icmp",
1900
+ "description": "ICMP",
1901
+ "details": "Allow/Deny ICMP",
1902
+ "optionType": [
1903
+ "constant",
1904
+ "variable",
1905
+ "ignore"
1906
+ ],
1907
+ "defaultOption": "ignore",
1908
+ "dataType": {
1909
+ "type": "boolean",
1910
+ "default": "true"
1911
+ },
1912
+ "dataPath": [
1913
+ "tunnel-interface",
1914
+ "allow-service"
1915
+ ],
1916
+ "objectType": "object"
1917
+ },
1918
+ {
1919
+ "key": "sshd",
1920
+ "description": "SSH",
1921
+ "details": "Allow/Deny SSH",
1922
+ "optionType": [
1923
+ "constant",
1924
+ "variable",
1925
+ "ignore"
1926
+ ],
1927
+ "defaultOption": "ignore",
1928
+ "dataType": {
1929
+ "type": "boolean",
1930
+ "default": "false"
1931
+ },
1932
+ "dataPath": [
1933
+ "tunnel-interface",
1934
+ "allow-service"
1935
+ ],
1936
+ "objectType": "object"
1937
+ },
1938
+ {
1939
+ "key": "netconf",
1940
+ "description": "NETCONF",
1941
+ "details": "Allow/Deny NETCONF",
1942
+ "optionType": [
1943
+ "constant",
1944
+ "variable",
1945
+ "ignore"
1946
+ ],
1947
+ "defaultOption": "ignore",
1948
+ "dataType": {
1949
+ "type": "boolean",
1950
+ "default": "false"
1951
+ },
1952
+ "dataPath": [
1953
+ "tunnel-interface",
1954
+ "allow-service"
1955
+ ],
1956
+ "objectType": "object"
1957
+ },
1958
+ {
1959
+ "key": "ntp",
1960
+ "description": "NTP",
1961
+ "details": "Allow/Deny NTP",
1962
+ "optionType": [
1963
+ "constant",
1964
+ "variable",
1965
+ "ignore"
1966
+ ],
1967
+ "defaultOption": "ignore",
1968
+ "dataType": {
1969
+ "type": "boolean",
1970
+ "default": "false"
1971
+ },
1972
+ "dataPath": [
1973
+ "tunnel-interface",
1974
+ "allow-service"
1975
+ ],
1976
+ "objectType": "object"
1977
+ },
1978
+ {
1979
+ "key": "ospf",
1980
+ "description": "OSPF",
1981
+ "details": "Allow/Deny OSPF",
1982
+ "optionType": [
1983
+ "constant",
1984
+ "variable",
1985
+ "ignore"
1986
+ ],
1987
+ "defaultOption": "ignore",
1988
+ "dataType": {
1989
+ "type": "boolean",
1990
+ "default": "false"
1991
+ },
1992
+ "dataPath": [
1993
+ "tunnel-interface",
1994
+ "allow-service"
1995
+ ],
1996
+ "objectType": "object"
1997
+ },
1998
+ {
1999
+ "key": "stun",
2000
+ "description": "STUN",
2001
+ "details": "Allow/Deny STUN",
2002
+ "optionType": [
2003
+ "constant",
2004
+ "variable",
2005
+ "ignore"
2006
+ ],
2007
+ "defaultOption": "ignore",
2008
+ "dataType": {
2009
+ "type": "boolean",
2010
+ "default": "false"
2011
+ },
2012
+ "dataPath": [
2013
+ "tunnel-interface",
2014
+ "allow-service"
2015
+ ],
2016
+ "objectType": "object"
2017
+ },
2018
+ {
2019
+ "key": "snmp",
2020
+ "description": "SNMP",
2021
+ "details": "Allow/Deny SNMP",
2022
+ "optionType": [
2023
+ "constant",
2024
+ "variable",
2025
+ "ignore"
2026
+ ],
2027
+ "defaultOption": "ignore",
2028
+ "dataType": {
2029
+ "type": "boolean",
2030
+ "default": "false"
2031
+ },
2032
+ "dataPath": [
2033
+ "tunnel-interface",
2034
+ "allow-service"
2035
+ ],
2036
+ "objectType": "object"
2037
+ },
2038
+ {
2039
+ "key": "https",
2040
+ "description": "HTTPS",
2041
+ "details": "Allow/Deny Https",
2042
+ "optionType": [
2043
+ "constant",
2044
+ "variable",
2045
+ "ignore"
2046
+ ],
2047
+ "defaultOption": "ignore",
2048
+ "dataType": {
2049
+ "type": "boolean",
2050
+ "default": "true"
2051
+ },
2052
+ "dataPath": [
2053
+ "tunnel-interface",
2054
+ "allow-service"
2055
+ ],
2056
+ "objectType": "object"
2057
+ },
2058
+ {
2059
+ "key": "media-type",
2060
+ "description": "Media type",
2061
+ "details": "Media type",
2062
+ "optionType": [
2063
+ "constant",
2064
+ "variable",
2065
+ "ignore"
2066
+ ],
2067
+ "defaultOption": "ignore",
2068
+ "dataType": {
2069
+ "type": "enum",
2070
+ "values": [
2071
+ {
2072
+ "key": "auto-select",
2073
+ "value": "auto-select"
2074
+ },
2075
+ {
2076
+ "key": "rj45",
2077
+ "value": "rj45"
2078
+ },
2079
+ {
2080
+ "key": "sfp",
2081
+ "value": "sfp"
2082
+ }
2083
+ ]
2084
+ },
2085
+ "dataPath": [],
2086
+ "objectType": "object"
2087
+ },
2088
+ {
2089
+ "key": "intrf-mtu",
2090
+ "description": "Interface MTU",
2091
+ "details": "Interface MTU GigabitEthernet0 <1500..1518>, Other GigabitEthernet <1500..9216> in bytes",
2092
+ "optionType": [
2093
+ "constant",
2094
+ "variable",
2095
+ "ignore"
2096
+ ],
2097
+ "defaultOption": "ignore",
2098
+ "dataType": {
2099
+ "type": "number",
2100
+ "min": 1500,
2101
+ "max": 9216,
2102
+ "default": 1500
2103
+ },
2104
+ "dataPath": [],
2105
+ "objectType": "object"
2106
+ },
2107
+ {
2108
+ "key": "mtu",
2109
+ "description": "IP MTU",
2110
+ "details": "IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes",
2111
+ "optionType": [
2112
+ "constant",
2113
+ "variable",
2114
+ "ignore"
2115
+ ],
2116
+ "defaultOption": "ignore",
2117
+ "dataType": {
2118
+ "type": "number",
2119
+ "min": 576,
2120
+ "max": 9216,
2121
+ "default": 1500
2122
+ },
2123
+ "dataPath": [],
2124
+ "objectType": "object"
2125
+ },
2126
+ {
2127
+ "key": "tcp-mss-adjust",
2128
+ "description": "TCP MSS",
2129
+ "details": "TCP MSS on SYN packets, in bytes",
2130
+ "optionType": [
2131
+ "constant",
2132
+ "variable",
2133
+ "ignore"
2134
+ ],
2135
+ "defaultOption": "ignore",
2136
+ "dataType": {
2137
+ "type": "number",
2138
+ "min": 500,
2139
+ "max": 1460
2140
+ },
2141
+ "dataPath": [],
2142
+ "objectType": "object"
2143
+ },
2144
+ {
2145
+ "key": "tloc-extension",
2146
+ "description": "TLOC Extension",
2147
+ "details": "Extends a local TLOC to a remote node only for vpn 0",
2148
+ "optionType": [
2149
+ "constant",
2150
+ "variable",
2151
+ "ignore"
2152
+ ],
2153
+ "defaultOption": "ignore",
2154
+ "dataType": {
2155
+ "type": "tlocExtension"
2156
+ },
2157
+ "dataPath": [],
2158
+ "objectType": "object"
2159
+ },
2160
+ {
2161
+ "key": "load-interval",
2162
+ "description": "Load Interval",
2163
+ "details": "Interval for interface load calculation",
2164
+ "optionType": [
2165
+ "constant",
2166
+ "variable",
2167
+ "ignore"
2168
+ ],
2169
+ "defaultOption": "ignore",
2170
+ "dataType": {
2171
+ "type": "numberFixedInterval",
2172
+ "interval": 30,
2173
+ "min": 30,
2174
+ "max": 600,
2175
+ "default": 30
2176
+ },
2177
+ "dataPath": [],
2178
+ "objectType": "object"
2179
+ },
2180
+ {
2181
+ "key": "src-ip",
2182
+ "description": "GRE tunnel source IP",
2183
+ "details": "Extend remote TLOC over a GRE tunnel to a local WAN interface",
2184
+ "optionType": [
2185
+ "constant",
2186
+ "variable",
2187
+ "ignore"
2188
+ ],
2189
+ "defaultOption": "ignore",
2190
+ "dataType": {
2191
+ "type": "ipv4"
2192
+ },
2193
+ "dataPath": [
2194
+ "tloc-extension-gre-from"
2195
+ ],
2196
+ "objectType": "object"
2197
+ },
2198
+ {
2199
+ "key": "xconnect",
2200
+ "description": "Xconnect",
2201
+ "details": "Extend remote TLOC over a GRE tunnel to a local WAN interface",
2202
+ "optionType": [
2203
+ "constant",
2204
+ "variable",
2205
+ "ignore"
2206
+ ],
2207
+ "defaultOption": "ignore",
2208
+ "dataType": {
2209
+ "type": "xConnect"
2210
+ },
2211
+ "dataPath": [
2212
+ "tloc-extension-gre-from"
2213
+ ],
2214
+ "objectType": "object"
2215
+ },
2216
+ {
2217
+ "key": "mac-address",
2218
+ "description": "MAC Address",
2219
+ "details": "Set MAC-layer address",
2220
+ "optionType": [
2221
+ "constant",
2222
+ "variable",
2223
+ "ignore"
2224
+ ],
2225
+ "defaultOption": "ignore",
2226
+ "dataType": {
2227
+ "type": "mac"
2228
+ },
2229
+ "dataPath": [],
2230
+ "objectType": "object"
2231
+ },
2232
+ {
2233
+ "key": "speed",
2234
+ "description": "Speed",
2235
+ "details": "Set interface speed",
2236
+ "optionType": [
2237
+ "constant",
2238
+ "variable",
2239
+ "ignore"
2240
+ ],
2241
+ "defaultOption": "ignore",
2242
+ "dataType": {
2243
+ "type": "enum",
2244
+ "values": [
2245
+ {
2246
+ "key": "10",
2247
+ "value": "10"
2248
+ },
2249
+ {
2250
+ "key": "100",
2251
+ "value": "100"
2252
+ },
2253
+ {
2254
+ "key": "1000",
2255
+ "value": "1000"
2256
+ },
2257
+ {
2258
+ "key": "2500",
2259
+ "value": "2500"
2260
+ },
2261
+ {
2262
+ "key": "10000",
2263
+ "value": "10000"
2264
+ }
2265
+ ]
2266
+ },
2267
+ "dataPath": [],
2268
+ "objectType": "object"
2269
+ },
2270
+ {
2271
+ "key": "duplex",
2272
+ "description": "Duplex",
2273
+ "details": "Duplex mode",
2274
+ "optionType": [
2275
+ "constant",
2276
+ "variable",
2277
+ "ignore"
2278
+ ],
2279
+ "defaultOption": "ignore",
2280
+ "dataType": {
2281
+ "type": "enum",
2282
+ "values": [
2283
+ {
2284
+ "key": "full",
2285
+ "value": "full"
2286
+ },
2287
+ {
2288
+ "key": "half",
2289
+ "value": "half"
2290
+ },
2291
+ {
2292
+ "key": "auto",
2293
+ "value": "auto"
2294
+ }
2295
+ ]
2296
+ },
2297
+ "dataPath": [],
2298
+ "objectType": "object"
2299
+ },
2300
+ {
2301
+ "key": "shutdown",
2302
+ "description": "Shutdown",
2303
+ "details": "Administrative state",
2304
+ "optionType": [
2305
+ "constant",
2306
+ "variable",
2307
+ "ignore"
2308
+ ],
2309
+ "defaultOption": "ignore",
2310
+ "dataType": {
2311
+ "type": "boolean",
2312
+ "default": "true",
2313
+ "label": {
2314
+ "on": "Yes",
2315
+ "off": "No"
2316
+ }
2317
+ },
2318
+ "dataPath": [],
2319
+ "objectType": "object"
2320
+ },
2321
+ {
2322
+ "key": "arp-timeout",
2323
+ "description": "ARP Timeout",
2324
+ "details": "Timeout value for dynamically learned ARP entries, <0..2678400> seconds",
2325
+ "optionType": [
2326
+ "constant",
2327
+ "variable",
2328
+ "ignore"
2329
+ ],
2330
+ "defaultOption": "ignore",
2331
+ "dataType": {
2332
+ "type": "number",
2333
+ "min": 0,
2334
+ "max": 2147483,
2335
+ "default": 1200
2336
+ },
2337
+ "dataPath": [],
2338
+ "objectType": "object"
2339
+ },
2340
+ {
2341
+ "key": "autonegotiate",
2342
+ "description": "Autonegotiation",
2343
+ "details": "Link autonegotiation",
2344
+ "optionType": [
2345
+ "constant",
2346
+ "variable",
2347
+ "ignore"
2348
+ ],
2349
+ "defaultOption": "ignore",
2350
+ "dataType": {
2351
+ "type": "boolean"
2352
+ },
2353
+ "dataPath": [],
2354
+ "objectType": "object"
2355
+ },
2356
+ {
2357
+ "key": "ip-directed-broadcast",
2358
+ "description": "IP Directed-Broadcast",
2359
+ "details": "IP Directed-Broadcast",
2360
+ "optionType": [
2361
+ "constant",
2362
+ "variable",
2363
+ "ignore"
2364
+ ],
2365
+ "defaultOption": "ignore",
2366
+ "dataType": {
2367
+ "type": "boolean",
2368
+ "default": "false"
2369
+ },
2370
+ "dataPath": [],
2371
+ "objectType": "object"
2372
+ },
2373
+ {
2374
+ "key": "icmp-redirect-disable",
2375
+ "description": "ICMP/ICMPv6 Redirect Disable",
2376
+ "details": "Set this option to disable the icmp/icmpv6 redirect packets",
2377
+ "optionType": [
2378
+ "constant",
2379
+ "variable",
2380
+ "ignore"
2381
+ ],
2382
+ "defaultOption": "ignore",
2383
+ "dataType": {
2384
+ "type": "boolean",
2385
+ "default": "true",
2386
+ "label": {
2387
+ "on": "On",
2388
+ "off": "Off"
2389
+ }
2390
+ },
2391
+ "dataPath": [],
2392
+ "objectType": "object"
2393
+ },
2394
+ {
2395
+ "key": "qos-adaptive",
2396
+ "description": "Adaptive QoS",
2397
+ "details": "Adaptive QoS",
2398
+ "optionType": [
2399
+ "constant",
2400
+ "ignore"
2401
+ ],
2402
+ "defaultOption": "ignore",
2403
+ "dataType": {
2404
+ "type": "boolean",
2405
+ "default": "false"
2406
+ },
2407
+ "dataPath": [],
2408
+ "objectType": "object"
2409
+ },
2410
+ {
2411
+ "key": "period",
2412
+ "description": "Adapt Period(Minutes)",
2413
+ "details": "Periodic timer for adaptive QoS in minutes",
2414
+ "optionType": [
2415
+ "constant",
2416
+ "variable",
2417
+ "ignore"
2418
+ ],
2419
+ "defaultOption": "ignore",
2420
+ "dataType": {
2421
+ "type": "number",
2422
+ "min": 1,
2423
+ "max": 720,
2424
+ "default": 15
2425
+ },
2426
+ "dataPath": [
2427
+ "qos-adaptive"
2428
+ ],
2429
+ "objectType": "object"
2430
+ },
2431
+ {
2432
+ "key": "bandwidth-down",
2433
+ "description": "Default Downstream (Kbps)",
2434
+ "details": "Adaptive QoS default downstream bandwidth",
2435
+ "optionType": [
2436
+ "constant",
2437
+ "variable"
2438
+ ],
2439
+ "defaultOption": "constant",
2440
+ "dataType": {
2441
+ "type": "number",
2442
+ "min": 8,
2443
+ "max": 100000000
2444
+ },
2445
+ "dataPath": [
2446
+ "qos-adaptive",
2447
+ "downstream"
2448
+ ],
2449
+ "objectType": "object"
2450
+ },
2451
+ {
2452
+ "key": "dmin",
2453
+ "description": "Min Downstream (Kbps)",
2454
+ "details": "Downstream min bandwidth limit",
2455
+ "optionType": [
2456
+ "constant",
2457
+ "variable"
2458
+ ],
2459
+ "defaultOption": "constant",
2460
+ "dataType": {
2461
+ "type": "number",
2462
+ "min": 8,
2463
+ "max": 100000000
2464
+ },
2465
+ "dataPath": [
2466
+ "qos-adaptive",
2467
+ "downstream",
2468
+ "range"
2469
+ ],
2470
+ "objectType": "object"
2471
+ },
2472
+ {
2473
+ "key": "dmax",
2474
+ "description": "Max Downstream (Kbps)",
2475
+ "details": "Downstream max bandwidth limit",
2476
+ "optionType": [
2477
+ "constant",
2478
+ "variable"
2479
+ ],
2480
+ "defaultOption": "constant",
2481
+ "dataType": {
2482
+ "type": "number",
2483
+ "min": 8,
2484
+ "max": 100000000
2485
+ },
2486
+ "dataPath": [
2487
+ "qos-adaptive",
2488
+ "downstream",
2489
+ "range"
2490
+ ],
2491
+ "objectType": "object"
2492
+ },
2493
+ {
2494
+ "key": "bandwidth-up",
2495
+ "description": "Default Upstream (Kbps)",
2496
+ "details": "Adaptive QoS default upstream bandwidth",
2497
+ "optionType": [
2498
+ "constant",
2499
+ "variable"
2500
+ ],
2501
+ "defaultOption": "constant",
2502
+ "dataType": {
2503
+ "type": "number",
2504
+ "min": 8,
2505
+ "max": 100000000
2506
+ },
2507
+ "dataPath": [
2508
+ "qos-adaptive",
2509
+ "upstream"
2510
+ ],
2511
+ "objectType": "object"
2512
+ },
2513
+ {
2514
+ "key": "umin",
2515
+ "description": "Min Upstream (Kbps)",
2516
+ "details": "Upstream min bandwidth limit",
2517
+ "optionType": [
2518
+ "constant",
2519
+ "variable"
2520
+ ],
2521
+ "defaultOption": "constant",
2522
+ "dataType": {
2523
+ "type": "number",
2524
+ "min": 8,
2525
+ "max": 100000000
2526
+ },
2527
+ "dataPath": [
2528
+ "qos-adaptive",
2529
+ "upstream",
2530
+ "range"
2531
+ ],
2532
+ "objectType": "object"
2533
+ },
2534
+ {
2535
+ "key": "umax",
2536
+ "description": "Max Upstream (Kbps)",
2537
+ "details": "Upstream max bandwidth limit",
2538
+ "optionType": [
2539
+ "constant",
2540
+ "variable"
2541
+ ],
2542
+ "defaultOption": "constant",
2543
+ "dataType": {
2544
+ "type": "number",
2545
+ "min": 8,
2546
+ "max": 100000000
2547
+ },
2548
+ "dataPath": [
2549
+ "qos-adaptive",
2550
+ "upstream",
2551
+ "range"
2552
+ ],
2553
+ "objectType": "object"
2554
+ },
2555
+ {
2556
+ "key": "shaping-rate",
2557
+ "description": "Shaping Rate (Kbps)",
2558
+ "details": "1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps",
2559
+ "optionType": [
2560
+ "constant",
2561
+ "variable",
2562
+ "ignore"
2563
+ ],
2564
+ "defaultOption": "ignore",
2565
+ "dataType": {
2566
+ "type": "number",
2567
+ "min": 8,
2568
+ "max": 100000000
2569
+ },
2570
+ "dataPath": [],
2571
+ "objectType": "object"
2572
+ },
2573
+ {
2574
+ "key": "qos-map",
2575
+ "description": "QoS Map",
2576
+ "details": "Name of QoS map",
2577
+ "optionType": [
2578
+ "constant",
2579
+ "variable",
2580
+ "ignore"
2581
+ ],
2582
+ "defaultOption": "ignore",
2583
+ "dataType": {
2584
+ "type": "string",
2585
+ "minLength": 1,
2586
+ "maxLength": 128
2587
+ },
2588
+ "dataPath": [],
2589
+ "objectType": "object"
2590
+ },
2591
+ {
2592
+ "key": "qos-map-vpn",
2593
+ "description": "VPN QoS Map",
2594
+ "details": "Name of VPN QoS map",
2595
+ "optionType": [
2596
+ "constant",
2597
+ "variable",
2598
+ "ignore"
2599
+ ],
2600
+ "defaultOption": "ignore",
2601
+ "dataType": {
2602
+ "type": "string",
2603
+ "minLength": 1,
2604
+ "maxLength": 128
2605
+ },
2606
+ "dataPath": [],
2607
+ "objectType": "object"
2608
+ },
2609
+ {
2610
+ "key": "service-provider",
2611
+ "description": "Service Provider",
2612
+ "details": "Service Provider Name",
2613
+ "optionType": [
2614
+ "constant",
2615
+ "variable",
2616
+ "ignore"
2617
+ ],
2618
+ "defaultOption": "ignore",
2619
+ "dataType": {
2620
+ "type": "string",
2621
+ "min": 1,
2622
+ "max": 128
2623
+ },
2624
+ "dataPath": [],
2625
+ "objectType": "object"
2626
+ },
2627
+ {
2628
+ "key": "bandwidth-upstream",
2629
+ "description": "Bandwidth Upstream",
2630
+ "details": "Interface upstream bandwidth capacity, in kbps",
2631
+ "optionType": [
2632
+ "constant",
2633
+ "variable",
2634
+ "ignore"
2635
+ ],
2636
+ "defaultOption": "ignore",
2637
+ "dataType": {
2638
+ "type": "number",
2639
+ "min": 1,
2640
+ "max": 2147483647
2641
+ },
2642
+ "dataPath": [],
2643
+ "objectType": "object"
2644
+ },
2645
+ {
2646
+ "key": "bandwidth-downstream",
2647
+ "description": "Bandwidth Downstream",
2648
+ "details": "Interface downstream bandwidth capacity, in kbps",
2649
+ "optionType": [
2650
+ "constant",
2651
+ "variable",
2652
+ "ignore"
2653
+ ],
2654
+ "defaultOption": "ignore",
2655
+ "dataType": {
2656
+ "type": "number",
2657
+ "min": 1,
2658
+ "max": 2147483647
2659
+ },
2660
+ "dataPath": [],
2661
+ "objectType": "object"
2662
+ },
2663
+ {
2664
+ "key": "block-non-source-ip",
2665
+ "description": "Block Non Source IP",
2666
+ "details": "Block packets originating from IP address that is not from this source",
2667
+ "optionType": [
2668
+ "constant",
2669
+ "variable",
2670
+ "ignore"
2671
+ ],
2672
+ "defaultOption": "ignore",
2673
+ "dataType": {
2674
+ "type": "boolean",
2675
+ "default": "false",
2676
+ "label": {
2677
+ "on": "Yes",
2678
+ "off": "No"
2679
+ }
2680
+ },
2681
+ "dataPath": [],
2682
+ "objectType": "object"
2683
+ },
2684
+ {
2685
+ "key": "rule-name",
2686
+ "description": "Rewrite Rule",
2687
+ "details": "Name of rewrite rule",
2688
+ "optionType": [
2689
+ "constant",
2690
+ "variable",
2691
+ "ignore"
2692
+ ],
2693
+ "defaultOption": "ignore",
2694
+ "dataType": {
2695
+ "type": "string",
2696
+ "minLength": 1,
2697
+ "maxLength": 128
2698
+ },
2699
+ "dataPath": [
2700
+ "rewrite-rule"
2701
+ ],
2702
+ "objectType": "object"
2703
+ },
2704
+ {
2705
+ "key": "access-list",
2706
+ "description": "ACL",
2707
+ "details": "Apply ACL",
2708
+ "optionType": [
2709
+ "constant",
2710
+ "ignore"
2711
+ ],
2712
+ "defaultOption": "ignore",
2713
+ "dataPath": [],
2714
+ "objectType": "tree",
2715
+ "primaryKeys": [
2716
+ "direction"
2717
+ ],
2718
+ "children": [
2719
+ {
2720
+ "key": "direction",
2721
+ "description": "Direction",
2722
+ "details": "Direction",
2723
+ "optionType": [
2724
+ "constant"
2725
+ ],
2726
+ "defaultOption": "constant",
2727
+ "dataType": {
2728
+ "type": "enum",
2729
+ "values": [
2730
+ {
2731
+ "key": "in",
2732
+ "value": "in"
2733
+ },
2734
+ {
2735
+ "key": "out",
2736
+ "value": "out"
2737
+ }
2738
+ ]
2739
+ },
2740
+ "dataPath": [],
2741
+ "objectType": "object"
2742
+ },
2743
+ {
2744
+ "key": "acl-name",
2745
+ "description": "Access list",
2746
+ "details": "Name of access list",
2747
+ "optionType": [
2748
+ "constant",
2749
+ "variable"
2750
+ ],
2751
+ "defaultOption": "constant",
2752
+ "dataType": {
2753
+ "type": "string",
2754
+ "minLength": 1,
2755
+ "maxLength": 32
2756
+ },
2757
+ "dataPath": [],
2758
+ "objectType": "object"
2759
+ }
2760
+ ]
2761
+ },
2762
+ {
2763
+ "key": "ip",
2764
+ "description": "Static ARP",
2765
+ "details": "Configure static ARP entries",
2766
+ "optionType": [
2767
+ "constant",
2768
+ "ignore"
2769
+ ],
2770
+ "defaultOption": "ignore",
2771
+ "dataPath": [
2772
+ "arp"
2773
+ ],
2774
+ "objectType": "tree",
2775
+ "primaryKeys": [
2776
+ "addr"
2777
+ ],
2778
+ "children": [
2779
+ {
2780
+ "key": "addr",
2781
+ "description": "IP Address",
2782
+ "details": "IP Address",
2783
+ "optionType": [
2784
+ "constant",
2785
+ "variable"
2786
+ ],
2787
+ "defaultOption": "constant",
2788
+ "dataType": {
2789
+ "type": "ipv4"
2790
+ },
2791
+ "dataPath": [],
2792
+ "objectType": "object"
2793
+ },
2794
+ {
2795
+ "key": "mac",
2796
+ "description": "MAC address",
2797
+ "details": "MAC address",
2798
+ "optionType": [
2799
+ "constant",
2800
+ "variable"
2801
+ ],
2802
+ "defaultOption": "constant",
2803
+ "dataType": {
2804
+ "type": "mac"
2805
+ },
2806
+ "dataPath": [],
2807
+ "objectType": "object"
2808
+ }
2809
+ ]
2810
+ },
2811
+ {
2812
+ "key": "vrrp",
2813
+ "description": "VRRP",
2814
+ "details": "Enable VRRP",
2815
+ "optionType": [
2816
+ "constant",
2817
+ "ignore"
2818
+ ],
2819
+ "defaultOption": "ignore",
2820
+ "dataPath": [],
2821
+ "objectType": "tree",
2822
+ "primaryKeys": [
2823
+ "grp-id"
2824
+ ],
2825
+ "children": [
2826
+ {
2827
+ "key": "grp-id",
2828
+ "description": "Group ID",
2829
+ "details": "Group ID",
2830
+ "optionType": [
2831
+ "constant",
2832
+ "variable"
2833
+ ],
2834
+ "defaultOption": "constant",
2835
+ "dataType": {
2836
+ "type": "number",
2837
+ "min": 1,
2838
+ "max": 255
2839
+ },
2840
+ "dataPath": [],
2841
+ "objectType": "object"
2842
+ },
2843
+ {
2844
+ "key": "priority",
2845
+ "description": "Priority",
2846
+ "details": "Set priority",
2847
+ "optionType": [
2848
+ "constant",
2849
+ "variable",
2850
+ "ignore"
2851
+ ],
2852
+ "defaultOption": "ignore",
2853
+ "dataType": {
2854
+ "type": "number",
2855
+ "min": 1,
2856
+ "max": 254,
2857
+ "default": 100
2858
+ },
2859
+ "dataPath": [],
2860
+ "objectType": "object"
2861
+ },
2862
+ {
2863
+ "key": "timer",
2864
+ "description": "Timer (milliseconds)",
2865
+ "details": "Timer interval for successive advertisements, in milliseconds",
2866
+ "optionType": [
2867
+ "constant",
2868
+ "variable",
2869
+ "ignore"
2870
+ ],
2871
+ "defaultOption": "ignore",
2872
+ "dataType": {
2873
+ "type": "number",
2874
+ "min": 100,
2875
+ "max": 40950,
2876
+ "default": 1000
2877
+ },
2878
+ "dataPath": [],
2879
+ "objectType": "object"
2880
+ },
2881
+ {
2882
+ "key": "track-omp",
2883
+ "description": "Track OMP",
2884
+ "details": "Track OMP status",
2885
+ "optionType": [
2886
+ "constant",
2887
+ "ignore"
2888
+ ],
2889
+ "defaultOption": "ignore",
2890
+ "dataType": {
2891
+ "type": "boolean",
2892
+ "default": "false"
2893
+ },
2894
+ "dataPath": [],
2895
+ "objectType": "node-only"
2896
+ },
2897
+ {
2898
+ "key": "track-prefix-list",
2899
+ "description": "Track Prefix List",
2900
+ "details": "Track Prefix List",
2901
+ "optionType": [
2902
+ "constant",
2903
+ "variable",
2904
+ "ignore"
2905
+ ],
2906
+ "defaultOption": "ignore",
2907
+ "dataType": {
2908
+ "type": "string"
2909
+ },
2910
+ "dataPath": [],
2911
+ "objectType": "object"
2912
+ },
2913
+ {
2914
+ "key": "address",
2915
+ "description": "IP Address",
2916
+ "details": "Assign IP Address",
2917
+ "optionType": [
2918
+ "constant",
2919
+ "variable",
2920
+ "ignore"
2921
+ ],
2922
+ "defaultOption": "ignore",
2923
+ "dataType": {
2924
+ "type": "ipv4"
2925
+ },
2926
+ "dataPath": [
2927
+ "ipv4"
2928
+ ],
2929
+ "objectType": "object"
2930
+ },
2931
+ {
2932
+ "key": "ipv4-secondary",
2933
+ "description": "VRRP Secondary IP address",
2934
+ "details": "VRRP Secondary IP address",
2935
+ "optionType": [
2936
+ "constant",
2937
+ "ignore"
2938
+ ],
2939
+ "defaultOption": "ignore",
2940
+ "dataPath": [],
2941
+ "objectType": "tree",
2942
+ "primaryKeys": [
2943
+ "address"
2944
+ ],
2945
+ "children": [
2946
+ {
2947
+ "key": "address",
2948
+ "description": "VRRP Secondary IP address",
2949
+ "details": "VRRP Secondary IP address",
2950
+ "optionType": [
2951
+ "constant",
2952
+ "variable"
2953
+ ],
2954
+ "defaultOption": "constant",
2955
+ "dataType": {
2956
+ "type": "ipv4"
2957
+ },
2958
+ "dataPath": [],
2959
+ "objectType": "object"
2960
+ }
2961
+ ]
2962
+ },
2963
+ {
2964
+ "key": "tloc-change-pref",
2965
+ "description": "TLOC Preference Change",
2966
+ "details": "change TLOC preference",
2967
+ "optionType": [
2968
+ "constant",
2969
+ "ignore"
2970
+ ],
2971
+ "defaultOption": "ignore",
2972
+ "dataType": {
2973
+ "type": "boolean",
2974
+ "default": "false"
2975
+ },
2976
+ "dataPath": [],
2977
+ "objectType": "object"
2978
+ },
2979
+ {
2980
+ "key": "value",
2981
+ "description": "TLOC Preference Change Value",
2982
+ "details": "Set tloc preference change value",
2983
+ "optionType": [
2984
+ "constant",
2985
+ "variable"
2986
+ ],
2987
+ "defaultOption": "constant",
2988
+ "dataType": {
2989
+ "type": "number",
2990
+ "min": 1,
2991
+ "max": 4294967295
2992
+ },
2993
+ "dataPath": [],
2994
+ "objectType": "object"
2995
+ },
2996
+ {
2997
+ "key": "tracking-object",
2998
+ "description": "Object Tracker",
2999
+ "details": "tracking object for VRRP configuration",
3000
+ "optionType": [
3001
+ "constant",
3002
+ "ignore"
3003
+ ],
3004
+ "defaultOption": "ignore",
3005
+ "dataPath": [],
3006
+ "objectType": "tree",
3007
+ "primaryKeys": [
3008
+ "name"
3009
+ ],
3010
+ "children": [
3011
+ {
3012
+ "key": "name",
3013
+ "description": "Tracker ID",
3014
+ "details": "Tracker ID",
3015
+ "optionType": [
3016
+ "constant",
3017
+ "variable"
3018
+ ],
3019
+ "defaultOption": "constant",
3020
+ "dataType": {
3021
+ "type": "number",
3022
+ "min": 1,
3023
+ "max": 1000
3024
+ },
3025
+ "dataPath": [],
3026
+ "objectType": "object"
3027
+ },
3028
+ {
3029
+ "key": "track-action",
3030
+ "description": "Action",
3031
+ "details": "Track Action",
3032
+ "optionType": [
3033
+ "constant",
3034
+ "variable"
3035
+ ],
3036
+ "defaultOption": "constant",
3037
+ "dataType": {
3038
+ "type": "radioButtonList",
3039
+ "default": "decrement",
3040
+ "values": [
3041
+ {
3042
+ "label": "Decrement",
3043
+ "value": "decrement"
3044
+ },
3045
+ {
3046
+ "label": "Shutdown",
3047
+ "value": "shutdown"
3048
+ }
3049
+ ]
3050
+ },
3051
+ "dataPath": [],
3052
+ "objectType": "object"
3053
+ },
3054
+ {
3055
+ "key": "decrement",
3056
+ "description": "Decrement Value",
3057
+ "details": "Decrement Value for VRRP priority",
3058
+ "optionType": [
3059
+ "constant",
3060
+ "variable"
3061
+ ],
3062
+ "defaultOption": "constant",
3063
+ "dataType": {
3064
+ "type": "number",
3065
+ "min": 1,
3066
+ "max": 255
3067
+ },
3068
+ "dataPath": [],
3069
+ "objectType": "object"
3070
+ }
3071
+ ]
3072
+ }
3073
+ ]
3074
+ },
3075
+ {
3076
+ "key": "ipv6-vrrp",
3077
+ "description": "VRRP",
3078
+ "details": "Enable VRRP",
3079
+ "optionType": [
3080
+ "constant",
3081
+ "ignore"
3082
+ ],
3083
+ "defaultOption": "ignore",
3084
+ "dataPath": [],
3085
+ "objectType": "tree",
3086
+ "primaryKeys": [
3087
+ "grp-id"
3088
+ ],
3089
+ "children": [
3090
+ {
3091
+ "key": "grp-id",
3092
+ "description": "Group ID",
3093
+ "details": "Group ID",
3094
+ "optionType": [
3095
+ "constant",
3096
+ "variable"
3097
+ ],
3098
+ "defaultOption": "constant",
3099
+ "dataType": {
3100
+ "type": "number",
3101
+ "min": 1,
3102
+ "max": 255
3103
+ },
3104
+ "dataPath": [],
3105
+ "objectType": "object"
3106
+ },
3107
+ {
3108
+ "key": "priority",
3109
+ "description": "Priority",
3110
+ "details": "Set priority",
3111
+ "optionType": [
3112
+ "constant",
3113
+ "variable",
3114
+ "ignore"
3115
+ ],
3116
+ "defaultOption": "ignore",
3117
+ "dataType": {
3118
+ "type": "number",
3119
+ "min": 1,
3120
+ "max": 254,
3121
+ "default": 100
3122
+ },
3123
+ "dataPath": [],
3124
+ "objectType": "object"
3125
+ },
3126
+ {
3127
+ "key": "timer",
3128
+ "description": "Timer (milliseconds)",
3129
+ "details": "Timer interval for successive advertisements, in milliseconds",
3130
+ "optionType": [
3131
+ "constant",
3132
+ "variable",
3133
+ "ignore"
3134
+ ],
3135
+ "defaultOption": "ignore",
3136
+ "dataType": {
3137
+ "type": "number",
3138
+ "min": 100,
3139
+ "max": 40950,
3140
+ "default": 1000
3141
+ },
3142
+ "dataPath": [],
3143
+ "objectType": "object"
3144
+ },
3145
+ {
3146
+ "key": "track-omp",
3147
+ "description": "Track OMP",
3148
+ "details": "Track OMP status",
3149
+ "optionType": [
3150
+ "constant",
3151
+ "variable",
3152
+ "ignore"
3153
+ ],
3154
+ "defaultOption": "ignore",
3155
+ "dataType": {
3156
+ "type": "boolean",
3157
+ "default": "false"
3158
+ },
3159
+ "dataPath": [],
3160
+ "objectType": "node-only"
3161
+ },
3162
+ {
3163
+ "key": "track-prefix-list",
3164
+ "description": "Track Prefix List",
3165
+ "details": "Track Prefix List",
3166
+ "optionType": [
3167
+ "constant",
3168
+ "variable",
3169
+ "ignore"
3170
+ ],
3171
+ "defaultOption": "ignore",
3172
+ "dataType": {
3173
+ "type": "string",
3174
+ "regex": "^[a-zA-Z0-9-_]+$",
3175
+ "minLength": 1,
3176
+ "maxLength": 32
3177
+ },
3178
+ "dataPath": [],
3179
+ "objectType": "object"
3180
+ },
3181
+ {
3182
+ "key": "ipv6",
3183
+ "description": "IPv6",
3184
+ "details": "IPv6 VRRP",
3185
+ "optionType": [
3186
+ "constant",
3187
+ "ignore"
3188
+ ],
3189
+ "defaultOption": "ignore",
3190
+ "dataPath": [],
3191
+ "objectType": "tree",
3192
+ "primaryKeys": [
3193
+ "ipv6-link-local"
3194
+ ],
3195
+ "children": [
3196
+ {
3197
+ "key": "ipv6-link-local",
3198
+ "description": "Link Local IPv6 Address",
3199
+ "details": "Use link-local IPv6 Address",
3200
+ "optionType": [
3201
+ "constant",
3202
+ "variable"
3203
+ ],
3204
+ "defaultOption": "constant",
3205
+ "dataType": {
3206
+ "type": "ipv6"
3207
+ },
3208
+ "dataPath": [],
3209
+ "objectType": "object"
3210
+ },
3211
+ {
3212
+ "key": "prefix",
3213
+ "description": "Global IPv6 Prefix",
3214
+ "details": "Assign Global IPv6 Prefix",
3215
+ "optionType": [
3216
+ "constant",
3217
+ "variable",
3218
+ "ignore"
3219
+ ],
3220
+ "defaultOption": "ignore",
3221
+ "dataType": {
3222
+ "type": "ipv6-prefix"
3223
+ },
3224
+ "dataPath": [],
3225
+ "objectType": "object"
3226
+ }
3227
+ ]
3228
+ }
3229
+ ]
3230
+ },
3231
+ {
3232
+ "key": "sgt",
3233
+ "description": "Propagate",
3234
+ "details": "Enable/Disable CTS SGT propagation on an interface.",
3235
+ "optionType": [
3236
+ "constant",
3237
+ "ignore"
3238
+ ],
3239
+ "defaultOption": "constant",
3240
+ "dataType": {
3241
+ "type": "boolean",
3242
+ "default": "true"
3243
+ },
3244
+ "dataPath": [
3245
+ "trustsec",
3246
+ "propagate"
3247
+ ],
3248
+ "objectType": "object"
3249
+ },
3250
+ {
3251
+ "key": "sgt",
3252
+ "description": "Security Group Tag",
3253
+ "details": "SGT value between 2 and 65519.",
3254
+ "optionType": [
3255
+ "constant",
3256
+ "variable",
3257
+ "ignore"
3258
+ ],
3259
+ "defaultOption": "ignore",
3260
+ "dataType": {
3261
+ "type": "number",
3262
+ "min": 2,
3263
+ "max": 65519
3264
+ },
3265
+ "dataPath": [
3266
+ "trustsec",
3267
+ "static"
3268
+ ],
3269
+ "objectType": "object"
3270
+ },
3271
+ {
3272
+ "key": "trusted",
3273
+ "description": "Trusted",
3274
+ "details": "Indicates that the interface is trustworthy for CTS.",
3275
+ "optionType": [
3276
+ "constant",
3277
+ "ignore"
3278
+ ],
3279
+ "defaultOption": "constant",
3280
+ "dataType": {
3281
+ "type": "boolean",
3282
+ "default": "false"
3283
+ },
3284
+ "dataPath": [
3285
+ "trustsec",
3286
+ "static"
3287
+ ],
3288
+ "objectType": "node-only"
3289
+ },
3290
+ {
3291
+ "key": "enable",
3292
+ "description": "Enable SGT Propagation",
3293
+ "details": "Enables the interface for CTS SGT authorization and forwarding.",
3294
+ "optionType": [
3295
+ "constant",
3296
+ "ignore"
3297
+ ],
3298
+ "defaultOption": "ignore",
3299
+ "dataType": {
3300
+ "type": "boolean",
3301
+ "default": "false"
3302
+ },
3303
+ "dataPath": [
3304
+ "trustsec"
3305
+ ],
3306
+ "objectType": "object"
3307
+ },
3308
+ {
3309
+ "key": "enable",
3310
+ "description": "Enable Enforcement",
3311
+ "details": "Enable/Disable SGT Enforcement on an interface",
3312
+ "optionType": [
3313
+ "constant",
3314
+ "ignore"
3315
+ ],
3316
+ "defaultOption": "ignore",
3317
+ "dataType": {
3318
+ "type": "boolean"
3319
+ },
3320
+ "dataPath": [
3321
+ "trustsec",
3322
+ "enforcement"
3323
+ ],
3324
+ "objectType": "object"
3325
+ },
3326
+ {
3327
+ "key": "sgt",
3328
+ "description": "Enforcement Security Group Tag",
3329
+ "details": "SGT value between 2 and 65519.",
3330
+ "optionType": [
3331
+ "constant",
3332
+ "variable",
3333
+ "ignore"
3334
+ ],
3335
+ "defaultOption": "ignore",
3336
+ "dataType": {
3337
+ "type": "number",
3338
+ "min": 2,
3339
+ "max": 65519
3340
+ },
3341
+ "dataPath": [
3342
+ "trustsec",
3343
+ "enforcement"
3344
+ ],
3345
+ "objectType": "object"
3346
+ }
3347
+ ]
3348
+ }