catalystwan 0.41.2__py3-none-any.whl → 0.41.2.dev0__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.
- catalystwan/__init__.py +3 -2
- catalystwan/api/administration.py +13 -2
- catalystwan/api/api_container.py +4 -1
- catalystwan/api/builders/__init__.py +14 -0
- catalystwan/api/builders/feature_profiles/__init__.py +0 -0
- catalystwan/api/builders/feature_profiles/application_priority.py +58 -0
- catalystwan/api/builders/feature_profiles/builder_factory.py +59 -0
- catalystwan/api/builders/feature_profiles/cli.py +76 -0
- catalystwan/api/builders/feature_profiles/mixins.py +44 -0
- catalystwan/api/builders/feature_profiles/other.py +79 -0
- catalystwan/api/builders/feature_profiles/report.py +155 -0
- catalystwan/api/builders/feature_profiles/service.py +248 -0
- catalystwan/api/builders/feature_profiles/system.py +80 -0
- catalystwan/api/builders/feature_profiles/transport.py +256 -0
- catalystwan/api/builders/feature_profiles/uc_voice.py +287 -0
- catalystwan/api/config_group_api.py +41 -16
- catalystwan/api/configuration_groups/parcel.py +100 -30
- catalystwan/api/feature_profile_api.py +2021 -242
- catalystwan/api/policy_api.py +470 -116
- catalystwan/api/template_api.py +113 -44
- catalystwan/api/templates/README.md +61 -47
- catalystwan/api/templates/cli_template.py +17 -7
- catalystwan/api/templates/device_template/device_template.py +127 -32
- catalystwan/api/templates/feature_template.py +3 -3
- catalystwan/api/templates/models/aaa_model.py +387 -0
- catalystwan/api/templates/models/cisco_aaa_model.py +289 -42
- catalystwan/api/templates/models/cisco_banner_model.py +11 -2
- catalystwan/api/templates/models/cisco_bfd_model.py +31 -36
- catalystwan/api/templates/models/cisco_bgp_model.py +382 -131
- catalystwan/api/templates/models/cisco_logging_model.py +80 -43
- catalystwan/api/templates/models/cisco_ntp_model.py +34 -15
- catalystwan/api/templates/models/cisco_omp_model.py +70 -60
- catalystwan/api/templates/models/cisco_ospf.py +143 -74
- catalystwan/api/templates/models/cisco_ospfv3.py +217 -95
- catalystwan/api/templates/models/cisco_secure_internet_gateway.py +304 -142
- catalystwan/api/templates/models/cisco_snmp_model.py +66 -52
- catalystwan/api/templates/models/cisco_system.py +238 -129
- catalystwan/api/templates/models/cisco_vpn_interface_model.py +632 -275
- catalystwan/api/templates/models/cisco_vpn_model.py +433 -270
- catalystwan/api/templates/models/cli_template.py +3 -2
- catalystwan/api/templates/models/omp_vsmart_model.py +46 -10
- catalystwan/api/templates/models/security_vsmart_model.py +11 -8
- catalystwan/api/templates/models/supported.py +10 -4
- catalystwan/api/templates/models/system_vsmart_model.py +164 -27
- catalystwan/api/templates/models/vpn_vsmart_interface_model.py +198 -0
- catalystwan/api/templates/models/vpn_vsmart_model.py +124 -0
- catalystwan/apigw_auth.py +6 -2
- catalystwan/dataclasses.py +2 -53
- catalystwan/endpoints/__init__.py +41 -41
- catalystwan/endpoints/certificate_management_device.py +4 -0
- catalystwan/endpoints/cluster_management.py +27 -7
- catalystwan/endpoints/configuration/feature_profile/sdwan/application_priority.py +107 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/cli.py +60 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/dns_security.py +83 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/embedded_security.py +88 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/other.py +62 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/policy_object.py +35 -12
- catalystwan/endpoints/configuration/feature_profile/sdwan/service.py +154 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/sig_security.py +88 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/system.py +164 -11
- catalystwan/endpoints/configuration/feature_profile/sdwan/topology.py +93 -0
- catalystwan/endpoints/configuration/feature_profile/sdwan/transport.py +144 -26
- catalystwan/endpoints/configuration/feature_profile/sdwan/uc_voice.py +77 -0
- catalystwan/endpoints/configuration/network_hierarchy.py +32 -0
- catalystwan/endpoints/configuration/policy/abstractions.py +49 -0
- catalystwan/endpoints/configuration/policy/definition/access_control_list.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/access_control_list_ipv6.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/aip.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/amp.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/app_route.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/cflowd.py +46 -0
- catalystwan/endpoints/configuration/policy/definition/control.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/device_access.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/device_access_ipv6.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/dial_peer.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/dns_security.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/fxo_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/fxs_did_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/fxs_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/hub_and_spoke.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/intrusion_prevention.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/mesh.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/pri_isdn_port.py +57 -0
- catalystwan/endpoints/configuration/policy/definition/qos_map.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/rewrite.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/route_policy.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/rule_set.py +2 -11
- catalystwan/endpoints/configuration/policy/definition/security_group.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/srst_phone_profile.py +59 -0
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/ssl_decryption_utd_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/definition/traffic_data.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/url_filtering.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/vpn_membership.py +6 -11
- catalystwan/endpoints/configuration/policy/definition/vpn_qos_map.py +50 -0
- catalystwan/endpoints/configuration/policy/definition/zone_based_firewall.py +6 -11
- catalystwan/endpoints/configuration/policy/list/app.py +3 -16
- catalystwan/endpoints/configuration/policy/list/app_probe.py +6 -15
- catalystwan/endpoints/configuration/policy/list/as_path.py +3 -16
- catalystwan/endpoints/configuration/policy/list/class_map.py +3 -16
- catalystwan/endpoints/configuration/policy/list/color.py +3 -16
- catalystwan/endpoints/configuration/policy/list/community.py +3 -16
- catalystwan/endpoints/configuration/policy/list/data_ipv6_prefix.py +6 -15
- catalystwan/endpoints/configuration/policy/list/data_prefix.py +3 -16
- catalystwan/endpoints/configuration/policy/list/expanded_community.py +6 -15
- catalystwan/endpoints/configuration/policy/list/extended_community.py +52 -0
- catalystwan/endpoints/configuration/policy/list/fax_protocol.py +48 -0
- catalystwan/endpoints/configuration/policy/list/fqdn.py +3 -16
- catalystwan/endpoints/configuration/policy/list/geo_location.py +3 -16
- catalystwan/endpoints/configuration/policy/list/identity.py +48 -0
- catalystwan/endpoints/configuration/policy/list/ips_signature.py +6 -15
- catalystwan/endpoints/configuration/policy/list/ipv6_prefix.py +3 -16
- catalystwan/endpoints/configuration/policy/list/local_app.py +3 -16
- catalystwan/endpoints/configuration/policy/list/local_domain.py +3 -16
- catalystwan/endpoints/configuration/policy/list/media_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/list/mirror.py +3 -16
- catalystwan/endpoints/configuration/policy/list/modem_pass_through.py +52 -0
- catalystwan/endpoints/configuration/policy/list/policer.py +3 -16
- catalystwan/endpoints/configuration/policy/list/port.py +3 -16
- catalystwan/endpoints/configuration/policy/list/preferred_color_group.py +6 -15
- catalystwan/endpoints/configuration/policy/list/prefix.py +4 -16
- catalystwan/endpoints/configuration/policy/list/protocol_name.py +6 -15
- catalystwan/endpoints/configuration/policy/list/region.py +2 -10
- catalystwan/endpoints/configuration/policy/list/scalable_group_tag.py +52 -0
- catalystwan/endpoints/configuration/policy/list/site.py +3 -16
- catalystwan/endpoints/configuration/policy/list/sla.py +3 -16
- catalystwan/endpoints/configuration/policy/list/supervisory_disconnect.py +52 -0
- catalystwan/endpoints/configuration/policy/list/threat_grid_api_key.py +52 -0
- catalystwan/endpoints/configuration/policy/list/tloc.py +3 -16
- catalystwan/endpoints/configuration/policy/list/translation_profile.py +52 -0
- catalystwan/endpoints/configuration/policy/list/translation_rules.py +52 -0
- catalystwan/endpoints/configuration/policy/list/trunkgroup.py +48 -0
- catalystwan/endpoints/configuration/policy/list/umbrella_data.py +52 -0
- catalystwan/endpoints/configuration/policy/list/url_allow_list.py +3 -16
- catalystwan/endpoints/configuration/policy/list/url_block_list.py +3 -16
- catalystwan/endpoints/configuration/policy/list/vpn.py +3 -16
- catalystwan/endpoints/configuration/policy/list/zone.py +3 -16
- catalystwan/endpoints/configuration/policy/security_template.py +2 -3
- catalystwan/endpoints/configuration/policy/voice_template.py +39 -0
- catalystwan/endpoints/configuration/policy_group.py +30 -0
- catalystwan/endpoints/configuration/software_actions.py +2 -4
- catalystwan/endpoints/configuration/topology_group.py +51 -0
- catalystwan/endpoints/configuration_dashboard_status.py +2 -2
- catalystwan/endpoints/configuration_device_template.py +15 -1
- catalystwan/endpoints/configuration_feature_profile.py +8 -11
- catalystwan/endpoints/configuration_general_template.py +31 -0
- catalystwan/endpoints/configuration_group.py +28 -5
- catalystwan/endpoints/configuration_settings.py +90 -1
- catalystwan/endpoints/configuration_template_master.py +48 -0
- catalystwan/endpoints/endpoints_container.py +79 -19
- catalystwan/endpoints/real_time_monitoring/reboot_history.py +1 -3
- catalystwan/endpoints/tenant_migration.py +2 -0
- catalystwan/exceptions.py +17 -0
- catalystwan/integration_tests/base.py +81 -0
- catalystwan/integration_tests/feature_profile/sdwan/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/__init__.py +0 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/base.py +33 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_extended_community.py +33 -0
- catalystwan/integration_tests/feature_profile/sdwan/policy/test_security_app_list.py +32 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_application_priority.py +433 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_cli.py +54 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_dns_security.py +106 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_other.py +49 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_service.py +1078 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_sig_security.py +322 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_ssl_decryption.py +85 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_system.py +368 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_tracker.py +127 -0
- catalystwan/integration_tests/feature_profile/sdwan/test_transport.py +1698 -0
- catalystwan/integration_tests/feature_profile/sdwan/topology/test_topology.py +93 -0
- catalystwan/integration_tests/profile_builder/__init__.py +0 -0
- catalystwan/integration_tests/profile_builder/test_pb_service.py +197 -0
- catalystwan/integration_tests/profile_builder/test_pb_transport.py +226 -0
- catalystwan/integration_tests/profile_builder/test_pb_uc_voice.py +277 -0
- catalystwan/integration_tests/test_data/__init__.py +117 -0
- catalystwan/integration_tests/test_find_template_values.py +7 -18
- catalystwan/integration_tests/test_network_hierarchy.py +82 -0
- catalystwan/integration_tests/test_settings.py +30 -0
- catalystwan/models/common.py +1898 -2
- catalystwan/models/configuration/common.py +1 -0
- catalystwan/models/configuration/feature_profile/common.py +634 -149
- catalystwan/models/configuration/feature_profile/parcel.py +238 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/__init__.py +13 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv4acl.py +298 -0
- catalystwan/models/configuration/feature_profile/sdwan/acl/ipv6acl.py +344 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/__init__.py +218 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/cloud_probe.py +61 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/policy_settings.py +31 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/qos_policy.py +102 -0
- catalystwan/models/configuration/feature_profile/sdwan/application_priority/traffic_policy.py +1057 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/__init__.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/config.py +18 -0
- catalystwan/models/configuration/feature_profile/sdwan/cli/full_config.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/__init__.py +13 -0
- catalystwan/models/configuration/feature_profile/sdwan/dns_security/dns.py +110 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/__init__.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/ngfirewall.py +493 -0
- catalystwan/models/configuration/feature_profile/sdwan/embedded_security/policy.py +171 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/__init__.py +25 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/cybervision.py +44 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/thousandeyes.py +147 -0
- catalystwan/models/configuration/feature_profile/sdwan/other/ucse.py +110 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/__init__.py +62 -48
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/app_probe.py +34 -20
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/application_list.py +8 -6
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/as_path.py +22 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/color_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/data_prefix.py +13 -4
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/expanded_community_list.py +9 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/extended_community.py +34 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/fowarding_class.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_network_object.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv4_service_object.py +254 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_data_prefix.py +11 -9
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/ipv6_prefix_list.py +25 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/mirror.py +27 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/network_object_group.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/object_group.py +15 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/{policier.py → policer.py} +12 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefered_group_color.py +29 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/prefix_list.py +23 -8
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/service_object_group.py +21 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/sla_class.py +12 -31
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/standard_community.py +16 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/policy/tloc_list.py +8 -7
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/aip.py +64 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/amp.py +79 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/application_list.py +8 -6
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/data_prefix.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/fqdn.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/geolocation_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/identity.py +30 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/intrusion_prevention.py +58 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ips_signature.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/local_domain.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/object_group.py +72 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/protocol_list.py +7 -5
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/rule_set.py +137 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/scalable_group_tag.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/security_port.py +21 -11
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption.py +126 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/ssl_decryption_profile.py +165 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url.py +15 -10
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/url_filtering.py +148 -0
- catalystwan/models/configuration/feature_profile/sdwan/policy_object/security/zone.py +14 -18
- catalystwan/models/configuration/feature_profile/sdwan/routing/__init__.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/routing/bgp.py +609 -0
- catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospf.py +55 -47
- catalystwan/models/configuration/feature_profile/sdwan/{service → routing}/ospfv3.py +74 -72
- catalystwan/models/configuration/feature_profile/sdwan/service/__init__.py +91 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/appqoe.py +76 -41
- catalystwan/models/configuration/feature_profile/sdwan/service/dhcp_server.py +107 -64
- catalystwan/models/configuration/feature_profile/sdwan/service/dual_router_ha.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/eigrp.py +39 -42
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/common.py +7 -88
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ethernet.py +231 -155
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/gre.py +38 -108
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/ipsec.py +77 -84
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/multilink.py +101 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/svi.py +62 -56
- catalystwan/models/configuration/feature_profile/sdwan/service/lan/vpn.py +111 -120
- catalystwan/models/configuration/feature_profile/sdwan/service/multicast.py +56 -57
- catalystwan/models/configuration/feature_profile/sdwan/service/object_tracker.py +15 -21
- catalystwan/models/configuration/feature_profile/sdwan/service/route_policy.py +358 -110
- catalystwan/models/configuration/feature_profile/sdwan/service/service_chain.py +38 -0
- catalystwan/models/configuration/feature_profile/sdwan/service/service_insertion_attachment.py +17 -25
- catalystwan/models/configuration/feature_profile/sdwan/service/switchport.py +50 -58
- catalystwan/models/configuration/feature_profile/sdwan/service/tracker.py +12 -21
- catalystwan/models/configuration/feature_profile/sdwan/service/wireless_lan.py +27 -31
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/__init__.py +19 -0
- catalystwan/models/configuration/feature_profile/sdwan/sig_security/sig_security.py +379 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/__init__.py +59 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/aaa.py +58 -10
- catalystwan/models/configuration/feature_profile/sdwan/system/banner.py +30 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/basic.py +290 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/bfd.py +69 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access.py +157 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/device_access_ipv6.py +157 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/global_parcel.py +163 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/logging_parcel.py +162 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/mrf.py +75 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/ntp.py +103 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/omp.py +120 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/security.py +179 -0
- catalystwan/models/configuration/feature_profile/sdwan/system/snmp.py +173 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/__init__.py +29 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/custom_control.py +425 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/hubspoke.py +60 -0
- catalystwan/models/configuration/feature_profile/sdwan/topology/mesh.py +23 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/__init__.py +36 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker.py +96 -0
- catalystwan/models/configuration/feature_profile/sdwan/trackers/tracker_group.py +63 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/__init__.py +93 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_controller.py +26 -23
- catalystwan/models/configuration/feature_profile/sdwan/transport/cellular_profile.py +71 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/gps.py +37 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/management/ethernet.py +121 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/t1e1controller.py +124 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/vpn.py +285 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/cellular.py +173 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ethernet.py +389 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/gre.py +46 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/ipsec.py +137 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/multilink.py +219 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/protocol_over.py +405 -0
- catalystwan/models/configuration/feature_profile/sdwan/transport/wan/interface/t1e1serial.py +195 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/__init__.py +62 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/analog_interface.py +436 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/call_routing.py +179 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/digital_interface.py +380 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/dsp_farm.py +193 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/media_profile.py +17 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/server_group.py +51 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/srst.py +86 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/supervisory_disconnect.py +69 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_profile.py +42 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/translation_rule.py +31 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/trunk_group.py +26 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_global.py +55 -0
- catalystwan/models/configuration/feature_profile/sdwan/uc_voice/voice_tenant.py +40 -0
- catalystwan/models/configuration/network_hierarchy/__init__.py +22 -0
- catalystwan/models/configuration/network_hierarchy/cflowd.py +120 -0
- catalystwan/models/configuration/network_hierarchy/node.py +88 -0
- catalystwan/models/configuration/policy_group.py +74 -0
- catalystwan/models/configuration/profile_type.py +1 -6
- catalystwan/models/configuration/topology_group.py +52 -0
- catalystwan/models/policy/__init__.py +275 -69
- catalystwan/models/policy/centralized.py +26 -29
- catalystwan/models/policy/{definitions → definition}/access_control_list.py +47 -17
- catalystwan/models/policy/{definitions → definition}/access_control_list_ipv6.py +42 -18
- catalystwan/models/policy/definition/aip.py +60 -0
- catalystwan/models/policy/definition/amp.py +65 -0
- catalystwan/models/policy/definition/app_route.py +246 -0
- catalystwan/models/policy/definition/cflowd.py +95 -0
- catalystwan/models/policy/{definitions → definition}/control.py +48 -25
- catalystwan/models/policy/{definitions → definition}/device_access.py +22 -11
- catalystwan/models/policy/{definitions → definition}/device_access_ipv6.py +20 -11
- catalystwan/models/policy/definition/dial_peer.py +60 -0
- catalystwan/models/policy/definition/dns_security.py +130 -0
- catalystwan/models/policy/definition/fxo_port.py +63 -0
- catalystwan/models/policy/definition/fxs_did_port.py +58 -0
- catalystwan/models/policy/definition/fxs_port.py +56 -0
- catalystwan/models/policy/{definitions → definition}/hub_and_spoke.py +18 -4
- catalystwan/models/policy/definition/intrusion_prevention.py +55 -0
- catalystwan/models/policy/{definitions → definition}/mesh.py +13 -1
- catalystwan/models/policy/definition/pri_isdn_port.py +48 -0
- catalystwan/models/policy/{definitions → definition}/qos_map.py +39 -32
- catalystwan/models/policy/{definitions → definition}/rewrite.py +12 -2
- catalystwan/models/policy/definition/route_policy.py +187 -0
- catalystwan/models/policy/{definitions → definition}/rule_set.py +66 -48
- catalystwan/models/policy/{definitions → definition}/security_group.py +38 -14
- catalystwan/models/policy/definition/srst_phone_profile.py +37 -0
- catalystwan/models/policy/definition/ssl_decryption.py +209 -0
- catalystwan/models/policy/definition/ssl_decryption_utd_profile.py +87 -0
- catalystwan/models/policy/{definitions → definition}/traffic_data.py +184 -61
- catalystwan/models/policy/definition/url_filtering.py +70 -0
- catalystwan/models/policy/{definitions → definition}/vpn_membership.py +13 -1
- catalystwan/models/policy/definition/vpn_qos_map.py +46 -0
- catalystwan/models/policy/{definitions → definition}/zone_based_firewall.py +93 -32
- catalystwan/models/policy/list/app.py +44 -0
- catalystwan/models/policy/list/app_probe.py +42 -0
- catalystwan/models/policy/list/as_path.py +30 -0
- catalystwan/models/policy/list/class_map.py +30 -0
- catalystwan/models/policy/list/color.py +28 -0
- catalystwan/models/policy/list/communities.py +83 -0
- catalystwan/models/policy/list/data_ipv6_prefix.py +30 -0
- catalystwan/models/policy/list/data_prefix.py +30 -0
- catalystwan/models/policy/list/fax_protocol.py +45 -0
- catalystwan/models/policy/list/fqdn.py +24 -0
- catalystwan/models/policy/list/geo_location.py +33 -0
- catalystwan/models/policy/list/identity.py +29 -0
- catalystwan/models/policy/list/ips_signature.py +27 -0
- catalystwan/models/policy/list/ipv6_prefix.py +33 -0
- catalystwan/models/policy/list/local_app.py +45 -0
- catalystwan/models/policy/list/local_domain.py +36 -0
- catalystwan/models/policy/list/media_profile.py +44 -0
- catalystwan/models/policy/list/mirror.py +27 -0
- catalystwan/models/policy/list/modem_pass_through.py +27 -0
- catalystwan/models/policy/list/policer.py +39 -0
- catalystwan/models/policy/list/port.py +33 -0
- catalystwan/models/policy/list/preferred_color_group.py +82 -0
- catalystwan/models/policy/list/prefix.py +33 -0
- catalystwan/models/policy/list/protocol_name.py +26 -0
- catalystwan/models/policy/list/region.py +45 -0
- catalystwan/models/policy/list/scalable_group_tag.py +30 -0
- catalystwan/models/policy/list/site.py +34 -0
- catalystwan/models/policy/list/sla.py +77 -0
- catalystwan/models/policy/list/supervisory_disconnect.py +62 -0
- catalystwan/models/policy/list/threat_grid_api_key.py +32 -0
- catalystwan/models/policy/list/tloc.py +32 -0
- catalystwan/models/policy/list/translation_profile.py +32 -0
- catalystwan/models/policy/list/translation_rules.py +29 -0
- catalystwan/models/policy/list/trunkgroup.py +56 -0
- catalystwan/models/policy/list/umbrella_data.py +30 -0
- catalystwan/models/policy/list/url.py +39 -0
- catalystwan/models/policy/list/vpn.py +40 -0
- catalystwan/models/policy/list/zone.py +46 -0
- catalystwan/models/policy/localized.py +34 -16
- catalystwan/models/policy/policy.py +13 -9
- catalystwan/models/policy/policy_definition.py +673 -173
- catalystwan/models/policy/policy_list.py +38 -27
- catalystwan/models/policy/security.py +145 -46
- catalystwan/models/policy/voice.py +77 -0
- catalystwan/models/settings.py +41 -0
- catalystwan/models/templates.py +79 -0
- catalystwan/response.py +6 -2
- catalystwan/session.py +1 -1
- catalystwan/tests/builders/test_report.py +60 -0
- catalystwan/tests/builders/uc_voice.py +85 -0
- catalystwan/tests/models/__init__.py +0 -0
- catalystwan/tests/models/test_digital_interface.py +56 -0
- catalystwan/tests/templates/definitions/aaa_basic.json +96 -0
- catalystwan/tests/templates/definitions/aaa_complex.json +464 -0
- catalystwan/tests/templates/definitions/{iuo.json → cisco_aaa.json} +44 -15
- catalystwan/tests/templates/definitions/cisco_aaa_complex.json +361 -0
- catalystwan/tests/templates/definitions/cisco_logging_complex.json +268 -0
- catalystwan/tests/templates/definitions/cisco_ntp_complex.json +143 -0
- catalystwan/tests/templates/definitions/cisco_omp_complex.json +175 -0
- catalystwan/tests/templates/definitions/cisco_ospf_complex.json +302 -0
- catalystwan/tests/templates/definitions/cisco_sig.json +405 -0
- catalystwan/tests/templates/definitions/cisco_snmp_complex.json +258 -0
- catalystwan/tests/templates/definitions/cisco_system_complex.json +502 -0
- catalystwan/tests/templates/definitions/{Basic_Cisco_VPN_Model.json → cisco_vpn_basic.json} +2 -2
- catalystwan/tests/templates/definitions/{complex_cisco_vpn.json → cisco_vpn_complex.json} +27 -12
- catalystwan/tests/templates/definitions/cisco_vpn_interface_complex.json +821 -0
- catalystwan/tests/templates/definitions/omp_vsmart_1.json +26 -0
- catalystwan/tests/templates/definitions/{omp_2.json → omp_vsmart_2.json} +16 -2
- catalystwan/tests/templates/definitions/{omp_3.json → omp_vsmart_3.json} +16 -2
- catalystwan/tests/templates/definitions/omp_vsmart_complex.json +73 -0
- catalystwan/tests/templates/definitions/security_vsmart_complex.json +24 -0
- catalystwan/tests/templates/definitions/system_vsmart_complex.json +193 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_basic.json +17 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_complex.json +179 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_basic.json +42 -0
- catalystwan/tests/templates/definitions/vpn_vsmart_interface_complex.json +208 -0
- catalystwan/tests/templates/models/__init__.py +46 -13
- catalystwan/tests/templates/models/aaa.py +106 -0
- catalystwan/tests/templates/models/cisco_aaa.py +81 -48
- catalystwan/tests/templates/models/cisco_banner.py +2 -2
- catalystwan/tests/templates/models/cisco_bfd.py +4 -6
- catalystwan/tests/templates/models/cisco_logging.py +65 -0
- catalystwan/tests/templates/models/cisco_ntp.py +17 -0
- catalystwan/tests/templates/models/cisco_omp.py +37 -0
- catalystwan/tests/templates/models/cisco_ospf.py +60 -0
- catalystwan/tests/templates/models/cisco_secure_internet_gateway.py +95 -0
- catalystwan/tests/templates/models/cisco_snmp.py +40 -0
- catalystwan/tests/templates/models/cisco_system.py +108 -3
- catalystwan/tests/templates/models/cisco_vpn.py +42 -72
- catalystwan/tests/templates/models/cisco_vpn_interface.py +200 -0
- catalystwan/tests/templates/models/omp_vsmart.py +28 -8
- catalystwan/tests/templates/models/security_vsmart.py +11 -0
- catalystwan/tests/templates/models/system_vsmart.py +37 -0
- catalystwan/tests/templates/models/vpn_vsmart.py +32 -0
- catalystwan/tests/templates/models/vpn_vsmart_interface.py +54 -0
- catalystwan/tests/templates/schemas/aaa.json +1096 -0
- catalystwan/tests/templates/schemas/cedge_aaa.json +1 -1
- catalystwan/tests/templates/schemas/cisco_logging.json +577 -0
- catalystwan/tests/templates/schemas/cisco_ntp.json +265 -0
- catalystwan/tests/templates/schemas/cisco_omp.json +479 -0
- catalystwan/tests/templates/schemas/cisco_ospf.json +908 -0
- catalystwan/tests/templates/schemas/cisco_secure_internet_gateway.json +1520 -0
- catalystwan/tests/templates/schemas/cisco_snmp.json +561 -0
- catalystwan/tests/templates/schemas/cisco_system.json +242 -0
- catalystwan/tests/templates/schemas/cisco_vpn.json +53 -1
- catalystwan/tests/templates/schemas/cisco_vpn_interface.json +3348 -0
- catalystwan/tests/templates/schemas/omp-vsmart.json +20 -0
- catalystwan/tests/templates/schemas/security-vsmart.json +58 -0
- catalystwan/tests/templates/schemas/system-vsmart.json +2585 -0
- catalystwan/tests/templates/schemas/vpn-vsmart-interface.json +859 -0
- catalystwan/tests/templates/schemas/vpn-vsmart.json +445 -0
- catalystwan/tests/templates/test_chose_model.py +6 -10
- catalystwan/tests/templates/test_deserialize_model.py +4 -4
- catalystwan/tests/templates/test_find_template_values.py +229 -0
- catalystwan/tests/templates/test_find_template_values_2.py +193 -0
- catalystwan/tests/templates/test_serialize_model.py +1 -2
- catalystwan/tests/test_cli_template.py +8 -9
- catalystwan/tests/test_endpoints.py +42 -11
- catalystwan/tests/test_feature_profile_api.py +282 -0
- catalystwan/tests/test_models_common.py +53 -0
- catalystwan/tests/test_templates.py +16 -19
- catalystwan/utils/feature_template/find_template_values.py +17 -4
- catalystwan/utils/model.py +45 -0
- catalystwan/utils/persona.py +5 -0
- catalystwan/utils/type_check.py +22 -0
- catalystwan/workflows/backup_restore_device_templates.py +467 -0
- catalystwan/workflows/tenant_migration.py +1 -1
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/METADATA +20 -1
- catalystwan-0.41.2.dev0.dist-info/RECORD +636 -0
- catalystwan/ENDPOINTS.md +0 -611
- catalystwan/api/configuration_groups/parcels/cellular_controller.py +0 -33
- catalystwan/api/templates/device_template/device_template_payload.json.j2 +0 -19
- catalystwan/models/configuration/config_migration.py +0 -36
- catalystwan/models/configuration/feature_profile/sdwan/management/vpn.py +0 -26
- catalystwan/models/configuration/feature_profile/sdwan/service/acl.py +0 -409
- catalystwan/models/configuration/feature_profile/sdwan/service/bgp.py +0 -288
- catalystwan/models/policy/lists.py +0 -330
- catalystwan/models/policy/lists_entries.py +0 -444
- catalystwan/tests/templates/definitions/complex_aaa.json +0 -277
- catalystwan/tests/templates/definitions/omp_1.json +0 -11
- catalystwan/utils/timezone.py +0 -422
- catalystwan-0.41.2.dist-info/RECORD +0 -353
- /catalystwan/tests/templates/definitions/{banner_1.json → cisco_banner.json} +0 -0
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/LICENSE +0 -0
- {catalystwan-0.41.2.dist-info → catalystwan-0.41.2.dev0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,1096 @@
|
|
|
1
|
+
|
|
2
|
+
{
|
|
3
|
+
"name": "aaa",
|
|
4
|
+
"xmlPath": [],
|
|
5
|
+
"xmlRootTag": "system",
|
|
6
|
+
"nameSpace": "http://viptela.com/system",
|
|
7
|
+
"fields": [
|
|
8
|
+
{
|
|
9
|
+
"key": "auth-order",
|
|
10
|
+
"description": "Authentication Order",
|
|
11
|
+
"details": "Set order to try different authentication methods",
|
|
12
|
+
"optionType": [
|
|
13
|
+
"constant",
|
|
14
|
+
"variable"
|
|
15
|
+
],
|
|
16
|
+
"defaultOption": "constant",
|
|
17
|
+
"dataType": {
|
|
18
|
+
"type": "enum",
|
|
19
|
+
"values": [
|
|
20
|
+
{
|
|
21
|
+
"key": "local",
|
|
22
|
+
"value": "Local"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"key": "radius",
|
|
26
|
+
"value": "Radius"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"key": "tacacs",
|
|
30
|
+
"value": "Tacacs"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"dataPath": [
|
|
35
|
+
"aaa"
|
|
36
|
+
],
|
|
37
|
+
"objectType": "list"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"key": "radius-servers",
|
|
41
|
+
"description": "Radius Server List (Separated by commas)",
|
|
42
|
+
"details": "Designate radius servers for authentication and accounting",
|
|
43
|
+
"optionType": [
|
|
44
|
+
"constant",
|
|
45
|
+
"variable",
|
|
46
|
+
"ignore"
|
|
47
|
+
],
|
|
48
|
+
"defaultOption": "ignore",
|
|
49
|
+
"dataType": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"dataPath": [
|
|
53
|
+
"aaa"
|
|
54
|
+
],
|
|
55
|
+
"objectType": "list"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"key": "auth-fallback",
|
|
59
|
+
"description": "Authentication Fallback",
|
|
60
|
+
"details": "Fall back if higher-priority authentication fails",
|
|
61
|
+
"optionType": [
|
|
62
|
+
"constant",
|
|
63
|
+
"variable",
|
|
64
|
+
"ignore"
|
|
65
|
+
],
|
|
66
|
+
"defaultOption": "ignore",
|
|
67
|
+
"dataType": {
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"default": "false"
|
|
70
|
+
},
|
|
71
|
+
"dataPath": [
|
|
72
|
+
"aaa"
|
|
73
|
+
],
|
|
74
|
+
"objectType": "object"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"key": "admin-auth-order",
|
|
78
|
+
"description": "Admin Authentication Order",
|
|
79
|
+
"details": "Authenticate admin user as per auth-order",
|
|
80
|
+
"optionType": [
|
|
81
|
+
"constant",
|
|
82
|
+
"variable",
|
|
83
|
+
"ignore"
|
|
84
|
+
],
|
|
85
|
+
"defaultOption": "ignore",
|
|
86
|
+
"dataType": {
|
|
87
|
+
"type": "boolean",
|
|
88
|
+
"default": "false"
|
|
89
|
+
},
|
|
90
|
+
"dataPath": [
|
|
91
|
+
"aaa"
|
|
92
|
+
],
|
|
93
|
+
"objectType": "object"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"key": "audit-disable",
|
|
97
|
+
"description": "Disable Audit Logs",
|
|
98
|
+
"details": "Disable audit logs",
|
|
99
|
+
"optionType": [
|
|
100
|
+
"constant",
|
|
101
|
+
"variable",
|
|
102
|
+
"ignore"
|
|
103
|
+
],
|
|
104
|
+
"defaultOption": "ignore",
|
|
105
|
+
"dataType": {
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"default": "false"
|
|
108
|
+
},
|
|
109
|
+
"dataPath": [
|
|
110
|
+
"aaa",
|
|
111
|
+
"logs"
|
|
112
|
+
],
|
|
113
|
+
"objectType": "object"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"key": "netconf-disable",
|
|
117
|
+
"description": "Disable Netconf Logs",
|
|
118
|
+
"details": "Disable Netconf logs",
|
|
119
|
+
"optionType": [
|
|
120
|
+
"constant",
|
|
121
|
+
"variable",
|
|
122
|
+
"ignore"
|
|
123
|
+
],
|
|
124
|
+
"defaultOption": "ignore",
|
|
125
|
+
"dataType": {
|
|
126
|
+
"type": "boolean",
|
|
127
|
+
"default": "false"
|
|
128
|
+
},
|
|
129
|
+
"dataPath": [
|
|
130
|
+
"aaa",
|
|
131
|
+
"logs"
|
|
132
|
+
],
|
|
133
|
+
"objectType": "object"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"key": "task",
|
|
137
|
+
"description": "Task Permissions",
|
|
138
|
+
"details": "Set the user group\u2019s tasks and task privileges",
|
|
139
|
+
"optionType": [
|
|
140
|
+
"constant",
|
|
141
|
+
"variable",
|
|
142
|
+
"ignore"
|
|
143
|
+
],
|
|
144
|
+
"defaultOption": "ignore",
|
|
145
|
+
"dataPath": [
|
|
146
|
+
"aaa"
|
|
147
|
+
],
|
|
148
|
+
"objectType": "tree",
|
|
149
|
+
"primaryKeys": [
|
|
150
|
+
"name"
|
|
151
|
+
],
|
|
152
|
+
"children": [
|
|
153
|
+
{
|
|
154
|
+
"key": "name",
|
|
155
|
+
"description": "Name",
|
|
156
|
+
"details": "Select the name for the task",
|
|
157
|
+
"optionType": [
|
|
158
|
+
"constant"
|
|
159
|
+
],
|
|
160
|
+
"defaultOption": "constant",
|
|
161
|
+
"dataType": {
|
|
162
|
+
"type": "string",
|
|
163
|
+
"minLength": 1,
|
|
164
|
+
"maxLength": 128
|
|
165
|
+
},
|
|
166
|
+
"dataPath": [],
|
|
167
|
+
"objectType": "object"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"key": "accept",
|
|
171
|
+
"description": "Accept",
|
|
172
|
+
"details": "List of oper-exec commands to allow",
|
|
173
|
+
"optionType": [
|
|
174
|
+
"constant",
|
|
175
|
+
"variable",
|
|
176
|
+
"ignore"
|
|
177
|
+
],
|
|
178
|
+
"defaultOption": "ignore",
|
|
179
|
+
"dataPath": [
|
|
180
|
+
"oper-exec"
|
|
181
|
+
],
|
|
182
|
+
"objectType": "tree",
|
|
183
|
+
"primaryKeys": [
|
|
184
|
+
"command"
|
|
185
|
+
],
|
|
186
|
+
"children": [
|
|
187
|
+
{
|
|
188
|
+
"key": "command",
|
|
189
|
+
"description": "CLI",
|
|
190
|
+
"details": "Define oper-exec accept command",
|
|
191
|
+
"optionType": [
|
|
192
|
+
"constant",
|
|
193
|
+
"variable"
|
|
194
|
+
],
|
|
195
|
+
"defaultOption": "constant",
|
|
196
|
+
"dataType": {
|
|
197
|
+
"type": "string"
|
|
198
|
+
},
|
|
199
|
+
"dataPath": [],
|
|
200
|
+
"objectType": "object"
|
|
201
|
+
}
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"key": "deny",
|
|
206
|
+
"description": "Deny",
|
|
207
|
+
"details": "List of oper-exec commands to deny",
|
|
208
|
+
"optionType": [
|
|
209
|
+
"constant",
|
|
210
|
+
"variable",
|
|
211
|
+
"ignore"
|
|
212
|
+
],
|
|
213
|
+
"defaultOption": "ignore",
|
|
214
|
+
"dataPath": [
|
|
215
|
+
"oper-exec"
|
|
216
|
+
],
|
|
217
|
+
"objectType": "tree",
|
|
218
|
+
"primaryKeys": [
|
|
219
|
+
"command"
|
|
220
|
+
],
|
|
221
|
+
"children": [
|
|
222
|
+
{
|
|
223
|
+
"key": "command",
|
|
224
|
+
"description": "CLI",
|
|
225
|
+
"details": "Define oper-exec deny command",
|
|
226
|
+
"optionType": [
|
|
227
|
+
"constant",
|
|
228
|
+
"variable"
|
|
229
|
+
],
|
|
230
|
+
"defaultOption": "constant",
|
|
231
|
+
"dataType": {
|
|
232
|
+
"type": "string"
|
|
233
|
+
},
|
|
234
|
+
"dataPath": [],
|
|
235
|
+
"objectType": "object"
|
|
236
|
+
}
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"key": "default-action",
|
|
241
|
+
"description": "Default action",
|
|
242
|
+
"details": "Define oper-exec default action",
|
|
243
|
+
"optionType": [
|
|
244
|
+
"constant",
|
|
245
|
+
"variable"
|
|
246
|
+
],
|
|
247
|
+
"defaultOption": "constant",
|
|
248
|
+
"dataType": {
|
|
249
|
+
"type": "enum",
|
|
250
|
+
"values": [
|
|
251
|
+
{
|
|
252
|
+
"key": "accept",
|
|
253
|
+
"value": "accept"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"key": "deny",
|
|
257
|
+
"value": "deny"
|
|
258
|
+
}
|
|
259
|
+
]
|
|
260
|
+
},
|
|
261
|
+
"dataPath": [
|
|
262
|
+
"oper-exec"
|
|
263
|
+
],
|
|
264
|
+
"objectType": "object"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"key": "accept",
|
|
268
|
+
"description": "Accept",
|
|
269
|
+
"details": "List of config commands to allow",
|
|
270
|
+
"optionType": [
|
|
271
|
+
"constant",
|
|
272
|
+
"variable",
|
|
273
|
+
"ignore"
|
|
274
|
+
],
|
|
275
|
+
"defaultOption": "ignore",
|
|
276
|
+
"dataPath": [
|
|
277
|
+
"config"
|
|
278
|
+
],
|
|
279
|
+
"objectType": "tree",
|
|
280
|
+
"primaryKeys": [
|
|
281
|
+
"command"
|
|
282
|
+
],
|
|
283
|
+
"children": [
|
|
284
|
+
{
|
|
285
|
+
"key": "command",
|
|
286
|
+
"description": "CLI",
|
|
287
|
+
"details": "Define configure accept command",
|
|
288
|
+
"optionType": [
|
|
289
|
+
"constant",
|
|
290
|
+
"variable"
|
|
291
|
+
],
|
|
292
|
+
"defaultOption": "constant",
|
|
293
|
+
"dataType": {
|
|
294
|
+
"type": "string"
|
|
295
|
+
},
|
|
296
|
+
"dataPath": [],
|
|
297
|
+
"objectType": "object"
|
|
298
|
+
}
|
|
299
|
+
]
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"key": "deny",
|
|
303
|
+
"description": "Deny",
|
|
304
|
+
"details": "List of config commands to deny",
|
|
305
|
+
"optionType": [
|
|
306
|
+
"constant",
|
|
307
|
+
"variable",
|
|
308
|
+
"ignore"
|
|
309
|
+
],
|
|
310
|
+
"defaultOption": "ignore",
|
|
311
|
+
"dataPath": [
|
|
312
|
+
"config"
|
|
313
|
+
],
|
|
314
|
+
"objectType": "tree",
|
|
315
|
+
"primaryKeys": [
|
|
316
|
+
"command"
|
|
317
|
+
],
|
|
318
|
+
"children": [
|
|
319
|
+
{
|
|
320
|
+
"key": "command",
|
|
321
|
+
"description": "CLI",
|
|
322
|
+
"details": "Define config accept command",
|
|
323
|
+
"optionType": [
|
|
324
|
+
"constant",
|
|
325
|
+
"variable"
|
|
326
|
+
],
|
|
327
|
+
"defaultOption": "constant",
|
|
328
|
+
"dataType": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"dataPath": [],
|
|
332
|
+
"objectType": "object"
|
|
333
|
+
}
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"key": "default-action",
|
|
338
|
+
"description": "Default action",
|
|
339
|
+
"details": "Define config default action",
|
|
340
|
+
"optionType": [
|
|
341
|
+
"constant",
|
|
342
|
+
"variable"
|
|
343
|
+
],
|
|
344
|
+
"defaultOption": "constant",
|
|
345
|
+
"dataType": {
|
|
346
|
+
"type": "enum",
|
|
347
|
+
"values": [
|
|
348
|
+
{
|
|
349
|
+
"key": "accept",
|
|
350
|
+
"value": "accept"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"key": "deny",
|
|
354
|
+
"value": "deny"
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
},
|
|
358
|
+
"dataPath": [
|
|
359
|
+
"config"
|
|
360
|
+
],
|
|
361
|
+
"objectType": "object"
|
|
362
|
+
}
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"key": "accounting",
|
|
367
|
+
"description": "Enable/disable user accounting",
|
|
368
|
+
"details": "Enable/disable user accounting",
|
|
369
|
+
"optionType": [
|
|
370
|
+
"constant",
|
|
371
|
+
"variable",
|
|
372
|
+
"ignore"
|
|
373
|
+
],
|
|
374
|
+
"defaultOption": "ignore",
|
|
375
|
+
"dataType": {
|
|
376
|
+
"type": "boolean",
|
|
377
|
+
"default": "false"
|
|
378
|
+
},
|
|
379
|
+
"dataPath": [
|
|
380
|
+
"aaa"
|
|
381
|
+
],
|
|
382
|
+
"objectType": "object"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"key": "usergroup",
|
|
386
|
+
"description": "User Group Configuration",
|
|
387
|
+
"details": "Create groupings of users with the same authorization privileges",
|
|
388
|
+
"optionType": [
|
|
389
|
+
"constant",
|
|
390
|
+
"variable",
|
|
391
|
+
"ignore"
|
|
392
|
+
],
|
|
393
|
+
"defaultOption": "ignore",
|
|
394
|
+
"dataPath": [
|
|
395
|
+
"aaa"
|
|
396
|
+
],
|
|
397
|
+
"objectType": "tree",
|
|
398
|
+
"primaryKeys": [
|
|
399
|
+
"name"
|
|
400
|
+
],
|
|
401
|
+
"children": [
|
|
402
|
+
{
|
|
403
|
+
"key": "name",
|
|
404
|
+
"description": "Name",
|
|
405
|
+
"details": "Set name of user group",
|
|
406
|
+
"optionType": [
|
|
407
|
+
"constant"
|
|
408
|
+
],
|
|
409
|
+
"defaultOption": "constant",
|
|
410
|
+
"dataType": {
|
|
411
|
+
"type": "string",
|
|
412
|
+
"minLength": 1,
|
|
413
|
+
"maxLength": 128
|
|
414
|
+
},
|
|
415
|
+
"dataPath": [],
|
|
416
|
+
"objectType": "object"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"key": "task",
|
|
420
|
+
"description": "Task Permissions",
|
|
421
|
+
"details": "Set the user group\u2019s tasks and task privileges",
|
|
422
|
+
"optionType": [
|
|
423
|
+
"constant"
|
|
424
|
+
],
|
|
425
|
+
"defaultOption": "constant",
|
|
426
|
+
"dataPath": [],
|
|
427
|
+
"objectType": "tree",
|
|
428
|
+
"primaryKeys": [
|
|
429
|
+
"mode"
|
|
430
|
+
],
|
|
431
|
+
"children": [
|
|
432
|
+
{
|
|
433
|
+
"key": "mode",
|
|
434
|
+
"description": "Mode",
|
|
435
|
+
"details": "Select the task to set privileges for",
|
|
436
|
+
"optionType": [
|
|
437
|
+
"constant"
|
|
438
|
+
],
|
|
439
|
+
"defaultOption": "constant",
|
|
440
|
+
"dataType": {
|
|
441
|
+
"type": "string"
|
|
442
|
+
},
|
|
443
|
+
"dataPath": [],
|
|
444
|
+
"objectType": "object"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"key": "permission",
|
|
448
|
+
"description": "Permissions",
|
|
449
|
+
"details": "Set read or write permission for the task",
|
|
450
|
+
"optionType": [
|
|
451
|
+
"constant",
|
|
452
|
+
"variable",
|
|
453
|
+
"ignore"
|
|
454
|
+
],
|
|
455
|
+
"defaultOption": "constant",
|
|
456
|
+
"dataType": {
|
|
457
|
+
"type": "enum",
|
|
458
|
+
"values": [
|
|
459
|
+
{
|
|
460
|
+
"key": "read",
|
|
461
|
+
"value": "read"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"key": "write",
|
|
465
|
+
"value": "write"
|
|
466
|
+
}
|
|
467
|
+
]
|
|
468
|
+
},
|
|
469
|
+
"dataPath": [],
|
|
470
|
+
"objectType": "list"
|
|
471
|
+
}
|
|
472
|
+
]
|
|
473
|
+
}
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"key": "user",
|
|
478
|
+
"description": "User Configuration",
|
|
479
|
+
"details": "Create local login account",
|
|
480
|
+
"optionType": [
|
|
481
|
+
"constant",
|
|
482
|
+
"variable",
|
|
483
|
+
"ignore"
|
|
484
|
+
],
|
|
485
|
+
"defaultOption": "ignore",
|
|
486
|
+
"dataPath": [
|
|
487
|
+
"aaa"
|
|
488
|
+
],
|
|
489
|
+
"objectType": "tree",
|
|
490
|
+
"primaryKeys": [
|
|
491
|
+
"name"
|
|
492
|
+
],
|
|
493
|
+
"children": [
|
|
494
|
+
{
|
|
495
|
+
"key": "name",
|
|
496
|
+
"description": "Name",
|
|
497
|
+
"details": "Set the username",
|
|
498
|
+
"optionType": [
|
|
499
|
+
"constant",
|
|
500
|
+
"variable"
|
|
501
|
+
],
|
|
502
|
+
"defaultOption": "constant",
|
|
503
|
+
"dataType": {
|
|
504
|
+
"type": "string",
|
|
505
|
+
"minLength": 1,
|
|
506
|
+
"maxLength": 128
|
|
507
|
+
},
|
|
508
|
+
"dataPath": [],
|
|
509
|
+
"objectType": "object"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"key": "password",
|
|
513
|
+
"description": "Password",
|
|
514
|
+
"details": "Set the user password",
|
|
515
|
+
"optionType": [
|
|
516
|
+
"constant"
|
|
517
|
+
],
|
|
518
|
+
"defaultOption": "constant",
|
|
519
|
+
"dataType": {
|
|
520
|
+
"type": "passphrase"
|
|
521
|
+
},
|
|
522
|
+
"dataPath": [],
|
|
523
|
+
"objectType": "object"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"key": "secret",
|
|
527
|
+
"description": "Password",
|
|
528
|
+
"details": "Set the user scrypt password/hash",
|
|
529
|
+
"optionType": [
|
|
530
|
+
"constant"
|
|
531
|
+
],
|
|
532
|
+
"defaultOption": "constant",
|
|
533
|
+
"dataType": {
|
|
534
|
+
"type": "passphrase"
|
|
535
|
+
},
|
|
536
|
+
"dataPath": [],
|
|
537
|
+
"objectType": "object"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"key": "description",
|
|
541
|
+
"description": "Description",
|
|
542
|
+
"details": "Add a description of the user",
|
|
543
|
+
"optionType": [
|
|
544
|
+
"constant",
|
|
545
|
+
"variable",
|
|
546
|
+
"ignore"
|
|
547
|
+
],
|
|
548
|
+
"defaultOption": "ignore",
|
|
549
|
+
"dataType": {
|
|
550
|
+
"type": "string"
|
|
551
|
+
},
|
|
552
|
+
"dataPath": [],
|
|
553
|
+
"objectType": "object"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"key": "group",
|
|
557
|
+
"description": "User Groups",
|
|
558
|
+
"details": "Configure the groups that the user is part of",
|
|
559
|
+
"optionType": [
|
|
560
|
+
"constant",
|
|
561
|
+
"variable"
|
|
562
|
+
],
|
|
563
|
+
"defaultOption": "constant",
|
|
564
|
+
"dataType": {
|
|
565
|
+
"type": "string"
|
|
566
|
+
},
|
|
567
|
+
"dataPath": [],
|
|
568
|
+
"objectType": "list"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"key": "pubkey-chain",
|
|
572
|
+
"description": "SSH pubkey",
|
|
573
|
+
"details": "List of public-keys per user",
|
|
574
|
+
"maxElements": 10,
|
|
575
|
+
"optionType": [
|
|
576
|
+
"constant",
|
|
577
|
+
"variable",
|
|
578
|
+
"ignore"
|
|
579
|
+
],
|
|
580
|
+
"defaultOption": "ignore",
|
|
581
|
+
"dataPath": [],
|
|
582
|
+
"objectType": "tree",
|
|
583
|
+
"primaryKeys": [
|
|
584
|
+
"usertag"
|
|
585
|
+
],
|
|
586
|
+
"children": [
|
|
587
|
+
{
|
|
588
|
+
"key": "usertag",
|
|
589
|
+
"description": "key-type",
|
|
590
|
+
"details": "ssh key-type",
|
|
591
|
+
"optionType": [
|
|
592
|
+
"constant"
|
|
593
|
+
],
|
|
594
|
+
"defaultOption": "constant",
|
|
595
|
+
"dataType": {
|
|
596
|
+
"type": "string",
|
|
597
|
+
"minLength": 1,
|
|
598
|
+
"maxLength": 64
|
|
599
|
+
},
|
|
600
|
+
"dataPath": [],
|
|
601
|
+
"objectType": "object"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"key": "key-string",
|
|
605
|
+
"description": "key-string",
|
|
606
|
+
"details": "Public-key to be copied from client",
|
|
607
|
+
"optionType": [
|
|
608
|
+
"constant"
|
|
609
|
+
],
|
|
610
|
+
"defaultOption": "constant",
|
|
611
|
+
"dataType": {
|
|
612
|
+
"type": "string",
|
|
613
|
+
"minLength": 1,
|
|
614
|
+
"maxLength": 1024
|
|
615
|
+
},
|
|
616
|
+
"dataPath": [],
|
|
617
|
+
"objectType": "object"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"key": "key-type",
|
|
621
|
+
"description": "key-type",
|
|
622
|
+
"details": "ssh key-type",
|
|
623
|
+
"optionType": [
|
|
624
|
+
"constant"
|
|
625
|
+
],
|
|
626
|
+
"defaultOption": "constant",
|
|
627
|
+
"dataType": {
|
|
628
|
+
"type": "string",
|
|
629
|
+
"minLength": 1,
|
|
630
|
+
"maxLength": 32,
|
|
631
|
+
"default": "ssh-rsa"
|
|
632
|
+
},
|
|
633
|
+
"dataPath": [],
|
|
634
|
+
"objectType": "object"
|
|
635
|
+
}
|
|
636
|
+
]
|
|
637
|
+
}
|
|
638
|
+
]
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"key": "ciscotacro-user",
|
|
642
|
+
"description": "Cisco Tac Enable Read only",
|
|
643
|
+
"details": "Cisco Tac Enable Read only",
|
|
644
|
+
"optionType": [
|
|
645
|
+
"constant",
|
|
646
|
+
"variable",
|
|
647
|
+
"ignore"
|
|
648
|
+
],
|
|
649
|
+
"defaultOption": "ignore",
|
|
650
|
+
"dataType": {
|
|
651
|
+
"type": "boolean",
|
|
652
|
+
"default": "true"
|
|
653
|
+
},
|
|
654
|
+
"dataPath": [
|
|
655
|
+
"aaa"
|
|
656
|
+
],
|
|
657
|
+
"objectType": "object"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"key": "ciscotacrw-user",
|
|
661
|
+
"description": "Cisco Tac Enable Read and Write",
|
|
662
|
+
"details": "Cisco Tac Enable Read and Write",
|
|
663
|
+
"optionType": [
|
|
664
|
+
"constant",
|
|
665
|
+
"variable",
|
|
666
|
+
"ignore"
|
|
667
|
+
],
|
|
668
|
+
"defaultOption": "ignore",
|
|
669
|
+
"dataType": {
|
|
670
|
+
"type": "boolean",
|
|
671
|
+
"default": "true"
|
|
672
|
+
},
|
|
673
|
+
"dataPath": [
|
|
674
|
+
"aaa"
|
|
675
|
+
],
|
|
676
|
+
"objectType": "object"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"key": "timeout",
|
|
680
|
+
"description": "Timeout",
|
|
681
|
+
"details": "Configure how long to wait for replies from the TACACS server",
|
|
682
|
+
"optionType": [
|
|
683
|
+
"constant",
|
|
684
|
+
"variable",
|
|
685
|
+
"ignore"
|
|
686
|
+
],
|
|
687
|
+
"defaultOption": "ignore",
|
|
688
|
+
"dataType": {
|
|
689
|
+
"type": "number",
|
|
690
|
+
"min": 1,
|
|
691
|
+
"max": 1000,
|
|
692
|
+
"default": 5
|
|
693
|
+
},
|
|
694
|
+
"dataPath": [
|
|
695
|
+
"tacacs"
|
|
696
|
+
],
|
|
697
|
+
"objectType": "object"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"key": "authentication",
|
|
701
|
+
"description": "Authentication",
|
|
702
|
+
"details": "TACACS authentication type",
|
|
703
|
+
"optionType": [
|
|
704
|
+
"constant",
|
|
705
|
+
"variable",
|
|
706
|
+
"ignore"
|
|
707
|
+
],
|
|
708
|
+
"defaultOption": "ignore",
|
|
709
|
+
"dataType": {
|
|
710
|
+
"type": "enum",
|
|
711
|
+
"values": [
|
|
712
|
+
{
|
|
713
|
+
"key": "ascii",
|
|
714
|
+
"value": "ASCII"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"key": "pap",
|
|
718
|
+
"value": "PAP"
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
"default": "pap"
|
|
722
|
+
},
|
|
723
|
+
"dataPath": [
|
|
724
|
+
"tacacs"
|
|
725
|
+
],
|
|
726
|
+
"objectType": "object"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"key": "server",
|
|
730
|
+
"description": "Server",
|
|
731
|
+
"details": "Configure the TACACS server",
|
|
732
|
+
"maxElements": 8,
|
|
733
|
+
"optionType": [
|
|
734
|
+
"constant",
|
|
735
|
+
"variable",
|
|
736
|
+
"ignore"
|
|
737
|
+
],
|
|
738
|
+
"defaultOption": "ignore",
|
|
739
|
+
"dataPath": [
|
|
740
|
+
"tacacs"
|
|
741
|
+
],
|
|
742
|
+
"objectType": "tree",
|
|
743
|
+
"primaryKeys": [
|
|
744
|
+
"address"
|
|
745
|
+
],
|
|
746
|
+
"children": [
|
|
747
|
+
{
|
|
748
|
+
"key": "address",
|
|
749
|
+
"description": "Address",
|
|
750
|
+
"details": "Set IP address of TACACS server",
|
|
751
|
+
"optionType": [
|
|
752
|
+
"constant",
|
|
753
|
+
"variable"
|
|
754
|
+
],
|
|
755
|
+
"defaultOption": "constant",
|
|
756
|
+
"dataType": {
|
|
757
|
+
"type": "ip"
|
|
758
|
+
},
|
|
759
|
+
"dataPath": [],
|
|
760
|
+
"objectType": "object"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"key": "auth-port",
|
|
764
|
+
"description": "Authentication Port",
|
|
765
|
+
"details": "Set port to use to connect to TACACS server",
|
|
766
|
+
"optionType": [
|
|
767
|
+
"constant",
|
|
768
|
+
"variable",
|
|
769
|
+
"ignore"
|
|
770
|
+
],
|
|
771
|
+
"defaultOption": "ignore",
|
|
772
|
+
"dataType": {
|
|
773
|
+
"type": "number",
|
|
774
|
+
"min": 0,
|
|
775
|
+
"max": 65535,
|
|
776
|
+
"default": 49
|
|
777
|
+
},
|
|
778
|
+
"dataPath": [],
|
|
779
|
+
"objectType": "object"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"key": "vpn",
|
|
783
|
+
"description": "VPN ID",
|
|
784
|
+
"details": "Set VPN in which TACACS server is located",
|
|
785
|
+
"optionType": [
|
|
786
|
+
"constant",
|
|
787
|
+
"variable",
|
|
788
|
+
"ignore"
|
|
789
|
+
],
|
|
790
|
+
"defaultOption": "ignore",
|
|
791
|
+
"dataType": {
|
|
792
|
+
"type": "number",
|
|
793
|
+
"min": 0,
|
|
794
|
+
"max": 65530,
|
|
795
|
+
"default": 0
|
|
796
|
+
},
|
|
797
|
+
"dataPath": [],
|
|
798
|
+
"objectType": "object"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"key": "source-interface",
|
|
802
|
+
"description": "Source Interface",
|
|
803
|
+
"details": "Set interface to use to reach TACACS server",
|
|
804
|
+
"optionType": [
|
|
805
|
+
"constant",
|
|
806
|
+
"variable",
|
|
807
|
+
"ignore"
|
|
808
|
+
],
|
|
809
|
+
"defaultOption": "ignore",
|
|
810
|
+
"dataType": {
|
|
811
|
+
"type": "string"
|
|
812
|
+
},
|
|
813
|
+
"dataPath": [],
|
|
814
|
+
"objectType": "object"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"key": "key",
|
|
818
|
+
"description": "Key",
|
|
819
|
+
"details": "Set the password to access the TACACS server",
|
|
820
|
+
"optionType": [
|
|
821
|
+
"constant",
|
|
822
|
+
"variable",
|
|
823
|
+
"ignore"
|
|
824
|
+
],
|
|
825
|
+
"defaultOption": "ignore",
|
|
826
|
+
"dataType": {
|
|
827
|
+
"type": "string"
|
|
828
|
+
},
|
|
829
|
+
"dataPath": [],
|
|
830
|
+
"objectType": "object",
|
|
831
|
+
"objectStatus": "deprecated"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"key": "secret-key",
|
|
835
|
+
"description": "Secret Key",
|
|
836
|
+
"details": "Set the AES encrypted key to access the TACACS server",
|
|
837
|
+
"optionType": [
|
|
838
|
+
"constant",
|
|
839
|
+
"variable",
|
|
840
|
+
"ignore"
|
|
841
|
+
],
|
|
842
|
+
"defaultOption": "ignore",
|
|
843
|
+
"dataType": {
|
|
844
|
+
"type": "restrictedPassphrase",
|
|
845
|
+
"minLength": 1,
|
|
846
|
+
"maxLength": 128
|
|
847
|
+
},
|
|
848
|
+
"dataPath": [],
|
|
849
|
+
"objectType": "object"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"key": "priority",
|
|
853
|
+
"description": "Priority",
|
|
854
|
+
"details": "TACACS server priority <0..7>",
|
|
855
|
+
"optionType": [
|
|
856
|
+
"constant",
|
|
857
|
+
"variable",
|
|
858
|
+
"ignore"
|
|
859
|
+
],
|
|
860
|
+
"defaultOption": "ignore",
|
|
861
|
+
"dataType": {
|
|
862
|
+
"type": "number",
|
|
863
|
+
"min": 0,
|
|
864
|
+
"max": 7,
|
|
865
|
+
"default": 0
|
|
866
|
+
},
|
|
867
|
+
"dataPath": [],
|
|
868
|
+
"objectType": "object"
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"key": "timeout",
|
|
874
|
+
"description": "Timeout",
|
|
875
|
+
"details": "Configure how long to wait for replies from the RADIUS server",
|
|
876
|
+
"optionType": [
|
|
877
|
+
"constant",
|
|
878
|
+
"variable",
|
|
879
|
+
"ignore"
|
|
880
|
+
],
|
|
881
|
+
"defaultOption": "ignore",
|
|
882
|
+
"dataType": {
|
|
883
|
+
"type": "number",
|
|
884
|
+
"min": 1,
|
|
885
|
+
"max": 1000,
|
|
886
|
+
"default": 5
|
|
887
|
+
},
|
|
888
|
+
"dataPath": [
|
|
889
|
+
"radius"
|
|
890
|
+
],
|
|
891
|
+
"objectType": "object"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"key": "retransmit",
|
|
895
|
+
"description": "Retransmit Count",
|
|
896
|
+
"details": "Configure how many times to contact each RADIUS server",
|
|
897
|
+
"optionType": [
|
|
898
|
+
"constant",
|
|
899
|
+
"variable",
|
|
900
|
+
"ignore"
|
|
901
|
+
],
|
|
902
|
+
"defaultOption": "ignore",
|
|
903
|
+
"dataType": {
|
|
904
|
+
"type": "number",
|
|
905
|
+
"min": 1,
|
|
906
|
+
"max": 1000,
|
|
907
|
+
"default": 3
|
|
908
|
+
},
|
|
909
|
+
"dataPath": [
|
|
910
|
+
"radius"
|
|
911
|
+
],
|
|
912
|
+
"objectType": "object"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"key": "server",
|
|
916
|
+
"description": "Server",
|
|
917
|
+
"details": "Configure the RADIUS server",
|
|
918
|
+
"maxElements": 8,
|
|
919
|
+
"optionType": [
|
|
920
|
+
"constant",
|
|
921
|
+
"variable",
|
|
922
|
+
"ignore"
|
|
923
|
+
],
|
|
924
|
+
"defaultOption": "ignore",
|
|
925
|
+
"dataPath": [
|
|
926
|
+
"radius"
|
|
927
|
+
],
|
|
928
|
+
"objectType": "tree",
|
|
929
|
+
"primaryKeys": [
|
|
930
|
+
"address"
|
|
931
|
+
],
|
|
932
|
+
"children": [
|
|
933
|
+
{
|
|
934
|
+
"key": "address",
|
|
935
|
+
"description": "Address",
|
|
936
|
+
"details": "Set IP address of RADIUS server",
|
|
937
|
+
"optionType": [
|
|
938
|
+
"constant",
|
|
939
|
+
"variable"
|
|
940
|
+
],
|
|
941
|
+
"defaultOption": "constant",
|
|
942
|
+
"dataType": {
|
|
943
|
+
"type": "ip"
|
|
944
|
+
},
|
|
945
|
+
"dataPath": [],
|
|
946
|
+
"objectType": "object"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"key": "tag",
|
|
950
|
+
"description": "Tag",
|
|
951
|
+
"details": "Reference tag/name for the server",
|
|
952
|
+
"optionType": [
|
|
953
|
+
"constant",
|
|
954
|
+
"variable",
|
|
955
|
+
"ignore"
|
|
956
|
+
],
|
|
957
|
+
"defaultOption": "ignore",
|
|
958
|
+
"dataType": {
|
|
959
|
+
"type": "string",
|
|
960
|
+
"minLength": 4,
|
|
961
|
+
"maxLength": 16
|
|
962
|
+
},
|
|
963
|
+
"dataPath": [],
|
|
964
|
+
"objectType": "object"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"key": "auth-port",
|
|
968
|
+
"description": "Authentication Port",
|
|
969
|
+
"details": "Set port to use to connect to RADIUS server",
|
|
970
|
+
"optionType": [
|
|
971
|
+
"constant",
|
|
972
|
+
"variable",
|
|
973
|
+
"ignore"
|
|
974
|
+
],
|
|
975
|
+
"defaultOption": "ignore",
|
|
976
|
+
"dataType": {
|
|
977
|
+
"type": "number",
|
|
978
|
+
"min": 0,
|
|
979
|
+
"max": 65535,
|
|
980
|
+
"default": 1812
|
|
981
|
+
},
|
|
982
|
+
"dataPath": [],
|
|
983
|
+
"objectType": "object"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"key": "acct-port",
|
|
987
|
+
"description": "Accounting Port",
|
|
988
|
+
"details": "Set port to use to connect to RADIUS server",
|
|
989
|
+
"optionType": [
|
|
990
|
+
"constant",
|
|
991
|
+
"variable",
|
|
992
|
+
"ignore"
|
|
993
|
+
],
|
|
994
|
+
"defaultOption": "ignore",
|
|
995
|
+
"dataType": {
|
|
996
|
+
"type": "number",
|
|
997
|
+
"min": 0,
|
|
998
|
+
"max": 65535,
|
|
999
|
+
"default": 1813
|
|
1000
|
+
},
|
|
1001
|
+
"dataPath": [],
|
|
1002
|
+
"objectType": "object"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"key": "vpn",
|
|
1006
|
+
"description": "VPN ID",
|
|
1007
|
+
"details": "Set VPN in which RADIUS server is located",
|
|
1008
|
+
"optionType": [
|
|
1009
|
+
"constant",
|
|
1010
|
+
"variable",
|
|
1011
|
+
"ignore"
|
|
1012
|
+
],
|
|
1013
|
+
"defaultOption": "ignore",
|
|
1014
|
+
"dataType": {
|
|
1015
|
+
"type": "number",
|
|
1016
|
+
"min": 0,
|
|
1017
|
+
"max": 65530,
|
|
1018
|
+
"default": 0
|
|
1019
|
+
},
|
|
1020
|
+
"dataPath": [],
|
|
1021
|
+
"objectType": "object"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"key": "source-interface",
|
|
1025
|
+
"description": "Source Interface",
|
|
1026
|
+
"details": "Set interface to use to reach RADIUS server",
|
|
1027
|
+
"optionType": [
|
|
1028
|
+
"constant",
|
|
1029
|
+
"variable",
|
|
1030
|
+
"ignore"
|
|
1031
|
+
],
|
|
1032
|
+
"defaultOption": "ignore",
|
|
1033
|
+
"dataType": {
|
|
1034
|
+
"type": "string"
|
|
1035
|
+
},
|
|
1036
|
+
"dataPath": [],
|
|
1037
|
+
"objectType": "object"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"key": "key",
|
|
1041
|
+
"description": "Key",
|
|
1042
|
+
"details": "Set the password to access the RADIUS server",
|
|
1043
|
+
"optionType": [
|
|
1044
|
+
"constant",
|
|
1045
|
+
"variable",
|
|
1046
|
+
"ignore"
|
|
1047
|
+
],
|
|
1048
|
+
"defaultOption": "ignore",
|
|
1049
|
+
"dataType": {
|
|
1050
|
+
"type": "string"
|
|
1051
|
+
},
|
|
1052
|
+
"dataPath": [],
|
|
1053
|
+
"objectType": "object",
|
|
1054
|
+
"objectStatus": "deprecated"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"key": "secret-key",
|
|
1058
|
+
"description": "Secret Key",
|
|
1059
|
+
"details": "Set the AES encrypted key to access the RADIUS server",
|
|
1060
|
+
"optionType": [
|
|
1061
|
+
"constant",
|
|
1062
|
+
"variable",
|
|
1063
|
+
"ignore"
|
|
1064
|
+
],
|
|
1065
|
+
"defaultOption": "ignore",
|
|
1066
|
+
"dataType": {
|
|
1067
|
+
"type": "restrictedPassphrase",
|
|
1068
|
+
"ngth": 1,
|
|
1069
|
+
"maxLength": 128
|
|
1070
|
+
},
|
|
1071
|
+
"dataPath": [],
|
|
1072
|
+
"objectType": "object"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"key": "priority",
|
|
1076
|
+
"description": "Priority",
|
|
1077
|
+
"details": "RADIUS server priority <0..7>",
|
|
1078
|
+
"optionType": [
|
|
1079
|
+
"constant",
|
|
1080
|
+
"variable",
|
|
1081
|
+
"ignore"
|
|
1082
|
+
],
|
|
1083
|
+
"defaultOption": "ignore",
|
|
1084
|
+
"dataType": {
|
|
1085
|
+
"type": "number",
|
|
1086
|
+
"min": 0,
|
|
1087
|
+
"max": 7,
|
|
1088
|
+
"default": 0
|
|
1089
|
+
},
|
|
1090
|
+
"dataPath": [],
|
|
1091
|
+
"objectType": "object"
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
}
|
|
1095
|
+
]
|
|
1096
|
+
}
|