├── .bandit.yml ├── .dockerignore ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .github_changelog_generator ├── .gitignore ├── .pydocstyle.ini ├── .readthedocs.yml ├── .vale.ini ├── .yamllint ├── .yamllint.yml ├── Dockerfile ├── LICENSE ├── README.md ├── changes_for_4.md ├── changes_for_5.md ├── cli.py ├── docs ├── admin │ ├── install.md │ ├── release_notes │ │ ├── index.md │ │ ├── version_0.9.md │ │ ├── version_1.1.md │ │ ├── version_1.2.md │ │ ├── version_1.3.md │ │ ├── version_1.4.md │ │ ├── version_1.5.md │ │ ├── version_1.6.md │ │ ├── version_1.7.md │ │ ├── version_2.0.md │ │ ├── version_2.1.md │ │ ├── version_2.2.md │ │ ├── version_2.3.md │ │ ├── version_3.0.md │ │ ├── version_3.1.md │ │ ├── version_3.2.md │ │ ├── version_3.3.md │ │ ├── version_3.4.md │ │ ├── version_3.5.md │ │ ├── version_4.0.md │ │ ├── version_4.1.md │ │ ├── version_4.2.md │ │ ├── version_4.3.md │ │ ├── version_4.4.md │ │ ├── version_5.0.md │ │ ├── version_6.0.md │ │ ├── version_7.0.md │ │ ├── version_7.1.md │ │ ├── version_7.2.md │ │ ├── version_7.3.md │ │ ├── version_7.4.md │ │ ├── version_7.5.md │ │ ├── version_7.6.md │ │ ├── version_7.7.md │ │ ├── version_7.8.md │ │ ├── version_7.9.md │ │ ├── version_8.0.md │ │ └── version_8.1.md │ ├── uninstall.md │ └── upgrade.md ├── assets │ ├── extra.css │ ├── favicon.ico │ ├── networktocode_bw.png │ ├── networktocode_logo.png │ ├── networktocode_logo.svg │ └── overrides │ │ └── partials │ │ └── copyright.html ├── dev │ ├── code_reference │ │ └── parse.md │ ├── contributing.md │ ├── data_model.md │ ├── dev_environment.md │ ├── dev_parser.md │ └── extending.md ├── images │ ├── .keep │ └── icon-ntc-templates.png ├── index.md ├── requirements.txt └── user │ ├── faq.md │ ├── lib_getting_started.md │ ├── lib_overview.md │ └── lib_use_cases.md ├── mkdocs.yml ├── ntc_templates ├── __init__.py ├── parse.py └── templates │ ├── alcatel_aos_show_chassis.textfsm │ ├── alcatel_aos_show_interfaces_alias.textfsm │ ├── alcatel_aos_show_interfaces_ethernet.textfsm │ ├── alcatel_aos_show_interfaces_port.textfsm │ ├── alcatel_aos_show_interfaces_status.textfsm │ ├── alcatel_aos_show_linkagg_alias.textfsm │ ├── alcatel_aos_show_linkagg_port.textfsm │ ├── alcatel_aos_show_lldp_remote-system.textfsm │ ├── alcatel_aos_show_mac-address-table.textfsm │ ├── alcatel_aos_show_port-security.textfsm │ ├── alcatel_aos_show_system.textfsm │ ├── alcatel_aos_show_vlan.textfsm │ ├── alcatel_aos_show_vlan_port.textfsm │ ├── alcatel_sros_oam_mac-ping.textfsm │ ├── alcatel_sros_ping.textfsm │ ├── alcatel_sros_show_lag.textfsm │ ├── alcatel_sros_show_lag_port.textfsm │ ├── alcatel_sros_show_port.textfsm │ ├── alcatel_sros_show_port_description.textfsm │ ├── alcatel_sros_show_router_bgp_routes_vpn-ipv4.textfsm │ ├── alcatel_sros_show_router_bgp_summary_family.textfsm │ ├── alcatel_sros_show_router_interface.textfsm │ ├── alcatel_sros_show_router_isis_adjacency.textfsm │ ├── alcatel_sros_show_router_isis_interface.textfsm │ ├── alcatel_sros_show_router_ldp_interface.textfsm │ ├── alcatel_sros_show_router_mpls_interface.textfsm │ ├── alcatel_sros_show_router_mpls_lsp.textfsm │ ├── alcatel_sros_show_router_ospf_interface.textfsm │ ├── alcatel_sros_show_router_pim_interface.textfsm │ ├── alcatel_sros_show_router_rsvp_interface.textfsm │ ├── alcatel_sros_show_service_id_0_sap.textfsm │ ├── alcatel_sros_show_service_id_base.textfsm │ ├── alcatel_sros_show_service_id_interface.textfsm │ ├── alcatel_sros_show_service_sap-using.textfsm │ ├── alcatel_sros_show_service_sdp-using.textfsm │ ├── alcatel_sros_show_service_sdp.textfsm │ ├── alcatel_sros_show_service_service-name-using.textfsm │ ├── alcatel_sros_show_service_service-using.textfsm │ ├── alcatel_sros_show_system_cpu.textfsm │ ├── allied_telesis_awplus_show_arp.textfsm │ ├── allied_telesis_awplus_show_etherchannel_summary.textfsm │ ├── allied_telesis_awplus_show_interface.textfsm │ ├── allied_telesis_awplus_show_interface_switchport.textfsm │ ├── allied_telesis_awplus_show_ip_route.textfsm │ ├── allied_telesis_awplus_show_lldp_neighbors_detail.textfsm │ ├── allied_telesis_awplus_show_mac_address-table.textfsm │ ├── allied_telesis_awplus_show_static-channel-group.textfsm │ ├── allied_telesis_awplus_show_system.textfsm │ ├── allied_telesis_awplus_show_vlan_all.textfsm │ ├── arista_eos_bash_df_-h.textfsm │ ├── arista_eos_dir.textfsm │ ├── arista_eos_show_boot-config.textfsm │ ├── arista_eos_show_clock.textfsm │ ├── arista_eos_show_environment_cooling.textfsm │ ├── arista_eos_show_environment_power.textfsm │ ├── arista_eos_show_environment_temperature.textfsm │ ├── arista_eos_show_hostname.textfsm │ ├── arista_eos_show_interfaces.textfsm │ ├── arista_eos_show_interfaces_description.textfsm │ ├── arista_eos_show_interfaces_status.textfsm │ ├── arista_eos_show_interfaces_transceiver.textfsm │ ├── arista_eos_show_interfaces_transceiver_detail.textfsm │ ├── arista_eos_show_interfaces_transceiver_hardware.textfsm │ ├── arista_eos_show_inventory.textfsm │ ├── arista_eos_show_ip_access-lists.textfsm │ ├── arista_eos_show_ip_arp.textfsm │ ├── arista_eos_show_ip_bgp.textfsm │ ├── arista_eos_show_ip_bgp_detail.textfsm │ ├── arista_eos_show_ip_bgp_summary.textfsm │ ├── arista_eos_show_ip_helper-address.textfsm │ ├── arista_eos_show_ip_interface_brief.textfsm │ ├── arista_eos_show_ip_mroute_vrf_all_detail.textfsm │ ├── arista_eos_show_ip_ospf_database.textfsm │ ├── arista_eos_show_ip_ospf_interface_brief.textfsm │ ├── arista_eos_show_ip_ospf_neighbor.textfsm │ ├── arista_eos_show_ip_ospf_summary.textfsm │ ├── arista_eos_show_ip_route.textfsm │ ├── arista_eos_show_ipv6_bgp_summary.textfsm │ ├── arista_eos_show_isis_neighbors.textfsm │ ├── arista_eos_show_lldp_neighbors.textfsm │ ├── arista_eos_show_lldp_neighbors_detail.textfsm │ ├── arista_eos_show_mac_address-table.textfsm │ ├── arista_eos_show_mac_security_interface.textfsm │ ├── arista_eos_show_mac_security_mka_counters.textfsm │ ├── arista_eos_show_mac_security_participants_detail.textfsm │ ├── arista_eos_show_mlag.textfsm │ ├── arista_eos_show_module.textfsm │ ├── arista_eos_show_pim_ipv4_interface.textfsm │ ├── arista_eos_show_pim_ipv4_neighbor.textfsm │ ├── arista_eos_show_port-channel_summary.textfsm │ ├── arista_eos_show_processes_top_once.textfsm │ ├── arista_eos_show_reload_cause.textfsm │ ├── arista_eos_show_snmp_community.textfsm │ ├── arista_eos_show_version.textfsm │ ├── arista_eos_show_vlan.textfsm │ ├── arista_eos_show_vrf.textfsm │ ├── aruba_aoscx_show_aaa_authentication_port-access_interface_all_client-status.textfsm │ ├── aruba_aoscx_show_arp_all-vrfs.textfsm │ ├── aruba_aoscx_show_bfd_all-vrfs.textfsm │ ├── aruba_aoscx_show_bgp_all-vrfs_all_summary.textfsm │ ├── aruba_aoscx_show_bgp_all_all-vrfs_summary.textfsm │ ├── aruba_aoscx_show_interface.textfsm │ ├── aruba_aoscx_show_interface_dom_detail.textfsm │ ├── aruba_aoscx_show_ip_route_all-vrfs.textfsm │ ├── aruba_aoscx_show_lldp_neighbors-info_detail.textfsm │ ├── aruba_aoscx_show_mac-address-table.textfsm │ ├── aruba_aoscx_show_ntp_associations.textfsm │ ├── aruba_aoscx_show_system.textfsm │ ├── aruba_aoscx_show_vlan.textfsm │ ├── aruba_aoscx_show_vsf_detail.textfsm │ ├── aruba_os_show_ap_bss-table_details.textfsm │ ├── aruba_os_show_ap_database.textfsm │ ├── aruba_os_show_ap_database_long.textfsm │ ├── aruba_os_show_ap_radio-database.textfsm │ ├── aruba_os_show_arp.textfsm │ ├── aruba_os_show_hostname.textfsm │ ├── aruba_os_show_inventory.textfsm │ ├── aruba_os_show_ip_interface_brief.textfsm │ ├── aruba_os_show_ipv6_interface_brief.textfsm │ ├── aruba_os_show_version.textfsm │ ├── aruba_os_show_vlan.textfsm │ ├── avaya_ers_show_interface_name.textfsm │ ├── avaya_ers_show_logging_config.textfsm │ ├── avaya_ers_show_mac-address-table.textfsm │ ├── avaya_ers_show_mlt.textfsm │ ├── avaya_ers_show_mlt_all-members.textfsm │ ├── avaya_ers_show_sys-info.textfsm │ ├── avaya_ers_show_vlan.textfsm │ ├── avaya_vsp_show_software.textfsm │ ├── bogus_for_testing.textfsm │ ├── broadcom_icos_show_isdp_neighbors.textfsm │ ├── broadcom_icos_show_lldp_remote-device_all.textfsm │ ├── broadcom_icos_show_mac-addr-table.textfsm │ ├── broadcom_icos_show_version.textfsm │ ├── broadcom_icos_show_vlan_brief.textfsm │ ├── brocade_fastiron_show_arp.textfsm │ ├── brocade_fastiron_show_interfaces.textfsm │ ├── brocade_fastiron_show_interfaces_brief.textfsm │ ├── brocade_fastiron_show_lag_brief.textfsm │ ├── brocade_fastiron_show_lldp_neighbors.textfsm │ ├── brocade_fastiron_show_lldp_neighbors_detail.textfsm │ ├── brocade_fastiron_show_mac-address.textfsm │ ├── brocade_fastiron_show_metro.textfsm │ ├── brocade_fastiron_show_monitor.textfsm │ ├── brocade_fastiron_show_running-config_vlan.textfsm │ ├── brocade_fastiron_show_span.textfsm │ ├── brocade_fastiron_show_topo.textfsm │ ├── brocade_fastiron_show_trunk.textfsm │ ├── brocade_fastiron_show_version.textfsm │ ├── brocade_netiron_show_interfaces.textfsm │ ├── brocade_netiron_show_interfaces_brief.textfsm │ ├── brocade_netiron_show_lag_brief.textfsm │ ├── brocade_netiron_show_lldp_neighbors_detail.textfsm │ ├── brocade_netiron_show_metro.textfsm │ ├── brocade_netiron_show_monitor_actual.textfsm │ ├── brocade_netiron_show_running-config_interface.textfsm │ ├── brocade_netiron_show_running-config_vlan.textfsm │ ├── brocade_netiron_show_span.textfsm │ ├── brocade_netiron_show_topo.textfsm │ ├── checkpoint_gaia_fw_stat.textfsm │ ├── checkpoint_gaia_show_arp_dynamic_all.textfsm │ ├── checkpoint_gaia_show_asset_all.textfsm │ ├── checkpoint_gaia_show_dns.textfsm │ ├── checkpoint_gaia_show_domainname.textfsm │ ├── checkpoint_gaia_show_interfaces_all.textfsm │ ├── checkpoint_gaia_show_ipv6_route.textfsm │ ├── checkpoint_gaia_show_lom.textfsm │ ├── checkpoint_gaia_show_ntp_servers.textfsm │ ├── checkpoint_gaia_show_route.textfsm │ ├── checkpoint_gaia_show_version_all.textfsm │ ├── checkpoint_gaia_show_virtual-system_all.textfsm │ ├── ciena_saos_chassis_show_temperature.textfsm │ ├── ciena_saos_lldp_show_neighbors.textfsm │ ├── ciena_saos_port_show.textfsm │ ├── ciena_saos_port_show_ethernet-config.textfsm │ ├── ciena_saos_port_show_network-config.textfsm │ ├── ciena_saos_port_show_status.textfsm │ ├── ciena_saos_port_xcvr_show.textfsm │ ├── ciena_saos_rstp_show.textfsm │ ├── ciena_saos_software_show.textfsm │ ├── ciena_saos_ssh_server_show_key.textfsm │ ├── ciena_saos_traffic-profiling_standard-profile_show.textfsm │ ├── ciena_saos_vlan_show.textfsm │ ├── cisco_apic_fabric_show_vlan_extended.textfsm │ ├── cisco_asa_dir.textfsm │ ├── cisco_asa_ping.textfsm │ ├── cisco_asa_show_access-list.textfsm │ ├── cisco_asa_show_access-list_brief.textfsm │ ├── cisco_asa_show_arp.textfsm │ ├── cisco_asa_show_asp_drop.textfsm │ ├── cisco_asa_show_asp_table_vpn-context_detail.textfsm │ ├── cisco_asa_show_bgp_summary.textfsm │ ├── cisco_asa_show_cpu_usage_detailed.textfsm │ ├── cisco_asa_show_crypto_ikev1_sa_detail.textfsm │ ├── cisco_asa_show_crypto_ipsec_sa.textfsm │ ├── cisco_asa_show_failover.textfsm │ ├── cisco_asa_show_interface.textfsm │ ├── cisco_asa_show_interface_detail.textfsm │ ├── cisco_asa_show_interface_ip_brief.textfsm │ ├── cisco_asa_show_inventory.textfsm │ ├── cisco_asa_show_license_all.textfsm │ ├── cisco_asa_show_logging.textfsm │ ├── cisco_asa_show_module.textfsm │ ├── cisco_asa_show_module_details.textfsm │ ├── cisco_asa_show_module_status.textfsm │ ├── cisco_asa_show_name.textfsm │ ├── cisco_asa_show_nat.textfsm │ ├── cisco_asa_show_object-group_network.textfsm │ ├── cisco_asa_show_ospf_interface_brief.textfsm │ ├── cisco_asa_show_ospf_neighbor.textfsm │ ├── cisco_asa_show_port-channel_summary.textfsm │ ├── cisco_asa_show_resource_usage.textfsm │ ├── cisco_asa_show_route.textfsm │ ├── cisco_asa_show_running-config_access-group.textfsm │ ├── cisco_asa_show_running-config_all_crypto_map.textfsm │ ├── cisco_asa_show_running-config_crypto_ikev1.textfsm │ ├── cisco_asa_show_running-config_crypto_map.textfsm │ ├── cisco_asa_show_running-config_ipsec.textfsm │ ├── cisco_asa_show_running-config_object-group_service.textfsm │ ├── cisco_asa_show_running-config_object_network.textfsm │ ├── cisco_asa_show_running-config_object_service.textfsm │ ├── cisco_asa_show_running-config_tunnel-group.textfsm │ ├── cisco_asa_show_version.textfsm │ ├── cisco_asa_show_vpn-sessiondb.textfsm │ ├── cisco_asa_show_vpn-sessiondb_anyconnect.textfsm │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l.textfsm │ ├── cisco_asa_show_xlate.textfsm │ ├── cisco_ftd_show_vpn-sessiondb_anyconnect.textfsm │ ├── cisco_fxos_show_system_firmware.textfsm │ ├── cisco_ios_dir.textfsm │ ├── cisco_ios_ping.textfsm │ ├── cisco_ios_show_access-list.textfsm │ ├── cisco_ios_show_access-session.textfsm │ ├── cisco_ios_show_adjacency.textfsm │ ├── cisco_ios_show_alert_counters.textfsm │ ├── cisco_ios_show_aliases.textfsm │ ├── cisco_ios_show_ap_cdp_neighbors.textfsm │ ├── cisco_ios_show_ap_summary.textfsm │ ├── cisco_ios_show_archive.textfsm │ ├── cisco_ios_show_arp.textfsm │ ├── cisco_ios_show_authentication_sessions.textfsm │ ├── cisco_ios_show_authentication_sessions_method_details.textfsm │ ├── cisco_ios_show_bfd_neighbors_details.textfsm │ ├── cisco_ios_show_boot.textfsm │ ├── cisco_ios_show_capability_feature_routing.textfsm │ ├── cisco_ios_show_cdp_neighbors.textfsm │ ├── cisco_ios_show_cdp_neighbors_detail.textfsm │ ├── cisco_ios_show_clock.textfsm │ ├── cisco_ios_show_controller_t1.textfsm │ ├── cisco_ios_show_crypto_ipsec_sa_detail.textfsm │ ├── cisco_ios_show_crypto_pki_certificates.textfsm │ ├── cisco_ios_show_crypto_session_detail.textfsm │ ├── cisco_ios_show_cts_credentials.textfsm │ ├── cisco_ios_show_cts_pacs.textfsm │ ├── cisco_ios_show_dhcp_lease.textfsm │ ├── cisco_ios_show_dmvpn.textfsm │ ├── cisco_ios_show_dot1x_all.textfsm │ ├── cisco_ios_show_endpoint-tracker.textfsm │ ├── cisco_ios_show_endpoint-tracker_tracker-group.textfsm │ ├── cisco_ios_show_environment_power_all.textfsm │ ├── cisco_ios_show_environment_temperature.textfsm │ ├── cisco_ios_show_etherchannel_summary.textfsm │ ├── cisco_ios_show_file_systems.textfsm │ ├── cisco_ios_show_hosts_summary.textfsm │ ├── cisco_ios_show_interface_link.textfsm │ ├── cisco_ios_show_interface_transceiver.textfsm │ ├── cisco_ios_show_interfaces.textfsm │ ├── cisco_ios_show_interfaces_description.textfsm │ ├── cisco_ios_show_interfaces_status.textfsm │ ├── cisco_ios_show_interfaces_switchport.textfsm │ ├── cisco_ios_show_inventory.textfsm │ ├── cisco_ios_show_ip_access-lists.textfsm │ ├── cisco_ios_show_ip_arp.textfsm │ ├── cisco_ios_show_ip_bgp.textfsm │ ├── cisco_ios_show_ip_bgp_neighbors.textfsm │ ├── cisco_ios_show_ip_bgp_neighbors_advertised-routes.textfsm │ ├── cisco_ios_show_ip_bgp_summary.textfsm │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors.textfsm │ ├── cisco_ios_show_ip_cef.textfsm │ ├── cisco_ios_show_ip_cef_detail.textfsm │ ├── cisco_ios_show_ip_device_tracking_all.textfsm │ ├── cisco_ios_show_ip_dhcp_binding.textfsm │ ├── cisco_ios_show_ip_dhcp_snooping_binding.textfsm │ ├── cisco_ios_show_ip_eigrp_interfaces_detail.textfsm │ ├── cisco_ios_show_ip_eigrp_neighbors.textfsm │ ├── cisco_ios_show_ip_eigrp_neighbors_detail.textfsm │ ├── cisco_ios_show_ip_eigrp_topology.textfsm │ ├── cisco_ios_show_ip_flow_toptalkers.textfsm │ ├── cisco_ios_show_ip_http_server_status.textfsm │ ├── cisco_ios_show_ip_interface.textfsm │ ├── cisco_ios_show_ip_interface_brief.textfsm │ ├── cisco_ios_show_ip_mroute.textfsm │ ├── cisco_ios_show_ip_nat_translations.textfsm │ ├── cisco_ios_show_ip_ospf_database.textfsm │ ├── cisco_ios_show_ip_ospf_database_network.textfsm │ ├── cisco_ios_show_ip_ospf_database_router.textfsm │ ├── cisco_ios_show_ip_ospf_interface_brief.textfsm │ ├── cisco_ios_show_ip_ospf_neighbor.textfsm │ ├── cisco_ios_show_ip_ospf_neighbor_detail.textfsm │ ├── cisco_ios_show_ip_prefix-list.textfsm │ ├── cisco_ios_show_ip_route.textfsm │ ├── cisco_ios_show_ip_route_summary.textfsm │ ├── cisco_ios_show_ip_source_binding.textfsm │ ├── cisco_ios_show_ip_vrf_interfaces.textfsm │ ├── cisco_ios_show_ipv6_access-lists.textfsm │ ├── cisco_ios_show_ipv6_interface_brief.textfsm │ ├── cisco_ios_show_ipv6_neighbors.textfsm │ ├── cisco_ios_show_ipv6_route.textfsm │ ├── cisco_ios_show_isdn_status.textfsm │ ├── cisco_ios_show_isis_neighbors.textfsm │ ├── cisco_ios_show_license.textfsm │ ├── cisco_ios_show_license_status.textfsm │ ├── cisco_ios_show_lldp_neighbors.textfsm │ ├── cisco_ios_show_lldp_neighbors_detail.textfsm │ ├── cisco_ios_show_logging.textfsm │ ├── cisco_ios_show_mac-address-table.textfsm │ ├── cisco_ios_show_module.textfsm │ ├── cisco_ios_show_module_online_diag.textfsm │ ├── cisco_ios_show_module_status.textfsm │ ├── cisco_ios_show_module_submodule.textfsm │ ├── cisco_ios_show_mpls_interfaces.textfsm │ ├── cisco_ios_show_mpls_l2transport_vc.textfsm │ ├── cisco_ios_show_nve_peers.textfsm │ ├── cisco_ios_show_nve_vni.textfsm │ ├── cisco_ios_show_object-group.textfsm │ ├── cisco_ios_show_platform.textfsm │ ├── cisco_ios_show_platform_diag.textfsm │ ├── cisco_ios_show_policy-map.textfsm │ ├── cisco_ios_show_port-security_interface_interface.textfsm │ ├── cisco_ios_show_power_available.textfsm │ ├── cisco_ios_show_power_inline.textfsm │ ├── cisco_ios_show_power_status.textfsm │ ├── cisco_ios_show_power_supplies.textfsm │ ├── cisco_ios_show_power_used.textfsm │ ├── cisco_ios_show_processes_cpu.textfsm │ ├── cisco_ios_show_processes_memory_sorted.textfsm │ ├── cisco_ios_show_redundancy.textfsm │ ├── cisco_ios_show_rep_topology.textfsm │ ├── cisco_ios_show_route-map.textfsm │ ├── cisco_ios_show_running-config_partition_access-list.textfsm │ ├── cisco_ios_show_running-config_partition_route-map.textfsm │ ├── cisco_ios_show_sdwan_bfd_sessions_table.textfsm │ ├── cisco_ios_show_sdwan_bfd_summary.textfsm │ ├── cisco_ios_show_sdwan_control_connections.textfsm │ ├── cisco_ios_show_sdwan_omp_peers.textfsm │ ├── cisco_ios_show_sdwan_tunnel_statistics_table.textfsm │ ├── cisco_ios_show_snmp_community.textfsm │ ├── cisco_ios_show_snmp_group.textfsm │ ├── cisco_ios_show_snmp_user.textfsm │ ├── cisco_ios_show_spanning-tree.textfsm │ ├── cisco_ios_show_spanning-tree_root.textfsm │ ├── cisco_ios_show_stack-power.textfsm │ ├── cisco_ios_show_standby.textfsm │ ├── cisco_ios_show_standby_brief.textfsm │ ├── cisco_ios_show_switch_detail.textfsm │ ├── cisco_ios_show_switch_detail_stack_ports.textfsm │ ├── cisco_ios_show_switch_virtual.textfsm │ ├── cisco_ios_show_tacacs.textfsm │ ├── cisco_ios_show_users.textfsm │ ├── cisco_ios_show_version.textfsm │ ├── cisco_ios_show_vlan.textfsm │ ├── cisco_ios_show_vlan_group.textfsm │ ├── cisco_ios_show_vlans.textfsm │ ├── cisco_ios_show_vrf.textfsm │ ├── cisco_ios_show_vrf_detail.textfsm │ ├── cisco_ios_show_vrrp_all.textfsm │ ├── cisco_ios_show_vrrp_brief.textfsm │ ├── cisco_ios_show_vtp_status.textfsm │ ├── cisco_ios_show_wireless_tag_policy_summary.textfsm │ ├── cisco_ios_traceroute.textfsm │ ├── cisco_nvfis_show_bridge-settings.textfsm │ ├── cisco_nvfis_show_configuration_commit_changes.textfsm │ ├── cisco_nvfis_show_nic.textfsm │ ├── cisco_nvfis_show_running-config_snmp_enable.textfsm │ ├── cisco_nvfis_show_running-config_snmp_group.textfsm │ ├── cisco_nvfis_show_running-config_snmp_host.textfsm │ ├── cisco_nvfis_show_running-config_snmp_user.textfsm │ ├── cisco_nvfis_show_running-config_system_settings.textfsm │ ├── cisco_nvfis_show_running-config_system_time.textfsm │ ├── cisco_nvfis_show_running-config_system_upgrade.textfsm │ ├── cisco_nvfis_show_version.textfsm │ ├── cisco_nxos_dir.textfsm │ ├── cisco_nxos_show_access-lists.textfsm │ ├── cisco_nxos_show_bfd_neighbors.textfsm │ ├── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_detail.textfsm │ ├── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_neighbors_routes.textfsm │ ├── cisco_nxos_show_cdp_neighbors.textfsm │ ├── cisco_nxos_show_cdp_neighbors_detail.textfsm │ ├── cisco_nxos_show_clock.textfsm │ ├── cisco_nxos_show_configuration_session_summary.textfsm │ ├── cisco_nxos_show_cts_interface_all.textfsm │ ├── cisco_nxos_show_cts_interface_brief.textfsm │ ├── cisco_nxos_show_environment.textfsm │ ├── cisco_nxos_show_environment_temperature.textfsm │ ├── cisco_nxos_show_fabricpath_route.textfsm │ ├── cisco_nxos_show_feature.textfsm │ ├── cisco_nxos_show_fex.textfsm │ ├── cisco_nxos_show_fex_id.textfsm │ ├── cisco_nxos_show_flogi_database.textfsm │ ├── cisco_nxos_show_forwarding_adjacency.textfsm │ ├── cisco_nxos_show_forwarding_ipv4_route.textfsm │ ├── cisco_nxos_show_hardware_internal_bigsur_all-ports_detail.textfsm │ ├── cisco_nxos_show_hostname.textfsm │ ├── cisco_nxos_show_hsrp_all.textfsm │ ├── cisco_nxos_show_interface.textfsm │ ├── cisco_nxos_show_interface_brief.textfsm │ ├── cisco_nxos_show_interface_capabilities.textfsm │ ├── cisco_nxos_show_interface_description.textfsm │ ├── cisco_nxos_show_interface_snmp-ifindex.textfsm │ ├── cisco_nxos_show_interface_status.textfsm │ ├── cisco_nxos_show_interface_switchport.textfsm │ ├── cisco_nxos_show_interface_transceiver.textfsm │ ├── cisco_nxos_show_interface_transceiver_details.textfsm │ ├── cisco_nxos_show_inventory.textfsm │ ├── cisco_nxos_show_ip_adjacency.textfsm │ ├── cisco_nxos_show_ip_arp.textfsm │ ├── cisco_nxos_show_ip_arp_detail.textfsm │ ├── cisco_nxos_show_ip_arp_detail_vrf_all.textfsm │ ├── cisco_nxos_show_ip_bgp.textfsm │ ├── cisco_nxos_show_ip_bgp_neighbors.textfsm │ ├── cisco_nxos_show_ip_bgp_summary.textfsm │ ├── cisco_nxos_show_ip_bgp_summary_vrf.textfsm │ ├── cisco_nxos_show_ip_community-list.textfsm │ ├── cisco_nxos_show_ip_dhcp_relay_address.textfsm │ ├── cisco_nxos_show_ip_dhcp_snooping_statistics.textfsm │ ├── cisco_nxos_show_ip_eigrp_neighbors.textfsm │ ├── cisco_nxos_show_ip_interface.textfsm │ ├── cisco_nxos_show_ip_interface_brief.textfsm │ ├── cisco_nxos_show_ip_interface_vrf_all.textfsm │ ├── cisco_nxos_show_ip_mroutes_vrf_all.textfsm │ ├── cisco_nxos_show_ip_msdp_summary_vrf_all.textfsm │ ├── cisco_nxos_show_ip_ospf_database.textfsm │ ├── cisco_nxos_show_ip_ospf_interface_brief.textfsm │ ├── cisco_nxos_show_ip_ospf_neighbor.textfsm │ ├── cisco_nxos_show_ip_pim_group-range_vrf_all.textfsm │ ├── cisco_nxos_show_ip_pim_interface_brief_vrf_all.textfsm │ ├── cisco_nxos_show_ip_pim_neighbor_vrf_all.textfsm │ ├── cisco_nxos_show_ip_pim_rp_vrf_all.textfsm │ ├── cisco_nxos_show_ip_route.textfsm │ ├── cisco_nxos_show_ipv6_interface_brief.textfsm │ ├── cisco_nxos_show_l2rib_internal_permanently-frozen-list.textfsm │ ├── cisco_nxos_show_license_usage.textfsm │ ├── cisco_nxos_show_lldp_neighbors.textfsm │ ├── cisco_nxos_show_lldp_neighbors_detail.textfsm │ ├── cisco_nxos_show_mac_address-table.textfsm │ ├── cisco_nxos_show_module.textfsm │ ├── cisco_nxos_show_nve_peers.textfsm │ ├── cisco_nxos_show_nve_vni.textfsm │ ├── cisco_nxos_show_nve_vni_interface_nve_1_detail.textfsm │ ├── cisco_nxos_show_port-channel_summary.textfsm │ ├── cisco_nxos_show_processes_cpu.textfsm │ ├── cisco_nxos_show_route-map.textfsm │ ├── cisco_nxos_show_spanning-tree_root.textfsm │ ├── cisco_nxos_show_switching-mode.textfsm │ ├── cisco_nxos_show_vdc.textfsm │ ├── cisco_nxos_show_version.textfsm │ ├── cisco_nxos_show_vlan.textfsm │ ├── cisco_nxos_show_vpc.textfsm │ ├── cisco_nxos_show_vrf.textfsm │ ├── cisco_nxos_show_vrf_detail.textfsm │ ├── cisco_nxos_show_vrf_interface.textfsm │ ├── cisco_s300_show_interfaces_description.textfsm │ ├── cisco_s300_show_interfaces_status.textfsm │ ├── cisco_s300_show_interfaces_switchport.textfsm │ ├── cisco_s300_show_ip_interface.textfsm │ ├── cisco_s300_show_lldp_neighbors.textfsm │ ├── cisco_s300_show_mac_address-table.textfsm │ ├── cisco_s300_show_system.textfsm │ ├── cisco_s300_show_system_id.textfsm │ ├── cisco_s300_show_version.textfsm │ ├── cisco_s300_show_vlan.textfsm │ ├── cisco_viptela_show_arp.textfsm │ ├── cisco_viptela_show_control_connections.textfsm │ ├── cisco_viptela_show_interface.textfsm │ ├── cisco_viptela_show_omp_peers.textfsm │ ├── cisco_wlc_ssh_show_802.11a.textfsm │ ├── cisco_wlc_ssh_show_802.11a_cleanair_config.textfsm │ ├── cisco_wlc_ssh_show_advanced_802.11a_channel.textfsm │ ├── cisco_wlc_ssh_show_ap_config_general.textfsm │ ├── cisco_wlc_ssh_show_ap_image_all.textfsm │ ├── cisco_wlc_ssh_show_ap_summary.textfsm │ ├── cisco_wlc_ssh_show_band-select.textfsm │ ├── cisco_wlc_ssh_show_boot.textfsm │ ├── cisco_wlc_ssh_show_cdp_neighbors_detail.textfsm │ ├── cisco_wlc_ssh_show_client_detail.textfsm │ ├── cisco_wlc_ssh_show_exclusionlist.textfsm │ ├── cisco_wlc_ssh_show_flexconnect_group_summary.textfsm │ ├── cisco_wlc_ssh_show_interface_detailed_id.textfsm │ ├── cisco_wlc_ssh_show_interface_group_summary.textfsm │ ├── cisco_wlc_ssh_show_interface_summary.textfsm │ ├── cisco_wlc_ssh_show_inventory.textfsm │ ├── cisco_wlc_ssh_show_mobility_anchor.textfsm │ ├── cisco_wlc_ssh_show_mobility_sum.textfsm │ ├── cisco_wlc_ssh_show_port_summary.textfsm │ ├── cisco_wlc_ssh_show_radius_summary.textfsm │ ├── cisco_wlc_ssh_show_redundancy_detail.textfsm │ ├── cisco_wlc_ssh_show_redundancy_summary.textfsm │ ├── cisco_wlc_ssh_show_rf-profile_summary.textfsm │ ├── cisco_wlc_ssh_show_stats_port_summary.textfsm │ ├── cisco_wlc_ssh_show_sysinfo.textfsm │ ├── cisco_wlc_ssh_show_tacacs_summary.textfsm │ ├── cisco_wlc_ssh_show_time.textfsm │ ├── cisco_wlc_ssh_show_wlan_sum.textfsm │ ├── cisco_xr_admin_show_controller_fabric_health.textfsm │ ├── cisco_xr_admin_show_environment_fan.textfsm │ ├── cisco_xr_admin_show_environment_power.textfsm │ ├── cisco_xr_admin_show_inventory.textfsm │ ├── cisco_xr_admin_show_platform.textfsm │ ├── cisco_xr_admin_show_vm.textfsm │ ├── cisco_xr_dir.textfsm │ ├── cisco_xr_ping.textfsm │ ├── cisco_xr_show_arp.textfsm │ ├── cisco_xr_show_asic-errors_all_location.textfsm │ ├── cisco_xr_show_bfd_sessions.textfsm │ ├── cisco_xr_show_bgp.textfsm │ ├── cisco_xr_show_bgp_instance_all_summary.textfsm │ ├── cisco_xr_show_bgp_neighbors.textfsm │ ├── cisco_xr_show_bgp_vrf_all_ipv4_unicast_summary.textfsm │ ├── cisco_xr_show_bgp_vrf_all_neighbors_advertised-routes.textfsm │ ├── cisco_xr_show_cdp_neighbors_detail.textfsm │ ├── cisco_xr_show_cef_drops_location.textfsm │ ├── cisco_xr_show_configuration_commit_list.textfsm │ ├── cisco_xr_show_controller_fabric_plane_all.textfsm │ ├── cisco_xr_show_controllers_HundredGigabitEthernet.textfsm │ ├── cisco_xr_show_controllers_all_phy.textfsm │ ├── cisco_xr_show_controllers_fabric_fia_drops_egress_location.textfsm │ ├── cisco_xr_show_controllers_fabric_fia_drops_ingress_location.textfsm │ ├── cisco_xr_show_controllers_fabric_fia_errors_egress_location.textfsm │ ├── cisco_xr_show_controllers_fabric_fia_errors_ingress_location.textfsm │ ├── cisco_xr_show_controllers_hundredgige_all.textfsm │ ├── cisco_xr_show_dhcp_ipv4_proxy_binding.textfsm │ ├── cisco_xr_show_drops_np_all.textfsm │ ├── cisco_xr_show_hsrp.textfsm │ ├── cisco_xr_show_install_active.textfsm │ ├── cisco_xr_show_interface_brief.textfsm │ ├── cisco_xr_show_interfaces.textfsm │ ├── cisco_xr_show_interfaces_description.textfsm │ ├── cisco_xr_show_interfaces_summary.textfsm │ ├── cisco_xr_show_ip_bgp_summary.textfsm │ ├── cisco_xr_show_ip_interface_brief.textfsm │ ├── cisco_xr_show_ip_route.textfsm │ ├── cisco_xr_show_ipv4_interface.textfsm │ ├── cisco_xr_show_ipv4_vrf_all_interface_brief.textfsm │ ├── cisco_xr_show_ipv6_neighbors.textfsm │ ├── cisco_xr_show_isis_neighbors.textfsm │ ├── cisco_xr_show_l2vpn_mac-learning_mac_all_location.textfsm │ ├── cisco_xr_show_lldp_neighbors.textfsm │ ├── cisco_xr_show_lldp_neighbors_detail.textfsm │ ├── cisco_xr_show_lpts_pifib_hardware_police_location.textfsm │ ├── cisco_xr_show_mpls_ldp_neighbor_brief.textfsm │ ├── cisco_xr_show_ospf_neighbor.textfsm │ ├── cisco_xr_show_ospf_vrf_all_interface_brief.textfsm │ ├── cisco_xr_show_ospf_vrf_all_neighbor.textfsm │ ├── cisco_xr_show_pim_ipv4_group-map.textfsm │ ├── cisco_xr_show_pim_ipv4_interface.textfsm │ ├── cisco_xr_show_pim_ipv4_neighbor.textfsm │ ├── cisco_xr_show_pim_neighbor.textfsm │ ├── cisco_xr_show_platform_summary_location_all.textfsm │ ├── cisco_xr_show_processes_cpu.textfsm │ ├── cisco_xr_show_redundancy_summary.textfsm │ ├── cisco_xr_show_rsvp_neighbors.textfsm │ ├── cisco_xr_show_running-config_hostname.textfsm │ ├── cisco_xr_show_version.textfsm │ ├── cisco_xr_show_version_brief.textfsm │ ├── cisco_xr_show_vrf_all_detail.textfsm │ ├── dell_force10_show_arp.textfsm │ ├── dell_force10_show_ip_interface_brief.textfsm │ ├── dell_force10_show_version.textfsm │ ├── dell_force10_show_vlan.textfsm │ ├── dell_force10_show_vlan_brief.textfsm │ ├── dell_powerconnect_show_bridge_address_table.textfsm │ ├── dell_powerconnect_show_interfaces_description.textfsm │ ├── dell_powerconnect_show_interfaces_status.textfsm │ ├── dlink_ds_show_arpentry.textfsm │ ├── edgecore_show_interfaces_brief.textfsm │ ├── edgecore_show_interfaces_status.textfsm │ ├── edgecore_show_interfaces_switchport.textfsm │ ├── edgecore_show_ip_interface.textfsm │ ├── edgecore_show_system.textfsm │ ├── edgecore_show_version.textfsm │ ├── edgecore_show_vlan.textfsm │ ├── eltex_show_interface.textfsm │ ├── eltex_show_interfaces_description.textfsm │ ├── eltex_show_interfaces_status.textfsm │ ├── eltex_show_interfaces_switchport.textfsm │ ├── eltex_show_ip_interface.textfsm │ ├── eltex_show_system.textfsm │ ├── eltex_show_system_id.textfsm │ ├── eltex_show_vlan.textfsm │ ├── ericsson_ipos_show_arp.textfsm │ ├── ericsson_ipos_show_isis_adjacency.textfsm │ ├── ericsson_ipos_show_version.textfsm │ ├── extreme_exos_show_fdb.textfsm │ ├── extreme_exos_show_iparp.textfsm │ ├── extreme_exos_show_ipconfig.textfsm │ ├── extreme_exos_show_ports_description.textfsm │ ├── extreme_exos_show_ports_information.textfsm │ ├── extreme_exos_show_ports_information_detail.textfsm │ ├── extreme_exos_show_sharing.textfsm │ ├── extreme_exos_show_vlan_description.textfsm │ ├── extreme_slxos_show_clock.textfsm │ ├── extreme_slxos_show_ip_interface_brief.textfsm │ ├── fortinet_diagnose_lldprx_port_neighbor_details_port-name.textfsm │ ├── fortinet_diagnose_sys_top.textfsm │ ├── fortinet_execute_date.textfsm │ ├── fortinet_execute_dhcp_lease-list.textfsm │ ├── fortinet_execute_log_display.textfsm │ ├── fortinet_execute_ping.textfsm │ ├── fortinet_execute_time.textfsm │ ├── fortinet_execute_traceroute.textfsm │ ├── fortinet_fnsysctl_ifconfig.textfsm │ ├── fortinet_get_hardware_nic.textfsm │ ├── fortinet_get_hardware_nic_nic-name.textfsm │ ├── fortinet_get_router_info_bgp_neighbors.textfsm │ ├── fortinet_get_router_info_bgp_summary.textfsm │ ├── fortinet_get_router_info_ospf_status.textfsm │ ├── fortinet_get_router_info_routing-table_all.textfsm │ ├── fortinet_get_system_arp.textfsm │ ├── fortinet_get_system_ha_status.textfsm │ ├── fortinet_get_system_interface.textfsm │ ├── fortinet_get_system_interface_physical.textfsm │ ├── fortinet_get_system_status.textfsm │ ├── fsas_sir_show_ether.textfsm │ ├── fsas_sir_show_ip_ospf_neighbor.textfsm │ ├── fsas_sir_show_ip_route.textfsm │ ├── fsas_sir_show_system_information.textfsm │ ├── fsas_sir_show_vlan.textfsm │ ├── hp_comware_display_arp.textfsm │ ├── hp_comware_display_bgp_peer_ipv4.textfsm │ ├── hp_comware_display_clock.textfsm │ ├── hp_comware_display_counters_bound_interface.textfsm │ ├── hp_comware_display_device_manuinfo.textfsm │ ├── hp_comware_display_interface.textfsm │ ├── hp_comware_display_interface_brief.textfsm │ ├── hp_comware_display_ip_interface.textfsm │ ├── hp_comware_display_ip_routing-table.textfsm │ ├── hp_comware_display_ip_vpn-instance.textfsm │ ├── hp_comware_display_ip_vpn-instance_instance-name.textfsm │ ├── hp_comware_display_link-aggregation_member-port.textfsm │ ├── hp_comware_display_link-aggregation_verbose.textfsm │ ├── hp_comware_display_lldp_neighbor-information_list.textfsm │ ├── hp_comware_display_lldp_neighbor-information_verbose.textfsm │ ├── hp_comware_display_mac-address.textfsm │ ├── hp_comware_display_vlan_all.textfsm │ ├── hp_comware_display_vlan_brief.textfsm │ ├── hp_procurve_show_arp.textfsm │ ├── hp_procurve_show_cdp_neighbors_detail.textfsm │ ├── hp_procurve_show_interfaces.textfsm │ ├── hp_procurve_show_interfaces_brief.textfsm │ ├── hp_procurve_show_ip.textfsm │ ├── hp_procurve_show_ip_route.textfsm │ ├── hp_procurve_show_lldp_info_remote-device.textfsm │ ├── hp_procurve_show_lldp_info_remote-device_detail.textfsm │ ├── hp_procurve_show_mac-address.textfsm │ ├── hp_procurve_show_port-security.textfsm │ ├── hp_procurve_show_system.textfsm │ ├── hp_procurve_show_tech_buffers.textfsm │ ├── hp_procurve_show_trunks.textfsm │ ├── hp_procurve_show_version.textfsm │ ├── hp_procurve_show_vlans.textfsm │ ├── huawei_ont_display_access_mode.textfsm │ ├── huawei_ont_display_boardItem.textfsm │ ├── huawei_ont_display_deviceInfo.textfsm │ ├── huawei_ont_display_epon_ont_info.textfsm │ ├── huawei_ont_display_flashlock_status.textfsm │ ├── huawei_ont_display_inner_version.textfsm │ ├── huawei_ont_display_lanmac.textfsm │ ├── huawei_ont_display_log_info.textfsm │ ├── huawei_ont_display_macaddress.textfsm │ ├── huawei_ont_display_machineItem.textfsm │ ├── huawei_ont_display_memory_info.textfsm │ ├── huawei_ont_display_optic.textfsm │ ├── huawei_ont_display_optmode.textfsm │ ├── huawei_ont_display_port_statistics_portid_0.textfsm │ ├── huawei_ont_display_portstatistics_portnum_0.textfsm │ ├── huawei_ont_display_pppoe_em_result.textfsm │ ├── huawei_ont_display_productmac.textfsm │ ├── huawei_ont_display_rf_config.textfsm │ ├── huawei_ont_display_sn.textfsm │ ├── huawei_ont_display_swm_bootstate.textfsm │ ├── huawei_ont_display_swm_state.textfsm │ ├── huawei_ont_display_sysinfo.textfsm │ ├── huawei_ont_display_timeout.textfsm │ ├── huawei_ont_display_version.textfsm │ ├── huawei_ont_display_wanmac.textfsm │ ├── huawei_ont_display_wifi_information.textfsm │ ├── huawei_smartax_display_board.textfsm │ ├── huawei_smartax_display_board_serial-number.textfsm │ ├── huawei_smartax_display_cpu.textfsm │ ├── huawei_smartax_display_location.textfsm │ ├── huawei_smartax_display_location_aaaa-aaaa-aaaa_ont.textfsm │ ├── huawei_smartax_display_mac-address.textfsm │ ├── huawei_smartax_display_mac-address_ont_0_1_2_0.textfsm │ ├── huawei_smartax_display_mem.textfsm │ ├── huawei_smartax_display_ont-lineprofile_gpon_all.textfsm │ ├── huawei_smartax_display_ont-srvprofile_gpon_all.textfsm │ ├── huawei_smartax_display_ont_autofind.textfsm │ ├── huawei_smartax_display_ont_capability_all.textfsm │ ├── huawei_smartax_display_ont_gemport_0_ontid_0.textfsm │ ├── huawei_smartax_display_ont_info_0_1.textfsm │ ├── huawei_smartax_display_ont_info_0_1_2.textfsm │ ├── huawei_smartax_display_ont_info_description.textfsm │ ├── huawei_smartax_display_ont_info_summary_ont.textfsm │ ├── huawei_smartax_display_ont_info_summary_sn.textfsm │ ├── huawei_smartax_display_ont_optical-info_0_all.textfsm │ ├── huawei_smartax_display_ont_port_state_0_1_eth-port.textfsm │ ├── huawei_smartax_display_ont_port_vlan_0_1_byport_eth_0.textfsm │ ├── huawei_smartax_display_ont_port_vlan_0_1_byvlan_0.textfsm │ ├── huawei_smartax_display_ont_snmp-profile_0_all.textfsm │ ├── huawei_smartax_display_ont_version_summary_0.textfsm │ ├── huawei_smartax_display_ont_wan-info_0_1_2_0.textfsm │ ├── huawei_smartax_display_ont_wlan-info_0_1_2_0.textfsm │ ├── huawei_smartax_display_ont_wlan-status_0_1.textfsm │ ├── huawei_smartax_display_port_info.textfsm │ ├── huawei_smartax_display_service-port_all.textfsm │ ├── huawei_smartax_display_sysman_service_state.textfsm │ ├── huawei_smartax_display_sysuptime.textfsm │ ├── huawei_smartax_display_temperature.textfsm │ ├── huawei_smartax_display_version.textfsm │ ├── huawei_smartax_ont_add.textfsm │ ├── huawei_smartax_port_vlan.textfsm │ ├── huawei_vrp_dir.textfsm │ ├── huawei_vrp_display_acl_all.textfsm │ ├── huawei_vrp_display_ap_all.textfsm │ ├── huawei_vrp_display_arp_all.textfsm │ ├── huawei_vrp_display_arp_brief.textfsm │ ├── huawei_vrp_display_bgp_peer.textfsm │ ├── huawei_vrp_display_device.textfsm │ ├── huawei_vrp_display_eth-trunk.textfsm │ ├── huawei_vrp_display_http_server.textfsm │ ├── huawei_vrp_display_interface.textfsm │ ├── huawei_vrp_display_interface_brief.textfsm │ ├── huawei_vrp_display_interface_description.textfsm │ ├── huawei_vrp_display_ip_routing-table_verbose.textfsm │ ├── huawei_vrp_display_ip_vpn-instance.textfsm │ ├── huawei_vrp_display_ip_vpn-instance_interface.textfsm │ ├── huawei_vrp_display_ipv6_neighbors.textfsm │ ├── huawei_vrp_display_isis_peer.textfsm │ ├── huawei_vrp_display_license_verbose.textfsm │ ├── huawei_vrp_display_lldp_neighbor.textfsm │ ├── huawei_vrp_display_mac-address.textfsm │ ├── huawei_vrp_display_module-information_verbose.textfsm │ ├── huawei_vrp_display_mpls_te_tunnel.textfsm │ ├── huawei_vrp_display_nat_server.textfsm │ ├── huawei_vrp_display_ntp_status.textfsm │ ├── huawei_vrp_display_patch-information.textfsm │ ├── huawei_vrp_display_port_vlan.textfsm │ ├── huawei_vrp_display_service-set_all.textfsm │ ├── huawei_vrp_display_service-set_id_id.textfsm │ ├── huawei_vrp_display_sn_license.textfsm │ ├── huawei_vrp_display_snmp-agent_community_read.textfsm │ ├── huawei_vrp_display_startup.textfsm │ ├── huawei_vrp_display_telnet_server_status.textfsm │ ├── huawei_vrp_display_temperature.textfsm │ ├── huawei_vrp_display_traffic-filter_applied-record.textfsm │ ├── huawei_vrp_display_version.textfsm │ ├── huawei_vrp_display_vlan.textfsm │ ├── huawei_vrp_display_vlan_brief.textfsm │ ├── huawei_vrp_virtual-cable-test.textfsm │ ├── index │ ├── ipinfusion_ocnos_show_lldp_table.textfsm │ ├── juniper_junos_show_arp_no-resolve.textfsm │ ├── juniper_junos_show_bgp_summary.textfsm │ ├── juniper_junos_show_chassis_cluster_interfaces.textfsm │ ├── juniper_junos_show_chassis_cluster_status.textfsm │ ├── juniper_junos_show_chassis_firmware.textfsm │ ├── juniper_junos_show_chassis_hardware.textfsm │ ├── juniper_junos_show_ethernet-switching_table.textfsm │ ├── juniper_junos_show_interfaces.textfsm │ ├── juniper_junos_show_isis_adjacency.textfsm │ ├── juniper_junos_show_lacp_interfaces.textfsm │ ├── juniper_junos_show_lldp_neighbors.textfsm │ ├── juniper_junos_show_ospf_neighbor.textfsm │ ├── juniper_junos_show_route_summary.textfsm │ ├── juniper_junos_show_rsvp_interface.textfsm │ ├── juniper_junos_show_system_configuration_database_usage.textfsm │ ├── juniper_junos_show_system_processes_brief.textfsm │ ├── juniper_junos_show_system_processes_summary.textfsm │ ├── juniper_junos_show_system_uptime.textfsm │ ├── juniper_junos_show_version.textfsm │ ├── juniper_junos_show_vlans.textfsm │ ├── juniper_screenos_get_route.textfsm │ ├── linux_arp_-a.textfsm │ ├── linux_bluetoothctl_show.textfsm │ ├── linux_dmidecode_-t_bios.textfsm │ ├── linux_dmidecode_-t_memory.textfsm │ ├── linux_dmidecode_-t_processor.textfsm │ ├── linux_dmidecode_-t_system.textfsm │ ├── linux_ip_address_show.textfsm │ ├── linux_ip_link_show.textfsm │ ├── linux_ip_route_show.textfsm │ ├── linux_ip_vrf_show.textfsm │ ├── linux_iwconfig.textfsm │ ├── linux_iwlist_wlan0_scanning.textfsm │ ├── linux_nmcli_connection_show.textfsm │ ├── linux_pct_config_1.textfsm │ ├── linux_pct_list.textfsm │ ├── linux_pveversion.textfsm │ ├── linux_qm_config_1.textfsm │ ├── linux_qm_list.textfsm │ ├── linux_top.textfsm │ ├── linux_vzlist.textfsm │ ├── mikrotik_routeros_interface_bonding_print_detail.textfsm │ ├── mikrotik_routeros_interface_bridge_host_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once.textfsm │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging.textfsm │ ├── mikrotik_routeros_interface_ethernet_print.textfsm │ ├── mikrotik_routeros_interface_print_brief.textfsm │ ├── mikrotik_routeros_interface_print_detail.textfsm │ ├── mikrotik_routeros_interface_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_interface_vlan_print_detail.textfsm │ ├── mikrotik_routeros_ip_address_export_verbose.textfsm │ ├── mikrotik_routeros_ip_address_print.textfsm │ ├── mikrotik_routeros_ip_arp_print.textfsm │ ├── mikrotik_routeros_ip_arp_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_ip_arp_print_without-paging.textfsm │ ├── mikrotik_routeros_ip_dhcp-server_lease_print.textfsm │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_without-paging.textfsm │ ├── mikrotik_routeros_ip_dns_cache_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_ip_firewall_address-list_print_terse.textfsm │ ├── mikrotik_routeros_ip_firewall_filter_print_all_without-paging.textfsm │ ├── mikrotik_routeros_ip_firewall_nat_print_all_without-paging.textfsm │ ├── mikrotik_routeros_ip_hotspot_ip-binding_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_ip_neighbor_print_detail.textfsm │ ├── mikrotik_routeros_ip_route_print_detail.textfsm │ ├── mikrotik_routeros_ip_route_print_terse.textfsm │ ├── mikrotik_routeros_ip_route_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_ipv6_neighbor_print_without-paging.textfsm │ ├── mikrotik_routeros_log_print_detail_without-paging.textfsm │ ├── mikrotik_routeros_ping.textfsm │ ├── mikrotik_routeros_routing_bgp_peer_print_status.textfsm │ ├── mikrotik_routeros_routing_bgp_peer_print_status_without-paging.textfsm │ ├── mikrotik_routeros_routing_ospf_interface_print_terse.textfsm │ ├── mikrotik_routeros_routing_ospf_neighbor_print.textfsm │ ├── mikrotik_routeros_routing_ospf_neighbor_print_terse_without-paging.textfsm │ ├── mikrotik_routeros_snmp_community_print_without-paging.textfsm │ ├── mikrotik_routeros_system_clock_print.textfsm │ ├── mikrotik_routeros_system_identity_print.textfsm │ ├── mikrotik_routeros_system_resource_print.textfsm │ ├── mikrotik_routeros_system_routerboard_print.textfsm │ ├── mikrotik_routeros_tool_profile.textfsm │ ├── mikrotik_routeros_tool_speed-test_address.textfsm │ ├── mikrotik_routeros_user_active_print.textfsm │ ├── mikrotik_routeros_user_print.textfsm │ ├── oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm │ ├── oneaccess_oneos_hostname.textfsm │ ├── oneaccess_oneos_ls.textfsm │ ├── oneaccess_oneos_show_cellular-radio_context.textfsm │ ├── oneaccess_oneos_show_cellular-radio_equipment.textfsm │ ├── oneaccess_oneos_show_cellular-radio_network.textfsm │ ├── oneaccess_oneos_show_helpers.textfsm │ ├── oneaccess_oneos_show_interfaces.textfsm │ ├── oneaccess_oneos_show_ip_access-lists.textfsm │ ├── oneaccess_oneos_show_ip_as-path-access-list.textfsm │ ├── oneaccess_oneos_show_ip_bgp_summary.textfsm │ ├── oneaccess_oneos_show_ip_interface_brief.textfsm │ ├── oneaccess_oneos_show_ip_prefix-list.textfsm │ ├── oneaccess_oneos_show_ip_ssh.textfsm │ ├── oneaccess_oneos_show_ip_vrf_brief.textfsm │ ├── oneaccess_oneos_show_isdn_active.textfsm │ ├── oneaccess_oneos_show_isdn_led-status.textfsm │ ├── oneaccess_oneos_show_isdn_status_all.textfsm │ ├── oneaccess_oneos_show_memory.textfsm │ ├── oneaccess_oneos_show_policy-interface_output.textfsm │ ├── oneaccess_oneos_show_product-info-area.textfsm │ ├── oneaccess_oneos_show_reboot_counters.textfsm │ ├── oneaccess_oneos_show_route-map.textfsm │ ├── oneaccess_oneos_show_running-config_aaa.textfsm │ ├── oneaccess_oneos_show_running-config_bind.textfsm │ ├── oneaccess_oneos_show_running-config_ip_dhcp.textfsm │ ├── oneaccess_oneos_show_running-config_ip_route.textfsm │ ├── oneaccess_oneos_show_snmp_community.textfsm │ ├── oneaccess_oneos_show_sntp.textfsm │ ├── oneaccess_oneos_show_soft-file_info.textfsm │ ├── oneaccess_oneos_show_software-image.textfsm │ ├── oneaccess_oneos_show_system_hardware.textfsm │ ├── oneaccess_oneos_show_system_secure-crashlog.textfsm │ ├── oneaccess_oneos_show_system_status.textfsm │ ├── oneaccess_oneos_show_tacacs-server.textfsm │ ├── oneaccess_oneos_show_tacacs.textfsm │ ├── oneaccess_oneos_show_track_all.textfsm │ ├── oneaccess_oneos_show_transceiver_equipment.textfsm │ ├── oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm │ ├── oneaccess_oneos_show_voice_mos.textfsm │ ├── oneaccess_oneos_show_voice_sip-gateway.textfsm │ ├── oneaccess_oneos_show_voice_voice-port_all.textfsm │ ├── oneaccess_oneos_show_voice_voice-port_pri_all.textfsm │ ├── oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm │ ├── oneaccess_oneos_show_voice_voip-call_active_all.textfsm │ ├── oneaccess_oneos_show_voice_voip-call_any_all.textfsm │ ├── oneaccess_oneos_show_vrrp_interface.textfsm │ ├── paloalto_panos_debug_swm_status.textfsm │ ├── paloalto_panos_request_license_info.textfsm │ ├── paloalto_panos_show_arp_all.textfsm │ ├── paloalto_panos_show_counter_global.textfsm │ ├── paloalto_panos_show_high-availability_all.textfsm │ ├── paloalto_panos_show_high-availability_path-monitoring.textfsm │ ├── paloalto_panos_show_interface_hardware.textfsm │ ├── paloalto_panos_show_interface_logical.textfsm │ ├── paloalto_panos_show_interface_management.textfsm │ ├── paloalto_panos_show_jobs_all.textfsm │ ├── paloalto_panos_show_mac_all.textfsm │ ├── paloalto_panos_show_routing_protocol_bgp_summary.textfsm │ ├── paloalto_panos_show_routing_resource.textfsm │ ├── paloalto_panos_show_routing_route.textfsm │ ├── paloalto_panos_show_running_nat-policy.textfsm │ ├── paloalto_panos_show_running_security-policy.textfsm │ ├── paloalto_panos_show_system_info.textfsm │ ├── paloalto_panos_test_security-policy-match.textfsm │ ├── ruckus_fastiron_show_arp.textfsm │ ├── ruckus_fastiron_show_interfaces.textfsm │ ├── ruckus_fastiron_show_interfaces_brief.textfsm │ ├── ruckus_fastiron_show_mac-address.textfsm │ ├── ruckus_fastiron_show_media_validation.textfsm │ ├── ruckus_fastiron_show_version.textfsm │ ├── ruckus_fastiron_show_vlan.textfsm │ ├── ubiquiti_edgerouter_show_arp.textfsm │ ├── ubiquiti_edgerouter_show_dhcp_leases.textfsm │ ├── ubiquiti_edgerouter_show_dhcpv6_server_leases.textfsm │ ├── ubiquiti_edgerouter_show_interfaces.textfsm │ ├── ubiquiti_edgerouter_show_interfaces_ethernet_physical.textfsm │ ├── ubiquiti_edgerouter_show_ip_route.textfsm │ ├── ubiquiti_edgerouter_show_ipv6_neighbors.textfsm │ ├── ubiquiti_edgerouter_show_ipv6_route.textfsm │ ├── ubiquiti_edgerouter_show_nat_rules.textfsm │ ├── ubiquiti_edgerouter_show_version.textfsm │ ├── ubiquiti_edgeswitch_show_arp.textfsm │ ├── ubiquiti_edgeswitch_show_version.textfsm │ ├── ubiquiti_edgeswitch_show_vlan.textfsm │ ├── vmware_nsxv_show_ip_bgp_neighbors.textfsm │ ├── vmware_nsxv_show_ip_route.textfsm │ ├── vyatta_vyos_show_arp.textfsm │ ├── vyatta_vyos_show_interfaces.textfsm │ ├── vyatta_vyos_show_ip_bgp_summary.textfsm │ ├── watchguard_firebox_show_arp.textfsm │ ├── yamaha_show_environment.textfsm │ ├── yamaha_show_ip_route.textfsm │ ├── zte_zxros_show_arp.textfsm │ ├── zte_zxros_show_interface.textfsm │ ├── zte_zxros_show_interface_brief.textfsm │ ├── zte_zxros_show_isis_adjacency.textfsm │ ├── zte_zxros_show_mpls_traffic-eng_tunnels.textfsm │ ├── zte_zxros_show_version.textfsm │ ├── zyxel_os_cfg_firewall_acl_get.textfsm │ ├── zyxel_os_cfg_intf_group_get.textfsm │ ├── zyxel_os_cfg_ipalias_get.textfsm │ ├── zyxel_os_cfg_lan_get.textfsm │ ├── zyxel_os_cfg_lan_get_--Name_name.textfsm │ ├── zyxel_os_cfg_lanhosts_get.textfsm │ ├── zyxel_os_cfg_nat_addr_map_get.textfsm │ ├── zyxel_os_cfg_nat_get.textfsm │ ├── zyxel_os_cfg_snmp_get.textfsm │ ├── zyxel_os_cfg_static_dhcp_get.textfsm │ ├── zyxel_os_cfg_static_route_get.textfsm │ ├── zyxel_os_cfg_wlan_get.textfsm │ ├── zyxel_os_sys_atsh.textfsm │ └── zyxel_os_zycli_Ethctl_media-type.textfsm ├── poetry.lock ├── pyproject.toml ├── tasks.py └── tests ├── __init__.py ├── alcatel_aos ├── show_chassis │ ├── alcatel_aos_show_chassis_1.raw │ ├── alcatel_aos_show_chassis_1.yml │ ├── alcatel_aos_show_chassis_2.raw │ └── alcatel_aos_show_chassis_2.yml ├── show_interfaces_alias │ ├── alcatel_aos_show_interfaces_alias.raw │ └── alcatel_aos_show_interfaces_alias.yml ├── show_interfaces_ethernet │ ├── alcatel_aos_show_interfaces_R8.raw │ ├── alcatel_aos_show_interfaces_R8.yml │ ├── alcatel_aos_show_interfaces_ethernet_R6.raw │ └── alcatel_aos_show_interfaces_ethernet_R6.yml ├── show_interfaces_port │ ├── alcatel_aos_show_interfaces_port_R6.raw │ ├── alcatel_aos_show_interfaces_port_R6.yml │ ├── alcatel_aos_show_interfaces_port_R6_2.raw │ └── alcatel_aos_show_interfaces_port_R6_2.yml ├── show_interfaces_status │ ├── alcatel_aos_show_interfaces_status_R6.raw │ ├── alcatel_aos_show_interfaces_status_R6.yml │ ├── alcatel_aos_show_interfaces_status_R8.raw │ └── alcatel_aos_show_interfaces_status_R8.yml ├── show_linkagg_alias │ ├── alcatel_aos_show_linkagg_alias_R8.raw │ └── alcatel_aos_show_linkagg_alias_R8.yml ├── show_linkagg_port │ ├── alcatel_aos_show_linkagg_port_R6.raw │ ├── alcatel_aos_show_linkagg_port_R6.yml │ ├── alcatel_aos_show_linkagg_port_R8.raw │ └── alcatel_aos_show_linkagg_port_R8.yml ├── show_lldp_remote-system │ ├── show_lldp_remote-system_R6.raw │ ├── show_lldp_remote-system_R6.yml │ ├── show_lldp_remote-system_R8.raw │ └── show_lldp_remote-system_R8.yml ├── show_mac-address-table │ ├── alcatel_aos_show_mac-address-table_R6.raw │ ├── alcatel_aos_show_mac-address-table_R6.yml │ ├── alcatel_aos_show_mac-address-table_R8.raw │ ├── alcatel_aos_show_mac-address-table_R8.yml │ ├── alcatel_aos_show_mac-address-table_R8_9.raw │ └── alcatel_aos_show_mac-address-table_R8_9.yml ├── show_port-security │ ├── alcatel_aos_show_port-security.raw │ ├── alcatel_aos_show_port-security.yml │ ├── alcatel_aos_show_port-security_2.raw │ ├── alcatel_aos_show_port-security_2.yml │ ├── alcatel_aos_show_port-security_3.raw │ └── alcatel_aos_show_port-security_3.yml ├── show_system │ ├── alcatel_aos_show_system_1.raw │ ├── alcatel_aos_show_system_1.yml │ ├── alcatel_aos_show_system_2.raw │ └── alcatel_aos_show_system_2.yml ├── show_vlan │ ├── alcatel_aos_show_vlan_R6.raw │ ├── alcatel_aos_show_vlan_R6.yml │ ├── alcatel_aos_show_vlan_R8.raw │ └── alcatel_aos_show_vlan_R8.yml └── show_vlan_port │ ├── alcatel_aos_show_vlan_port_1.raw │ ├── alcatel_aos_show_vlan_port_1.yml │ ├── alcatel_aos_show_vlan_port_2.raw │ └── alcatel_aos_show_vlan_port_2.yml ├── alcatel_sros ├── oam_mac-ping │ ├── alcatel_sros_oam_mac-ping.raw │ └── alcatel_sros_oam_mac-ping.yml ├── ping │ ├── ping.raw │ ├── ping.yml │ ├── ping_bounce.raw │ ├── ping_bounce.yml │ ├── ping_fail.raw │ ├── ping_fail.yml │ ├── ping_rapid.raw │ ├── ping_rapid.yml │ ├── ping_rapid_bounce.raw │ ├── ping_rapid_bounce.yml │ ├── ping_rapid_duplicate.raw │ ├── ping_rapid_duplicate.yml │ ├── ping_rapid_fail.raw │ ├── ping_rapid_fail.yml │ ├── ping_source_fail.raw │ └── ping_source_fail.yml ├── show_lag │ ├── show_lag.raw │ └── show_lag.yml ├── show_lag_port │ ├── show_lag_port.raw │ ├── show_lag_port.yml │ ├── show_lag_port_r22.raw │ └── show_lag_port_r22.yml ├── show_port │ ├── show_port.raw │ └── show_port.yml ├── show_port_description │ ├── show_port_description.raw │ └── show_port_description.yml ├── show_router_bgp_routes_vpn-ipv4 │ ├── alcatel_sros_show_router_bgp_routes_vpn-ipv4.raw │ └── alcatel_sros_show_router_bgp_routes_vpn-ipv4.yml ├── show_router_bgp_summary_family │ ├── alcatel_sros_show_router_bgp_summary_family.raw │ └── alcatel_sros_show_router_bgp_summary_family.yml ├── show_router_interface │ ├── alcatel_sros_show_router_interface.raw │ └── alcatel_sros_show_router_interface.yml ├── show_router_isis_adjacency │ ├── alcatel_sros_show_router_isis_adjacency.raw │ └── alcatel_sros_show_router_isis_adjacency.yml ├── show_router_isis_interface │ ├── alcatel_sros_show_router_isis_interface.raw │ └── alcatel_sros_show_router_isis_interface.yml ├── show_router_ldp_interface │ ├── show_router_ldp_interface.raw │ └── show_router_ldp_interface.yml ├── show_router_mpls_interface │ ├── alcatel_sros_show_router_mpls_interface.raw │ └── alcatel_sros_show_router_mpls_interface.yml ├── show_router_mpls_lsp │ ├── alcatel_sros_show_router_mpls_lsp.raw │ └── alcatel_sros_show_router_mpls_lsp.yml ├── show_router_ospf_interface │ ├── alcatel_sros_show_router_ospf_interface.raw │ └── alcatel_sros_show_router_ospf_interface.yml ├── show_router_pim_interface │ ├── show_router_pim_interface.raw │ └── show_router_pim_interface.yml ├── show_router_rsvp_interface │ ├── show_router_rsvp_interface.raw │ └── show_router_rsvp_interface.yml ├── show_service_id_0_sap │ ├── show_service_id_0_sap.raw │ └── show_service_id_0_sap.yml ├── show_service_id_base │ ├── alcatel_sros_show_service_id_base.raw │ └── alcatel_sros_show_service_id_base.yml ├── show_service_id_interface │ ├── show_service_id_interface.raw │ └── show_service_id_interface.yml ├── show_service_sap-using │ ├── alcatel_sros_show_service_sap-using.raw │ ├── alcatel_sros_show_service_sap-using.yml │ ├── alcatel_sros_show_service_sap-using_truncated.raw │ └── alcatel_sros_show_service_sap-using_truncated.yml ├── show_service_sdp-using │ ├── alcatel_sros_show_service_sdp-using.raw │ └── alcatel_sros_show_service_sdp-using.yml ├── show_service_sdp │ ├── alcatel_sros_show_service_sdp.raw │ └── alcatel_sros_show_service_sdp.yml ├── show_service_service-name-using │ ├── show_service_service-name-using.raw │ └── show_service_service-name-using.yml ├── show_service_service-using │ ├── show_service_service-using.raw │ ├── show_service_service-using.yml │ ├── show_service_service-using_with_spaces.raw │ └── show_service_service-using_with_spaces.yml └── show_system_cpu │ ├── alcatel_sros_show_system_cpu.raw │ └── alcatel_sros_show_system_cpu.yml ├── allied_telesis_awplus ├── show_arp │ ├── allied_telesis_awplus_show_arp.raw │ └── allied_telesis_awplus_show_arp.yml ├── show_etherchannel_summary │ ├── allied_telesis_awplus_show_etherchannel_summary.raw │ └── allied_telesis_awplus_show_etherchannel_summary.yml ├── show_interface │ ├── allied_telesis_awplus_show_interface.raw │ ├── allied_telesis_awplus_show_interface.yml │ ├── allied_telesis_awplus_show_interface1.raw │ └── allied_telesis_awplus_show_interface1.yml ├── show_interface_switchport │ ├── allied_telesis_awplus_show_interface_switchport.raw │ └── allied_telesis_awplus_show_interface_switchport.yml ├── show_ip_route │ ├── allied_telesis_awplus_show_ip_route.raw │ └── allied_telesis_awplus_show_ip_route.yml ├── show_lldp_neighbors_detail │ ├── allied_telesis_awplus_show_lldp_neighbors_detail.raw │ └── allied_telesis_awplus_show_lldp_neighbors_detail.yml ├── show_mac_address-table │ ├── allied_telesis_awplus_show_mac_address-table.raw │ └── allied_telesis_awplus_show_mac_address-table.yml ├── show_static-channel-group │ ├── allied_telesis_awplus_show_static-channel-group.raw │ ├── allied_telesis_awplus_show_static-channel-group.yml │ ├── allied_telesis_awplus_show_static-channel-group1.raw │ ├── allied_telesis_awplus_show_static-channel-group1.yml │ ├── allied_telesis_awplus_show_static-channel-group2.raw │ └── allied_telesis_awplus_show_static-channel-group2.yml ├── show_system │ ├── allied_telesis_awplus_show_system.raw │ ├── allied_telesis_awplus_show_system.yml │ ├── allied_telesis_awplus_show_system1.raw │ └── allied_telesis_awplus_show_system1.yml └── show_vlan_all │ ├── allied_telesis_awplus_show_vlan_all.raw │ └── allied_telesis_awplus_show_vlan_all.yml ├── arista_eos ├── bash_df_-h │ ├── arista_eos_bash_df_-h.raw │ └── arista_eos_bash_df_-h.yml ├── dir │ ├── arista_eos_dir_extension_no_files.raw │ ├── arista_eos_dir_extension_no_files.yml │ ├── arista_eos_dir_flash.raw │ ├── arista_eos_dir_flash.yml │ ├── arista_eos_dir_recur_all.raw │ ├── arista_eos_dir_recur_all.yml │ ├── arista_eos_dir_system_nodate.raw │ └── arista_eos_dir_system_nodate.yml ├── show_bgp_evpn_summary │ ├── arista_eos_show_bgp_evpn_summary.raw │ └── arista_eos_show_bgp_evpn_summary.yml ├── show_boot-config │ ├── arista_eos_show_boot-config.raw │ └── arista_eos_show_boot-config.yml ├── show_clock │ ├── arista_eos_show_clock.raw │ └── arista_eos_show_clock.yml ├── show_environment_cooling │ ├── arista_eos_show_environment_cooling.raw │ └── arista_eos_show_environment_cooling.yml ├── show_environment_power │ ├── arista_eos_show_environment_power1.raw │ ├── arista_eos_show_environment_power1.yml │ ├── arista_eos_show_environment_power2.raw │ ├── arista_eos_show_environment_power2.yml │ ├── arista_eos_show_environment_power3.raw │ ├── arista_eos_show_environment_power3.yml │ ├── arista_eos_show_environment_power4.raw │ └── arista_eos_show_environment_power4.yml ├── show_environment_temperature │ ├── arista_eos_show_environment_temperature.raw │ └── arista_eos_show_environment_temperature.yml ├── show_hostname │ ├── arista_eos_show_hostname.raw │ └── arista_eos_show_hostname.yml ├── show_interfaces │ ├── arista_eos_show_interfaces.raw │ ├── arista_eos_show_interfaces.yml │ ├── arista_eos_show_interfaces2.raw │ ├── arista_eos_show_interfaces2.yml │ ├── arista_eos_show_interfaces3.raw │ ├── arista_eos_show_interfaces3.yml │ ├── arista_eos_show_interfaces_portchannel.raw │ └── arista_eos_show_interfaces_portchannel.yml ├── show_interfaces_description │ ├── arista_eos_show_interfaces_description.raw │ └── arista_eos_show_interfaces_description.yml ├── show_interfaces_status │ ├── arista_eos_show_interfaces_status.raw │ ├── arista_eos_show_interfaces_status.yml │ ├── arista_eos_show_interfaces_status_encap.raw │ ├── arista_eos_show_interfaces_status_encap.yml │ ├── arista_eos_show_interfaces_status_flags.raw │ ├── arista_eos_show_interfaces_status_flags.yml │ ├── arista_eos_show_interfaces_status_port_channel.raw │ └── arista_eos_show_interfaces_status_port_channel.yml ├── show_interfaces_transceiver │ ├── arista_eos_show_interfaces_transceiver.raw │ └── arista_eos_show_interfaces_transceiver.yml ├── show_interfaces_transceiver_detail │ ├── arista_eos_show_interfaces_transceiver_detail.raw │ └── arista_eos_show_interfaces_transceiver_detail.yml ├── show_interfaces_transceiver_hardware │ ├── arista_eos_show_interfaces_transceiver_hardware_01.raw │ └── arista_eos_show_interfaces_transceiver_hardware_01.yml ├── show_inventory │ ├── arista_eos_show_inventory.raw │ ├── arista_eos_show_inventory.yml │ ├── arista_eos_show_inventory1.raw │ └── arista_eos_show_inventory1.yml ├── show_ip_access-lists │ ├── arista_eos_show_ip_access-lists.raw │ └── arista_eos_show_ip_access-lists.yml ├── show_ip_arp │ ├── arista_eos_show_ip_arp.raw │ ├── arista_eos_show_ip_arp.yml │ ├── arista_eos_show_ip_arp1.raw │ └── arista_eos_show_ip_arp1.yml ├── show_ip_bgp │ ├── arista_eos_show_ip_bgp.raw │ ├── arista_eos_show_ip_bgp.yml │ ├── arista_eos_show_ip_bgp2.raw │ └── arista_eos_show_ip_bgp2.yml ├── show_ip_bgp_detail │ ├── arista_eos_show_ip_bgp_detail.raw │ ├── arista_eos_show_ip_bgp_detail.yml │ ├── arista_eos_show_ip_bgp_detail2.raw │ └── arista_eos_show_ip_bgp_detail2.yml ├── show_ip_bgp_summary │ ├── arista_eos_show_ip_bgp_summary.raw │ ├── arista_eos_show_ip_bgp_summary.yml │ ├── arista_eos_show_ip_bgp_summary2.raw │ ├── arista_eos_show_ip_bgp_summary2.yml │ ├── arista_eos_show_ip_bgp_summary3.raw │ ├── arista_eos_show_ip_bgp_summary3.yml │ ├── arista_eos_show_ip_bgp_summary4.raw │ ├── arista_eos_show_ip_bgp_summary4.yml │ ├── arista_eos_show_ip_bgp_summary_vrf.raw │ ├── arista_eos_show_ip_bgp_summary_vrf.yml │ ├── arista_eos_show_ip_bgp_summary_vrf2.raw │ └── arista_eos_show_ip_bgp_summary_vrf2.yml ├── show_ip_helper-address │ ├── arista_eos_show_ip_helper.raw │ └── arista_eos_show_ip_helper.yml ├── show_ip_interface_brief │ ├── arista_eos_show_ip_interface_brief.raw │ └── arista_eos_show_ip_interface_brief.yml ├── show_ip_mroute_vrf_all_detail │ ├── arista_eos_show_ip_mroute_vrf_all.raw │ └── arista_eos_show_ip_mroute_vrf_all.yml ├── show_ip_ospf_database │ ├── arista_eos_show_ip_ospf_database.raw │ └── arista_eos_show_ip_ospf_database.yml ├── show_ip_ospf_interface_brief │ ├── arista_eos_show_ip_ospf_interface_brief.raw │ └── arista_eos_show_ip_ospf_interface_brief.yml ├── show_ip_ospf_neighbor │ ├── arista_eos_show_ip_ospf_neighbor.raw │ ├── arista_eos_show_ip_ospf_neighbor.yml │ ├── arista_eos_show_ip_ospf_neighbor_2.raw │ └── arista_eos_show_ip_ospf_neighbor_2.yml ├── show_ip_ospf_summary │ ├── arista_eos_show_ip_ospf_summary.raw │ └── arista_eos_show_ip_ospf_summary.yml ├── show_ip_route │ ├── arista_eos_show_ip_route.raw │ ├── arista_eos_show_ip_route.yml │ ├── arista_eos_show_ip_route2.raw │ ├── arista_eos_show_ip_route2.yml │ ├── arista_eos_show_ip_route3.raw │ ├── arista_eos_show_ip_route3.yml │ ├── arista_eos_show_ip_route4.raw │ ├── arista_eos_show_ip_route4.yml │ ├── arista_eos_show_ip_route5.raw │ ├── arista_eos_show_ip_route5.yml │ ├── arista_eos_show_ip_route6.raw │ ├── arista_eos_show_ip_route6.yml │ ├── arista_eos_show_ip_route_vrf.raw │ └── arista_eos_show_ip_route_vrf.yml ├── show_ipv6_bgp_summary │ ├── arista_eos_show_ipv6_bgp_summary.raw │ ├── arista_eos_show_ipv6_bgp_summary.yml │ ├── arista_eos_show_ipv6_bgp_summary2.raw │ ├── arista_eos_show_ipv6_bgp_summary2.yml │ ├── arista_eos_show_ipv6_bgp_summary_vrf.raw │ └── arista_eos_show_ipv6_bgp_summary_vrf.yml ├── show_isis_neighbors │ ├── arista_eos_show_isis_neighbors.raw │ └── arista_eos_show_isis_neighbors.yml ├── show_lldp_neighbors │ ├── arista_eos_show_lldp_neighbors.raw │ ├── arista_eos_show_lldp_neighbors.yml │ ├── arista_eos_show_lldp_neighbors2.raw │ └── arista_eos_show_lldp_neighbors2.yml ├── show_lldp_neighbors_detail │ ├── arista_eos_show_lldp_neighbors_detail.raw │ └── arista_eos_show_lldp_neighbors_detail.yml ├── show_mac_address-table │ ├── arista_eos_show_mac_address-table.raw │ └── arista_eos_show_mac_address-table.yml ├── show_mac_security_interface │ ├── arista_eos_show_mac_security_interface.raw │ └── arista_eos_show_mac_security_interface.yml ├── show_mac_security_mka_counters │ ├── arista_eos_show_mac_security_mka_counters.raw │ └── arista_eos_show_mac_security_mka_counters.yml ├── show_mac_security_participants_detail │ ├── arista_eos_show_mac_security_participants_detail.raw │ └── arista_eos_show_mac_security_participants_detail.yml ├── show_mlag │ ├── arista_eos_show_mlag.raw │ └── arista_eos_show_mlag.yml ├── show_module │ ├── arista_eos_show_module.template.raw │ └── arista_eos_show_module.template.yml ├── show_pim_ipv4_interface │ ├── arista_eos_show_pim_ipv4_interface.raw │ └── arista_eos_show_pim_ipv4_interface.yml ├── show_pim_ipv4_neighbor │ ├── arista_eos_show_pim_ipv4_neighbor.raw │ └── arista_eos_show_pim_ipv4_neighbor.yml ├── show_port-channel_summary │ ├── arista_eos_show_port-channel_summary.raw │ ├── arista_eos_show_port-channel_summary.yml │ ├── arista_eos_show_port-channel_summary_none.raw │ └── arista_eos_show_port-channel_summary_none.yml ├── show_processes_top_once │ ├── arista_eos_show_processes_top_once.raw │ ├── arista_eos_show_processes_top_once.yml │ ├── arista_eos_show_processes_top_once2.raw │ ├── arista_eos_show_processes_top_once2.yml │ ├── arista_eos_show_processes_top_once3.raw │ ├── arista_eos_show_processes_top_once3.yml │ ├── arista_eos_show_processes_top_once4.raw │ ├── arista_eos_show_processes_top_once4.yml │ ├── arista_eos_show_processes_top_once5.raw │ ├── arista_eos_show_processes_top_once5.yml │ ├── arista_eos_show_processes_top_once6.raw │ ├── arista_eos_show_processes_top_once6.yml │ ├── arista_eos_show_processes_top_once_trailing_whitespace.raw │ └── arista_eos_show_processes_top_once_trailing_whitespace.yml ├── show_reload_cause │ ├── arista_eos_show_reload_cause.raw │ └── arista_eos_show_reload_cause.yml ├── show_snmp_community │ ├── arista_eos_show_snmp_community.raw │ └── arista_eos_show_snmp_community.yml ├── show_version │ ├── arista_eos_show_version.raw │ ├── arista_eos_show_version.yml │ ├── arista_eos_show_version2.raw │ ├── arista_eos_show_version2.yml │ ├── arista_eos_show_version3.raw │ ├── arista_eos_show_version3.yml │ ├── arista_eos_show_version_ceos.raw │ ├── arista_eos_show_version_ceos.yml │ ├── arista_eos_show_version_clab.raw │ └── arista_eos_show_version_clab.yml ├── show_vlan │ ├── arista_eos_show_vlan.raw │ └── arista_eos_show_vlan.yml └── show_vrf │ ├── arista_eos_show_vrf-no-rd.raw │ ├── arista_eos_show_vrf-no-rd.yml │ ├── arista_eos_show_vrf.raw │ ├── arista_eos_show_vrf.yml │ ├── arista_eos_show_vrf_2.raw │ ├── arista_eos_show_vrf_2.yml │ ├── arista_eos_show_vrf_3.raw │ └── arista_eos_show_vrf_3.yml ├── aruba_aoscx ├── show_aaa_authentication_port-access_interface_all_client-status │ ├── show_aaa_authentication_port-access_interface_all_client-status.raw │ └── show_aaa_authentication_port-access_interface_all_client-status.yml ├── show_arp_all-vrfs │ ├── show_arp_all-vrfs.raw │ └── show_arp_all-vrfs.yml ├── show_bfd_all-vrfs │ ├── show_bfd_all-vrfs.raw │ └── show_bfd_all-vrfs.yml ├── show_bgp_all-vrfs_all_summary │ ├── aruba_aoscx_show_bgp_all-vrfs_all_summary.raw │ └── aruba_aoscx_show_bgp_all-vrfs_all_summary.yml ├── show_interface │ ├── show_interface.raw │ ├── show_interface.yml │ ├── show_interface1.raw │ ├── show_interface1.yml │ ├── show_interface2.raw │ └── show_interface2.yml ├── show_interface_dom_detail │ ├── show_interface_dom_detail.raw │ └── show_interface_dom_detail.yml ├── show_ip_route_all-vrfs │ ├── show_ip_route_all-vrfs.raw │ └── show_ip_route_all-vrfs.yml ├── show_lldp_neighbors-info_detail │ ├── show_lldp_neighbors-info_detail.raw │ ├── show_lldp_neighbors-info_detail.yml │ ├── show_lldp_neighbors-info_detail_issue1453.raw │ └── show_lldp_neighbors-info_detail_issue1453.yml ├── show_mac-address-table │ ├── show_mac-address-table.raw │ └── show_mac-address-table.yml ├── show_ntp_associations │ ├── show_ntp_associations.raw │ └── show_ntp_associations.yml ├── show_system │ ├── show_system.raw │ ├── show_system.yml │ ├── show_system2.raw │ ├── show_system2.yml │ ├── show_system3.raw │ ├── show_system3.yml │ ├── show_system4.raw │ ├── show_system4.yml │ ├── show_system5.raw │ └── show_system5.yml ├── show_vlan │ ├── show_vlan.raw │ └── show_vlan.yml └── show_vsf_detail │ ├── show_vsf_detail.raw │ ├── show_vsf_detail.yml │ ├── show_vsf_detail2.raw │ └── show_vsf_detail2.yml ├── aruba_os ├── show_ap_bss-table_details │ ├── aruba_os_show_ap_bss-table_details.raw │ ├── aruba_os_show_ap_bss-table_details.yml │ ├── aruba_os_show_ap_bss-table_details2.raw │ └── aruba_os_show_ap_bss-table_details2.yml ├── show_ap_database │ ├── aruba_os_show_ap_database.raw │ └── aruba_os_show_ap_database.yml ├── show_ap_database_long │ ├── aruba_os_show_ap_database_long.raw │ └── aruba_os_show_ap_database_long.yml ├── show_ap_radio-database │ ├── aruba_os_show_ap_radio-database.raw │ └── aruba_os_show_ap_radio-database.yml ├── show_arp │ ├── aruba_os_show_arp.raw │ └── aruba_os_show_arp.yml ├── show_hostname │ ├── aruba_os_show_hostname.raw │ └── aruba_os_show_hostname.yml ├── show_inventory │ ├── aruba_os_show_inventory.raw │ └── aruba_os_show_inventory.yml ├── show_ip_interface_brief │ ├── aruba_os_show_ip_interface_brief.raw │ └── aruba_os_show_ip_interface_brief.yml ├── show_ipv6_interface_brief │ ├── aruba_os_show_ipv6_interface_brief.raw │ └── aruba_os_show_ipv6_interface_brief.yml ├── show_version │ ├── aruba_os_show_version.raw │ └── aruba_os_show_version.yml └── show_vlan │ ├── aruba_os_show_vlan.raw │ └── aruba_os_show_vlan.yml ├── avaya_ers ├── show_interface_name │ ├── avaya_ers_show_interface_name.raw │ ├── avaya_ers_show_interface_name.yml │ ├── avaya_ers_show_interface_name1.raw │ └── avaya_ers_show_interface_name1.yml ├── show_logging_config │ ├── avaya_ers_show_logging_config.raw │ └── avaya_ers_show_logging_config.yml ├── show_mac-address-table │ ├── avaya_ers_show_mac-address-table.raw │ └── avaya_ers_show_mac-address-table.yml ├── show_mlt │ ├── avaya_ers_show_mlt1.raw │ ├── avaya_ers_show_mlt1.yml │ ├── avaya_ers_show_mlt2.raw │ ├── avaya_ers_show_mlt2.yml │ ├── avaya_ers_show_mlt3.raw │ ├── avaya_ers_show_mlt3.yml │ ├── avaya_ers_show_mlt_4800.raw │ ├── avaya_ers_show_mlt_4800.yml │ ├── avaya_ers_show_mlt_4900.raw │ ├── avaya_ers_show_mlt_4900.yml │ ├── avaya_ers_show_mlt_7000.raw │ └── avaya_ers_show_mlt_7000.yml ├── show_mlt_all-members │ ├── avaya_ers_show_mlt_all-members_4800.raw │ ├── avaya_ers_show_mlt_all-members_4800.yml │ ├── avaya_ers_show_mlt_all-members_4900.raw │ ├── avaya_ers_show_mlt_all-members_4900.yml │ ├── avaya_ers_show_mlt_all-members_7000.raw │ └── avaya_ers_show_mlt_all-members_7000.yml ├── show_sys-info │ ├── avaya_ers_show_sys-info.raw │ ├── avaya_ers_show_sys-info.yml │ ├── avaya_ers_show_sys-info1.raw │ └── avaya_ers_show_sys-info1.yml └── show_vlan │ ├── avaya_ers_show_vlan.raw │ ├── avaya_ers_show_vlan.yml │ ├── avaya_ers_show_vlan1.raw │ └── avaya_ers_show_vlan1.yml ├── avaya_vsp └── show_software │ ├── avaya_vsp_show_software.raw │ └── avaya_vsp_show_software.yml ├── broadcom_icos ├── show_isdp_neighbors │ ├── broadcom_icos_show_isdp_neighbors.raw │ └── broadcom_icos_show_isdp_neighbors.yml ├── show_lldp_remote-device_all │ ├── broadcom_icos_show_lldp_remote-device_all.raw │ └── broadcom_icos_show_lldp_remote-device_all.yml ├── show_mac-addr-table │ ├── broadcom_show_mac-addr-table.raw │ └── broadcom_show_mac-addr-table.yml ├── show_version │ ├── broadcom_icos_show_version.raw │ ├── broadcom_icos_show_version.yml │ ├── broadcom_icos_show_version2.raw │ ├── broadcom_icos_show_version2.yml │ ├── broadcom_icos_show_version3.raw │ ├── broadcom_icos_show_version3.yml │ ├── broadcom_icos_show_version4.raw │ ├── broadcom_icos_show_version4.yml │ ├── broadcom_icos_show_version5.raw │ └── broadcom_icos_show_version5.yml └── show_vlan_brief │ ├── broadcom_icos_show_vlan_brief.raw │ └── broadcom_icos_show_vlan_brief.yml ├── brocade_fastiron ├── show_arp │ ├── brocade_fastiron_show_arp.raw │ └── brocade_fastiron_show_arp.yml ├── show_interfaces │ ├── brocade_fastiron_show_interfaces.raw │ ├── brocade_fastiron_show_interfaces.yml │ ├── brocade_fastiron_show_interfaces1.raw │ └── brocade_fastiron_show_interfaces1.yml ├── show_interfaces_brief │ ├── brocade_fastiron_show_interfaces_brief.raw │ ├── brocade_fastiron_show_interfaces_brief.yml │ ├── brocade_fastiron_show_interfaces_brief1.raw │ ├── brocade_fastiron_show_interfaces_brief1.yml │ ├── brocade_fastiron_show_interfaces_brief2.raw │ └── brocade_fastiron_show_interfaces_brief2.yml ├── show_lag_brief │ ├── brocade_fastiron_show_lag_brief.raw │ └── brocade_fastiron_show_lag_brief.yml ├── show_lldp_neighbors │ ├── brocade_fastiron_show_lldp_neighbors.raw │ └── brocade_fastiron_show_lldp_neighbors.yml ├── show_lldp_neighbors_detail │ ├── brocade_fastiron_show_lldp_neighbors_detail.raw │ ├── brocade_fastiron_show_lldp_neighbors_detail.yml │ ├── brocade_fastiron_show_lldp_neighbors_detail1.raw │ └── brocade_fastiron_show_lldp_neighbors_detail1.yml ├── show_mac-address │ ├── brocade_fastiron_show_mac-address.raw │ └── brocade_fastiron_show_mac-address.yml ├── show_metro │ ├── brocade_fastiron_show_metro.raw │ ├── brocade_fastiron_show_metro.yml │ ├── brocade_fastiron_show_metro1.raw │ └── brocade_fastiron_show_metro1.yml ├── show_monitor │ ├── brocade_fastiron_show_monitor.raw │ └── brocade_fastiron_show_monitor.yml ├── show_running-config_vlan │ ├── brocade_fastiron_show_running-config_vlan.raw │ ├── brocade_fastiron_show_running-config_vlan.yml │ ├── brocade_fastiron_show_running-config_vlan1.raw │ └── brocade_fastiron_show_running-config_vlan1.yml ├── show_span │ ├── brocade_fastiron_show_span.raw │ ├── brocade_fastiron_show_span.yml │ ├── brocade_fastiron_show_span1.raw │ └── brocade_fastiron_show_span1.yml ├── show_topo │ ├── brocade_fastiron_show_topo.raw │ ├── brocade_fastiron_show_topo.yml │ ├── brocade_fastiron_show_topo1.raw │ └── brocade_fastiron_show_topo1.yml ├── show_trunk │ ├── brocade_fastiron_show_trunk.raw │ ├── brocade_fastiron_show_trunk.yml │ ├── brocade_fastiron_show_trunk1.raw │ └── brocade_fastiron_show_trunk1.yml └── show_version │ ├── brocade_fastiron_show_version.raw │ └── brocade_fastiron_show_version.yml ├── brocade_netiron ├── show_interfaces │ ├── brocade_netiron_show_interfaces.raw │ └── brocade_netiron_show_interfaces.yml ├── show_interfaces_brief │ ├── brocade_netiron_show_interfaces_brief.raw │ └── brocade_netiron_show_interfaces_brief.yml ├── show_lag_brief │ ├── brocade_netiron_show_lag_brief.raw │ └── brocade_netiron_show_lag_brief.yml ├── show_lldp_neighbors_detail │ ├── brocade_netiron_show_lldp_neighbors_detail.raw │ └── brocade_netiron_show_lldp_neighbors_detail.yml ├── show_metro │ ├── brocade_netiron_show_metro.raw │ └── brocade_netiron_show_metro.yml ├── show_monitor_actual │ ├── brocade_netiron_show_monitor.raw │ └── brocade_netiron_show_monitor.yml ├── show_running-config_interface │ ├── brocade_netiron_show_running-config_interface.raw │ ├── brocade_netiron_show_running-config_interface.yml │ ├── brocade_netiron_show_running-config_interface2.raw │ └── brocade_netiron_show_running-config_interface2.yml ├── show_running-config_vlan │ ├── brocade_netiron_show_running-config_vlan.raw │ └── brocade_netiron_show_running-config_vlan.yml ├── show_span │ ├── brocade_netiron_show_span.raw │ └── brocade_netiron_show_span.yml └── show_topo │ ├── brocade_netiron_show_topo.raw │ └── brocade_netiron_show_topo.yml ├── checkpoint_gaia ├── fw_stat │ ├── checkpoint_gaia_fw_stat.raw │ └── checkpoint_gaia_fw_stat.yml ├── show_arp_dynamic_all │ ├── checkpoint_gaia_show_arp_dynamic_all.raw │ └── checkpoint_gaia_show_arp_dynamic_all.yml ├── show_asset_all │ ├── checkpoint_gaia_show_asset_all.raw │ ├── checkpoint_gaia_show_asset_all.yml │ ├── checkpoint_gaia_show_asset_all_update_1.raw │ └── checkpoint_gaia_show_asset_all_update_1.yml ├── show_dns │ ├── checkpoint_gaia_show_dns.raw │ └── checkpoint_gaia_show_dns.yml ├── show_domainname │ ├── checkpoint_gaia_show_domainname.raw │ └── checkpoint_gaia_show_domainname.yml ├── show_interfaces_all │ ├── checkpoint_gaia_show_interfaces_all.raw │ ├── checkpoint_gaia_show_interfaces_all.yml │ ├── checkpoint_gaia_show_interfaces_all_update_1.raw │ └── checkpoint_gaia_show_interfaces_all_update_1.yml ├── show_ipv6_route │ ├── checkpoint_gaia_show_ipv6_route.raw │ └── checkpoint_gaia_show_ipv6_route.yml ├── show_lom │ ├── checkpoint_gaia_show_lom.raw │ └── checkpoint_gaia_show_lom.yml ├── show_ntp_servers │ ├── checkpoint_gaia_show_ntp_servers.raw │ └── checkpoint_gaia_show_ntp_servers.yml ├── show_route │ ├── checkpoint_gaia_show_route.raw │ └── checkpoint_gaia_show_route.yml ├── show_version_all │ ├── checkpoint_gaia_show_version_all.raw │ └── checkpoint_gaia_show_version_all.yml └── show_virtual-system_all │ ├── checkpoint_gaia_show_virtual-system_all.raw │ └── checkpoint_gaia_show_virtual-system_all.yml ├── ciena_saos ├── chassis_show_temperature │ ├── ciena_saos_chassis_show_temperature.raw │ └── ciena_saos_chassis_show_temperature.yml ├── lldp_show_neighbors │ ├── ciena_saos_lldp_show_neighbors.3916.raw │ └── ciena_saos_lldp_show_neighbors.3916.yml ├── port_show │ ├── ciena_saos_port_show.raw │ └── ciena_saos_port_show.yml ├── port_show_ethernet-config │ ├── ciena_saos_port_show_ethernet-config.3916.raw │ └── ciena_saos_port_show_ethernet-config.3916.yml ├── port_show_network-config │ ├── ciena_saos_port_show_network-config.3916.raw │ └── ciena_saos_port_show_network-config.3916.yml ├── port_show_status │ ├── ciena_saos_port_show_status.3916.raw │ └── ciena_saos_port_show_status.3916.yml ├── port_xcvr_show │ ├── ciena_saos_port_xcvr_show.3916.raw │ └── ciena_saos_port_xcvr_show.3916.yml ├── rstp_show │ ├── ciena_saos_rstp_show.raw │ └── ciena_saos_rstp_show.yml ├── software_show │ ├── ciena_saos_software_show.raw │ └── ciena_saos_software_show.yml ├── ssh_server_show_key │ ├── ciena_saos_ssh_server_show_key.raw │ └── ciena_saos_ssh_server_show_key.yml ├── traffic-profiling_standard-profile_show │ ├── ciena_saos_traffic-profiling_standard-profile_show.raw │ └── ciena_saos_traffic-profiling_standard-profile_show.yml └── vlan_show │ ├── ciena_saos_vlan_show.raw │ ├── ciena_saos_vlan_show.yml │ ├── ciena_saos_vlan_show2.raw │ └── ciena_saos_vlan_show2.yml ├── cisco_apic └── fabric_show_vlan_extended │ ├── cisco_apic_fabric_show_vlan_extended1.raw │ └── cisco_apic_fabric_show_vlan_extended1.yml ├── cisco_asa ├── dir │ ├── cisco_asa_dir.raw │ ├── cisco_asa_dir.yml │ ├── cisco_asa_dir2.raw │ └── cisco_asa_dir2.yml ├── ping │ ├── cisco_asa_ping.raw │ ├── cisco_asa_ping.yml │ ├── cisco_asa_ping_mix.raw │ ├── cisco_asa_ping_mix.yml │ ├── cisco_asa_ping_quench.raw │ ├── cisco_asa_ping_quench.yml │ ├── cisco_asa_ping_unreachable.raw │ └── cisco_asa_ping_unreachable.yml ├── show_access-list │ ├── cisco_asa_show_access-list.raw │ ├── cisco_asa_show_access-list.yml │ ├── cisco_asa_show_access-list3.raw │ ├── cisco_asa_show_access-list3.yml │ ├── cisco_asa_show_access-list_4.raw │ ├── cisco_asa_show_access-list_4.yml │ ├── cisco_asa_show_access-list_numeric.raw │ ├── cisco_asa_show_access-list_numeric.yml │ ├── cisco_asa_show_access-list_update.raw │ ├── cisco_asa_show_access-list_update.yml │ ├── cisco_asa_show_access-list_update2.raw │ └── cisco_asa_show_access-list_update2.yml ├── show_access-list_brief │ ├── cisco_asa_show_access-list_brief.raw │ └── cisco_asa_show_access-list_brief.yml ├── show_arp │ ├── cisco_asa_show_arp.raw │ └── cisco_asa_show_arp.yml ├── show_asp_drop │ ├── cisco_asa_show_asp_drop.raw │ ├── cisco_asa_show_asp_drop.yml │ ├── cisco_asa_show_asp_drop2.raw │ └── cisco_asa_show_asp_drop2.yml ├── show_asp_table_vpn-context_detail │ ├── cisco_asa_show_asp_table_vpn-context_detail.raw │ └── cisco_asa_show_asp_table_vpn-context_detail.yml ├── show_bgp_summary │ ├── cisco_asa_show_bgp_summary.raw │ ├── cisco_asa_show_bgp_summary.yml │ ├── cisco_asa_show_bgp_summary1.raw │ ├── cisco_asa_show_bgp_summary1.yml │ ├── cisco_asa_show_bgp_summary2.raw │ └── cisco_asa_show_bgp_summary2.yml ├── show_cpu_usage_detailed │ ├── cisco_asa_show_cpu_usage_detailed.raw │ └── cisco_asa_show_cpu_usage_detailed.yml ├── show_crypto_ikev1_sa_detail │ ├── cisco_asa_show_crypto_ikev1_sa_detail.raw │ └── cisco_asa_show_crypto_ikev1_sa_detail.yml ├── show_crypto_ipsec_sa │ ├── cisco_asa_show_crypto_ipsec_sa.raw │ └── cisco_asa_show_crypto_ipsec_sa.yml ├── show_failover │ ├── cisco_asa_show_failover.raw │ ├── cisco_asa_show_failover.yml │ ├── cisco_asa_show_failover1.raw │ ├── cisco_asa_show_failover1.yml │ ├── cisco_asa_show_failover2.raw │ ├── cisco_asa_show_failover2.yml │ ├── cisco_asa_show_failover5505.raw │ ├── cisco_asa_show_failover5505.yml │ ├── cisco_asa_show_failover_firepower.raw │ ├── cisco_asa_show_failover_firepower.yml │ ├── cisco_asa_show_failover_ips.raw │ ├── cisco_asa_show_failover_ips.yml │ ├── cisco_asa_show_failoveractiveactive.raw │ └── cisco_asa_show_failoveractiveactive.yml ├── show_interface │ ├── cisco_asa_show_interface.raw │ ├── cisco_asa_show_interface.yml │ ├── cisco_asa_show_interface1.raw │ ├── cisco_asa_show_interface1.yml │ ├── cisco_asa_show_interface2.raw │ ├── cisco_asa_show_interface2.yml │ ├── cisco_asa_show_interface3.raw │ ├── cisco_asa_show_interface3.yml │ ├── cisco_asa_show_interface4.raw │ ├── cisco_asa_show_interface4.yml │ ├── cisco_asa_show_interface5.raw │ ├── cisco_asa_show_interface5.yml │ ├── cisco_asa_show_interface_10gig.raw │ ├── cisco_asa_show_interface_10gig.yml │ ├── cisco_asa_show_interface_po.raw │ ├── cisco_asa_show_interface_po.yml │ ├── cisco_asa_show_interface_tun.raw │ ├── cisco_asa_show_interface_tun.yml │ ├── cisco_asa_show_interface_vlans.raw │ └── cisco_asa_show_interface_vlans.yml ├── show_interface_detail │ ├── cisco_asa_show_interface_detail.raw │ ├── cisco_asa_show_interface_detail.yml │ ├── cisco_asa_show_interface_detail_loopback.raw │ └── cisco_asa_show_interface_detail_loopback.yml ├── show_interface_ip_brief │ ├── cisco_asa_show_interface_ip_brief.raw │ ├── cisco_asa_show_interface_ip_brief.yml │ ├── cisco_asa_show_interface_ip_brief1.raw │ └── cisco_asa_show_interface_ip_brief1.yml ├── show_inventory │ ├── cisco_asa_show_inventory.raw │ ├── cisco_asa_show_inventory.yml │ ├── cisco_asa_show_inventory2.raw │ ├── cisco_asa_show_inventory2.yml │ ├── cisco_asa_show_inventory_empty_sn.raw │ ├── cisco_asa_show_inventory_empty_sn.yml │ ├── cisco_asa_show_inventory_pid_spaces.raw │ └── cisco_asa_show_inventory_pid_spaces.yml ├── show_license_all │ ├── cisco_asa_show_license_all.raw │ ├── cisco_asa_show_license_all.yml │ ├── cisco_asa_show_license_all2.raw │ ├── cisco_asa_show_license_all2.yml │ ├── cisco_asa_show_license_all3.raw │ ├── cisco_asa_show_license_all3.yml │ ├── cisco_asa_show_license_all4.raw │ ├── cisco_asa_show_license_all4.yml │ ├── cisco_asa_show_license_all5.raw │ └── cisco_asa_show_license_all5.yml ├── show_logging │ ├── cisco_asa_show_logging_1.raw │ ├── cisco_asa_show_logging_1.yml │ ├── cisco_asa_show_logging_2.raw │ ├── cisco_asa_show_logging_2.yml │ ├── cisco_asa_show_logging_3.raw │ ├── cisco_asa_show_logging_3.yml │ ├── cisco_asa_show_logging_4.raw │ └── cisco_asa_show_logging_4.yml ├── show_module │ ├── cisco_asa_show_module_01.raw │ ├── cisco_asa_show_module_01.yml │ ├── cisco_asa_show_module_02.raw │ ├── cisco_asa_show_module_02.yml │ ├── cisco_asa_show_module_03.raw │ ├── cisco_asa_show_module_03.yml │ ├── cisco_asa_show_module_04.raw │ └── cisco_asa_show_module_04.yml ├── show_name │ ├── cisco_asa_show_name.raw │ └── cisco_asa_show_name.yml ├── show_nat │ ├── cisco_asa_show_nat.raw │ └── cisco_asa_show_nat.yml ├── show_object-group_network │ ├── cisco_asa_show_object-group_network.raw │ └── cisco_asa_show_object-group_network.yml ├── show_ospf_interface_brief │ ├── cisco_asa_show_ospf_interface_brief.raw │ └── cisco_asa_show_ospf_interface_brief.yml ├── show_ospf_neighbor │ ├── cisco_asa_show_ospf_neighbor.raw │ └── cisco_asa_show_ospf_neighbor.yml ├── show_port-channel_summary │ ├── cisco_asa_show_port-channel_summary.raw │ └── cisco_asa_show_port-channel_summary.yml ├── show_resource_usage │ ├── cisco_asa_show_resource_usage.raw │ └── cisco_asa_show_resource_usage.yml ├── show_route │ ├── cisc_asa_show_route_vpn.raw │ ├── cisc_asa_show_route_vpn.yml │ ├── cisco_asa_show_route.raw │ ├── cisco_asa_show_route.yml │ ├── cisco_asa_show_route_alt_multiline.raw │ └── cisco_asa_show_route_alt_multiline.yml ├── show_running-config_access-group │ ├── show_running-config_access-group.raw │ └── show_running-config_access-group.yml ├── show_running-config_all_crypto_map │ ├── cisco_asa_show_running-config_all_crypto_map.raw │ ├── cisco_asa_show_running-config_all_crypto_map.yml │ ├── cisco_asa_show_running-config_all_crypto_map2.raw │ └── cisco_asa_show_running-config_all_crypto_map2.yml ├── show_running-config_crypto_ikev1 │ ├── cisco_asa_show_running-config_crypto_ikev1.raw │ └── cisco_asa_show_running-config_crypto_ikev1.yml ├── show_running-config_crypto_map │ ├── cisco_asa_show_running-config_crypto_map.raw │ ├── cisco_asa_show_running-config_crypto_map.yml │ ├── cisco_asa_show_running-config_crypto_map2.raw │ └── cisco_asa_show_running-config_crypto_map2.yml ├── show_running-config_ipsec │ ├── cisco_asa_show_running-config_ipsec.raw │ └── cisco_asa_show_running-config_ipsec.yml ├── show_running-config_object-group_service │ ├── show_running-config_object-group_service.raw │ └── show_running-config_object-group_service.yml ├── show_running-config_object_network │ ├── cisco_asa_show_running-config_object_network.raw │ └── cisco_asa_show_running-config_object_network.yml ├── show_running-config_object_service │ ├── cisco_asa_show_running-config_object_service.raw │ └── cisco_asa_show_running-config_object_service.yml ├── show_running-config_tunnel-group │ ├── cisco_asa_show_running-config_tunnel-group.raw │ └── cisco_asa_show_running-config_tunnel-group.yml ├── show_version │ ├── cisco_asa_show_version1.raw │ ├── cisco_asa_show_version1.yml │ ├── cisco_asa_show_version2.raw │ ├── cisco_asa_show_version2.yml │ ├── cisco_asa_show_version3.raw │ ├── cisco_asa_show_version3.yml │ ├── cisco_asa_show_version4.raw │ └── cisco_asa_show_version4.yml ├── show_vpn-sessiondb │ ├── cisco_asa_show_vpn-sessiondb.raw │ ├── cisco_asa_show_vpn-sessiondb.yml │ ├── cisco_asa_show_vpn-sessiondb2.raw │ └── cisco_asa_show_vpn-sessiondb2.yml ├── show_vpn-sessiondb_anyconnect │ ├── cisco_asa_show_vpn-sessiondb_anyconnect.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect1.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect1.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect2.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect2.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect3.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect3.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect4.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect4.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect_ipv6.raw │ ├── cisco_asa_show_vpn-sessiondb_anyconnect_ipv6.yml │ ├── cisco_asa_show_vpn-sessiondb_anyconnect_long_usernames.raw │ └── cisco_asa_show_vpn-sessiondb_anyconnect_long_usernames.yml ├── show_vpn-sessiondb_detail_l2l │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l.raw │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l.yml │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l2.raw │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l2.yml │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l4.raw │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l4.yml │ ├── cisco_asa_show_vpn-sessiondb_detail_l2l_obj.raw │ └── cisco_asa_show_vpn-sessiondb_detail_l2l_obj.yml └── show_xlate │ ├── cisco_asa_show_xlate.raw │ └── cisco_asa_show_xlate.yml ├── cisco_ftd ├── ping │ ├── cisco_ftd_ping.raw │ └── cisco_ftd_ping.yml ├── show_arp │ ├── cisco_ftd_show_arp.raw │ └── cisco_ftd_show_arp.yml └── show_vpn-sessiondb_anyconnect │ ├── cisco_ftd_show_vpn-sessiondb_anyconnect.raw │ └── cisco_ftd_show_vpn-sessiondb_anyconnect.yml ├── cisco_fxos └── show_system_firmware │ ├── cisco_fxos_show_system_firmware.raw │ └── cisco_fxos_show_system_firmware.yml ├── cisco_ios ├── dir │ ├── cisco_ios_dir.raw │ ├── cisco_ios_dir.yml │ ├── cisco_ios_dir_no_files.raw │ └── cisco_ios_dir_no_files.yml ├── ping │ ├── cisco_ios_ping.raw │ ├── cisco_ios_ping.yml │ ├── cisco_ios_ping_200.raw │ ├── cisco_ios_ping_200.yml │ ├── cisco_ios_ping_df.raw │ ├── cisco_ios_ping_df.yml │ ├── cisco_ios_ping_df_fail.raw │ ├── cisco_ios_ping_df_fail.yml │ ├── cisco_ios_ping_directed_broadcast.raw │ ├── cisco_ios_ping_directed_broadcast.yml │ ├── cisco_ios_ping_fail.raw │ ├── cisco_ios_ping_fail.yml │ ├── cisco_ios_ping_mix.raw │ ├── cisco_ios_ping_mix.yml │ ├── cisco_ios_ping_quench.raw │ ├── cisco_ios_ping_quench.yml │ ├── cisco_ios_ping_source.raw │ ├── cisco_ios_ping_source.yml │ ├── cisco_ios_ping_source_df.raw │ ├── cisco_ios_ping_source_df.yml │ ├── cisco_ios_ping_source_df_fail.raw │ ├── cisco_ios_ping_source_df_fail.yml │ ├── cisco_ios_ping_source_fail.raw │ ├── cisco_ios_ping_source_fail.yml │ ├── cisco_ios_ping_unreachable.raw │ └── cisco_ios_ping_unreachable.yml ├── show_access-list │ ├── cisco_ios_show_access-list.raw │ ├── cisco_ios_show_access-list.yml │ ├── cisco_ios_show_access-list2.raw │ ├── cisco_ios_show_access-list2.yml │ ├── cisco_ios_show_access-list3.raw │ └── cisco_ios_show_access-list3.yml ├── show_access-session │ ├── cisco_ios_show_access-session.raw │ ├── cisco_ios_show_access-session.yml │ ├── cisco_ios_show_access-session2.raw │ ├── cisco_ios_show_access-session2.yml │ ├── cisco_ios_show_access-session3.raw │ ├── cisco_ios_show_access-session3.yml │ ├── cisco_ios_show_access-session4.raw │ ├── cisco_ios_show_access-session4.yml │ ├── cisco_ios_show_access-session5.raw │ ├── cisco_ios_show_access-session5.yml │ ├── cisco_ios_show_access-session6.raw │ └── cisco_ios_show_access-session6.yml ├── show_adjacency │ ├── show_adjacency_detail_iosg1.raw │ ├── show_adjacency_detail_iosg1.yml │ ├── show_adjacency_detail_iosxe.raw │ ├── show_adjacency_detail_iosxe.yml │ ├── show_adjacency_short.raw │ └── show_adjacency_short.yml ├── show_alert_counters │ ├── cisco_ios_show_alert_counters.raw │ └── cisco_ios_show_alert_counters.yml ├── show_aliases │ ├── cisco_ios_show_aliases.raw │ └── cisco_ios_show_aliases.yml ├── show_ap_cdp_neighbors │ ├── cisco_ios_show_ap_cdp_neighbors.raw │ └── cisco_ios_show_ap_cdp_neighbors.yml ├── show_ap_summary │ ├── cisco_ios_show_ap_summary.raw │ ├── cisco_ios_show_ap_summary.yml │ ├── cisco_ios_show_ap_summary2.raw │ └── cisco_ios_show_ap_summary2.yml ├── show_archive │ ├── cisco_ios_show_archive.raw │ ├── cisco_ios_show_archive.yml │ ├── cisco_ios_show_archive_filelist.raw │ └── cisco_ios_show_archive_filelist.yml ├── show_arp │ ├── cisco_ios_show_arp.raw │ └── cisco_ios_show_arp.yml ├── show_authentication_sessions │ ├── cisco_ios_show_authentication_sessions.raw │ ├── cisco_ios_show_authentication_sessions.yml │ ├── cisco_ios_show_authentication_sessions2.raw │ ├── cisco_ios_show_authentication_sessions2.yml │ ├── cisco_ios_show_authentication_sessions3.raw │ └── cisco_ios_show_authentication_sessions3.yml ├── show_authentication_sessions_method_details │ ├── cisco_ios_show_authentication_sessions_method_mab_details_01.raw │ ├── cisco_ios_show_authentication_sessions_method_mab_details_01.yml │ ├── cisco_ios_show_authentication_sessions_method_mab_details_02.raw │ └── cisco_ios_show_authentication_sessions_method_mab_details_02.yml ├── show_bfd_neighbors_details │ ├── cisco_ios_show_bfd_neighbors_details-echo-mode.raw │ ├── cisco_ios_show_bfd_neighbors_details-echo-mode.yml │ ├── cisco_ios_show_bfd_neighbors_details-includes-ipv6.raw │ ├── cisco_ios_show_bfd_neighbors_details-includes-ipv6.yml │ ├── cisco_ios_show_bfd_neighbors_details-version0.raw │ ├── cisco_ios_show_bfd_neighbors_details-version0.yml │ ├── cisco_ios_show_bfd_neighbors_details-without-last.raw │ ├── cisco_ios_show_bfd_neighbors_details-without-last.yml │ ├── cisco_ios_show_bfd_neighbors_details.raw │ └── cisco_ios_show_bfd_neighbors_details.yml ├── show_boot │ ├── cisco_ios_show_boot.raw │ ├── cisco_ios_show_boot.yml │ ├── cisco_ios_show_boot2.raw │ ├── cisco_ios_show_boot2.yml │ ├── cisco_ios_show_boot_gibraltar.raw │ ├── cisco_ios_show_boot_gibraltar.yml │ ├── cisco_ios_show_boot_optimization.raw │ └── cisco_ios_show_boot_optimization.yml ├── show_capability_feature_routing │ ├── cisco_ios_show_capability_feature_routing.raw │ └── cisco_ios_show_capability_feature_routing.yml ├── show_cdp_neighbors │ ├── cisco_ios_show_cdp_neighbors.raw │ ├── cisco_ios_show_cdp_neighbors.yml │ ├── cisco_ios_show_cdp_neighbors_2.raw │ ├── cisco_ios_show_cdp_neighbors_2.yml │ ├── cisco_ios_show_cdp_neighbors_3.raw │ ├── cisco_ios_show_cdp_neighbors_3.yml │ ├── cisco_ios_show_cdp_neighbors_4.raw │ └── cisco_ios_show_cdp_neighbors_4.yml ├── show_cdp_neighbors_detail │ ├── cisco_ios_show_cdp_neighbors_detail.raw │ ├── cisco_ios_show_cdp_neighbors_detail.yml │ ├── cisco_ios_show_cdp_neighbors_detail2.raw │ └── cisco_ios_show_cdp_neighbors_detail2.yml ├── show_clock │ ├── cisco_ios_show_clock.raw │ ├── cisco_ios_show_clock.yml │ ├── cisco_ios_show_clock_2.raw │ └── cisco_ios_show_clock_2.yml ├── show_controller_t1 │ ├── cisco_ios_show_controller_t1.raw │ └── cisco_ios_show_controller_t1.yml ├── show_crypto_ipsec_sa_detail │ ├── cisco_ios_show_crypto_ipsec_sa_detail.raw │ ├── cisco_ios_show_crypto_ipsec_sa_detail.yml │ ├── cisco_ios_show_crypto_ipsec_sa_detail_2.raw │ ├── cisco_ios_show_crypto_ipsec_sa_detail_2.yml │ ├── cisco_ios_show_crypto_ipsec_sa_detail_3.raw │ └── cisco_ios_show_crypto_ipsec_sa_detail_3.yml ├── show_crypto_pki_certificates │ ├── cisco_ios_show_crypto_pki_certificates_1.raw │ ├── cisco_ios_show_crypto_pki_certificates_1.yml │ ├── cisco_ios_show_crypto_pki_certificates_2.raw │ └── cisco_ios_show_crypto_pki_certificates_2.yml ├── show_crypto_session_detail │ ├── cisco_ios_show_crypto_session_detail.raw │ ├── cisco_ios_show_crypto_session_detail.yml │ ├── cisco_ios_show_crypto_session_detail_ikev2.raw │ └── cisco_ios_show_crypto_session_detail_ikev2.yml ├── show_cts_credentials │ ├── cisco_ios_show_cts_credentials.raw │ ├── cisco_ios_show_cts_credentials.yml │ ├── cisco_ios_show_cts_credentials_2.raw │ ├── cisco_ios_show_cts_credentials_2.yml │ ├── cisco_ios_show_cts_credentials_3.raw │ └── cisco_ios_show_cts_credentials_3.yml ├── show_cts_pacs │ ├── cisco_ios_show-cts-pacs_6.raw │ ├── cisco_ios_show-cts-pacs_6.yml │ ├── cisco_ios_show-cts-pacs_7.raw │ ├── cisco_ios_show-cts-pacs_7.yml │ ├── cisco_ios_show_cts_pacs.raw │ ├── cisco_ios_show_cts_pacs.yml │ ├── cisco_ios_show_cts_pacs_2.raw │ ├── cisco_ios_show_cts_pacs_2.yml │ ├── cisco_ios_show_cts_pacs_3.raw │ ├── cisco_ios_show_cts_pacs_3.yml │ ├── cisco_ios_show_cts_pacs_4.raw │ ├── cisco_ios_show_cts_pacs_4.yml │ ├── cisco_ios_show_cts_pacs_5.raw │ └── cisco_ios_show_cts_pacs_5.yml ├── show_dhcp_lease │ ├── cisco_ios_show_dhcp_lease.raw │ ├── cisco_ios_show_dhcp_lease.yml │ ├── cisco_ios_show_dhcp_lease_2.raw │ ├── cisco_ios_show_dhcp_lease_2.yml │ ├── cisco_ios_show_dhcp_lease_3.raw │ └── cisco_ios_show_dhcp_lease_3.yml ├── show_dmvpn │ ├── cisco_ios_show_dmvpn.raw │ └── cisco_ios_show_dmvpn.yml ├── show_dot1x_all │ ├── cisco_ios_show_dot1x_all.raw │ └── cisco_ios_show_dot1x_all.yml ├── show_endpoint-tracker │ ├── cisco_ios_show_endpoint-tracker.raw │ └── cisco_ios_show_endpoint-tracker.yml ├── show_endpoint-tracker_tracker-group │ ├── cisco_ios_show_endpoint-tracker_tracker-group.raw │ └── cisco_ios_show_endpoint-tracker_tracker-group.yml ├── show_environment_power_all │ ├── cisco_ios_show_environment_power_all.raw │ ├── cisco_ios_show_environment_power_all.yml │ ├── cisco_ios_show_environment_power_all1.raw │ └── cisco_ios_show_environment_power_all1.yml ├── show_environment_temperature │ ├── cisco_ios_show_environment_temperature.raw │ └── cisco_ios_show_environment_temperature.yml ├── show_etherchannel_summary │ ├── show_etherchannel_summary.raw │ ├── show_etherchannel_summary.yml │ ├── show_etherchannel_summary2.raw │ └── show_etherchannel_summary2.yml ├── show_file_systems │ ├── show_file_systems.raw │ └── show_file_systems.yml ├── show_hosts_summary │ ├── cisco_ios_show_hosts_summary.raw │ └── cisco_ios_show_hosts_summary.yml ├── show_interface_link │ ├── cisco_ios_show_interface_link.raw │ ├── cisco_ios_show_interface_link.yml │ ├── cisco_ios_show_interface_link2.raw │ ├── cisco_ios_show_interface_link2.yml │ ├── cisco_ios_show_interface_link3.raw │ ├── cisco_ios_show_interface_link3.yml │ ├── cisco_ios_show_interface_link4.raw │ └── cisco_ios_show_interface_link4.yml ├── show_interface_transceiver │ ├── cisco_ios_show_interface_transceiver.raw │ ├── cisco_ios_show_interface_transceiver.yml │ ├── cisco_ios_show_interface_transceiver_iosxe.raw │ └── cisco_ios_show_interface_transceiver_iosxe.yml ├── show_interfaces │ ├── cisco_ios_show_interfaces.raw │ ├── cisco_ios_show_interfaces.yml │ ├── cisco_ios_show_interfaces2.raw │ ├── cisco_ios_show_interfaces2.yml │ ├── cisco_ios_show_interfaces3.raw │ ├── cisco_ios_show_interfaces3.yml │ ├── cisco_ios_show_interfaces4.raw │ ├── cisco_ios_show_interfaces4.yml │ ├── cisco_ios_show_interfaces5.raw │ ├── cisco_ios_show_interfaces5.yml │ ├── cisco_ios_show_interfaces6.raw │ ├── cisco_ios_show_interfaces6.yml │ ├── cisco_ios_show_interfaces_01.raw │ └── cisco_ios_show_interfaces_01.yml ├── show_interfaces_description │ ├── cisco_ios_show_interfaces_description.raw │ └── cisco_ios_show_interfaces_description.yml ├── show_interfaces_status │ ├── cisco_ios_show_interfaces_status.raw │ ├── cisco_ios_show_interfaces_status.yml │ ├── cisco_ios_show_interfaces_status2.raw │ ├── cisco_ios_show_interfaces_status2.yml │ ├── cisco_ios_show_interfaces_status_pvlan.raw │ ├── cisco_ios_show_interfaces_status_pvlan.yml │ ├── cisco_ios_show_interfaces_status_with_keywords_in_name.raw │ └── cisco_ios_show_interfaces_status_with_keywords_in_name.yml ├── show_interfaces_switchport │ ├── cisco_ios_show_interfaces_switchport.raw │ ├── cisco_ios_show_interfaces_switchport.yml │ ├── cisco_ios_show_interfaces_switchport2.raw │ ├── cisco_ios_show_interfaces_switchport2.yml │ ├── cisco_ios_show_interfaces_switchport3.raw │ ├── cisco_ios_show_interfaces_switchport3.yml │ ├── cisco_ios_show_interfaces_switchport4.raw │ ├── cisco_ios_show_interfaces_switchport4.yml │ ├── cisco_ios_show_interfaces_switchport_app_interfaces.raw │ ├── cisco_ios_show_interfaces_switchport_app_interfaces.yml │ ├── cisco_ios_show_interfaces_switchport_ethertype.raw │ ├── cisco_ios_show_interfaces_switchport_ethertype.yml │ ├── cisco_ios_show_interfaces_switchport_vepa_enabled.raw │ ├── cisco_ios_show_interfaces_switchport_vepa_enabled.yml │ ├── cisco_ios_show_interfaces_switchport_voice_vlan.raw │ └── cisco_ios_show_interfaces_switchport_voice_vlan.yml ├── show_inventory │ ├── cisco_ios_show_inventory.raw │ └── cisco_ios_show_inventory.yml ├── show_ip_access-lists │ ├── cisco_ios_show_ip_access-lists.raw │ ├── cisco_ios_show_ip_access-lists.yml │ ├── cisco_ios_show_ip_access-lists_1104.raw │ ├── cisco_ios_show_ip_access-lists_1104.yml │ ├── cisco_ios_show_ip_access-lists_954.raw │ ├── cisco_ios_show_ip_access-lists_954.yml │ ├── cisco_ios_show_ip_access-lists_964.raw │ ├── cisco_ios_show_ip_access-lists_964.yml │ ├── cisco_ios_show_ip_access-lists_969.raw │ ├── cisco_ios_show_ip_access-lists_969.yml │ ├── cisco_ios_show_ip_access-lists_fixed.raw │ └── cisco_ios_show_ip_access-lists_fixed.yml ├── show_ip_arp │ ├── cisco_ios_show_ip_arp.raw │ └── cisco_ios_show_ip_arp.yml ├── show_ip_bgp │ ├── cisco_ios_show_ip_bgp.raw │ ├── cisco_ios_show_ip_bgp.yml │ ├── cisco_ios_show_ip_bgp1.raw │ ├── cisco_ios_show_ip_bgp1.yml │ ├── cisco_ios_show_ip_bgp2.raw │ ├── cisco_ios_show_ip_bgp2.yml │ ├── cisco_ios_show_ip_bgp3.raw │ ├── cisco_ios_show_ip_bgp3.yml │ ├── cisco_ios_show_ip_bgp4.raw │ ├── cisco_ios_show_ip_bgp4.yml │ ├── cisco_ios_show_ip_bgp5.raw │ ├── cisco_ios_show_ip_bgp5.yml │ ├── cisco_ios_show_ip_bgp6.raw │ ├── cisco_ios_show_ip_bgp6.yml │ ├── cisco_ios_show_ip_bgp_vpn.raw │ └── cisco_ios_show_ip_bgp_vpn.yml ├── show_ip_bgp_neighbors │ ├── cisco_ios_show_ip_bgp_neighbors.raw │ ├── cisco_ios_show_ip_bgp_neighbors.yml │ ├── cisco_ios_show_ip_bgp_neighbors_multiple.raw │ └── cisco_ios_show_ip_bgp_neighbors_multiple.yml ├── show_ip_bgp_neighbors_advertised-routes │ ├── show_ip_bgp_neighbors_advertised_routes.raw │ ├── show_ip_bgp_neighbors_advertised_routes.yml │ ├── show_ip_bgp_neighbors_advertised_routes2.raw │ └── show_ip_bgp_neighbors_advertised_routes2.yml ├── show_ip_bgp_summary │ ├── cisco_ios_show_ip_bgp_summary.raw │ ├── cisco_ios_show_ip_bgp_summary.yml │ ├── cisco_ios_show_ip_bgp_summary_all.raw │ ├── cisco_ios_show_ip_bgp_summary_all.yml │ ├── cisco_ios_show_ip_bgp_summary_with_dot.raw │ ├── cisco_ios_show_ip_bgp_summary_with_dot.yml │ ├── cisco_ios_show_ip_bgp_summary_with_dot_peer_as.raw │ └── cisco_ios_show_ip_bgp_summary_with_dot_peer_as.yml ├── show_ip_bgp_vpnv4_all_neighbors │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors.raw │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors.yml │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_desc1.raw │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_desc1.yml │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_desc2.raw │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_desc2.yml │ ├── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_multiple.raw │ └── cisco_ios_show_ip_bgp_vpnv4_all_neighbors_multiple.yml ├── show_ip_cef │ ├── show_ip_cef_c2800_v1.raw │ ├── show_ip_cef_c2800_v1.yml │ ├── show_ip_cef_c2800_v2.raw │ ├── show_ip_cef_c2800_v2.yml │ ├── show_ip_cef_c2900_v1.raw │ ├── show_ip_cef_c2900_v1.yml │ ├── show_ip_cef_c3750.raw │ ├── show_ip_cef_c3750.yml │ ├── show_ip_cef_c3850_v1.raw │ ├── show_ip_cef_c3850_v1.yml │ ├── show_ip_cef_c3850_v2.raw │ ├── show_ip_cef_c3850_v2.yml │ ├── show_ip_cef_disabled.raw │ └── show_ip_cef_disabled.yml ├── show_ip_cef_detail │ ├── show_ip_cef_detail_c2800_v1.raw │ ├── show_ip_cef_detail_c2800_v1.yml │ ├── show_ip_cef_detail_c2800_v2.raw │ ├── show_ip_cef_detail_c2800_v2.yml │ ├── show_ip_cef_detail_c2900_v1.raw │ ├── show_ip_cef_detail_c2900_v1.yml │ ├── show_ip_cef_detail_c3750.raw │ ├── show_ip_cef_detail_c3750.yml │ ├── show_ip_cef_detail_c3850_v1.raw │ ├── show_ip_cef_detail_c3850_v1.yml │ ├── show_ip_cef_detail_c3850_v2.raw │ └── show_ip_cef_detail_c3850_v2.yml ├── show_ip_device_tracking_all │ ├── cisco_ios_show_ip_device_tracking_all.raw │ └── cisco_ios_show_ip_device_tracking_all.yml ├── show_ip_dhcp_binding │ ├── cisco_ios_show_ip_dhcp_binding.raw │ └── cisco_ios_show_ip_dhcp_binding.yml ├── show_ip_dhcp_snooping_binding │ ├── provided_output.raw │ └── provided_output.yml ├── show_ip_eigrp_interfaces_detail │ ├── cisco_ios_show_ip_eigrp_interfaces_detail.raw │ └── cisco_ios_show_ip_eigrp_interfaces_detail.yml ├── show_ip_eigrp_neighbors │ ├── cisco_ios_show_ip_eigrp_neighbors.raw │ ├── cisco_ios_show_ip_eigrp_neighbors.yml │ ├── cisco_ios_show_ip_eigrp_neighbors1.raw │ ├── cisco_ios_show_ip_eigrp_neighbors1.yml │ ├── cisco_ios_show_ip_eigrp_neighbors2.raw │ ├── cisco_ios_show_ip_eigrp_neighbors2.yml │ ├── cisco_ios_show_ip_eigrp_neighbors3.raw │ └── cisco_ios_show_ip_eigrp_neighbors3.yml ├── show_ip_eigrp_neighbors_detail │ ├── cisco_ios_show_ip_eigrp_neighbors_detail.raw │ └── cisco_ios_show_ip_eigrp_neighbors_detail.yml ├── show_ip_eigrp_topology │ ├── cisco_ios_show_ip_eigrp_topology.raw │ ├── cisco_ios_show_ip_eigrp_topology.yml │ ├── cisco_ios_show_ip_eigrp_topology1.raw │ ├── cisco_ios_show_ip_eigrp_topology1.yml │ ├── cisco_ios_show_ip_eigrp_topology2.raw │ └── cisco_ios_show_ip_eigrp_topology2.yml ├── show_ip_flow_toptalkers │ ├── cisco_ios_show_ip_flow_toptalkers.raw │ └── cisco_ios_show_ip_flow_toptalkers.yml ├── show_ip_http_server_status │ ├── cisco_ios_show_ip_http_server_status.raw │ └── cisco_ios_show_ip_http_server_status.yml ├── show_ip_interface │ ├── cisco_ios_show_ip_interface.raw │ ├── cisco_ios_show_ip_interface.yml │ ├── cisco_ios_show_ip_interface2.raw │ ├── cisco_ios_show_ip_interface2.yml │ ├── cisco_ios_show_ip_interface3.raw │ ├── cisco_ios_show_ip_interface3.yml │ ├── cisco_ios_show_ip_interface4.raw │ ├── cisco_ios_show_ip_interface4.yml │ ├── cisco_ios_show_ip_interface5.raw │ ├── cisco_ios_show_ip_interface5.yml │ ├── cisco_ios_show_ip_interface6.raw │ ├── cisco_ios_show_ip_interface6.yml │ ├── cisco_ios_show_ip_interface7.raw │ ├── cisco_ios_show_ip_interface7.yml │ ├── cisco_ios_show_ip_interface8.raw │ └── cisco_ios_show_ip_interface8.yml ├── show_ip_interface_brief │ ├── cisco_ios_show_ip_interface_brief.raw │ └── cisco_ios_show_ip_interface_brief.yml ├── show_ip_mroute │ ├── cisco_ios_show_ip_mroute1.raw │ ├── cisco_ios_show_ip_mroute1.yml │ ├── cisco_ios_show_ip_mroute2.raw │ ├── cisco_ios_show_ip_mroute2.yml │ ├── cisco_ios_show_ip_mroute3.raw │ └── cisco_ios_show_ip_mroute3.yml ├── show_ip_nat_translations │ ├── show_ip_nat_translations.raw │ └── show_ip_nat_translations.yml ├── show_ip_ospf_database │ ├── cisco_ios_show_ip_ospf_database.raw │ └── cisco_ios_show_ip_ospf_database.yml ├── show_ip_ospf_database_network │ ├── cisco_ios_show_ip_ospf_database_network.raw │ ├── cisco_ios_show_ip_ospf_database_network.yml │ ├── cisco_ios_show_ip_ospf_database_network_leading-spaces-truncated.raw │ └── cisco_ios_show_ip_ospf_database_network_leading-spaces-truncated.yml ├── show_ip_ospf_database_router │ ├── cisco_ios_show_ip_ospf_database_router.raw │ ├── cisco_ios_show_ip_ospf_database_router.yml │ ├── cisco_ios_show_ip_ospf_database_router_asbr_abr.raw │ ├── cisco_ios_show_ip_ospf_database_router_asbr_abr.yml │ ├── cisco_ios_show_ip_ospf_database_router_leading-spaces-truncated.raw │ └── cisco_ios_show_ip_ospf_database_router_leading-spaces-truncated.yml ├── show_ip_ospf_interface_brief │ ├── cisco_ios_show_ip_ospf_interface_brief.raw │ └── cisco_ios_show_ip_ospf_interface_brief.yml ├── show_ip_ospf_neighbor │ ├── cisco_ios_show_ip_ospf_neighbor.raw │ ├── cisco_ios_show_ip_ospf_neighbor.yml │ ├── four_neighbors.raw │ └── four_neighbors.yml ├── show_ip_ospf_neighbor_detail │ ├── cisco_ios_show_ip_ospf_neighbor_detail.raw │ └── cisco_ios_show_ip_ospf_neighbor_detail.yml ├── show_ip_prefix-list │ ├── cisco_ios_show_ip_prefix-list.raw │ └── cisco_ios_show_ip_prefix-list.yml ├── show_ip_route │ ├── cisco_ios_show_ip_route.raw │ ├── cisco_ios_show_ip_route.yml │ ├── cisco_ios_show_ip_route1.raw │ ├── cisco_ios_show_ip_route1.yml │ ├── cisco_ios_show_ip_route_vrf.raw │ ├── cisco_ios_show_ip_route_vrf.yml │ ├── cisco_ios_show_ip_route_wildcard.raw │ └── cisco_ios_show_ip_route_wildcard.yml ├── show_ip_route_summary │ ├── cisco_ios_show_ip_route_summary.raw │ ├── cisco_ios_show_ip_route_summary.yml │ ├── cisco_ios_show_ip_route_summary2.raw │ ├── cisco_ios_show_ip_route_summary2.yml │ ├── cisco_ios_show_ip_route_summary3.raw │ └── cisco_ios_show_ip_route_summary3.yml ├── show_ip_source_binding │ ├── cisco_ios_show_ip_source_binding.raw │ └── cisco_ios_show_ip_source_binding.yml ├── show_ip_vrf_interfaces │ ├── cisco_ios_show_ip_vrf_interfaces_empty.raw │ ├── cisco_ios_show_ip_vrf_interfaces_empty.yml │ ├── cisco_ios_show_ip_vrf_interfaces_iosxe.raw │ └── cisco_ios_show_ip_vrf_interfaces_iosxe.yml ├── show_ipv6_access-lists │ ├── cisco_ios_show_ipv6_access-lists.raw │ └── cisco_ios_show_ipv6_access-lists.yml ├── show_ipv6_interface_brief │ ├── cisco_ios_show_ipv6_interface_brief.raw │ └── cisco_ios_show_ipv6_interface_brief.yml ├── show_ipv6_neighbors │ ├── cisco_ios_show_ipv6_neighbors1.raw │ └── cisco_ios_show_ipv6_neighbors1.yml ├── show_ipv6_route │ ├── cisco_ios_show_ipv6_route.raw │ └── cisco_ios_show_ipv6_route.yml ├── show_isdn_status │ ├── cisco_ios_show_isdn_status.raw │ └── cisco_ios_show_isdn_status.yml ├── show_isis_neighbors │ ├── cisco_ios_show_isis_neighbors.raw │ └── cisco_ios_show_isis_neighbors.yml ├── show_license │ ├── cisco_ios_show_license.raw │ └── cisco_ios_show_license.yml ├── show_license_status │ ├── cisco_ios_show_license_status1.raw │ ├── cisco_ios_show_license_status1.yml │ ├── cisco_ios_show_license_status2.raw │ ├── cisco_ios_show_license_status2.yml │ ├── cisco_ios_show_license_status3.raw │ ├── cisco_ios_show_license_status3.yml │ ├── cisco_ios_show_license_status4.raw │ └── cisco_ios_show_license_status4.yml ├── show_lldp_neighbors │ ├── cisco_ios_show_lldp_neighbors.raw │ ├── cisco_ios_show_lldp_neighbors.yml │ ├── cisco_ios_show_lldp_neighbors2.raw │ └── cisco_ios_show_lldp_neighbors2.yml ├── show_lldp_neighbors_detail │ ├── cisco_ios_show_lldp_neighbors_detail1.raw │ ├── cisco_ios_show_lldp_neighbors_detail1.yml │ ├── cisco_ios_show_lldp_neighbors_detail2.raw │ ├── cisco_ios_show_lldp_neighbors_detail2.yml │ ├── cisco_ios_show_lldp_neighbors_detail3.raw │ ├── cisco_ios_show_lldp_neighbors_detail3.yml │ ├── cisco_ios_show_lldp_neighbors_detail4.raw │ ├── cisco_ios_show_lldp_neighbors_detail4.yml │ ├── cisco_ios_show_lldp_neighbors_detail5.raw │ ├── cisco_ios_show_lldp_neighbors_detail5.yml │ ├── cisco_ios_show_lldp_neighbors_detail6.raw │ ├── cisco_ios_show_lldp_neighbors_detail6.yml │ ├── cisco_ios_show_lldp_neighbors_detail_01.raw │ ├── cisco_ios_show_lldp_neighbors_detail_01.yml │ ├── cisco_ios_show_lldp_neighbors_detail_02.raw │ ├── cisco_ios_show_lldp_neighbors_detail_02.yml │ ├── cisco_ios_show_lldp_neighbors_detail_chassis-colon.raw │ └── cisco_ios_show_lldp_neighbors_detail_chassis-colon.yml ├── show_logging │ ├── cisco_ios_show_logging_1.raw │ ├── cisco_ios_show_logging_1.yml │ ├── cisco_ios_show_logging_2.raw │ ├── cisco_ios_show_logging_2.yml │ ├── cisco_ios_show_logging_3.raw │ ├── cisco_ios_show_logging_3.yml │ ├── cisco_ios_show_logging_4.raw │ ├── cisco_ios_show_logging_4.yml │ ├── cisco_ios_show_logging_5.raw │ └── cisco_ios_show_logging_5.yml ├── show_mac-address-table │ ├── cisco_ios_show_mac-address-table.raw │ ├── cisco_ios_show_mac-address-table.yml │ ├── cisco_ios_show_mac-address-table12.raw │ ├── cisco_ios_show_mac-address-table12.yml │ ├── cisco_ios_show_mac-address-table13.raw │ ├── cisco_ios_show_mac-address-table13.yml │ ├── cisco_ios_show_mac-address-table2.raw │ ├── cisco_ios_show_mac-address-table2.yml │ ├── cisco_ios_show_mac-address-table3.raw │ ├── cisco_ios_show_mac-address-table3.yml │ ├── cisco_ios_show_mac-address-table4.raw │ ├── cisco_ios_show_mac-address-table4.yml │ ├── cisco_ios_show_mac-address-table5.raw │ ├── cisco_ios_show_mac-address-table5.yml │ ├── cisco_ios_show_mac-address-table6.raw │ ├── cisco_ios_show_mac-address-table6.yml │ ├── cisco_ios_show_mac-address-table7.raw │ ├── cisco_ios_show_mac-address-table7.yml │ ├── cisco_ios_show_mac-address-table8.raw │ ├── cisco_ios_show_mac-address-table8.yml │ ├── cisco_ios_show_mac-address-table9.raw │ └── cisco_ios_show_mac-address-table9.yml ├── show_module │ ├── cisco_ios_show_module1.raw │ ├── cisco_ios_show_module1.yml │ ├── cisco_ios_show_module2.raw │ ├── cisco_ios_show_module2.yml │ ├── cisco_ios_show_module3.raw │ ├── cisco_ios_show_module3.yml │ ├── cisco_ios_show_module4.raw │ ├── cisco_ios_show_module4.yml │ ├── cisco_ios_show_module5.raw │ ├── cisco_ios_show_module5.yml │ ├── cisco_ios_show_module_01.raw │ ├── cisco_ios_show_module_01.yml │ ├── cisco_ios_show_module_02.raw │ └── cisco_ios_show_module_02.yml ├── show_mpls_interfaces │ ├── cisco_ios_show_mpls_interfaces.raw │ └── cisco_ios_show_mpls_interfaces.yml ├── show_mpls_l2transport_vc │ ├── cisco_ios_show_mpls_l2transport_vc.raw │ └── cisco_ios_show_mpls_l2transport_vc.yml ├── show_nve_peers │ ├── cisco_ios_show_nve_peers.raw │ └── cisco_ios_show_nve_peers.yml ├── show_nve_vni │ ├── cisco_ios_show_nve_vni.raw │ └── cisco_ios_show_nve_vni.yml ├── show_object-group │ ├── cisco_ios_show_object-group-v6.raw │ ├── cisco_ios_show_object-group-v6.yml │ ├── cisco_ios_show_object-group.raw │ └── cisco_ios_show_object-group.yml ├── show_platform │ ├── cisco_ios_show_platform.raw │ └── cisco_ios_show_platform.yml ├── show_platform_diag │ ├── cisco_ios_show_platform_diag.raw │ ├── cisco_ios_show_platform_diag.yml │ ├── cisco_ios_show_platform_diag_2.raw │ ├── cisco_ios_show_platform_diag_2.yml │ ├── cisco_ios_show_platform_diag_3.raw │ └── cisco_ios_show_platform_diag_3.yml ├── show_policy-map │ ├── cisco_ios_show_policy-map.raw │ ├── cisco_ios_show_policy-map.yml │ ├── cisco_ios_show_policy-map2.raw │ └── cisco_ios_show_policy-map2.yml ├── show_port-security_interface_interface │ ├── cisco_ios_show_port-security_interface_interface.raw │ └── cisco_ios_show_port-security_interface_interface.yml ├── show_power_available │ ├── cisco_ios_show_power_available.raw │ ├── cisco_ios_show_power_available.yml │ ├── cisco_ios_show_power_available1.raw │ └── cisco_ios_show_power_available1.yml ├── show_power_inline │ ├── cisco_ios_show_power_inline.raw │ ├── cisco_ios_show_power_inline.yml │ ├── cisco_ios_show_power_inline_6807-XL.raw │ ├── cisco_ios_show_power_inline_6807-XL.yml │ ├── cisco_ios_show_power_inline_6880-X.raw │ ├── cisco_ios_show_power_inline_6880-X.yml │ ├── cisco_ios_show_power_inline_cat4510sup7.raw │ ├── cisco_ios_show_power_inline_cat4510sup7.yml │ ├── cisco_ios_show_power_inline_faulty.raw │ ├── cisco_ios_show_power_inline_faulty.yml │ ├── cisco_ios_show_power_inline_ios12.raw │ ├── cisco_ios_show_power_inline_ios12.yml │ ├── cisco_ios_show_power_inline_whitespace.raw │ └── cisco_ios_show_power_inline_whitespace.yml ├── show_power_status │ ├── cisco_ios_show_power_status.raw │ ├── cisco_ios_show_power_status.yml │ ├── cisco_ios_show_power_status1.raw │ ├── cisco_ios_show_power_status1.yml │ ├── cisco_ios_show_power_status2.raw │ └── cisco_ios_show_power_status2.yml ├── show_power_supplies │ ├── cisco_ios_show_power_supplies.raw │ ├── cisco_ios_show_power_supplies.yml │ ├── cisco_ios_show_power_supplies1.raw │ └── cisco_ios_show_power_supplies1.yml ├── show_power_used │ ├── cisco_ios_show_power_used.raw │ └── cisco_ios_show_power_used.yml ├── show_processes_cpu │ ├── cisco_ios_show_processes_cpu.raw │ └── cisco_ios_show_processes_cpu.yml ├── show_processes_memory_sorted │ ├── cisco_ios_show_processes_memory_sorted.raw │ └── cisco_ios_show_processes_memory_sorted.yml ├── show_redundancy │ ├── cisco_ios_show_redundancy.raw │ ├── cisco_ios_show_redundancy.yml │ ├── cisco_ios_show_redundancy2.raw │ ├── cisco_ios_show_redundancy2.yml │ ├── cisco_ios_show_redundancy3.raw │ ├── cisco_ios_show_redundancy3.yml │ ├── cisco_ios_show_redundancy4.raw │ ├── cisco_ios_show_redundancy4.yml │ ├── cisco_ios_show_redundancy5.raw │ └── cisco_ios_show_redundancy5.yml ├── show_rep_topology │ ├── cisco_ios_show_rep_topology.raw │ └── cisco_ios_show_rep_topology.yml ├── show_route-map │ ├── cisco_ios_show_route-map.raw │ └── cisco_ios_show_route-map.yml ├── show_running-config_partition_access-list │ ├── cisco_ios_show_running-config_partition_access-list.raw │ ├── cisco_ios_show_running-config_partition_access-list.yml │ ├── cisco_ios_show_running-config_partition_access-list_fixed.raw │ ├── cisco_ios_show_running-config_partition_access-list_fixed.yml │ ├── cisco_ios_show_running-config_partition_access-list_new.raw │ └── cisco_ios_show_running-config_partition_access-list_new.yml ├── show_running-config_partition_route-map │ ├── cisco_ios_show_running-config_partition_route-map.raw │ ├── cisco_ios_show_running-config_partition_route-map.yml │ ├── cisco_ios_show_running-config_partition_route-map2.raw │ └── cisco_ios_show_running-config_partition_route-map2.yml ├── show_sdwan_bfd_sessions_table │ ├── cisco_ios_show_sdwan_bfd_sessions_table.raw │ └── cisco_ios_show_sdwan_bfd_sessions_table.yml ├── show_sdwan_bfd_summary │ ├── cisco_ios_show_sdwan_bfd_summary.raw │ └── cisco_ios_show_sdwan_bfd_summary.yml ├── show_sdwan_control_connections │ ├── cisco_ios_show_sdwan_control_connections.raw │ └── cisco_ios_show_sdwan_control_connections.yml ├── show_sdwan_omp_peers │ ├── cisco_ios_show_sdwan_omp_peers.raw │ └── cisco_ios_show_sdwan_omp_peers.yml ├── show_sdwan_tunnel_statistics_table │ ├── cisco_ios_show_sdwan_tunnel_statistics_table.raw │ └── cisco_ios_show_sdwan_tunnel_statistics_table.yml ├── show_snmp_community │ ├── cisco_ios_show_snmp_community.raw │ └── cisco_ios_show_snmp_community.yml ├── show_snmp_group │ ├── cisco_ios_show_snmp_group.raw │ └── cisco_ios_show_snmp_group.yml ├── show_snmp_user │ ├── cisco_ios_show_snmp_user.raw │ └── cisco_ios_show_snmp_user.yml ├── show_spanning-tree │ ├── cisco_ios_show_spanning_tree.raw │ └── cisco_ios_show_spanning_tree.yml ├── show_spanning-tree_root │ ├── cisco_ios_show_spanning_tree_root.raw │ └── cisco_ios_show_spanning_tree_root.yml ├── show_stack-power │ ├── cisco_ios_show_stack-power.raw │ └── cisco_ios_show_stack-power.yml ├── show_standby │ ├── cisco_ios_show_standby.raw │ ├── cisco_ios_show_standby.yml │ ├── cisco_ios_show_standby1.raw │ ├── cisco_ios_show_standby1.yml │ ├── cisco_ios_show_standby2.raw │ ├── cisco_ios_show_standby2.yml │ ├── cisco_ios_show_standby3.raw │ └── cisco_ios_show_standby3.yml ├── show_standby_brief │ ├── cisco_ios_show_standby_brief.raw │ └── cisco_ios_show_standby_brief.yml ├── show_switch_detail │ ├── cisco_ios_show_switch_01.raw │ ├── cisco_ios_show_switch_01.yml │ ├── cisco_ios_show_switch_detail01.raw │ ├── cisco_ios_show_switch_detail01.yml │ ├── cisco_ios_show_switch_detail02.raw │ ├── cisco_ios_show_switch_detail02.yml │ ├── cisco_ios_show_switch_detail1.raw │ ├── cisco_ios_show_switch_detail1.yml │ ├── cisco_ios_show_switch_detail2.raw │ ├── cisco_ios_show_switch_detail2.yml │ ├── cisco_ios_show_switch_detail3.raw │ └── cisco_ios_show_switch_detail3.yml ├── show_switch_virtual │ ├── cisco_ios_show_switch_virtual_01.raw │ └── cisco_ios_show_switch_virtual_01.yml ├── show_tacacs │ ├── cisco_ios_show_tacacs.raw │ ├── cisco_ios_show_tacacs.yml │ ├── cisco_ios_show_tacacs_server_name.raw │ ├── cisco_ios_show_tacacs_server_name.yml │ ├── cisco_ios_show_tacacs_status_fail_count.raw │ └── cisco_ios_show_tacacs_status_fail_count.yml ├── show_users │ ├── cisco_ios_show_users.raw │ ├── cisco_ios_show_users.yml │ ├── cisco_ios_show_users_all.raw │ └── cisco_ios_show_users_all.yml ├── show_version │ ├── cisco_ios_show_version.raw │ ├── cisco_ios_show_version.yml │ ├── cisco_ios_show_version1.raw │ ├── cisco_ios_show_version1.yml │ ├── cisco_ios_show_version2.raw │ ├── cisco_ios_show_version2.yml │ ├── cisco_ios_show_version3.raw │ ├── cisco_ios_show_version3.yml │ ├── cisco_ios_show_version4.raw │ ├── cisco_ios_show_version4.yml │ ├── cisco_ios_show_version5.raw │ ├── cisco_ios_show_version5.yml │ ├── cisco_ios_show_version6.raw │ ├── cisco_ios_show_version6.yml │ ├── cisco_ios_show_version_01.raw │ ├── cisco_ios_show_version_01.yml │ ├── cisco_ios_show_version_special_build.raw │ └── cisco_ios_show_version_special_build.yml ├── show_vlan │ ├── cisco_ios_show_vlan.raw │ └── cisco_ios_show_vlan.yml ├── show_vlan_group │ ├── cisco_ios_show_vlan_group.raw │ └── cisco_ios_show_vlan_group.yml ├── show_vlans │ ├── cisco_ios_show_vlans.raw │ ├── cisco_ios_show_vlans.yml │ ├── cisco_ios_show_vlans_01.raw │ ├── cisco_ios_show_vlans_01.yml │ ├── cisco_ios_show_vlans_02.raw │ ├── cisco_ios_show_vlans_02.yml │ ├── cisco_ios_show_vlans_03.raw │ ├── cisco_ios_show_vlans_03.yml │ ├── cisco_ios_show_vlans_04.raw │ ├── cisco_ios_show_vlans_04.yml │ ├── cisco_ios_show_vlans_05.raw │ ├── cisco_ios_show_vlans_05.yml │ ├── cisco_ios_show_vlans_06.raw │ ├── cisco_ios_show_vlans_06.yml │ ├── cisco_ios_show_vlans_07.raw │ ├── cisco_ios_show_vlans_07.yml │ ├── cisco_ios_show_vlans_08.raw │ ├── cisco_ios_show_vlans_08.yml │ ├── cisco_ios_show_vlans_09.raw │ └── cisco_ios_show_vlans_09.yml ├── show_vrf │ ├── cisco_ios_show_vrf.raw │ ├── cisco_ios_show_vrf.yml │ ├── cisco_ios_show_vrf01.raw │ ├── cisco_ios_show_vrf01.yml │ ├── cisco_ios_show_vrf02.raw │ ├── cisco_ios_show_vrf02.yml │ ├── cisco_ios_show_vrf2.raw │ ├── cisco_ios_show_vrf2.yml │ ├── cisco_ios_show_vrf3.raw │ ├── cisco_ios_show_vrf3.yml │ ├── cisco_ios_show_vrf_no_interface.raw │ └── cisco_ios_show_vrf_no_interface.yml ├── show_vrf_detail │ ├── cisco_ios_show_vrf_detail.raw │ └── cisco_ios_show_vrf_detail.yml ├── show_vrrp_all │ ├── cisco_ios_show_vrrp_all.raw │ ├── cisco_ios_show_vrrp_all.yml │ ├── cisco_ios_show_vrrpv3_all.raw │ └── cisco_ios_show_vrrpv3_all.yml ├── show_vrrp_brief │ ├── cisco_ios_show_vrrp_brief.raw │ ├── cisco_ios_show_vrrp_brief.yml │ ├── cisco_ios_show_vrrpv3_brief.raw │ └── cisco_ios_show_vrrpv3_brief.yml ├── show_vtp_status │ ├── cisco_ios_show_vtp_status.raw │ └── cisco_ios_show_vtp_status.yml ├── show_wireless_tag_policy_summary │ ├── show_wireless_tag_policy_summary.raw │ └── show_wireless_tag_policy_summary.yml └── traceroute │ ├── cisco_ios_traceroute_1.raw │ ├── cisco_ios_traceroute_1.yml │ ├── cisco_ios_traceroute_2.raw │ ├── cisco_ios_traceroute_2.yml │ ├── cisco_ios_traceroute_3.raw │ ├── cisco_ios_traceroute_3.yml │ ├── cisco_ios_traceroute_4.raw │ ├── cisco_ios_traceroute_4.yml │ ├── cisco_ios_traceroute_5.raw │ ├── cisco_ios_traceroute_5.yml │ ├── cisco_ios_traceroute_6.raw │ ├── cisco_ios_traceroute_6.yml │ ├── cisco_ios_traceroute_dns.raw │ ├── cisco_ios_traceroute_dns.yml │ ├── cisco_ios_traceroute_ip.raw │ └── cisco_ios_traceroute_ip.yml ├── cisco_nvfis ├── show_bridge-settings │ ├── cisco_nvfis_show_bridge-settings.raw │ └── cisco_nvfis_show_bridge-settings.yml ├── show_configuration_commit_changes │ ├── cisco_nvfis_show_configuration_commit_changes.raw │ └── cisco_nvfis_show_configuration_commit_changes.yml ├── show_nic │ ├── cisco_nvfis_show_nic.raw │ └── cisco_nvfis_show_nic.yml ├── show_running-config_snmp_enable │ ├── cisco_nvfis_show_running-config_snmp_enable.raw │ └── cisco_nvfis_show_running-config_snmp_enable.yml ├── show_running-config_snmp_group │ ├── cisco_nvfis_show_running-config_snmp_group.raw │ └── cisco_nvfis_show_running-config_snmp_group.yml ├── show_running-config_snmp_host │ ├── cisco_nvfis_show_running-config_snmp_host.raw │ └── cisco_nvfis_show_running-config_snmp_host.yml ├── show_running-config_snmp_user │ ├── cisco_nvfis_show_running-config_snmp_user.raw │ └── cisco_nvfis_show_running-config_snmp_user.yml ├── show_running-config_system_settings │ ├── cisco_nvfis_show_running-config_system_settings.raw │ └── cisco_nvfis_show_running-config_system_settings.yml ├── show_running-config_system_time │ ├── cisco_nvfis_show_running-config_system_time.raw │ └── cisco_nvfis_show_running-config_system_time.yml ├── show_running-config_system_upgrade │ ├── cisco_nvfis_show_running-config_system_upgrade.raw │ └── cisco_nvfis_show_running-config_system_upgrade.yml └── show_version │ ├── cisco_nvfis_show_version.raw │ └── cisco_nvfis_show_version.yml ├── cisco_nxos ├── dir │ ├── cisco_nxos_dir_01.raw │ ├── cisco_nxos_dir_01.yml │ ├── cisco_nxos_dir_02.raw │ └── cisco_nxos_dir_02.yml ├── show_access-lists │ ├── cisco_nxos_show_access-lists.raw │ ├── cisco_nxos_show_access-lists.yml │ ├── cisco_nxos_show_access-lists2.raw │ └── cisco_nxos_show_access-lists2.yml ├── show_bfd_neighbors │ ├── cisco_nxos_show_bfd_neighbors1.raw │ └── cisco_nxos_show_bfd_neighbors1.yml ├── show_bgp_vrf_all_ipv4_unicast_detail │ ├── cisco_nxos_show_bgp_vrf_ipv4_unicast_detail.raw │ └── cisco_nxos_show_bgp_vrf_ipv4_unicast_detail.yml ├── show_bgp_vrf_all_ipv4_unicast_neighbors_routes │ ├── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_neighbors_routes1.raw │ ├── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_neighbors_routes1.yml │ ├── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_neighbors_routes2.raw │ └── cisco_nxos_show_bgp_vrf_all_ipv4_unicast_neighbors_routes2.yml ├── show_cdp_neighbors │ ├── cisco_nxos_show_cdp_neighbors.raw │ ├── cisco_nxos_show_cdp_neighbors.yml │ ├── cisco_nxos_show_cdp_neighbors2.raw │ └── cisco_nxos_show_cdp_neighbors2.yml ├── show_cdp_neighbors_detail │ ├── cisco_nxos_show_cdp_neighbors_detail.raw │ ├── cisco_nxos_show_cdp_neighbors_detail.yml │ ├── cisco_nxos_show_cdp_neighbors_detail1.raw │ ├── cisco_nxos_show_cdp_neighbors_detail1.yml │ ├── cisco_nxos_show_cdp_neighbors_detail2.raw │ ├── cisco_nxos_show_cdp_neighbors_detail2.yml │ ├── cisco_nxos_show_cdp_neighbors_detail_move_record.raw │ └── cisco_nxos_show_cdp_neighbors_detail_move_record.yml ├── show_clock │ ├── cisco_nxos_show_clock.raw │ └── cisco_nxos_show_clock.yml ├── show_configuration_session_summary │ ├── cisco_nxos_show_configuration_session_summary.raw │ └── cisco_nxos_show_configuration_session_summary.yml ├── show_cts_interface_all │ ├── cisco_nxos_show_cts_interface_all.raw │ └── cisco_nxos_show_cts_interface_all.yml ├── show_cts_interface_brief │ ├── cisco_nxos_show_cts_interface_brief.raw │ └── cisco_nxos_show_cts_interface_brief.yml ├── show_environment │ ├── cisco_nxos_show_environment.raw │ ├── cisco_nxos_show_environment.yml │ ├── cisco_nxos_show_environment2.raw │ └── cisco_nxos_show_environment2.yml ├── show_environment_temperature │ ├── cisco_nxos_show_environment_temperature.raw │ └── cisco_nxos_show_environment_temperature.yml ├── show_fabricpath_route │ ├── cisco_nxos_show_fabricpath_route_docs_example.raw │ └── cisco_nxos_show_fabricpath_route_docs_example.yml ├── show_feature │ ├── cisco_nxos_show_feature.raw │ └── cisco_nxos_show_feature.yml ├── show_fex │ ├── cisco_nxos_show_fex.raw │ └── cisco_nxos_show_fex.yml ├── show_fex_id │ ├── cisco_nxos_show_fex_id.raw │ └── cisco_nxos_show_fex_id.yml ├── show_flogi_database │ ├── cisco_nxos_show_flogi_database.raw │ └── cisco_nxos_show_flogi_database.yml ├── show_forwarding_adjacency │ ├── cisco_nxos_show_forwarding_adjacency_1.raw │ ├── cisco_nxos_show_forwarding_adjacency_1.yml │ ├── cisco_nxos_show_forwarding_adjacency_2.raw │ ├── cisco_nxos_show_forwarding_adjacency_2.yml │ ├── cisco_nxos_show_forwarding_adjacency_3.raw │ └── cisco_nxos_show_forwarding_adjacency_3.yml ├── show_forwarding_ipv4_route │ ├── cisco_nxos_show_forwarding_ipv4_route.raw │ ├── cisco_nxos_show_forwarding_ipv4_route.yml │ ├── cisco_nxos_show_forwarding_ipv4_route_n5596.raw │ └── cisco_nxos_show_forwarding_ipv4_route_n5596.yml ├── show_hardware_internal_bigsur_all-ports_detail │ ├── cisco_nxos_show_hardware_internal_bigsur_all-ports_detail_1.raw │ └── cisco_nxos_show_hardware_internal_bigsur_all-ports_detail_1.yml ├── show_hostname │ ├── cisco_nxos_show_hostname.raw │ └── cisco_nxos_show_hostname.yml ├── show_hsrp_all │ ├── cisco_nxos_show_hsrp_all.raw │ ├── cisco_nxos_show_hsrp_all.yml │ ├── cisco_nxos_show_hsrp_all1.raw │ ├── cisco_nxos_show_hsrp_all1.yml │ ├── cisco_nxos_show_hsrp_all2.raw │ └── cisco_nxos_show_hsrp_all2.yml ├── show_interface │ ├── cisco_nxos_show_interface.raw │ ├── cisco_nxos_show_interface.yml │ ├── cisco_nxos_show_interface10.raw │ ├── cisco_nxos_show_interface10.yml │ ├── cisco_nxos_show_interface11.raw │ ├── cisco_nxos_show_interface11.yml │ ├── cisco_nxos_show_interface11_nve.raw │ ├── cisco_nxos_show_interface11_nve.yml │ ├── cisco_nxos_show_interface12.raw │ ├── cisco_nxos_show_interface12.yml │ ├── cisco_nxos_show_interface2.raw │ ├── cisco_nxos_show_interface2.yml │ ├── cisco_nxos_show_interface3.raw │ ├── cisco_nxos_show_interface3.yml │ ├── cisco_nxos_show_interface4.raw │ ├── cisco_nxos_show_interface4.yml │ ├── cisco_nxos_show_interface5.raw │ ├── cisco_nxos_show_interface5.yml │ ├── cisco_nxos_show_interface6.raw │ ├── cisco_nxos_show_interface6.yml │ ├── cisco_nxos_show_interface7.raw │ ├── cisco_nxos_show_interface7.yml │ ├── cisco_nxos_show_interface8.raw │ ├── cisco_nxos_show_interface8.yml │ ├── cisco_nxos_show_interface9.raw │ ├── cisco_nxos_show_interface9.yml │ ├── cisco_nxos_show_interface_01.raw │ └── cisco_nxos_show_interface_01.yml ├── show_interface_brief │ ├── cisco_nxos_show_interface_brief.raw │ ├── cisco_nxos_show_interface_brief.yml │ ├── cisco_nxos_show_interface_brief2.raw │ ├── cisco_nxos_show_interface_brief2.yml │ ├── cisco_nxos_show_interface_brief_01.raw │ ├── cisco_nxos_show_interface_brief_01.yml │ ├── cisco_nxos_show_interface_brief_02.raw │ ├── cisco_nxos_show_interface_brief_02.yml │ ├── cisco_nxos_show_interface_brief_monitor.raw │ └── cisco_nxos_show_interface_brief_monitor.yml ├── show_interface_capabilities │ ├── cisco_nxos_show_interface_capabilities1.raw │ ├── cisco_nxos_show_interface_capabilities1.yml │ ├── cisco_nxos_show_interface_capabilities2.raw │ └── cisco_nxos_show_interface_capabilities2.yml ├── show_interface_description │ ├── cisco_nxos_show_interface_description.raw │ ├── cisco_nxos_show_interface_description.yml │ ├── cisco_nxos_show_interface_description2.raw │ └── cisco_nxos_show_interface_description2.yml ├── show_interface_snmp-ifindex │ ├── cisco_nxos_show_interface_snmp-ifindex_1.raw │ └── cisco_nxos_show_interface_snmp-ifindex_1.yml ├── show_interface_status │ ├── cisco_nxos_show_interface_status.raw │ ├── cisco_nxos_show_interface_status.yml │ ├── cisco_nxos_show_interface_status1.raw │ ├── cisco_nxos_show_interface_status1.yml │ ├── cisco_nxos_show_interface_status2.raw │ ├── cisco_nxos_show_interface_status2.yml │ ├── cisco_nxos_show_interface_status3.raw │ ├── cisco_nxos_show_interface_status3.yml │ ├── cisco_nxos_show_interface_status4.raw │ ├── cisco_nxos_show_interface_status4.yml │ ├── cisco_nxos_show_interface_status5.raw │ └── cisco_nxos_show_interface_status5.yml ├── show_interface_switchport │ ├── cisco_nxos_show_interface_switchport.raw │ ├── cisco_nxos_show_interface_switchport.yml │ ├── cisco_nxos_show_interface_switchport_monitor.raw │ ├── cisco_nxos_show_interface_switchport_monitor.yml │ ├── cisco_nxos_show_interface_switchport_voice_vlan.raw │ └── cisco_nxos_show_interface_switchport_voice_vlan.yml ├── show_interface_transceiver │ ├── cisco_nxos_show_interface_transceiver.raw │ ├── cisco_nxos_show_interface_transceiver.yml │ ├── cisco_nxos_show_interface_transceiver2.raw │ ├── cisco_nxos_show_interface_transceiver2.yml │ ├── cisco_nxos_show_interface_transceiver3.raw │ ├── cisco_nxos_show_interface_transceiver3.yml │ ├── cisco_nxos_show_interface_transceiver4.raw │ ├── cisco_nxos_show_interface_transceiver4.yml │ ├── cisco_nxos_show_interface_transceiver5.raw │ ├── cisco_nxos_show_interface_transceiver5.yml │ ├── cisco_nxos_show_interface_transceiver_400g.raw │ ├── cisco_nxos_show_interface_transceiver_400g.yml │ ├── cisco_nxos_show_interface_transceiver_fc_n5k.raw │ ├── cisco_nxos_show_interface_transceiver_fc_n5k.yml │ ├── cisco_nxos_show_interface_transceiver_no-blank-lines.raw │ └── cisco_nxos_show_interface_transceiver_no-blank-lines.yml ├── show_interface_transceiver_details │ ├── cisco_nxos_show_interface_transceiver_details.raw │ └── cisco_nxos_show_interface_transceiver_details.yml ├── show_inventory │ ├── cisco_nxos_show_inventory.raw │ ├── cisco_nxos_show_inventory.yml │ ├── cisco_nxos_show_inventory1.raw │ ├── cisco_nxos_show_inventory1.yml │ ├── cisco_nxos_show_inventory2.raw │ ├── cisco_nxos_show_inventory2.yml │ ├── cisco_nxos_show_inventory3.raw │ └── cisco_nxos_show_inventory3.yml ├── show_ip_adjacency │ ├── cisco_nxos_show_ip_adjacency_n5596.raw │ └── cisco_nxos_show_ip_adjacency_n5596.yml ├── show_ip_arp │ ├── cisco_nxos_show_ip_arp.raw │ └── cisco_nxos_show_ip_arp.yml ├── show_ip_arp_detail │ ├── cisco_nxos_show_ip_arp_detail.raw │ ├── cisco_nxos_show_ip_arp_detail.yml │ ├── cisco_nxos_show_ip_arp_detail2.raw │ ├── cisco_nxos_show_ip_arp_detail2.yml │ ├── cisco_nxos_show_ip_arp_detail_flags.raw │ └── cisco_nxos_show_ip_arp_detail_flags.yml ├── show_ip_arp_detail_vrf_all │ ├── cisco_nxos_show_ip_arp_detail_vrf_all.raw │ └── cisco_nxos_show_ip_arp_detail_vrf_all.yml ├── show_ip_bgp │ ├── cisco_nxos_show_ip_bgp.raw │ ├── cisco_nxos_show_ip_bgp.yml │ ├── cisco_nxos_show_ip_bgp1.raw │ ├── cisco_nxos_show_ip_bgp1.yml │ ├── cisco_nxos_show_ip_bgp_vrf.raw │ └── cisco_nxos_show_ip_bgp_vrf.yml ├── show_ip_bgp_neighbors │ ├── cisco_nxos_show_ip_bgp_neighbors.raw │ ├── cisco_nxos_show_ip_bgp_neighbors.yml │ ├── cisco_nxos_show_ip_bgp_neighbors_short_uptime.raw │ ├── cisco_nxos_show_ip_bgp_neighbors_short_uptime.yml │ ├── cisco_nxos_show_ip_bgp_neighbors_with_policy_names.raw │ └── cisco_nxos_show_ip_bgp_neighbors_with_policy_names.yml ├── show_ip_bgp_summary │ ├── cisco_nxos_show_ip_bgp_summary.raw │ ├── cisco_nxos_show_ip_bgp_summary.yml │ ├── cisco_nxos_show_ip_bgp_summary2.raw │ └── cisco_nxos_show_ip_bgp_summary2.yml ├── show_ip_bgp_summary_vrf │ ├── cisco_nxos_show_ip_bgp_all_summary_vrf.raw │ ├── cisco_nxos_show_ip_bgp_all_summary_vrf.yml │ ├── cisco_nxos_show_ip_bgp_summary_vrf.raw │ └── cisco_nxos_show_ip_bgp_summary_vrf.yml ├── show_ip_community-list │ ├── cisco_nxos_show_ip_community-list.raw │ └── cisco_nxos_show_ip_community-list.yml ├── show_ip_dhcp_relay_address │ ├── cisco_nxos_show_ip_dhcp_relay_address.raw │ └── cisco_nxos_show_ip_dhcp_relay_address.yml ├── show_ip_dhcp_snooping_statistics │ ├── cisco_nxos_show_ip_dhcp_snooping_statistics.raw │ └── cisco_nxos_show_ip_dhcp_snooping_statistics.yml ├── show_ip_eigrp_neighbors │ ├── cisco_nxos_show_ip_eigrp_neighbors.raw │ └── cisco_nxos_show_ip_eigrp_neighbors.yml ├── show_ip_interface │ ├── cisco_nxos_show_ip_interface.raw │ ├── cisco_nxos_show_ip_interface.yml │ ├── cisco_nxos_show_ip_interface1.raw │ ├── cisco_nxos_show_ip_interface1.yml │ ├── cisco_nxos_show_ip_interface2.raw │ ├── cisco_nxos_show_ip_interface2.yml │ ├── cisco_nxos_show_ip_interface3.raw │ ├── cisco_nxos_show_ip_interface3.yml │ ├── cisco_nxos_show_ip_interface4.raw │ └── cisco_nxos_show_ip_interface4.yml ├── show_ip_interface_brief │ ├── cisco_nxos_show_ip_interface_brief.raw │ ├── cisco_nxos_show_ip_interface_brief.yml │ ├── cisco_nxos_show_ip_interface_brief_vrf_all.raw │ ├── cisco_nxos_show_ip_interface_brief_vrf_all.yml │ ├── cisco_nxos_show_ip_interface_brief_vrf_all_01.raw │ ├── cisco_nxos_show_ip_interface_brief_vrf_all_01.yml │ ├── cisco_nxos_show_ip_interface_brief_vrf_all_02.raw │ └── cisco_nxos_show_ip_interface_brief_vrf_all_02.yml ├── show_ip_interface_vrf_all │ ├── cisco_nxos_show_ip_interface_vrf_all.raw │ ├── cisco_nxos_show_ip_interface_vrf_all.yml │ ├── cisco_nxos_show_ip_interface_vrf_all_01.raw │ ├── cisco_nxos_show_ip_interface_vrf_all_01.yml │ ├── cisco_nxos_show_ip_interface_vrf_all_02.raw │ ├── cisco_nxos_show_ip_interface_vrf_all_02.yml │ ├── cisco_nxos_show_ip_interface_vrf_all_03.raw │ └── cisco_nxos_show_ip_interface_vrf_all_03.yml ├── show_ip_mroutes_vrf_all │ ├── show_ip_mroutes_vrf_all.raw │ └── show_ip_mroutes_vrf_all.yml ├── show_ip_msdp_summary_vrf_all │ ├── show_ip_msdp_summary_vrf_all.raw │ └── show_ip_msdp_summary_vrf_all.yml ├── show_ip_ospf_database │ ├── cisco_nxos_show_ip_ospf_database.raw │ └── cisco_nxos_show_ip_ospf_database.yml ├── show_ip_ospf_interface_brief │ ├── cisco_nxos_show_ip_ospf_interface_brief.raw │ ├── cisco_nxos_show_ip_ospf_interface_brief.yml │ ├── cisco_nxos_show_ip_ospf_interface_brief_vrf_all.raw │ └── cisco_nxos_show_ip_ospf_interface_brief_vrf_all.yml ├── show_ip_ospf_neighbor │ ├── cisco_nxos_show_ip_ospf_neighbor.raw │ ├── cisco_nxos_show_ip_ospf_neighbor.yml │ ├── cisco_nxos_show_ip_ospf_neighbor_vrf_all.raw │ └── cisco_nxos_show_ip_ospf_neighbor_vrf_all.yml ├── show_ip_pim_group-range_vrf_all │ ├── cisco_nxos_show_ip_pim_group-range_vrf_all.raw │ └── cisco_nxos_show_ip_pim_group-range_vrf_all.yml ├── show_ip_pim_interface_brief_vrf_all │ ├── cisco_nxos_show_ip_pim_interface_brief_vrf_all.raw │ └── cisco_nxos_show_ip_pim_interface_brief_vrf_all.yml ├── show_ip_pim_neighbor_vrf_all │ ├── cisco_nxos_show_ip_pim_neighbor_vrf_all.raw │ ├── cisco_nxos_show_ip_pim_neighbor_vrf_all.yml │ ├── cisco_nxos_show_ip_pim_neighbor_vrf_all1.raw │ └── cisco_nxos_show_ip_pim_neighbor_vrf_all1.yml ├── show_ip_pim_rp_vrf_all │ ├── cisco_nxos_show_ip_pim_rp_vrf_all.raw │ └── cisco_nxos_show_ip_pim_rp_vrf_all.yml ├── show_ip_route │ ├── cisco_nxos_show_ip_route.raw │ ├── cisco_nxos_show_ip_route.yml │ ├── cisco_nxos_show_ip_route_vrf.raw │ ├── cisco_nxos_show_ip_route_vrf.yml │ ├── cisco_nxos_show_ip_route_vrf2.raw │ ├── cisco_nxos_show_ip_route_vrf2.yml │ ├── cisco_nxos_show_ip_route_vrf3.raw │ ├── cisco_nxos_show_ip_route_vrf3.yml │ ├── cisco_nxos_show_ip_route_vrf4.raw │ └── cisco_nxos_show_ip_route_vrf4.yml ├── show_ipv6_interface_brief │ ├── cisco_nxos_show_ipv6_interface_brief.raw │ └── cisco_nxos_show_ipv6_interface_brief.yml ├── show_l2rib_internal_permanently-frozen-list │ ├── cisco_nxos_show_l2rib_internal_permanently-frozen-list.raw │ └── cisco_nxos_show_l2rib_internal_permanently-frozen-list.yml ├── show_license_usage │ ├── cisco_nxos_show_license_usage.raw │ └── cisco_nxos_show_license_usage.yml ├── show_lldp_neighbors │ ├── cisco_nxos_show_lldp_neighbors.raw │ ├── cisco_nxos_show_lldp_neighbors.yml │ ├── cisco_nxos_show_lldp_neighbors_multiline.raw │ └── cisco_nxos_show_lldp_neighbors_multiline.yml ├── show_lldp_neighbors_detail │ ├── cisco_nxos_show_lldp_neighbors_detail.raw │ ├── cisco_nxos_show_lldp_neighbors_detail.yml │ ├── cisco_nxos_show_lldp_neighbors_detail2.raw │ └── cisco_nxos_show_lldp_neighbors_detail2.yml ├── show_mac_address-table │ ├── cisco_nxos_show_mac_address-table.raw │ └── cisco_nxos_show_mac_address-table.yml ├── show_module │ ├── cisco_nxos_show_module.raw │ ├── cisco_nxos_show_module.yml │ ├── cisco_nxos_show_module1.raw │ └── cisco_nxos_show_module1.yml ├── show_nve_peers │ ├── cisco_nxos_show_nve_peers.raw │ └── cisco_nxos_show_nve_peers.yml ├── show_nve_vni │ ├── cisco_nxos_show_nve_vni.raw │ ├── cisco_nxos_show_nve_vni.yml │ ├── cisco_nxos_show_nve_vni_10.3.4a.raw │ └── cisco_nxos_show_nve_vni_10.3.4a.yml ├── show_nve_vni_interface_nve_1_detail │ ├── cisco_nxos_show_nve_vni_interface_nve_1_detail.raw │ └── cisco_nxos_show_nve_vni_interface_nve_1_detail.yml ├── show_port-channel_summary │ ├── cisco_nxos_show_port-channel_summary.raw │ ├── cisco_nxos_show_port-channel_summary.yml │ ├── cisco_nxos_show_port-channel_summary2.raw │ ├── cisco_nxos_show_port-channel_summary2.yml │ ├── cisco_nxos_show_port-channel_summary3.raw │ └── cisco_nxos_show_port-channel_summary3.yml ├── show_processes_cpu │ ├── cisco_nxos_show_processes_cpu.raw │ └── cisco_nxos_show_processes_cpu.yml ├── show_route-map │ ├── cisco_nxos_show_route-map.raw │ └── cisco_nxos_show_route-map.yml ├── show_spanning-tree_root │ ├── cisco_nxos_show_spanning-tree_root.raw │ └── cisco_nxos_show_spanning-tree_root.yml ├── show_switching-mode │ ├── cisco_nxos_show_switching-mode_1.raw │ ├── cisco_nxos_show_switching-mode_1.yml │ ├── cisco_nxos_show_switching-mode_2.raw │ ├── cisco_nxos_show_switching-mode_2.yml │ ├── cisco_nxos_show_switching-mode_3.raw │ └── cisco_nxos_show_switching-mode_3.yml ├── show_vdc │ ├── cisco_nxos_show_vdc.raw │ └── cisco_nxos_show_vdc.yml ├── show_version │ ├── cisco_nxos_show_version.raw │ ├── cisco_nxos_show_version.yml │ ├── cisco_nxos_show_version1.raw │ ├── cisco_nxos_show_version1.yml │ ├── cisco_nxos_show_version2.raw │ ├── cisco_nxos_show_version2.yml │ ├── cisco_nxos_show_version3.raw │ ├── cisco_nxos_show_version3.yml │ ├── cisco_nxos_show_version4.raw │ ├── cisco_nxos_show_version4.yml │ ├── cisco_nxos_show_version5.raw │ ├── cisco_nxos_show_version5.yml │ ├── cisco_nxos_show_version6.raw │ ├── cisco_nxos_show_version6.yml │ ├── cisco_nxos_show_version7.raw │ └── cisco_nxos_show_version7.yml ├── show_vlan │ ├── cisco_nxos_show_vlan.raw │ ├── cisco_nxos_show_vlan.yml │ ├── cisco_nxos_show_vlan2.raw │ └── cisco_nxos_show_vlan2.yml ├── show_vpc │ ├── cisco_nxos_show_vpc.raw │ └── cisco_nxos_show_vpc.yml ├── show_vrf │ ├── cisco_nxos_show_vrf.raw │ └── cisco_nxos_show_vrf.yml ├── show_vrf_detail │ ├── cisco_nxos_show_vrf_detail_01.raw │ └── cisco_nxos_show_vrf_detail_01.yml └── show_vrf_interface │ ├── cisco_nxos_show_vrf_interface.raw │ └── cisco_nxos_show_vrf_interface.yml ├── cisco_s300 ├── show_interfaces_description │ ├── cisco_s300_show_interfaces_description.raw │ └── cisco_s300_show_interfaces_description.yml ├── show_interfaces_status │ ├── cisco_s300_show_interfaces_status.raw │ └── cisco_s300_show_interfaces_status.yml ├── show_interfaces_switchport │ ├── cisco_s300_show_interfaces_switchport.raw │ └── cisco_s300_show_interfaces_switchport.yml ├── show_ip_interface │ ├── cisco_s300_show_ip_interface_1.raw │ ├── cisco_s300_show_ip_interface_1.yml │ ├── cisco_s300_show_ip_interface_2.raw │ └── cisco_s300_show_ip_interface_2.yml ├── show_lldp_neighbors │ ├── cisco_s300_show_lldp_neighbors.raw │ ├── cisco_s300_show_lldp_neighbors.yml │ ├── cisco_s300_show_lldp_neighbors_multiline.raw │ └── cisco_s300_show_lldp_neighbors_multiline.yml ├── show_mac_address-table │ ├── cisco_s300_show_mac_address-table.raw │ └── cisco_s300_show_mac_address-table.yml ├── show_system │ ├── cisco_s300_show_system.raw │ └── cisco_s300_show_system.yml ├── show_system_id │ ├── cisco_s300_show_system_id.raw │ └── cisco_s300_show_system_id.yml ├── show_version │ ├── cisco_s300_show_version.raw │ ├── cisco_s300_show_version.yml │ ├── cisco_s300_show_version2.raw │ └── cisco_s300_show_version2.yml └── show_vlan │ ├── cisco_s300_show_vlan_1.raw │ ├── cisco_s300_show_vlan_1.yml │ ├── cisco_s300_show_vlan_2.raw │ └── cisco_s300_show_vlan_2.yml ├── cisco_viptela ├── show_arp │ ├── cisco_viptela_show_arp-old.raw │ ├── cisco_viptela_show_arp-old.yml │ ├── cisco_viptela_show_arp.raw │ └── cisco_viptela_show_arp.yml ├── show_control_connections │ ├── cisco_viptela_show_control_connections.raw │ └── cisco_viptela_show_control_connections.yml ├── show_interface │ ├── cisco_viptela_show_interface.raw │ └── cisco_viptela_show_interface.yml └── show_omp_peers │ ├── cisco_viptela_show_omp_peers.raw │ └── cisco_viptela_show_omp_peers.yml ├── cisco_wlc_ssh ├── show_802.11a │ ├── cisco_wlc_ssh_show_802_11ab.raw │ └── cisco_wlc_ssh_show_802_11ab.yml ├── show_802.11a_cleanair_config │ ├── cisco_wlc_ssh_show_802.11ab_cleanair_config.raw │ ├── cisco_wlc_ssh_show_802.11ab_cleanair_config.yml │ ├── cisco_wlc_ssh_show_802.11ab_cleanair_config_2.raw │ └── cisco_wlc_ssh_show_802.11ab_cleanair_config_2.yml ├── show_advanced_802.11a_channel │ ├── cisco_wlc_ssh_show_advanced_802.11a_channel.raw │ └── cisco_wlc_ssh_show_advanced_802.11a_channel.yml ├── show_ap_config_general │ ├── cisco_wlc_ssh_show_ap_config_general.raw │ └── cisco_wlc_ssh_show_ap_config_general.yml ├── show_ap_image_all │ ├── cisco_wlc_ssh_show_ap_image_all.raw │ └── cisco_wlc_ssh_show_ap_image_all.yml ├── show_ap_summary │ ├── cisco_wlc_ssh_show_ap_summary.raw │ ├── cisco_wlc_ssh_show_ap_summary.yml │ ├── cisco_wlc_ssh_show_ap_summary_2500.raw │ ├── cisco_wlc_ssh_show_ap_summary_2500.yml │ ├── cisco_wlc_ssh_show_ap_summary_C9800.raw │ └── cisco_wlc_ssh_show_ap_summary_C9800.yml ├── show_band-select │ ├── cisco_wlc_ssh_show_band-select.raw │ └── cisco_wlc_ssh_show_band-select.yml ├── show_boot │ ├── cisco_wlc_ssh_show_boot.raw │ ├── cisco_wlc_ssh_show_boot.yml │ ├── cisco_wlc_ssh_show_boot2.raw │ └── cisco_wlc_ssh_show_boot2.yml ├── show_cdp_neighbors_detail │ ├── cisco_wlc_ssh_show_cdp_neighbors_detail.raw │ └── cisco_wlc_ssh_show_cdp_neighbors_detail.yml ├── show_client_detail │ ├── cisco_wlc_show_client_detail.raw │ └── cisco_wlc_show_client_detail.yml ├── show_exclusionlist │ ├── cisco_wlc_ssh_show_exclusionlist.raw │ └── cisco_wlc_ssh_show_exclusionlist.yml ├── show_flexconnect_group_summary │ ├── cisco_wlc_ssh_show_flexconnect_group_summary.raw │ └── cisco_wlc_ssh_show_flexconnect_group_summary.yml ├── show_interface_detailed_id │ ├── cisco_wlc_ssh_show_interface_detailed_id.raw │ ├── cisco_wlc_ssh_show_interface_detailed_id.yml │ ├── cisco_wlc_ssh_show_interface_detailed_id_2.raw │ ├── cisco_wlc_ssh_show_interface_detailed_id_2.yml │ ├── cisco_wlc_ssh_show_interface_detailed_id_3.raw │ ├── cisco_wlc_ssh_show_interface_detailed_id_3.yml │ ├── cisco_wlc_ssh_show_interface_detailed_id_4.raw │ └── cisco_wlc_ssh_show_interface_detailed_id_4.yml ├── show_interface_group_summary │ ├── cisco_wlc_ssh_show_interface_group_summary.raw │ └── cisco_wlc_ssh_show_interface_group_summary.yml ├── show_interface_summary │ ├── cisco_wlc_ssh_show_interface_summary.raw │ ├── cisco_wlc_ssh_show_interface_summary.yml │ ├── cisco_wlc_ssh_show_interface_summary2.raw │ └── cisco_wlc_ssh_show_interface_summary2.yml ├── show_inventory │ ├── cisco_wlc_ssh_show_inventory.raw │ ├── cisco_wlc_ssh_show_inventory.yml │ ├── cisco_wlc_ssh_show_inventory2.raw │ └── cisco_wlc_ssh_show_inventory2.yml ├── show_mobility_anchor │ ├── cisco_wlc_ssh_show_mobility_anchor.raw │ └── cisco_wlc_ssh_show_mobility_anchor.yml ├── show_mobility_sum │ ├── cisco_wlc_ssh_show_mobility_sum.raw │ └── cisco_wlc_ssh_show_mobility_sum.yml ├── show_port_summary │ ├── cisco_wlc_ssh_show_port_summary.raw │ └── cisco_wlc_ssh_show_port_summary.yml ├── show_radius_summary │ ├── cisco_wlc_ssh_show_radius_summary.raw │ ├── cisco_wlc_ssh_show_radius_summary.yml │ ├── cisco_wlc_ssh_show_radius_summary2.raw │ └── cisco_wlc_ssh_show_radius_summary2.yml ├── show_redundancy_detail │ ├── cisco_wlc_ssh_show_redundancy_detail.raw │ └── cisco_wlc_ssh_show_redundancy_detail.yml ├── show_redundancy_summary │ ├── cisco_wlc_ssh_show_redundancy_summary_1.raw │ ├── cisco_wlc_ssh_show_redundancy_summary_1.yml │ ├── cisco_wlc_ssh_show_redundancy_summary_2.raw │ └── cisco_wlc_ssh_show_redundancy_summary_2.yml ├── show_rf-profile_summary │ ├── cisco_wlc_ssh_show_rf-profile_summary.raw │ └── cisco_wlc_ssh_show_rf-profile_summary.yml ├── show_stats_port_summary │ ├── cisco_wlc_ssh_show_stats_port_summary.raw │ └── cisco_wlc_ssh_show_stats_port_summary.yml ├── show_sysinfo │ ├── cisco_wlc_ssh_show_sysinfo.raw │ └── cisco_wlc_ssh_show_sysinfo.yml ├── show_tacacs_summary │ ├── cisco_wlc_ssh_show_tacacs_summary.raw │ └── cisco_wlc_ssh_show_tacacs_summary.yml ├── show_time │ ├── cisco_wlc_ssh_show_time.raw │ └── cisco_wlc_ssh_show_time.yml └── show_wlan_sum │ ├── cisco_wlc_ssh_show_wlan_sum.raw │ ├── cisco_wlc_ssh_show_wlan_sum.yml │ ├── cisco_wlc_ssh_show_wlan_sum2.raw │ └── cisco_wlc_ssh_show_wlan_sum2.yml ├── cisco_xr ├── admin_show_controller_fabric_health │ ├── cisco_xr_admin_show_controller_fabric_health.raw │ └── cisco_xr_admin_show_controller_fabric_health.yml ├── admin_show_environment_fan │ ├── cisco_xr_admin_show_environment_fan.raw │ └── cisco_xr_admin_show_environment_fan.yml ├── admin_show_environment_power │ ├── cisco_xr_admin_show_environment_power.raw │ └── cisco_xr_admin_show_environment_power.yml ├── admin_show_inventory │ ├── cisco_xr_admin_show_inventory.raw │ ├── cisco_xr_admin_show_inventory.yml │ ├── cisco_xr_admin_show_inventory1.raw │ ├── cisco_xr_admin_show_inventory1.yml │ ├── cisco_xr_admin_show_inventory2.raw │ ├── cisco_xr_admin_show_inventory2.yml │ ├── cisco_xr_admin_show_inventory3.raw │ ├── cisco_xr_admin_show_inventory3.yml │ ├── cisco_xr_admin_show_inventory4.raw │ ├── cisco_xr_admin_show_inventory4.yml │ ├── cisco_xr_admin_show_inventory5.raw │ └── cisco_xr_admin_show_inventory5.yml ├── admin_show_platform │ ├── cisco_xr_admin_show_platform.raw │ ├── cisco_xr_admin_show_platform.yml │ ├── cisco_xr_admin_show_platform2.raw │ └── cisco_xr_admin_show_platform2.yml ├── admin_show_vm │ ├── cisco_xr_admin_show_vm.raw │ └── cisco_xr_admin_show_vm.yml ├── dir │ ├── cisco_xr_dir_01.raw │ └── cisco_xr_dir_01.yml ├── ping │ ├── cisco_xr_ping.raw │ ├── cisco_xr_ping.yml │ ├── cisco_xr_ping_fail.raw │ ├── cisco_xr_ping_fail.yml │ ├── cisco_xr_ping_mix.raw │ ├── cisco_xr_ping_mix.yml │ ├── cisco_xr_ping_nocomma.raw │ ├── cisco_xr_ping_nocomma.yml │ ├── cisco_xr_ping_quench.raw │ ├── cisco_xr_ping_quench.yml │ ├── cisco_xr_ping_unreachable.raw │ └── cisco_xr_ping_unreachable.yml ├── show_arp │ ├── cisco_xr_show_arp.raw │ ├── cisco_xr_show_arp.yml │ ├── cisco_xr_show_arp2.raw │ └── cisco_xr_show_arp2.yml ├── show_asic-errors_all_location │ ├── cisco_xr_show_asic-errors_all_location.raw │ └── cisco_xr_show_asic-errors_all_location.yml ├── show_bfd_sessions │ ├── cisco_xr_show_bfd_sessions.raw │ └── cisco_xr_show_bfd_sessions.yml ├── show_bgp │ ├── cisco_xr_show_bgp.raw │ ├── cisco_xr_show_bgp.yml │ ├── cisco_xr_show_bgp2.raw │ └── cisco_xr_show_bgp2.yml ├── show_bgp_instance_all_summary │ ├── cisco_xr_show_bgp_instance_all_summary.raw │ └── cisco_xr_show_bgp_instance_all_summary.yml ├── show_bgp_neighbors │ ├── cisco_xr_show_bgp_neighbors.raw │ ├── cisco_xr_show_bgp_neighbors.yml │ ├── cisco_xr_show_bgp_neighbors1.raw │ └── cisco_xr_show_bgp_neighbors1.yml ├── show_bgp_vrf_all_ipv4_unicast_summary │ ├── cisco_xr_show_bgp_vrf_all_ipv4_unicast_summary.raw │ ├── cisco_xr_show_bgp_vrf_all_ipv4_unicast_summary.yml │ ├── cisco_xr_show_bgp_vrf_all_ipv4_unicast_summary_literal.raw │ └── cisco_xr_show_bgp_vrf_all_ipv4_unicast_summary_literal.yml ├── show_bgp_vrf_all_neighbors_advertised-routes │ ├── cisco_xr_show_bgp_vrf_all_neighbors_advertised-routes.raw │ ├── cisco_xr_show_bgp_vrf_all_neighbors_advertised-routes.yml │ ├── cisco_xr_show_bgp_vrf_all_neighbors_advertised-routes2.raw │ └── cisco_xr_show_bgp_vrf_all_neighbors_advertised-routes2.yml ├── show_cdp_neighbors_detail │ ├── cisco_xr_show_cdp_neighbors_detail.raw │ └── cisco_xr_show_cdp_neighbors_detail.yml ├── show_cef_drops_location │ ├── cisco_xr_show_cef_drops_location.raw │ └── cisco_xr_show_cef_drops_location.yml ├── show_configuration_commit_list │ ├── cisco_xr_show_configuration_commit_list.raw │ └── cisco_xr_show_configuration_commit_list.yml ├── show_controller_fabric_plane_all │ ├── cisco_xr_show_controller_fabric_plane_all.raw │ └── cisco_xr_show_controller_fabric_plane_all.yml ├── show_controllers_HundredGigabitEthernet │ ├── cisco_xr_show_controllers_HundredGigabitEthernet.raw │ └── cisco_xr_show_controllers_HundredGigabitEthernet.yml ├── show_controllers_all_phy │ ├── cisco_xr_show_controllers_all_phy.raw │ ├── cisco_xr_show_controllers_all_phy.yml │ ├── cisco_xr_show_controllers_all_phy2.raw │ ├── cisco_xr_show_controllers_all_phy2.yml │ ├── cisco_xr_show_controllers_all_phy3.raw │ └── cisco_xr_show_controllers_all_phy3.yml ├── show_controllers_fabric_fia_drops_egress_location │ ├── cisco_xr_show_controllers_fabric_fia_drops_egress_location.raw │ └── cisco_xr_show_controllers_fabric_fia_drops_egress_location.yml ├── show_controllers_fabric_fia_drops_ingress_location │ ├── cisco_xr_show_controllers_fabric_fia_drops_ingress_location.raw │ └── cisco_xr_show_controllers_fabric_fia_drops_ingress_location.yml ├── show_controllers_fabric_fia_errors_egress_location │ ├── cisco_xr_show_controllers_fabric_fia_errors_egress_location.raw │ └── cisco_xr_show_controllers_fabric_fia_errors_egress_location.yml ├── show_controllers_fabric_fia_errors_ingress_location │ ├── cisco_xr_show_controllers_fabric_fia_errors_ingress_location.raw │ └── cisco_xr_show_controllers_fabric_fia_errors_ingress_location.yml ├── show_controllers_hundredgige_all │ ├── cisco_xr_show_controllers_hundredgige_all.raw │ └── cisco_xr_show_controllers_hundredgige_all.yml ├── show_dhcp_ipv4_proxy_binding │ ├── cisco_xr_show_dhcp_ipv4_proxy_binding.raw │ └── cisco_xr_show_dhcp_ipv4_proxy_binding.yml ├── show_drops_np_all │ ├── cisco_xr_show_drops_np_all.raw │ ├── cisco_xr_show_drops_np_all.yml │ ├── cisco_xr_show_drops_np_all2.raw │ ├── cisco_xr_show_drops_np_all2.yml │ ├── cisco_xr_show_drops_np_all3.raw │ └── cisco_xr_show_drops_np_all3.yml ├── show_hsrp │ ├── cisco_xr_show_hsrp.raw │ ├── cisco_xr_show_hsrp.yml │ ├── cisco_xr_show_hsrp2.raw │ └── cisco_xr_show_hsrp2.yml ├── show_install_active │ ├── cisco_xr_show_install_active.raw │ ├── cisco_xr_show_install_active.yml │ ├── cisco_xr_show_install_active_32bit.raw │ └── cisco_xr_show_install_active_32bit.yml ├── show_interface_brief │ ├── cisco_xr_show_interface_brief.raw │ └── cisco_xr_show_interface_brief.yml ├── show_interfaces │ ├── cisco_xr_show_interfaces.raw │ └── cisco_xr_show_interfaces.yml ├── show_interfaces_description │ ├── cisco_xr_show_interfaces_description.raw │ └── cisco_xr_show_interfaces_description.yml ├── show_interfaces_summary │ ├── cisco_xr_show_interfaces_summary.raw │ └── cisco_xr_show_interfaces_summary.yml ├── show_inventory │ ├── cisco_xr_show_inventory_01.raw │ └── cisco_xr_show_inventory_01.yml ├── show_ip_bgp_summary │ ├── cisco_xr_show_ip_bgp_summary.raw │ └── cisco_xr_show_ip_bgp_summary.yml ├── show_ip_interface_brief │ ├── cisco_xr_show_ip_interface_brief.raw │ └── cisco_xr_show_ip_interface_brief.yml ├── show_ip_route │ ├── cisco_xr_show_ip_route.raw │ ├── cisco_xr_show_ip_route.yml │ ├── cisco_xr_show_ip_route2.raw │ ├── cisco_xr_show_ip_route2.yml │ ├── cisco_xr_show_ip_route_qaud_zero.raw │ ├── cisco_xr_show_ip_route_qaud_zero.yml │ ├── cisco_xr_show_ip_route_vrf.raw │ ├── cisco_xr_show_ip_route_vrf.yml │ ├── cisco_xr_show_ip_route_vrf_all.raw │ └── cisco_xr_show_ip_route_vrf_all.yml ├── show_ipv4_interface │ ├── cisco_xr_show_ipv4_interface.raw │ ├── cisco_xr_show_ipv4_interface.yml │ ├── cisco_xr_show_ipv4_interface1.raw │ ├── cisco_xr_show_ipv4_interface1.yml │ ├── cisco_xr_show_ipv4_interface2.raw │ ├── cisco_xr_show_ipv4_interface2.yml │ ├── cisco_xr_show_ipv4_interface3.raw │ ├── cisco_xr_show_ipv4_interface3.yml │ ├── cisco_xr_show_ipv4_interface4.raw │ ├── cisco_xr_show_ipv4_interface4.yml │ ├── cisco_xr_show_ipv4_interface5.raw │ ├── cisco_xr_show_ipv4_interface5.yml │ ├── cisco_xr_show_ipv4_interface6.raw │ └── cisco_xr_show_ipv4_interface6.yml ├── show_ipv4_vrf_all_interface_brief │ ├── cisco_xr_show_ipv4_vrf_all_interface_brief.raw │ └── cisco_xr_show_ipv4_vrf_all_interface_brief.yml ├── show_ipv6_neighbors │ ├── cisco_xr_show_ipv6_neighbors.raw │ └── cisco_xr_show_ipv6_neighbors.yml ├── show_isis_neighbors │ ├── cisco_xr_show_isis_neighbors.raw │ └── cisco_xr_show_isis_neighbors.yml ├── show_l2vpn_mac-learning_mac_all_location │ ├── cisco_xr_show_l2vpn_mac-learning_mac_all_location.raw │ └── cisco_xr_show_l2vpn_mac-learning_mac_all_location.yml ├── show_lldp_neighbors │ ├── cisco_xr_show_lldp_neighbors.raw │ └── cisco_xr_show_lldp_neighbors.yml ├── show_lldp_neighbors_detail │ ├── cisco_xr_show_lldp_neighbors_detail_01.raw │ └── cisco_xr_show_lldp_neighbors_detail_01.yml ├── show_lpts_pifib_hardware_police_location │ ├── cisco_xr_show_lpts_pifib_hardware_police_location.raw │ ├── cisco_xr_show_lpts_pifib_hardware_police_location.yml │ ├── cisco_xr_show_lpts_pifib_hardware_police_location2.raw │ └── cisco_xr_show_lpts_pifib_hardware_police_location2.yml ├── show_mpls_ldp_neighbor_brief │ ├── cisco_xr_show_mpls_ldp_neighbor_brief.raw │ └── cisco_xr_show_mpls_ldp_neighbor_brief.yml ├── show_ospf_neighbor │ ├── cisco_xr_show_ospf_neighbor.raw │ └── cisco_xr_show_ospf_neighbor.yml ├── show_ospf_vrf_all_interface_brief │ ├── cisco_xr_show_ospf_vrf_all_interface_brief.raw │ └── cisco_xr_show_ospf_vrf_all_interface_brief.yml ├── show_ospf_vrf_all_neighbor │ ├── cisco_xr_show_ospf_vrf_all_neighbor.raw │ └── cisco_xr_show_ospf_vrf_all_neighbor.yml ├── show_pim_ipv4_group-map │ ├── cisco_xr_show_pim_ipv4_group-map.raw │ └── cisco_xr_show_pim_ipv4_group-map.yml ├── show_pim_ipv4_interface │ ├── cisco_xr_show_pim_ipv4_interface.raw │ └── cisco_xr_show_pim_ipv4_interface.yml ├── show_pim_ipv4_neighbor │ ├── cisco_xr_show_pim_ipv4_neighbor.raw │ └── cisco_xr_show_pim_ipv4_neighbor.yml ├── show_pim_neighbor │ ├── cisco_xr_show_pim_neighbor.raw │ └── cisco_xr_show_pim_neighbor.yml ├── show_platform │ ├── cisco_xr_show_platform.raw │ ├── cisco_xr_show_platform.yml │ ├── cisco_xr_show_platform2.raw │ └── cisco_xr_show_platform2.yml ├── show_platform_summary_location_all │ ├── cisco_xr_show_platform_summary_location_all.raw │ └── cisco_xr_show_platform_summary_location_all.yml ├── show_processes_cpu │ ├── cisco_xr_show_processes_cpu.raw │ └── cisco_xr_show_processes_cpu.yml ├── show_redundancy_summary │ ├── cisco_xr_show_redundancy_summary.raw │ └── cisco_xr_show_redundancy_summary.yml ├── show_rsvp_neighbors │ ├── cisco_xr_show_rsvp_neighbors.raw │ └── cisco_xr_show_rsvp_neighbors.yml ├── show_running-config_hostname │ ├── cisco_xr_show_run_hostname.raw │ ├── cisco_xr_show_run_hostname.yml │ ├── cisco_xr_show_run_hostname1.raw │ └── cisco_xr_show_run_hostname1.yml ├── show_version │ ├── cisco_xr_show_version.raw │ ├── cisco_xr_show_version.yml │ ├── cisco_xr_show_version2.raw │ ├── cisco_xr_show_version2.yml │ ├── cisco_xr_show_version_01.raw │ ├── cisco_xr_show_version_01.yml │ ├── cisco_xr_show_version_crs.raw │ ├── cisco_xr_show_version_crs.yml │ ├── cisco_xr_show_version_label.raw │ └── cisco_xr_show_version_label.yml ├── show_version_brief │ ├── cisco_xr_show_version_brief.raw │ └── cisco_xr_show_version_brief.yml └── show_vrf_all_detail │ ├── cisco_xr_show_vrf_all_detail.raw │ └── cisco_xr_show_vrf_all_detail.yml ├── dell_force10 ├── show_arp │ ├── dell_force10_show_arp.raw │ └── dell_force10_show_arp.yml ├── show_ip_interface_brief │ ├── dell_force10_show_ip_interface_brief.raw │ └── dell_force10_show_ip_interface_brief.yml ├── show_version │ ├── dell_force10_show_version.raw │ └── dell_force10_show_version.yml ├── show_vlan │ ├── dell_force10_show_vlan.raw │ ├── dell_force10_show_vlan.yml │ ├── dell_force10_show_vlan_1.raw │ └── dell_force10_show_vlan_1.yml └── show_vlan_brief │ ├── dell_force10_show_vlan_brief.raw │ └── dell_force10_show_vlan_brief.yml ├── dell_powerconnect ├── show_bridge_address_table │ ├── dell_powerconnect_show_bridge_address_table.raw │ └── dell_powerconnect_show_bridge_address_table.yml ├── show_interfaces_description │ ├── dell_powerconnect_show_interfaces_description.raw │ └── dell_powerconnect_show_interfaces_description.yml └── show_interfaces_status │ ├── dell_powerconnect_show_interfaces_status.raw │ └── dell_powerconnect_show_interfaces_status.yml ├── dlink_ds └── show_arpentry │ ├── dlink_ds_show_arpentry.raw │ └── dlink_ds_show_arpentry.yml ├── edgecore ├── show_interfaces_brief │ ├── edgecore_show_interfaces_brief.raw │ └── edgecore_show_interfaces_brief.yml ├── show_interfaces_status │ ├── edgecore_show_interfaces_status.raw │ └── edgecore_show_interfaces_status.yml ├── show_interfaces_switchport │ ├── edgecore_show_interfaces_switchport_1.raw │ ├── edgecore_show_interfaces_switchport_1.yml │ ├── edgecore_show_interfaces_switchport_2.raw │ └── edgecore_show_interfaces_switchport_2.yml ├── show_ip_interface │ ├── edgecore_show_ip_interface.raw │ └── edgecore_show_ip_interface.yml ├── show_system │ ├── edgecore_show_system.raw │ └── edgecore_show_system.yml ├── show_version │ ├── edgecore_show_version_1.raw │ ├── edgecore_show_version_1.yml │ ├── edgecore_show_version_2.raw │ └── edgecore_show_version_2.yml └── show_vlan │ ├── edgecore_show_vlan.raw │ └── edgecore_show_vlan.yml ├── eltex ├── show_interface │ ├── show_interface_1.raw │ ├── show_interface_1.yml │ ├── show_interface_2.raw │ ├── show_interface_2.yml │ ├── show_interface_3.raw │ └── show_interface_3.yml ├── show_interfaces_description │ ├── show_interfaces_description_1.raw │ ├── show_interfaces_description_1.yml │ ├── show_interfaces_description_2.raw │ ├── show_interfaces_description_2.yml │ ├── show_interfaces_description_3.raw │ └── show_interfaces_description_3.yml ├── show_interfaces_status │ ├── show_interfaces_status_1.raw │ ├── show_interfaces_status_1.yml │ ├── show_interfaces_status_2.raw │ ├── show_interfaces_status_2.yml │ ├── show_interfaces_status_3.raw │ ├── show_interfaces_status_3.yml │ ├── show_interfaces_status_4.raw │ ├── show_interfaces_status_4.yml │ ├── show_interfaces_status_5.raw │ ├── show_interfaces_status_5.yml │ ├── show_interfaces_status_6.raw │ └── show_interfaces_status_6.yml ├── show_interfaces_switchport │ ├── show_interfaces_switchport_1.raw │ ├── show_interfaces_switchport_1.yml │ ├── show_interfaces_switchport_2.raw │ └── show_interfaces_switchport_2.yml ├── show_ip_interface │ ├── show_ip_interface_1.raw │ ├── show_ip_interface_1.yml │ ├── show_ip_interface_2.raw │ ├── show_ip_interface_2.yml │ ├── show_ip_interface_3.raw │ ├── show_ip_interface_3.yml │ ├── show_ip_interface_4.raw │ └── show_ip_interface_4.yml ├── show_system │ ├── show_system_1.raw │ ├── show_system_1.yml │ ├── show_system_2.raw │ ├── show_system_2.yml │ ├── show_system_3.raw │ ├── show_system_3.yml │ ├── show_system_4.raw │ ├── show_system_4.yml │ ├── show_system_5.raw │ └── show_system_5.yml ├── show_system_id │ ├── show_system_id_1.raw │ ├── show_system_id_1.yml │ ├── show_system_id_2.raw │ └── show_system_id_2.yml └── show_vlan │ ├── show_vlan_1.raw │ ├── show_vlan_1.yml │ ├── show_vlan_2.raw │ ├── show_vlan_2.yml │ ├── show_vlan_3.raw │ └── show_vlan_3.yml ├── ericsson_ipos ├── show_arp │ ├── ericsson_ipos_show_arp.raw │ ├── ericsson_ipos_show_arp.yml │ ├── ericsson_ipos_show_arp_all-context.raw │ ├── ericsson_ipos_show_arp_all-context.yml │ ├── ericsson_ipos_show_arp_all.raw │ └── ericsson_ipos_show_arp_all.yml ├── show_isis_adjacency │ ├── ericsson_ipos_show_isis_adjacency.raw │ └── ericsson_ipos_show_isis_adjacency.yml └── show_version │ ├── ericsson_ipos_show_version.raw │ └── ericsson_ipos_show_version.yml ├── extreme_exos ├── show_fdb │ ├── extreme_exos_show_fdb.raw │ └── extreme_exos_show_fdb.yml ├── show_iparp │ ├── extreme_exos_show_iparp.raw │ ├── extreme_exos_show_iparp.yml │ ├── extreme_exos_show_iparp_online_data.raw │ └── extreme_exos_show_iparp_online_data.yml ├── show_ipconfig │ ├── extreme_exos_show_ipconfig.raw │ └── extreme_exos_show_ipconfig.yml ├── show_ports_description │ ├── extreme_exos_show_ports_description.raw │ └── extreme_exos_show_ports_description.yml ├── show_ports_information │ ├── extreme_exos_show_ports_information.raw │ └── extreme_exos_show_ports_information.yml ├── show_ports_information_detail │ ├── extreme_exos_show_ports_information_brief.raw │ └── extreme_exos_show_ports_information_brief.yml ├── show_sharing │ ├── extreme_exos_show_sharing.raw │ └── extreme_exos_show_sharing.yml └── show_vlan_description │ ├── extreme_exos_show_vlan_description.raw │ └── extreme_exos_show_vlan_description.yml ├── extreme_slxos ├── show_clock │ ├── extreme_slxos_show_clock_data.raw │ └── extreme_slxos_show_clock_data.yml └── show_ip_interface_brief │ ├── extreme_slxos_show_ip_interface_brief_data.raw │ └── extreme_slxos_show_ip_interface_brief_data.yml ├── fortinet ├── diagnose_lldprx_port_neighbor_details_port-name │ ├── fortinet_diagnose_lldprx_port_neighbor_details_port-name.raw │ └── fortinet_diagnose_lldprx_port_neighbor_details_port-name.yml ├── diagnose_sys_top │ ├── fortinet_diagnose_sys_top.raw │ └── fortinet_diagnose_sys_top.yml ├── execute_date │ ├── fortinet_execute_date.raw │ └── fortinet_execute_date.yml ├── execute_dhcp_lease-list │ ├── fortinet_execute_dhcp_lease-list_5_columns.raw │ ├── fortinet_execute_dhcp_lease-list_5_columns.yml │ ├── fortinet_execute_dhcp_lease-list_7_columns.raw │ └── fortinet_execute_dhcp_lease-list_7_columns.yml ├── execute_log_display │ ├── fortinet_execute_log_display.raw │ ├── fortinet_execute_log_display.yml │ ├── fortinet_execute_log_display_no_logs.raw │ └── fortinet_execute_log_display_no_logs.yml ├── execute_ping │ ├── fortinet_execute_ping.raw │ ├── fortinet_execute_ping.yml │ ├── fortinet_execute_ping_sendto_failed.raw │ ├── fortinet_execute_ping_sendto_failed.yml │ ├── fortinet_execute_ping_unreachable.raw │ └── fortinet_execute_ping_unreachable.yml ├── execute_time │ ├── fortinet_execute_time.raw │ └── fortinet_execute_time.yml ├── execute_traceroute │ ├── fortinet_execute_traceroute1.raw │ ├── fortinet_execute_traceroute1.yml │ ├── fortinet_execute_traceroute2.raw │ └── fortinet_execute_traceroute2.yml ├── fnsysctl_ifconfig │ ├── fortinet_fnsysctl_ifconfig.raw │ └── fortinet_fnsysctl_ifconfig.yml ├── get_hardware_nic │ ├── fortinet_get_hardware_nic.raw │ └── fortinet_get_hardware_nic.yml ├── get_hardware_nic_nic-name │ ├── fortinet_get_hardware_nic_nic-name.raw │ └── fortinet_get_hardware_nic_nic-name.yml ├── get_router_info_bgp_neighbors │ ├── fortinet_get_router_info_bgp_neighbors.raw │ ├── fortinet_get_router_info_bgp_neighbors.yml │ ├── fortinet_get_router_info_bgp_neighbors_empty.raw │ └── fortinet_get_router_info_bgp_neighbors_empty.yml ├── get_router_info_bgp_summary │ ├── fortinet_get_router_info_bgp_summary.raw │ └── fortinet_get_router_info_bgp_summary.yml ├── get_router_info_ospf_status │ ├── fortinet_get_router_info_ospf_status.raw │ └── fortinet_get_router_info_ospf_status.yml ├── get_router_info_routing-table_all │ ├── fortinet_get_router_info_routing-table_all.raw │ └── fortinet_get_router_info_routing-table_all.yml ├── get_system_arp │ ├── fortinet_get_system_arp.raw │ └── fortinet_get_system_arp.yml ├── get_system_ha_status │ ├── fortinet_get_system_ha_status_5.6.raw │ ├── fortinet_get_system_ha_status_5.6.yml │ ├── fortinet_get_system_ha_status_6.0.raw │ ├── fortinet_get_system_ha_status_6.0.yml │ ├── fortinet_get_system_ha_status_6.0_noha.raw │ ├── fortinet_get_system_ha_status_6.0_noha.yml │ ├── fortinet_get_system_ha_status_6.2.raw │ ├── fortinet_get_system_ha_status_6.2.yml │ ├── fortinet_get_system_ha_status_6.4.raw │ ├── fortinet_get_system_ha_status_6.4.yml │ ├── fortinet_get_system_ha_status_7.0_hbdev.raw │ ├── fortinet_get_system_ha_status_7.0_hbdev.yml │ ├── fortinet_get_system_ha_status_7.0_mondev.raw │ └── fortinet_get_system_ha_status_7.0_mondev.yml ├── get_system_interface │ ├── fortinet_get_system_interface.raw │ ├── fortinet_get_system_interface.yml │ ├── fortinet_get_system_interface_5.6.raw │ ├── fortinet_get_system_interface_5.6.yml │ ├── fortinet_get_system_interface_6.0.raw │ ├── fortinet_get_system_interface_6.0.yml │ ├── fortinet_get_system_interface_6.2.raw │ ├── fortinet_get_system_interface_6.2.yml │ ├── fortinet_get_system_interface_6.4.2.raw │ ├── fortinet_get_system_interface_6.4.2.yml │ ├── fortinet_get_system_interface_7.0.raw │ ├── fortinet_get_system_interface_7.0.yml │ ├── fortinet_get_system_interface_7.4.raw │ └── fortinet_get_system_interface_7.4.yml ├── get_system_interface_physical │ ├── fortinet_get_system_interface_physical_5.6.raw │ ├── fortinet_get_system_interface_physical_5.6.yml │ ├── fortinet_get_system_interface_physical_6.0.raw │ ├── fortinet_get_system_interface_physical_6.0.yml │ ├── fortinet_get_system_interface_physical_6.2.raw │ ├── fortinet_get_system_interface_physical_6.2.yml │ ├── fortinet_get_system_interface_physical_7.4.raw │ └── fortinet_get_system_interface_physical_7.4.yml └── get_system_status │ ├── fortinet_get_system_status.raw │ ├── fortinet_get_system_status.yml │ ├── fortinet_get_system_status_6.2.raw │ ├── fortinet_get_system_status_6.2.yml │ ├── fortinet_get_system_status_7.0.raw │ ├── fortinet_get_system_status_7.0.yml │ ├── fortinet_get_system_status_7.0_1801f.raw │ ├── fortinet_get_system_status_7.0_1801f.yml │ ├── fortinet_get_system_status_7.0_40f.raw │ ├── fortinet_get_system_status_7.0_40f.yml │ ├── fortinet_get_system_status_7.0_eval.raw │ ├── fortinet_get_system_status_7.0_eval.yml │ ├── fortinet_get_system_status_7.4.raw │ └── fortinet_get_system_status_7.4.yml ├── fsas_sir ├── show_ether │ ├── fsas_sir_show_ether.raw │ ├── fsas_sir_show_ether.yml │ ├── fsas_sir_show_ether2.raw │ └── fsas_sir_show_ether2.yml ├── show_ip_ospf_neighbor │ ├── fsas_sir_show_ip_ospf_neighbor.raw │ └── fsas_sir_show_ip_ospf_neighbor.yml ├── show_ip_route │ ├── fsas_sir_show_ip_route.raw │ └── fsas_sir_show_ip_route.yml ├── show_system_information │ ├── fasa_sir_show_system_information3.raw │ ├── fasa_sir_show_system_information3.yml │ ├── fsas_sir_show_system_information.raw │ ├── fsas_sir_show_system_information.yml │ ├── fsas_sir_show_system_information2.raw │ └── fsas_sir_show_system_information2.yml └── show_vlan │ ├── fsas_sir_show_vlan.raw │ └── fsas_sir_show_vlan.yml ├── hp_comware ├── display_arp │ ├── hp_comware_display_arp.raw │ └── hp_comware_display_arp.yml ├── display_bgp_peer_ipv4 │ ├── hp_comware_display_bgp_peer_ipv4.raw │ ├── hp_comware_display_bgp_peer_ipv4.yml │ ├── hp_comware_display_bgp_peer_ipv4_low_uptime.raw │ └── hp_comware_display_bgp_peer_ipv4_low_uptime.yml ├── display_clock │ ├── hp_comware_display_clock.raw │ ├── hp_comware_display_clock.yml │ ├── hp_comware_display_clock_1.raw │ ├── hp_comware_display_clock_1.yml │ ├── hp_comware_display_clock_2.raw │ ├── hp_comware_display_clock_2.yml │ ├── hp_comware_display_clock_3.raw │ └── hp_comware_display_clock_3.yml ├── display_counters_bound_interface │ ├── hp_comware_display_counters_bound_interface.raw │ └── hp_comware_display_counters_bound_interface.yml ├── display_device_manuinfo │ ├── hp_comware_display_device_manuinfo.raw │ ├── hp_comware_display_device_manuinfo.yml │ ├── hp_comware_display_device_manuinfo1.raw │ ├── hp_comware_display_device_manuinfo1.yml │ ├── hp_comware_display_device_manuinfo2.raw │ ├── hp_comware_display_device_manuinfo2.yml │ ├── hp_comware_display_device_manuinfo3.raw │ ├── hp_comware_display_device_manuinfo3.yml │ ├── hp_comware_display_device_manuinfo4.raw │ ├── hp_comware_display_device_manuinfo4.yml │ ├── hp_comware_display_device_manuinfo_5200.raw │ ├── hp_comware_display_device_manuinfo_5200.yml │ ├── hp_comware_display_device_manuinfo_5930.raw │ ├── hp_comware_display_device_manuinfo_5930.yml │ ├── hp_comware_display_device_manuinfo_cw5_only-new-chassis.raw │ ├── hp_comware_display_device_manuinfo_cw5_only-new-chassis.yml │ ├── hp_comware_display_device_manuinfo_cw5_product-id.raw │ ├── hp_comware_display_device_manuinfo_cw5_product-id.yml │ ├── hp_comware_display_device_manuinfo_failed-display-null-power.raw │ ├── hp_comware_display_device_manuinfo_failed-display-null-power.yml │ ├── hp_comware_display_device_manuinfo_no-slot-type.raw │ ├── hp_comware_display_device_manuinfo_no-slot-type.yml │ ├── hp_comware_display_device_manuinfo_productNumber.raw │ └── hp_comware_display_device_manuinfo_productNumber.yml ├── display_interface │ ├── hp_comware_display_interface.raw │ ├── hp_comware_display_interface.yml │ ├── hp_comware_display_interface1.raw │ ├── hp_comware_display_interface1.yml │ ├── hp_comware_display_interface10.raw │ ├── hp_comware_display_interface10.yml │ ├── hp_comware_display_interface11.raw │ ├── hp_comware_display_interface11.yml │ ├── hp_comware_display_interface12.raw │ ├── hp_comware_display_interface12.yml │ ├── hp_comware_display_interface2.raw │ ├── hp_comware_display_interface2.yml │ ├── hp_comware_display_interface3.raw │ ├── hp_comware_display_interface3.yml │ ├── hp_comware_display_interface4.raw │ ├── hp_comware_display_interface4.yml │ ├── hp_comware_display_interface5.raw │ ├── hp_comware_display_interface5.yml │ ├── hp_comware_display_interface6.raw │ ├── hp_comware_display_interface6.yml │ ├── hp_comware_display_interface7.raw │ ├── hp_comware_display_interface7.yml │ ├── hp_comware_display_interface8.raw │ ├── hp_comware_display_interface8.yml │ ├── hp_comware_display_interface9.raw │ ├── hp_comware_display_interface9.yml │ ├── hp_comware_display_interface_dhcp.raw │ ├── hp_comware_display_interface_dhcp.yml │ ├── hp_comware_display_interface_known_unicast.raw │ ├── hp_comware_display_interface_known_unicast.yml │ ├── hp_comware_display_interface_mgmt.raw │ ├── hp_comware_display_interface_mgmt.yml │ ├── hp_comware_display_interface_release_0615P16.raw │ ├── hp_comware_display_interface_release_0615P16.yml │ ├── hp_comware_display_interface_release_09119P17.raw │ ├── hp_comware_display_interface_release_09119P17.yml │ ├── hp_comware_display_interface_stp-down_jumbo.raw │ ├── hp_comware_display_interface_stp-down_jumbo.yml │ ├── hp_comware_display_interface_tagged-vlan-none.raw │ └── hp_comware_display_interface_tagged-vlan-none.yml ├── display_interface_brief │ ├── hp_comware_display_interface_brief.raw │ ├── hp_comware_display_interface_brief.yml │ ├── hp_comware_display_interface_brief_fullauto.raw │ ├── hp_comware_display_interface_brief_fullauto.yml │ ├── hp_comware_display_interface_brief_release_60615P16.raw │ ├── hp_comware_display_interface_brief_release_60615P16.yml │ ├── hp_comware_display_interface_brief_release_9119P17.raw │ └── hp_comware_display_interface_brief_release_9119P17.yml ├── display_ip_interface │ ├── hp_comware_display_ip_interface.raw │ ├── hp_comware_display_ip_interface.yml │ ├── hp_comware_display_ip_interface1.raw │ ├── hp_comware_display_ip_interface1.yml │ ├── hp_comware_display_ip_interface2.raw │ ├── hp_comware_display_ip_interface2.yml │ ├── hp_comware_display_ip_interface_dhcp.raw │ ├── hp_comware_display_ip_interface_dhcp.yml │ ├── hp_comware_display_ip_interface_release_0615P16.raw │ ├── hp_comware_display_ip_interface_release_0615P16.yml │ ├── hp_comware_display_ip_interface_sub.raw │ └── hp_comware_display_ip_interface_sub.yml ├── display_ip_routing-table │ ├── hp_comware_display_ip_routing-table.raw │ └── hp_comware_display_ip_routing-table.yml ├── display_ip_vpn-instance │ ├── hp_comware_display_ip_vpn-instance.raw │ └── hp_comware_display_ip_vpn-instance.yml ├── display_ip_vpn-instance_instance-name │ ├── hp_comware_display_ip_vpn-instance_instance-name.raw │ ├── hp_comware_display_ip_vpn-instance_instance-name.yml │ ├── hp_comware_display_ip_vpn-instance_instance-name1.raw │ ├── hp_comware_display_ip_vpn-instance_instance-name1.yml │ ├── hp_comware_display_ip_vpn-instance_instance-name2.raw │ └── hp_comware_display_ip_vpn-instance_instance-name2.yml ├── display_link-aggregation_member-port │ ├── display_link-aggregation_member-port_cw5_1.raw │ ├── display_link-aggregation_member-port_cw5_1.yml │ ├── display_link-aggregation_member-port_cw7_1.raw │ ├── display_link-aggregation_member-port_cw7_1.yml │ ├── display_link-aggregation_member-port_cw7_2.raw │ └── display_link-aggregation_member-port_cw7_2.yml ├── display_link-aggregation_verbose │ ├── hp_comware_display_link-aggregation_verbose.raw │ ├── hp_comware_display_link-aggregation_verbose.yml │ ├── hp_comware_display_link-aggregation_verbose1.raw │ └── hp_comware_display_link-aggregation_verbose1.yml ├── display_lldp_neighbor-information_list │ ├── hp_comware_display_lldp_neighbor-information_list.raw │ ├── hp_comware_display_lldp_neighbor-information_list.yml │ ├── hp_comware_display_lldp_neighbor-information_list1.raw │ ├── hp_comware_display_lldp_neighbor-information_list1.yml │ ├── hp_comware_display_lldp_neighbor-information_list2.raw │ └── hp_comware_display_lldp_neighbor-information_list2.yml ├── display_lldp_neighbor-information_verbose │ ├── hp_comware_display_lldp_neighbor-information_verbose.raw │ └── hp_comware_display_lldp_neighbor-information_verbose.yml ├── display_mac-address │ ├── hp_comware_display_mac-address.raw │ └── hp_comware_display_mac-address.yml ├── display_vlan_all │ ├── hp_comware_display_vlan_all.raw │ ├── hp_comware_display_vlan_all.yml │ ├── hp_comware_display_vlan_all1.raw │ ├── hp_comware_display_vlan_all1.yml │ ├── hp_comware_display_vlan_all_cw5.raw │ └── hp_comware_display_vlan_all_cw5.yml └── display_vlan_brief │ ├── hp_comware_display_vlan_brief.raw │ └── hp_comware_display_vlan_brief.yml ├── hp_procurve ├── show_arp │ ├── hp_procurve_show_arp.raw │ ├── hp_procurve_show_arp.yml │ ├── hp_procurve_show_arp_1.raw │ ├── hp_procurve_show_arp_1.yml │ ├── hp_procurve_show_arp_2.raw │ └── hp_procurve_show_arp_2.yml ├── show_cdp_neighbors_detail │ ├── hp_procurve_show_cdp_neighbors_detail.raw │ └── hp_procurve_show_cdp_neighbors_detail.yml ├── show_interfaces │ ├── hp_procurve_show_interfaces.raw │ ├── hp_procurve_show_interfaces.yml │ ├── hp_procurve_show_interfaces_no_bcast_limit.raw │ └── hp_procurve_show_interfaces_no_bcast_limit.yml ├── show_interfaces_brief │ ├── show_interfaces_brief.raw │ ├── show_interfaces_brief.yml │ ├── show_interfaces_brief_NA.raw │ ├── show_interfaces_brief_NA.yml │ ├── show_interfaces_brief_NA1.raw │ ├── show_interfaces_brief_NA1.yml │ ├── show_interfaces_brief_bcast.raw │ ├── show_interfaces_brief_bcast.yml │ ├── show_interfaces_brief_note.raw │ └── show_interfaces_brief_note.yml ├── show_ip │ ├── hp_procurve_show_ip.raw │ ├── hp_procurve_show_ip.yml │ ├── hp_procurve_show_ip1.raw │ ├── hp_procurve_show_ip1.yml │ ├── hp_procurve_show_ip2.raw │ └── hp_procurve_show_ip2.yml ├── show_ip_route │ ├── hp_procurve_show_ip_route.raw │ └── hp_procurve_show_ip_route.yml ├── show_lldp_info_remote-device │ ├── hp_procurve_show_lldp_info_remote-device.raw │ └── hp_procurve_show_lldp_info_remote-device.yml ├── show_lldp_info_remote-device_detail │ ├── hp_procurve_show_lldp_info_remote-device_detail.raw │ └── hp_procurve_show_lldp_info_remote-device_detail.yml ├── show_mac-address │ ├── hp_procurve_show_mac-address.raw │ ├── hp_procurve_show_mac-address.yml │ ├── hp_procurve_show_mac-address2.raw │ └── hp_procurve_show_mac-address2.yml ├── show_port-security │ ├── hp_procurve_show_port-security.raw │ └── hp_procurve_show_port-security.yml ├── show_system │ ├── hp_procurve_show_system.raw │ └── hp_procurve_show_system.yml ├── show_tech_buffers │ ├── hp_procurve_show_tech_buffers.raw │ └── hp_procurve_show_tech_buffers.yml ├── show_trunks │ ├── hp_procurve_show_trunks.raw │ └── hp_procurve_show_trunks.yml ├── show_version │ ├── hp_procurve_show_version.raw │ └── hp_procurve_show_version.yml └── show_vlans │ ├── hp_procurve_show_vlans.raw │ ├── hp_procurve_show_vlans.yml │ ├── hp_procurve_show_vlans2.raw │ ├── hp_procurve_show_vlans2.yml │ ├── hp_procurve_show_vlans3.raw │ ├── hp_procurve_show_vlans3.yml │ ├── hp_procurve_show_vlans4.raw │ └── hp_procurve_show_vlans4.yml ├── huawei_ont ├── display_access_mode │ ├── huawei_ont_display_access_mode.raw │ └── huawei_ont_display_access_mode.yml ├── display_boardItem │ ├── huawei_ont_display_baordItem.raw │ └── huawei_ont_display_baordItem.yml ├── display_deviceInfo │ ├── huawei_ont_display_deviceInfo.raw │ └── huawei_ont_display_deviceInfo.yml ├── display_epon_ont_info │ ├── huawei_ont_display_epon_ont_info.raw │ └── huawei_ont_display_epon_ont_info.yml ├── display_flashlock_status │ ├── huawei_ont_display_flashlock_status.raw │ └── huawei_ont_display_flashlock_status.yml ├── display_inner_version │ ├── huawei_ont_display_inner_version.raw │ └── huawei_ont_display_inner_version.yml ├── display_lanmac │ ├── huawei_ont_display_lanmac.raw │ └── huawei_ont_display_lanmac.yml ├── display_log_info │ ├── huawei_ont_display_log_info.raw │ └── huawei_ont_display_log_info.yml ├── display_macaddress │ ├── huawei_ont_display_macaddress.raw │ └── huawei_ont_display_macaddress.yml ├── display_machineItem │ ├── huawei_ont_display_machineItem.raw │ └── huawei_ont_display_machineItem.yml ├── display_memory_info │ ├── huawei_ont_display_memory_info.raw │ └── huawei_ont_display_memory_info.yml ├── display_optic │ ├── huawei_ont_display_optic.raw │ └── huawei_ont_display_optic.yml ├── display_optmode │ ├── huawei_ont_display_optmode.raw │ └── huawei_ont_display_optmode.yml ├── display_port_statistics_portid_0 │ ├── huawei_ont_display_port_statistics_portid_0.raw │ └── huawei_ont_display_port_statistics_portid_0.yml ├── display_portstatistics_portnum_0 │ ├── huawei_ont_display_portstatistics_portnum_0.raw │ └── huawei_ont_display_portstatistics_portnum_0.yml ├── display_pppoe_em_result │ ├── huawei_ont_display_pppoe_em_result.raw │ └── huawei_ont_display_pppoe_em_result.yml ├── display_productmac │ ├── huawei_ont_display_productmac.raw │ └── huawei_ont_display_productmac.yml ├── display_rf_config │ ├── huawei_ont_display_rf_config.raw │ └── huawei_ont_display_rf_config.yml ├── display_sn │ ├── huawei_ont_display_sn.raw │ └── huawei_ont_display_sn.yml ├── display_swm_bootstate │ ├── huawei_ont_display_swm_bootstate.raw │ └── huawei_ont_display_swm_bootstate.yml ├── display_swm_state │ ├── huawei_ont_display_swm_state.raw │ └── huawei_ont_display_swm_state.yml ├── display_sysinfo │ ├── huawei_ont_display_sysinfo.raw │ └── huawei_ont_display_sysinfo.yml ├── display_timeout │ ├── huawei_ont_display_timeout.raw │ └── huawei_ont_display_timeout.yml ├── display_version │ ├── huawei_ont_display_version.raw │ └── huawei_ont_display_version.yml ├── display_wanmac │ ├── huawei_ont_display_wanmac.raw │ └── huawei_ont_display_wanmac.yml └── display_wifi_information │ ├── huawei_ont_display_wifi_information.raw │ └── huawei_ont_display_wifi_information.yml ├── huawei_smartax ├── display_board │ ├── huawei_smartax_display_board.raw │ └── huawei_smartax_display_board.yml ├── display_board_serial-number │ ├── huawei_smartax_display_board_serial_number.raw │ └── huawei_smartax_display_board_serial_number.yml ├── display_cpu │ ├── huawei_smartax_display_cpu.raw │ └── huawei_smartax_display_cpu.yml ├── display_location │ ├── huawei_smartax_display_location_aaaa-aaaa-aaaa.raw │ └── huawei_smartax_display_location_aaaa-aaaa-aaaa.yml ├── display_location_aaaa-aaaa-aaaa_ont │ ├── huawei_smartax_display_location_aaaa-aaaa-aaaa_ont.raw │ └── huawei_smartax_display_location_aaaa-aaaa-aaaa_ont.yml ├── display_mac-address │ ├── huawei_smartax_display_mac-address.raw │ └── huawei_smartax_display_mac-address.yml ├── display_mac-address_ont_0_1_2_0 │ ├── huawei_smartax_display_mac-address_ont_0_1_2_0.raw │ ├── huawei_smartax_display_mac-address_ont_0_1_2_0.yml │ ├── huawei_smartax_display_mac-address_ont_0_1_2_0_2.raw │ └── huawei_smartax_display_mac-address_ont_0_1_2_0_2.yml ├── display_mem │ ├── huawei_smartax_display_mem.raw │ └── huawei_smartax_display_mem.yml ├── display_ont-lineprofile_gpon_all │ ├── huawei_smartax_display_ont-lineprofile_gpon_all.raw │ └── huawei_smartax_display_ont-lineprofile_gpon_all.yml ├── display_ont-srvprofile_gpon_all │ ├── huawei_smartax_display_ont-srvprofile_gpon_all.raw │ └── huawei_smartax_display_ont-srvprofile_gpon_all.yml ├── display_ont_autofind │ ├── huawei_smartax_display_ont_autofind.raw │ ├── huawei_smartax_display_ont_autofind.yml │ ├── huawei_smartax_display_ont_autofind_2.raw │ └── huawei_smartax_display_ont_autofind_2.yml ├── display_ont_capability_all │ ├── huawei_smartax_display_ont_capability_all.raw │ └── huawei_smartax_display_ont_capability_all.yml ├── display_ont_gemport_0_ontid_0 │ ├── huawei_smartax_display_ont_gemport_0_ontid_0.raw │ └── huawei_smartax_display_ont_gemport_0_ontid_0.yml ├── display_ont_info_0 │ ├── huawei_smartax_display_ont_info_fsp.raw │ ├── huawei_smartax_display_ont_info_fsp.yml │ ├── huawei_smartax_display_ont_info_fsp_2.raw │ ├── huawei_smartax_display_ont_info_fsp_2.yml │ ├── huawei_smartax_display_ont_info_fsp_3.raw │ ├── huawei_smartax_display_ont_info_fsp_3.yml │ ├── huawei_smartax_display_ont_info_fsp_4.raw │ └── huawei_smartax_display_ont_info_fsp_4.yml ├── display_ont_info_0_1 │ ├── huawei_smartax_display_ont_info_1.raw │ ├── huawei_smartax_display_ont_info_1.yml │ ├── huawei_smartax_display_ont_info_2.raw │ └── huawei_smartax_display_ont_info_2.yml ├── display_ont_info_0_1_2 │ ├── huawei_smartax_display_ont_info_fsp.raw │ ├── huawei_smartax_display_ont_info_fsp.yml │ ├── huawei_smartax_display_ont_info_fsp_2.raw │ ├── huawei_smartax_display_ont_info_fsp_2.yml │ ├── huawei_smartax_display_ont_info_fsp_3.raw │ └── huawei_smartax_display_ont_info_fsp_3.yml ├── display_ont_info_0_1_2_3 │ ├── huawei_smartax_display_ont_info_1.raw │ ├── huawei_smartax_display_ont_info_1.yml │ ├── huawei_smartax_display_ont_info_2.raw │ └── huawei_smartax_display_ont_info_2.yml ├── display_ont_info_by-sn_ABC │ ├── huawei_smartax_display_ont_info_1.raw │ ├── huawei_smartax_display_ont_info_1.yml │ ├── huawei_smartax_display_ont_info_2.raw │ └── huawei_smartax_display_ont_info_2.yml ├── display_ont_info_summary_ont │ ├── huawei_smartax_display_ont_info_summary_ont.raw │ ├── huawei_smartax_display_ont_info_summary_ont.yml │ ├── huawei_smartax_display_ont_info_summary_ont_2.raw │ ├── huawei_smartax_display_ont_info_summary_ont_2.yml │ ├── huawei_smartax_display_ont_info_summary_ont_3.raw │ ├── huawei_smartax_display_ont_info_summary_ont_3.yml │ ├── huawei_smartax_display_ont_info_summary_ont_4.raw │ ├── huawei_smartax_display_ont_info_summary_ont_4.yml │ ├── huawei_smartax_display_ont_info_summary_ont_5.raw │ └── huawei_smartax_display_ont_info_summary_ont_5.yml ├── display_ont_optical-info_0_all │ ├── huawei_smartax_display_ont_optical-info_0_all.raw │ └── huawei_smartax_display_ont_optical-info_0_all.yml ├── display_ont_port_state_0_1_eth-port │ ├── huawei_smartax_display_ont_port_state_0_1_eth-port.raw │ └── huawei_smartax_display_ont_port_state_0_1_eth-port.yml ├── display_ont_port_vlan_0_1_byport_eth_0 │ ├── huawei_smartax_display_ont_port_vlan_0_1_byport_eth_0.raw │ └── huawei_smartax_display_ont_port_vlan_0_1_byport_eth_0.yml ├── display_ont_port_vlan_0_1_byvlan_0 │ ├── huawei_smartax_display_ont_port_vlan_0_1_byvlan_0.raw │ └── huawei_smartax_display_ont_port_vlan_0_1_byvlan_0.yml ├── display_ont_snmp-profile_0_all │ ├── huawei_smartax_display_ont_snmp-profile_0_all.raw │ └── huawei_smartax_display_ont_snmp-profile_0_all.yml ├── display_ont_version_summary_0 │ ├── huawei_smartax_display_ont_version_summary_0.raw │ └── huawei_smartax_display_ont_version_summary_0.yml ├── display_ont_wan-info_0_1_2_0 │ ├── huawei_smartax_display_ont_wan-info_0_1_2_0.raw │ ├── huawei_smartax_display_ont_wan-info_0_1_2_0.yml │ ├── huawei_smartax_display_ont_wan-info_0_1_2_0_2.raw │ └── huawei_smartax_display_ont_wan-info_0_1_2_0_2.yml ├── display_ont_wlan-info_0_1_2_0 │ ├── huawei_smartax_display_ont_wlan-info_0_1_2_0.raw │ └── huawei_smartax_display_ont_wlan-info_0_1_2_0.yml ├── display_ont_wlan-status_0_1 │ ├── huawei_smartax_display_ont_wlan-status_0_1.raw │ ├── huawei_smartax_display_ont_wlan-status_0_1.yml │ ├── huawei_smartax_display_ont_wlan-status_0_1_2.raw │ ├── huawei_smartax_display_ont_wlan-status_0_1_2.yml │ ├── huawei_smartax_display_ont_wlan-status_0_1_3.raw │ └── huawei_smartax_display_ont_wlan-status_0_1_3.yml ├── display_port_info │ ├── huawei_smartax_display_port_info.raw │ └── huawei_smartax_display_port_info.yml ├── display_service-port_all │ ├── huawei_smartax_display_service-port_all.raw │ └── huawei_smartax_display_service-port_all.yml ├── display_sysman_service_state │ ├── huawei_smartax_display_sysman_service_state.raw │ └── huawei_smartax_display_sysman_service_state.yml ├── display_sysuptime │ ├── huawei_smartax_display_sysuptime.raw │ └── huawei_smartax_display_sysuptime.yml ├── display_temperature │ ├── huawei_smartax_display_temperature.raw │ ├── huawei_smartax_display_temperature.yml │ ├── huawei_smartax_display_temperature2.raw │ └── huawei_smartax_display_temperature2.yml ├── display_version │ ├── huawei_smartax_display_version.raw │ └── huawei_smartax_display_version.yml ├── ont_add │ ├── huawei_smartax_ont_add.raw │ └── huawei_smartax_ont_add.yml └── port_vlan │ ├── huawei_smartax_port_vlan.raw │ └── huawei_smartax_port_vlan.yml ├── huawei_vrp ├── dir │ ├── huawei_vrp_dir.raw │ └── huawei_vrp_dir.yml ├── display_acl_all │ ├── huawei_vrp_display_acl_all_1.raw │ ├── huawei_vrp_display_acl_all_1.yml │ ├── huawei_vrp_display_acl_ipv6_all_1.raw │ └── huawei_vrp_display_acl_ipv6_all_1.yml ├── display_ap_all │ ├── huawei_vrp_display_ap_all.raw │ └── huawei_vrp_display_ap_all.yml ├── display_arp_all │ ├── huawei_vrp_display_arp_all.raw │ ├── huawei_vrp_display_arp_all.yml │ ├── huawei_vrpv8_display_arp_all.raw │ └── huawei_vrpv8_display_arp_all.yml ├── display_arp_brief │ ├── huawei_vrp_display_arp_brief.raw │ ├── huawei_vrp_display_arp_brief.yml │ ├── huawei_vrp_display_arp_brief2.raw │ └── huawei_vrp_display_arp_brief2.yml ├── display_bgp_peer │ ├── huawei_vrp_display_bgp_peer.raw │ ├── huawei_vrp_display_bgp_peer.yml │ ├── huawei_vrp_display_bgp_peer2.raw │ └── huawei_vrp_display_bgp_peer2.yml ├── display_device │ ├── huawei_vrp_display_device.raw │ ├── huawei_vrp_display_device.yml │ ├── huawei_vrp_display_device_all.raw │ ├── huawei_vrp_display_device_all.yml │ ├── huawei_vrp_display_device_card.raw │ └── huawei_vrp_display_device_card.yml ├── display_eth-trunk │ ├── huawei_vrp_display_eth-trunk.raw │ ├── huawei_vrp_display_eth-trunk.yml │ ├── huawei_vrp_display_eth-trunk2.raw │ └── huawei_vrp_display_eth-trunk2.yml ├── display_http_server │ ├── huawei_vrp_display_http_server.raw │ └── huawei_vrp_display_http_server.yml ├── display_interface │ ├── huawei_vrp_display_interface.raw │ ├── huawei_vrp_display_interface.yml │ ├── huawei_vrp_display_interface1.raw │ ├── huawei_vrp_display_interface1.yml │ ├── huawei_vrp_display_interface2.raw │ ├── huawei_vrp_display_interface2.yml │ ├── huawei_vrp_display_interface_dhcp.raw │ ├── huawei_vrp_display_interface_dhcp.yml │ ├── huawei_vrp_display_interface_dialer_1.raw │ ├── huawei_vrp_display_interface_dialer_1.yml │ ├── huawei_vrp_display_interface_gigabitethernet.raw │ └── huawei_vrp_display_interface_gigabitethernet.yml ├── display_interface_brief │ ├── huawei_vrp_display_interface_brief.raw │ ├── huawei_vrp_display_interface_brief.yml │ ├── huawei_vrp_display_interface_brief2.raw │ └── huawei_vrp_display_interface_brief2.yml ├── display_interface_description │ ├── huawei_vrp_display_interface_description.raw │ └── huawei_vrp_display_interface_description.yml ├── display_ip_routing-table_verbose │ ├── huawei_vrp_display_ip_routing-table_verbose_ipv4.raw │ ├── huawei_vrp_display_ip_routing-table_verbose_ipv4.yml │ ├── huawei_vrp_display_ip_routing-table_verbose_ipv41.raw │ ├── huawei_vrp_display_ip_routing-table_verbose_ipv41.yml │ ├── huawei_vrp_display_ip_routing-table_verbose_ipv6.raw │ └── huawei_vrp_display_ip_routing-table_verbose_ipv6.yml ├── display_ip_vpn-instance │ ├── huawei_vrp_display_ip_vpn-instance.raw │ └── huawei_vrp_display_ip_vpn-instance.yml ├── display_ip_vpn-instance_interface │ ├── huawei_vrp_display_ip_vpn-instance_interface.raw │ └── huawei_vrp_display_ip_vpn-instance_interface.yml ├── display_ipv6_neighbors │ ├── huawei_vrp_display_ipv6_neighbors_description1.raw │ ├── huawei_vrp_display_ipv6_neighbors_description1.yml │ ├── huawei_vrp_display_ipv6_neighbors_description2.raw │ └── huawei_vrp_display_ipv6_neighbors_description2.yml ├── display_isis_peer │ ├── huawei_vrp_display_isis_peer.raw │ ├── huawei_vrp_display_isis_peer.yml │ ├── huawei_vrp_display_isis_peer2.raw │ └── huawei_vrp_display_isis_peer2.yml ├── display_license_verbose │ ├── huawei_vrp_display_license_verbose.raw │ └── huawei_vrp_display_license_verbose.yml ├── display_lldp_neighbor │ ├── huawei_vrp_display_lldp_neighbor.raw │ ├── huawei_vrp_display_lldp_neighbor.yml │ ├── huawei_vrp_display_lldp_neighbor1.raw │ ├── huawei_vrp_display_lldp_neighbor1.yml │ ├── huawei_vrp_display_lldp_neighbor2.raw │ ├── huawei_vrp_display_lldp_neighbor2.yml │ ├── huawei_vrp_display_lldp_neighbor3.raw │ ├── huawei_vrp_display_lldp_neighbor3.yml │ ├── huawei_vrp_display_lldp_neighbor4.raw │ ├── huawei_vrp_display_lldp_neighbor4.yml │ ├── huawei_vrp_display_lldp_neighbor5.raw │ ├── huawei_vrp_display_lldp_neighbor5.yml │ ├── huawei_vrp_display_lldp_neighbor6.raw │ └── huawei_vrp_display_lldp_neighbor6.yml ├── display_mac-address │ ├── huawei_vrp_display_mac-address.raw │ ├── huawei_vrp_display_mac-address.yml │ ├── huawei_vrp_display_mac-address2.raw │ └── huawei_vrp_display_mac-address2.yml ├── display_module-information_verbose │ ├── huawei_vrp_display_module-information_verbose.raw │ └── huawei_vrp_display_module-information_verbose.yml ├── display_mpls_te_tunnel │ ├── huawei_vrp_display_mpls_te_tunnel.raw │ └── huawei_vrp_display_mpls_te_tunnel.yml ├── display_nat_server │ ├── huawei_vrp_nat_server.raw │ └── huawei_vrp_nat_server.yml ├── display_ntp_status │ ├── huawei_vrp_display_ntp_status.raw │ └── huawei_vrp_display_ntp_status.yml ├── display_patch-information │ ├── huawei_vrp_display_patch-information.raw │ └── huawei_vrp_display_patch-information.yml ├── display_port_vlan │ ├── huawei_vrp_display_port_vlan_example1.raw │ ├── huawei_vrp_display_port_vlan_example1.yml │ ├── huawei_vrp_display_port_vlan_example2.raw │ ├── huawei_vrp_display_port_vlan_example2.yml │ ├── huawei_vrp_display_port_vlan_example3.raw │ ├── huawei_vrp_display_port_vlan_example3.yml │ ├── huawei_vrp_display_port_vlan_example4.raw │ └── huawei_vrp_display_port_vlan_example4.yml ├── display_service-set_all │ ├── huawei_vrp_display_service-set_all.raw │ └── huawei_vrp_display_service-set_all.yml ├── display_service-set_id_id │ ├── display_service-set_id_id.raw │ └── display_service-set_id_id.yml ├── display_sn_license │ ├── huawei_vrp_display_version.raw │ └── huawei_vrp_display_version.yml ├── display_snmp-agent_community_read │ ├── huawei_vrp_display_snmp-agent_community_read.raw │ ├── huawei_vrp_display_snmp-agent_community_read.yml │ ├── huawei_vrp_display_snmp-agent_community_write.raw │ └── huawei_vrp_display_snmp-agent_community_write.yml ├── display_startup │ ├── huawei_vrp_display_startup.raw │ ├── huawei_vrp_display_startup.yml │ ├── huawei_vrp_display_startup_with_info.raw │ └── huawei_vrp_display_startup_with_info.yml ├── display_telnet_server_status │ ├── huawei_vrp_display_telnet_server_status.raw │ └── huawei_vrp_display_telnet_server_status.yml ├── display_temperature │ ├── huawei_vrp_display_temperature.raw │ └── huawei_vrp_display_temperature.yml ├── display_traffic-filter_applied-record │ ├── huawei_vrp_display_traffic-filter_applied-record.raw │ └── huawei_vrp_display_traffic-filter_applied-record.yml ├── display_version │ ├── huawei_vrp_display_version.raw │ ├── huawei_vrp_display_version.yml │ ├── huawei_vrp_display_version1.raw │ ├── huawei_vrp_display_version1.yml │ ├── huawei_vrp_display_version2.raw │ ├── huawei_vrp_display_version2.yml │ ├── huawei_vrp_display_version3.raw │ ├── huawei_vrp_display_version3.yml │ ├── huawei_vrp_display_version4.raw │ ├── huawei_vrp_display_version4.yml │ ├── huawei_vrp_display_version5.raw │ ├── huawei_vrp_display_version5.yml │ ├── huawei_vrp_display_version6.raw │ └── huawei_vrp_display_version6.yml ├── display_vlan │ ├── huawei_vrp_display_vlan.raw │ ├── huawei_vrp_display_vlan.yml │ ├── huawei_vrp_display_vlan_2.raw │ ├── huawei_vrp_display_vlan_2.yml │ ├── huawei_vrp_display_vlan_ap.raw │ └── huawei_vrp_display_vlan_ap.yml ├── display_vlan_brief │ ├── huawei_vrp_display_vlan_brief_ap.raw │ └── huawei_vrp_display_vlan_brief_ap.yml └── virtual-cable-test │ ├── huawei_vrp_virtual-cable-test.raw │ └── huawei_vrp_virtual-cable-test.yml ├── ipinfusion_ocnos └── show_lldp_table │ ├── ipinfusion_ocnos_show_lldp_table.raw │ └── ipinfusion_ocnos_show_lldp_table.yml ├── juniper_junos ├── show_arp_no-resolve │ ├── juniper_junos_show_arp_no-resolve.raw │ └── juniper_junos_show_arp_no-resolve.yml ├── show_bgp_summary │ ├── show_bgp_summary.raw │ └── show_bgp_summary.yml ├── show_chassis_cluster_interfaces │ ├── juniper_junos_show_chassis_cluster_interfaces.raw │ ├── juniper_junos_show_chassis_cluster_interfaces.yml │ ├── juniper_junos_show_chassis_cluster_interfaces2.raw │ ├── juniper_junos_show_chassis_cluster_interfaces2.yml │ ├── juniper_junos_show_chassis_cluster_interfaces3.raw │ ├── juniper_junos_show_chassis_cluster_interfaces3.yml │ ├── juniper_junos_show_chassis_cluster_interfaces4.raw │ └── juniper_junos_show_chassis_cluster_interfaces4.yml ├── show_chassis_cluster_status │ ├── juniper_junos_show_chassis_cluster_status.raw │ └── juniper_junos_show_chassis_cluster_status.yml ├── show_chassis_firmware │ ├── juniper_junos_show_chassis_firmware.raw │ └── juniper_junos_show_chassis_firmware.yml ├── show_chassis_hardware │ ├── juniper_junos_show_chassis_hardware.raw │ ├── juniper_junos_show_chassis_hardware.yml │ ├── juniper_junos_show_chassis_hardware1.raw │ ├── juniper_junos_show_chassis_hardware1.yml │ ├── juniper_junos_show_chassis_hardware2.raw │ ├── juniper_junos_show_chassis_hardware2.yml │ ├── juniper_junos_show_chassis_hardware3.raw │ ├── juniper_junos_show_chassis_hardware3.yml │ ├── juniper_junos_show_chassis_hardware4.raw │ ├── juniper_junos_show_chassis_hardware4.yml │ ├── juniper_junos_show_chassis_hardware_add_fpc_info.raw │ ├── juniper_junos_show_chassis_hardware_add_fpc_info.yml │ ├── juniper_junos_show_chassis_hardware_dac_no_revision.raw │ └── juniper_junos_show_chassis_hardware_dac_no_revision.yml ├── show_ethernet-switching_table │ ├── juniper_junos_show_ethernet-switching_table.raw │ ├── juniper_junos_show_ethernet-switching_table.yml │ ├── juniper_junos_show_ethernet-switching_table1.raw │ ├── juniper_junos_show_ethernet-switching_table1.yml │ ├── juniper_junos_show_ethernet-switching_table_14.1X53-D47.6.raw │ └── juniper_junos_show_ethernet-switching_table_14.1X53-D47.6.yml ├── show_interfaces │ ├── juniper_junos_show_interfaces.raw │ ├── juniper_junos_show_interfaces.yml │ ├── juniper_junos_show_interfaces2.raw │ ├── juniper_junos_show_interfaces2.yml │ ├── juniper_junos_show_interfaces_irb.raw │ └── juniper_junos_show_interfaces_irb.yml ├── show_isis_adjacency │ ├── juniper_junos_show_isis_adjacency.raw │ └── juniper_junos_show_isis_adjacency.yml ├── show_lacp_interfaces │ ├── juniper_junos_show_lacp_interfaces.raw │ └── juniper_junos_show_lacp_interfaces.yml ├── show_lldp_neighbors │ ├── juniper_junos_show_lldp_neighbors.raw │ ├── juniper_junos_show_lldp_neighbors.yml │ ├── juniper_junos_show_lldp_neighbors_ae7.raw │ └── juniper_junos_show_lldp_neighbors_ae7.yml ├── show_ospf_neighbor │ ├── juniper_junos_show_ospf_neighbor.raw │ └── juniper_junos_show_ospf_neighbor.yml ├── show_route_summary │ ├── juniper_junos_show_route_summary.raw │ └── juniper_junos_show_route_summary.yml ├── show_rsvp_interface │ ├── juniper_junos_show_rsvp_interface.raw │ └── juniper_junos_show_rsvp_interface.yml ├── show_system_configuration_database_usage │ ├── juniper_junos_show_system_configuration_database_usage.raw │ ├── juniper_junos_show_system_configuration_database_usage.yml │ ├── juniper_junos_show_system_configuration_database_usage_locked.raw │ └── juniper_junos_show_system_configuration_database_usage_locked.yml ├── show_system_processes_brief │ ├── juniper_junos_show_system_processes_brief-classic.raw │ ├── juniper_junos_show_system_processes_brief-classic.yml │ ├── juniper_junos_show_system_processes_brief-evo.raw │ └── juniper_junos_show_system_processes_brief-evo.yml ├── show_system_processes_summary │ ├── juniper_junos_show_system_processes_summary.raw │ └── juniper_junos_show_system_processes_summary.yml ├── show_system_uptime │ ├── juniper_junos_show_system_uptime.raw │ ├── juniper_junos_show_system_uptime.yml │ ├── juniper_junos_show_system_uptime_2.raw │ └── juniper_junos_show_system_uptime_2.yml ├── show_version │ ├── juniper_junos_show_version.raw │ ├── juniper_junos_show_version.yml │ ├── juniper_junos_show_version_ex.raw │ ├── juniper_junos_show_version_ex.yml │ ├── juniper_junos_show_version_qfx5100.raw │ ├── juniper_junos_show_version_qfx5100.yml │ ├── juniper_junos_show_version_srx_cluster.raw │ ├── juniper_junos_show_version_srx_cluster.yml │ ├── juniper_junos_show_version_vmhost.raw │ └── juniper_junos_show_version_vmhost.yml └── show_vlans │ ├── juniper_junos_show_vlans.raw │ └── juniper_junos_show_vlans.yml ├── juniper_screenos └── get_route │ ├── juniper_screenos_get_route.raw │ └── juniper_screenos_get_route.yml ├── linux ├── arp_-a │ ├── linux_arp_a.raw │ └── linux_arp_a.yml ├── bluetoothctl_show │ ├── linux_bluetoothctl_show.raw │ ├── linux_bluetoothctl_show.yml │ ├── linux_bluetoothctl_show_2.raw │ └── linux_bluetoothctl_show_2.yml ├── dmidecode_-t_bios │ ├── linux_dmidecode_-t_bios.raw │ └── linux_dmidecode_-t_bios.yml ├── dmidecode_-t_memory │ ├── linux_dmidecode_-t_memory.raw │ └── linux_dmidecode_-t_memory.yml ├── dmidecode_-t_processor │ ├── linux_dmidecode_-t_processor.raw │ └── linux_dmidecode_-t_processor.yml ├── dmidecode_-t_system │ ├── linux_dmidecode_-t_system.raw │ └── linux_dmidecode_-t_system.yml ├── ip_address_show │ ├── busybox_ip_address_show.raw │ ├── busybox_ip_address_show.yml │ ├── linux_ip_address_show.raw │ ├── linux_ip_address_show.yml │ ├── linux_ip_address_show2.raw │ └── linux_ip_address_show2.yml ├── ip_link_show │ ├── busybox_ip_link_show.raw │ ├── busybox_ip_link_show.yml │ ├── linux_ip_link_show.raw │ ├── linux_ip_link_show.yml │ ├── linux_ip_link_show_2.raw │ └── linux_ip_link_show_2.yml ├── ip_route_show │ ├── linux_ip_route_show.raw │ ├── linux_ip_route_show.yml │ ├── linux_ip_route_show2.raw │ ├── linux_ip_route_show2.yml │ ├── linux_ip_route_show_linkdown.raw │ └── linux_ip_route_show_linkdown.yml ├── ip_vrf_show │ ├── linux_ip_vrf_show.raw │ └── linux_ip_vrf_show.yml ├── iwconfig │ ├── linux_iwconfig.raw │ ├── linux_iwconfig.yml │ ├── linux_iwconfig_2.raw │ └── linux_iwconfig_2.yml ├── iwlist_wlan0_scanning │ ├── linux_iwlist_wlan0_scanning.raw │ ├── linux_iwlist_wlan0_scanning.yml │ ├── linux_iwlist_wlan0_scanning1.raw │ └── linux_iwlist_wlan0_scanning1.yml ├── nmcli_connection_show │ ├── linux_nmcli_connection_show.raw │ └── linux_nmcli_connection_show.yml ├── pct_config_1 │ ├── linux_pct_config_1.raw │ └── linux_pct_config_1.yml ├── pct_list │ ├── linux_pct_list.raw │ └── linux_pct_list.yml ├── pveversion │ ├── linux_pveversion.raw │ └── linux_pveversion.yml ├── qm_config_1 │ ├── linux_qm_config_1.raw │ └── linux_qm_config_1.yml ├── qm_list │ ├── linux_qm_list.raw │ └── linux_qm_list.yml ├── top │ ├── linux_top.raw │ └── linux_top.yml └── vzlist │ ├── linux_vzlist.raw │ └── linux_vzlist.yml ├── mikrotik_routeros ├── interface_bonding_print_detail │ ├── mikrotik_routeros_interface_bonding_print_detail.raw │ ├── mikrotik_routeros_interface_bonding_print_detail.yml │ ├── mikrotik_routeros_interface_bonding_print_detail_01.raw │ ├── mikrotik_routeros_interface_bonding_print_detail_01.yml │ ├── mikrotik_routeros_interface_bonding_print_detail_02.raw │ └── mikrotik_routeros_interface_bonding_print_detail_02.yml ├── interface_bridge_host_print_terse_without-paging │ ├── interface_bridge_host_print_terse_without-paging.raw │ └── interface_bridge_host_print_terse_without-paging.yml ├── interface_ethernet_monitor_name_once │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once.raw │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once.yml │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once2.raw │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once2.yml │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once3.raw │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once3.yml │ ├── mikrotik_routeros_interface_ethernet_monitor_name_once4.raw │ └── mikrotik_routeros_interface_ethernet_monitor_name_once4.yml ├── interface_ethernet_poe_print_without-paging │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging.raw │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging.yml │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging_2.raw │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging_2.yml │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging_no_poe.raw │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging_no_poe.yml │ ├── mikrotik_routeros_interface_ethernet_poe_print_without-paging_no_poe_2.raw │ └── mikrotik_routeros_interface_ethernet_poe_print_without-paging_no_poe_2.yml ├── interface_ethernet_print │ ├── mikrotik_routeros_interface_ethernet_print.raw │ └── mikrotik_routeros_interface_ethernet_print.yml ├── interface_print_brief │ ├── mikrotik_routeros_interface_print_brief.raw │ └── mikrotik_routeros_interface_print_brief.yml ├── interface_print_detail │ ├── mikrotik_routeros_interface_print_detail.raw │ ├── mikrotik_routeros_interface_print_detail.yml │ ├── mikrotik_routeros_interface_print_detail_01.raw │ └── mikrotik_routeros_interface_print_detail_01.yml ├── interface_print_terse_without-paging │ ├── mikrotik_routeros_interface_print_terse_without-paging.raw │ ├── mikrotik_routeros_interface_print_terse_without-paging.yml │ ├── mikrotik_routeros_interface_print_terse_without-paging2.raw │ └── mikrotik_routeros_interface_print_terse_without-paging2.yml ├── interface_vlan_print_detail │ ├── mikrotik_routeros_interface_vlan_print_detail.raw │ ├── mikrotik_routeros_interface_vlan_print_detail.yml │ ├── mikrotik_routeros_interface_vlan_print_detail_01.raw │ ├── mikrotik_routeros_interface_vlan_print_detail_01.yml │ ├── mikrotik_routeros_interface_vlan_print_detail_02.raw │ └── mikrotik_routeros_interface_vlan_print_detail_02.yml ├── ip_address_export_verbose │ ├── mikrotik_routeros_ip_address_export_verbose.raw │ └── mikrotik_routeros_ip_address_export_verbose.yml ├── ip_address_print │ ├── mikrotik_routeros_ip_address_print.raw │ ├── mikrotik_routeros_ip_address_print.yml │ ├── mikrotik_routeros_ip_address_print_1.raw │ ├── mikrotik_routeros_ip_address_print_1.yml │ ├── mikrotik_routeros_ip_address_print_2.raw │ ├── mikrotik_routeros_ip_address_print_2.yml │ ├── mikrotik_routeros_ip_address_print_3.raw │ ├── mikrotik_routeros_ip_address_print_3.yml │ ├── mikrotik_routeros_ip_address_print_4.raw │ ├── mikrotik_routeros_ip_address_print_4.yml │ ├── mikrotik_routeros_ip_address_print_5.raw │ └── mikrotik_routeros_ip_address_print_5.yml ├── ip_arp_print │ ├── mikrotik_routeros_ip_arp_print.raw │ └── mikrotik_routeros_ip_arp_print.yml ├── ip_arp_print_terse_without-paging │ ├── mikrotik_routeros_ip_arp_print_terse_without-paging.raw │ └── mikrotik_routeros_ip_arp_print_terse_without-paging.yml ├── ip_arp_print_without-paging │ ├── mikrotik_routeros_ip_arp_print_without-paging.raw │ ├── mikrotik_routeros_ip_arp_print_without-paging.yml │ ├── mikrotik_routeros_ip_arp_print_without-paging2.raw │ └── mikrotik_routeros_ip_arp_print_without-paging2.yml ├── ip_dhcp-server_lease_print │ ├── mikrotik_routeros_ip_dhcp-server_lease_print.raw │ ├── mikrotik_routeros_ip_dhcp-server_lease_print.yml │ ├── mikrotik_routeros_ip_dhcp-server_lease_print2.raw │ └── mikrotik_routeros_ip_dhcp-server_lease_print2.yml ├── ip_dhcp-server_lease_print_terse_without-paging │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_terse_without-paging.raw │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_terse_without-paging.yml │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_terse_without-paging_2.raw │ └── mikrotik_routeros_ip_dhcp-server_lease_print_terse_without-paging_2.yml ├── ip_dhcp-server_lease_print_without-paging │ ├── mikrotik_routeros_ip_dhcp-server_lease_print_without-paging.raw │ └── mikrotik_routeros_ip_dhcp-server_lease_print_without-paging.yml ├── ip_dns_cache_print_terse_without-paging │ ├── mikrotik_routeros_ip_dns_cache_print_terse_without-paging.raw │ └── mikrotik_routeros_ip_dns_cache_print_terse_without-paging.yml ├── ip_firewall_address-list_print_terse │ ├── mikrotik_routeros_ip_firewall_address-list_print_terseIPv4.raw │ ├── mikrotik_routeros_ip_firewall_address-list_print_terseIPv4.yml │ ├── mikrotik_routeros_ip_firewall_address-list_print_terseIPv6.raw │ └── mikrotik_routeros_ip_firewall_address-list_print_terseIPv6.yml ├── ip_firewall_filter_print_all_without-paging │ ├── mikrotik_routeros_ip_firewall_filter_print_all_without-paging.raw │ └── mikrotik_routeros_ip_firewall_filter_print_all_without-paging.yml ├── ip_firewall_nat_print_all_without-paging │ ├── mikrotik_routeros_ip_firewall_nat_print_all_without-paging.raw │ └── mikrotik_routeros_ip_firewall_nat_print_all_without-paging.yml ├── ip_hotspot_ip-binding_print_terse_without-paging │ ├── mikrotik_routeros_ip-binding_print_terse_without-paging.raw │ └── mikrotik_routeros_ip-binding_print_terse_without-paging.yml ├── ip_neighbor_print_detail │ ├── mikrotik_routeros_ip_neighbor_print_detail.raw │ ├── mikrotik_routeros_ip_neighbor_print_detail.yml │ ├── mikrotik_routeros_ip_neighbor_print_detail_ipv6.raw │ ├── mikrotik_routeros_ip_neighbor_print_detail_ipv6.yml │ ├── mikrotik_routeros_ip_neighbor_print_detail_line_wrap.raw │ └── mikrotik_routeros_ip_neighbor_print_detail_line_wrap.yml ├── ip_route_print_detail │ ├── mikrotik_routeros_ip_route_print_detail.raw │ └── mikrotik_routeros_ip_route_print_detail.yml ├── ip_route_print_terse │ ├── mikrotik_routeros_ip_route_print_terseIPv4.raw │ ├── mikrotik_routeros_ip_route_print_terseIPv4.yml │ ├── mikrotik_routeros_ip_route_print_terseIPv6.raw │ └── mikrotik_routeros_ip_route_print_terseIPv6.yml ├── ip_route_print_terse_without-paging │ ├── mikrotik_routeros_ip_route_print_terse_without-paging.raw │ └── mikrotik_routeros_ip_route_print_terse_without-paging.yml ├── ipv6_neighbor_print_without-paging │ ├── mikrotik_routeros_ipv6_neighbor_print_without-paging.raw │ └── mikrotik_routeros_ipv6_neighbor_print_without-paging.yml ├── log_print_detail_without-paging │ ├── mikrotik_routeros_log_print_detail_without-paging.raw │ └── mikrotik_routeros_log_print_detail_without-paging.yml ├── ping │ ├── mikrotik_routeros_ping_address.raw │ ├── mikrotik_routeros_ping_address.yml │ ├── mikrotik_routeros_ping_address_mac.raw │ ├── mikrotik_routeros_ping_address_mac.yml │ ├── mikrotik_routeros_ping_address_multicast.raw │ ├── mikrotik_routeros_ping_address_multicast.yml │ ├── mikrotik_routeros_ping_address_unreachable.raw │ └── mikrotik_routeros_ping_address_unreachable.yml ├── routing_bgp_peer_print_status │ ├── mikrotik_routeros_routing_bgp_peer_print_status.raw │ └── mikrotik_routeros_routing_bgp_peer_print_status.yml ├── routing_bgp_peer_print_status_without-paging │ ├── mikrotik_routeros_routing_bgp_peer_print_status_without-paging.raw │ ├── mikrotik_routeros_routing_bgp_peer_print_status_without-paging.yml │ ├── mikrotik_routeros_routing_bgp_peer_print_status_without-paging_2.raw │ └── mikrotik_routeros_routing_bgp_peer_print_status_without-paging_2.yml ├── routing_ospf_interface_print_terse │ ├── routing_ospf_interface_print_terse.raw │ ├── routing_ospf_interface_print_terse.yml │ ├── routing_ospf_interface_print_terse01.raw │ └── routing_ospf_interface_print_terse01.yml ├── routing_ospf_neighbor_print │ ├── mikrotik_routeros_routing_ospf_neighbor_print.raw │ └── mikrotik_routeros_routing_ospf_neighbor_print.yml ├── routing_ospf_neighbor_print_terse_without-paging │ ├── mikrotik_routeros_routing_ospf_neighbor_print_terse_without-paging.raw │ └── mikrotik_routeros_routing_ospf_neighbor_print_terse_without-paging.yml ├── snmp_community_print_without-paging │ ├── mikrotik_routeros_snmp_community_print_without-paging.raw │ └── mikrotik_routeros_snmp_community_print_without-paging.yml ├── system_clock_print │ ├── mikrotik_routeros_system_clock_print.raw │ └── mikrotik_routeros_system_clock_print.yml ├── system_identity_print │ ├── mikrotik_routeros_system_identity_print.raw │ └── mikrotik_routeros_system_identity_print.yml ├── system_resource_print │ ├── mikrotik_routeros_system_resource_print_1.raw │ ├── mikrotik_routeros_system_resource_print_1.yml │ ├── mikrotik_routeros_system_resource_print_2.raw │ ├── mikrotik_routeros_system_resource_print_2.yml │ ├── mikrotik_routeros_system_resource_print_3.raw │ ├── mikrotik_routeros_system_resource_print_3.yml │ ├── mikrotik_routeros_system_resource_print_4.raw │ └── mikrotik_routeros_system_resource_print_4.yml ├── system_routerboard_print │ ├── mikrotik_routeros_system_routerboard_print.raw │ ├── mikrotik_routeros_system_routerboard_print.yml │ ├── mikrotik_routeros_system_routerboard_print2.raw │ ├── mikrotik_routeros_system_routerboard_print2.yml │ ├── mikrotik_routeros_system_routerboard_print3.raw │ └── mikrotik_routeros_system_routerboard_print3.yml ├── tool_profile │ ├── mikrotik_routeros_tool_profile.raw │ └── mikrotik_routeros_tool_profile.yml ├── tool_speed-test_address │ ├── mikrotik_routeros_tool_speed-test_address.raw │ └── mikrotik_routeros_tool_speed-test_address.yml ├── user_active_print │ ├── mikrotik_routeros_user_active_print.raw │ └── mikrotik_routeros_user_active_print.yml └── user_print │ ├── mikrotik_routeros_user_print.raw │ └── mikrotik_routeros_user_print.yml ├── mocks ├── cisco_ios │ └── show_mac-address-table │ │ ├── show_mac1.raw │ │ ├── show_mac2.raw │ │ └── show_mac3.raw ├── expected │ ├── parsed_sample.yml │ ├── show_mac.yml │ └── yaml_comments.yml └── load │ ├── glob │ ├── parsed_sample1.yml │ └── parsed_sample2.yml │ ├── parsed_sample.yml │ └── yaml_comments.yml ├── oneaccess_oneos ├── cat_bsa_bsaboot.inf │ ├── cat_bsa_bsaboot.inf.raw │ └── cat_bsa_bsaboot.inf.yml ├── hostname │ ├── hostname.raw │ └── hostname.yml ├── ls │ ├── ls.bsabinaries.oneos5.raw │ ├── ls.bsabinaries.oneos5.yml │ ├── ls.bsabinaries.oneos6.raw │ └── ls.bsabinaries.oneos6.yml ├── show_cellular-radio_context │ ├── show_cellular-radio_context.oneos6.raw │ └── show_cellular-radio_context.oneos6.yml ├── show_cellular-radio_equipment │ ├── show_cellular-radio_equipment.oneos5.raw │ ├── show_cellular-radio_equipment.oneos5.yml │ ├── show_cellular-radio_equipment.oneos6.raw │ └── show_cellular-radio_equipment.oneos6.yml ├── show_cellular-radio_network │ ├── show_cellular-radio_context.oneos5.raw │ ├── show_cellular-radio_context.oneos5.yml │ ├── show_cellular-radio_context.oneos6.raw │ └── show_cellular-radio_context.oneos6.yml ├── show_helpers │ ├── show_helpers.oneos5.raw │ ├── show_helpers.oneos5.yml │ ├── show_helpers.oneos6.raw │ └── show_helpers.oneos6.yml ├── show_interfaces │ ├── show_interfaces.lbb140.raw │ ├── show_interfaces.lbb140.yml │ ├── show_interfaces.lbb150.raw │ ├── show_interfaces.lbb150.yml │ ├── show_interfaces.lbb154.raw │ ├── show_interfaces.lbb154.yml │ ├── show_interfaces.lbb4g.raw │ └── show_interfaces.lbb4g.yml ├── show_ip_access-lists │ ├── show_ip_access-lists.oneos5.raw │ ├── show_ip_access-lists.oneos5.yml │ ├── show_ip_access-lists.oneos6.raw │ └── show_ip_access-lists.oneos6.yml ├── show_ip_as-path-access-list │ ├── show_ip_as-path-access-list.oneos5.raw │ ├── show_ip_as-path-access-list.oneos5.yml │ ├── show_ip_as-path-access-list.oneos6.raw │ └── show_ip_as-path-access-list.oneos6.yml ├── show_ip_bgp_summary │ ├── show_ip_bgp_summary.oneos5.raw │ ├── show_ip_bgp_summary.oneos5.yml │ ├── show_ip_bgp_summary.oneos6.raw │ └── show_ip_bgp_summary.oneos6.yml ├── show_ip_interface_brief │ ├── show_ip_interface_brief.oneos5.raw │ ├── show_ip_interface_brief.oneos5.yml │ ├── show_ip_interface_brief.oneos6.raw │ └── show_ip_interface_brief.oneos6.yml ├── show_ip_prefix-list │ ├── show_ip_prefix-list.oneos5.raw │ ├── show_ip_prefix-list.oneos5.yml │ ├── show_ip_prefix-list.oneos6.raw │ └── show_ip_prefix-list.oneos6.yml ├── show_ip_ssh │ ├── show_ip_ssh.oneos5.raw │ ├── show_ip_ssh.oneos5.yml │ ├── show_ip_ssh.oneos6.raw │ └── show_ip_ssh.oneos6.yml ├── show_ip_vrf_brief │ ├── show_ip_vrf_brief.oneos5.raw │ ├── show_ip_vrf_brief.oneos5.yml │ ├── show_ip_vrf_brief.oneos6.raw │ └── show_ip_vrf_brief.oneos6.yml ├── show_isdn_active │ ├── show_isdn_active.plug103.raw │ ├── show_isdn_active.plug103.yml │ ├── show_isdn_active.plug212.raw │ ├── show_isdn_active.plug212.yml │ ├── show_isdn_active.plug401.raw │ └── show_isdn_active.plug401.yml ├── show_isdn_led-status │ ├── show_isdn_led-status.plug103.raw │ ├── show_isdn_led-status.plug103.yml │ ├── show_isdn_led-status.plug212.raw │ ├── show_isdn_led-status.plug212.yml │ ├── show_isdn_led-status.plug401.raw │ └── show_isdn_led-status.plug401.yml ├── show_isdn_status_all │ ├── show_isdn_status_all.plug103.raw │ ├── show_isdn_status_all.plug103.yml │ ├── show_isdn_status_all.plug212.raw │ ├── show_isdn_status_all.plug212.yml │ ├── show_isdn_status_all.plug401.raw │ └── show_isdn_status_all.plug401.yml ├── show_memory │ ├── show_memory.oneos5.raw │ ├── show_memory.oneos5.yml │ ├── show_memory.oneos6.raw │ └── show_memory.oneos6.yml ├── show_policy-interface_output │ ├── show_policy-interface_output.lbb_140.raw │ ├── show_policy-interface_output.lbb_140.yml │ ├── show_policy-interface_output.lbb_150.raw │ └── show_policy-interface_output.lbb_150.yml ├── show_product-info-area │ ├── show_product-info-area.oneos5.raw │ ├── show_product-info-area.oneos5.yml │ ├── show_product-info-area.oneos6.raw │ └── show_product-info-area.oneos6.yml ├── show_reboot_counters │ ├── show_reboot_counters.lbb4g.raw │ ├── show_reboot_counters.lbb4g.yml │ ├── show_reboot_counters.oneos5.raw │ ├── show_reboot_counters.oneos5.yml │ ├── show_reboot_counters.plug103.raw │ ├── show_reboot_counters.plug103.yml │ ├── show_reboot_counters.plug212.raw │ ├── show_reboot_counters.plug212.yml │ ├── show_reboot_counters.plug401.raw │ └── show_reboot_counters.plug401.yml ├── show_route-map │ ├── show_route-map.oneos5.raw │ ├── show_route-map.oneos5.yml │ ├── show_route-map.oneos6.raw │ └── show_route-map.oneos6.yml ├── show_running-config_aaa │ ├── show_running-config_aaa.oneos5.raw │ ├── show_running-config_aaa.oneos5.yml │ ├── show_running-config_aaa.oneos6.raw │ └── show_running-config_aaa.oneos6.yml ├── show_running-config_bind │ ├── show_running-config_bind.oneos5.raw │ ├── show_running-config_bind.oneos5.yml │ ├── show_running-config_bind.oneos6.raw │ └── show_running-config_bind.oneos6.yml ├── show_running-config_ip_dhcp │ ├── show_running-config_ip_dhcp.oneos5.raw │ ├── show_running-config_ip_dhcp.oneos5.yml │ ├── show_running-config_ip_dhcp.oneos6.raw │ └── show_running-config_ip_dhcp.oneos6.yml ├── show_running-config_ip_route │ ├── show_running-config_ip_route.oneos5.raw │ ├── show_running-config_ip_route.oneos5.yml │ ├── show_running-config_ip_route.oneos6.raw │ └── show_running-config_ip_route.oneos6.yml ├── show_snmp_community │ ├── show_snmp_community.oneos5.raw │ ├── show_snmp_community.oneos5.yml │ ├── show_snmp_community.oneos6.raw │ └── show_snmp_community.oneos6.yml ├── show_sntp │ ├── show_sntp.oneos5.raw │ ├── show_sntp.oneos5.yml │ ├── show_sntp.oneos6.raw │ └── show_sntp.oneos6.yml ├── show_soft-file_info │ ├── show_soft-file_info.oneos5.raw │ ├── show_soft-file_info.oneos5.yml │ ├── show_soft-file_info.oneos6.raw │ └── show_soft-file_info.oneos6.yml ├── show_software-image │ ├── show_software-image.raw │ └── show_software-image.yml ├── show_system_hardware │ ├── show_system_hardware.lbb150.raw │ ├── show_system_hardware.lbb150.yml │ ├── show_system_hardware.lbb320.raw │ ├── show_system_hardware.lbb320.yml │ ├── show_system_hardware.pbxplug103.raw │ ├── show_system_hardware.pbxplug103.yml │ ├── show_system_hardware.pbxplug212.raw │ ├── show_system_hardware.pbxplug212.yml │ ├── show_system_hardware.pbxplug401.raw │ └── show_system_hardware.pbxplug401.yml ├── show_system_secure-crashlog │ ├── show_system_secure-crashlog.plug103.raw │ ├── show_system_secure-crashlog.plug103.yml │ ├── show_system_secure-crashlog.plug212.raw │ ├── show_system_secure-crashlog.plug212.yml │ ├── show_system_secure-crashlog.plug401.raw │ └── show_system_secure-crashlog.plug401.yml ├── show_system_status │ ├── show_system_status.oneos5.raw │ ├── show_system_status.oneos5.yml │ ├── show_system_status.oneos6.raw │ ├── show_system_status.oneos6.yml │ ├── show_system_status.plug103.raw │ ├── show_system_status.plug103.yml │ ├── show_system_status.plug212.raw │ ├── show_system_status.plug212.yml │ ├── show_system_status.plug401.raw │ └── show_system_status.plug401.yml ├── show_tacacs-server │ ├── show_tacacs-server.oneos5.raw │ ├── show_tacacs-server.oneos5.yml │ ├── show_tacacs-server.oneos6.raw │ └── show_tacacs-server.oneos6.yml ├── show_tacacs │ ├── show_tacacs.oneos5.raw │ ├── show_tacacs.oneos5.yml │ ├── show_tacacs.oneos6.raw │ └── show_tacacs.oneos6.yml ├── show_track_all │ ├── show_track_all.lbb320.raw │ └── show_track_all.lbb320.yml ├── show_transceiver_equipment │ ├── show_transceiver_equipment.lbb140_empty.raw │ ├── show_transceiver_equipment.lbb140_empty.yml │ ├── show_transceiver_equipment.lbb150.raw │ ├── show_transceiver_equipment.lbb150.yml │ ├── show_transceiver_equipment.lbb150_empty.raw │ ├── show_transceiver_equipment.lbb150_empty.yml │ ├── show_transceiver_equipment.lbb320.raw │ └── show_transceiver_equipment.lbb320.yml ├── show_voice_dial-peer_voice_voip_all │ ├── show_voice_dial-peer_voice_voip_all.plug103.raw │ ├── show_voice_dial-peer_voice_voip_all.plug103.yml │ ├── show_voice_dial-peer_voice_voip_all.plug401.raw │ ├── show_voice_dial-peer_voice_voip_all.plug401.yml │ ├── show_voice_dial-peer_voice_voip_all_al.plug212.raw │ └── show_voice_dial-peer_voice_voip_all_al.plug212.yml ├── show_voice_mos │ ├── show_voice_mos.plug103.raw │ ├── show_voice_mos.plug103.yml │ ├── show_voice_mos.plug212.raw │ ├── show_voice_mos.plug212.yml │ ├── show_voice_mos.plug401.raw │ └── show_voice_mos.plug401.yml ├── show_voice_sip-gateway │ ├── show_voice_sip-gateway.plug103.raw │ ├── show_voice_sip-gateway.plug103.yml │ ├── show_voice_sip-gateway.plug212.raw │ ├── show_voice_sip-gateway.plug212.yml │ ├── show_voice_sip-gateway.plug401.raw │ └── show_voice_sip-gateway.plug401.yml ├── show_voice_voice-port_all │ ├── show_voice_voice-port_port_all.plug103.raw │ ├── show_voice_voice-port_port_all.plug103.yml │ ├── show_voice_voice-port_port_all.plug212.raw │ ├── show_voice_voice-port_port_all.plug212.yml │ ├── show_voice_voice-port_port_all.plug401.raw │ └── show_voice_voice-port_port_all.plug401.yml ├── show_voice_voice-port_pri_all │ ├── show_voice_voice-port_pri_all.plug103.raw │ ├── show_voice_voice-port_pri_all.plug103.yml │ ├── show_voice_voice-port_pri_all.plug212.raw │ ├── show_voice_voice-port_pri_all.plug212.yml │ ├── show_voice_voice-port_pri_all.plug401.raw │ └── show_voice_voice-port_pri_all.plug401.yml ├── show_voice_voice-port_pri_all_histo │ ├── show_voice_voice-port_pri_all_histo.plug103.raw │ ├── show_voice_voice-port_pri_all_histo.plug103.yml │ ├── show_voice_voice-port_pri_all_histo.plug212.raw │ ├── show_voice_voice-port_pri_all_histo.plug212.yml │ ├── show_voice_voice-port_pri_all_histo.plug401.raw │ └── show_voice_voice-port_pri_all_histo.plug401.yml ├── show_voice_voip-call_active_all │ ├── show_voice_voip-call_active_all.plug103.raw │ ├── show_voice_voip-call_active_all.plug103.yml │ ├── show_voice_voip-call_active_all.plug212.raw │ ├── show_voice_voip-call_active_all.plug212.yml │ ├── show_voice_voip-call_active_all.plug401.raw │ └── show_voice_voip-call_active_all.plug401.yml ├── show_voice_voip-call_any_all │ ├── show_voice_voip-call_any_all.plug103.raw │ ├── show_voice_voip-call_any_all.plug103.yml │ ├── show_voice_voip-call_any_all.plug212.raw │ ├── show_voice_voip-call_any_all.plug212.yml │ ├── show_voice_voip-call_any_all.plug401.raw │ └── show_voice_voip-call_any_all.plug401.yml └── show_vrrp_interface │ ├── show_vrrp_interface.lbb320.raw │ ├── show_vrrp_interface.lbb320.yml │ ├── show_vrrp_interface.lbb4g.raw │ └── show_vrrp_interface.lbb4g.yml ├── paloalto_panos ├── debug_swm_status │ ├── paloalto_panos_debug_swm_status.raw │ └── paloalto_panos_debug_swm_status.yml ├── request_license_info │ ├── pr-comment-provided.raw │ └── pr-comment-provided.yml ├── show_arp_all │ ├── paloalto_panos_show_arp_all.raw │ └── paloalto_panos_show_arp_all.yml ├── show_counter_global │ ├── paloalto_panos_show_counter_global.raw │ └── paloalto_panos_show_counter_global.yml ├── show_high-availability_all │ ├── paloalto_panos_show_high-availability_all.raw │ └── paloalto_panos_show_high-availability_all.yml ├── show_high-availability_path-monitoring │ ├── paloalto_panos_show_high-availability_path-monitoring.raw │ └── paloalto_panos_show_high-availability_path-monitoring.yml ├── show_interface_hardware │ ├── paloalto_panos_show_interface_hardware.raw │ ├── paloalto_panos_show_interface_hardware.yml │ ├── paloalto_panos_show_interface_hardware2.raw │ └── paloalto_panos_show_interface_hardware2.yml ├── show_interface_logical │ ├── paloalto_panos_show_interface_logical.raw │ └── paloalto_panos_show_interface_logical.yml ├── show_interface_management │ ├── show_interface_management1.raw │ └── show_interface_management1.yml ├── show_jobs_all │ ├── paloalto_panos_show_jobs_all.raw │ ├── paloalto_panos_show_jobs_all.yml │ ├── paloalto_panos_show_jobs_all2.raw │ └── paloalto_panos_show_jobs_all2.yml ├── show_mac_all │ ├── paloalto_panos_show_mac_all.raw │ └── paloalto_panos_show_mac_all.yml ├── show_routing_protocol_bgp_summary │ ├── paloalto_panos_show_routing_protocol_bgp_summary.raw │ └── paloalto_panos_show_routing_protocol_bgp_summary.yml ├── show_routing_resource │ ├── paloalto_panos_show_routing_resource.raw │ └── paloalto_panos_show_routing_resource.yml ├── show_routing_route │ ├── paloalto_panos_show_routing_route.raw │ └── paloalto_panos_show_routing_route.yml ├── show_running_nat-policy │ ├── paloalto_panos_show_running_nat-policy.raw │ ├── paloalto_panos_show_running_nat-policy.yml │ ├── paloalto_panos_show_running_nat-policy1.raw │ ├── paloalto_panos_show_running_nat-policy1.yml │ ├── paloalto_panos_show_running_nat-policy2.raw │ └── paloalto_panos_show_running_nat-policy2.yml ├── show_running_security-policy │ ├── paloalto_panos_show_running_security-policy.raw │ └── paloalto_panos_show_running_security-policy.yml ├── show_system_info │ ├── paloalto_panos_show_system_info.raw │ └── paloalto_panos_show_system_info.yml └── test_security-policy-match │ ├── paloalto_panos_test_security-policy-match.raw │ └── paloalto_panos_test_security-policy-match.yml ├── ruckus_fastiron ├── show_arp │ ├── ruckus_fastiron_show_arp.raw │ ├── ruckus_fastiron_show_arp.yml │ ├── ruckus_fastiron_show_arp1.raw │ └── ruckus_fastiron_show_arp1.yml ├── show_interfaces │ ├── show_interfaces.raw │ └── show_interfaces.yml ├── show_interfaces_brief │ ├── show_interfaces_brief.raw │ ├── show_interfaces_brief.yml │ ├── show_interfaces_brief1.raw │ └── show_interfaces_brief1.yml ├── show_mac-address │ ├── show_mac-address.raw │ ├── show_mac-address.yml │ ├── show_mac-address1.raw │ └── show_mac-address1.yml ├── show_media_validation │ ├── show_media_validation.raw │ └── show_media_validation.yml ├── show_version │ ├── show_version.raw │ └── show_version.yml └── show_vlan │ ├── show_vlan.raw │ ├── show_vlan.yml │ ├── show_vlan1.raw │ └── show_vlan1.yml ├── test_capture_group.py ├── test_development_scripts.py ├── test_index_order.py ├── test_structured_data_against_parsed_reference_files.py ├── test_tasks.py ├── test_testcases_exists.py ├── ubiquiti_edgerouter ├── show_arp │ ├── ubiquiti_edgerouter_show_arp.raw │ └── ubiquiti_edgerouter_show_arp.yml ├── show_dhcp_leases │ ├── ubiquiti_edgerouter_show_dhcp_leases.raw │ └── ubiquiti_edgerouter_show_dhcp_leases.yml ├── show_dhcpv6_server_leases │ ├── ubiquiti_edgerouter_show_dhcpv6_server_leases.raw │ └── ubiquiti_edgerouter_show_dhcpv6_server_leases.yml ├── show_interfaces │ ├── ubiquiti_edgerouter_show_interfaces.raw │ └── ubiquiti_edgerouter_show_interfaces.yml ├── show_interfaces_ethernet_physical │ ├── ubiquiti_edgerouter_show_interfaces_ethernet_physical.raw │ └── ubiquiti_edgerouter_show_interfaces_ethernet_physical.yml ├── show_ip_route │ ├── ubiquiti_edgerouter_show_ip_route.raw │ ├── ubiquiti_edgerouter_show_ip_route.yml │ ├── ubiquiti_edgerouter_show_ip_route2.raw │ └── ubiquiti_edgerouter_show_ip_route2.yml ├── show_ipv6_neighbors │ ├── ubiquiti_edgerouter_show_ipv6_neighbors.raw │ └── ubiquiti_edgerouter_show_ipv6_neighbors.yml ├── show_ipv6_route │ ├── ubiquiti_edgerouter_show_ipv6_route.raw │ └── ubiquiti_edgerouter_show_ipv6_route.yml ├── show_nat_rules │ ├── show_nat_rules.raw │ └── show_nat_rules.yml └── show_version │ ├── ubiquiti_edgerouter_show_version.raw │ └── ubiquiti_edgerouter_show_version.yml ├── ubiquiti_edgeswitch ├── show_arp │ ├── ubiquiti_edgeswitch_show_arp.raw │ └── ubiquiti_edgeswitch_show_arp.yml ├── show_version │ ├── ubiquiti_edgeswitch_show_version.raw │ ├── ubiquiti_edgeswitch_show_version.yml │ ├── ubiquiti_edgeswitch_show_version2.raw │ └── ubiquiti_edgeswitch_show_version2.yml └── show_vlan │ ├── ubiquiti_edgeswitch_show_vlan.raw │ └── ubiquiti_edgeswitch_show_vlan.yml ├── vmware_nsxv ├── show_ip_bgp_neighbors │ ├── vmware_nsxv_show_ip_bgp_neighbors.raw │ └── vmware_nsxv_show_ip_bgp_neighbors.yml └── show_ip_route │ ├── vmware_nsxv_show_ip_route.raw │ ├── vmware_nsxv_show_ip_route.yml │ ├── vmware_nsxv_show_ip_route1.raw │ ├── vmware_nsxv_show_ip_route1.yml │ ├── vmware_nsxv_show_ip_route2.raw │ └── vmware_nsxv_show_ip_route2.yml ├── vyatta_vyos ├── show_arp │ ├── vyatta_vyos_show_arp.raw │ └── vyatta_vyos_show_arp.yml ├── show_interfaces │ ├── vyatta_vyos_show_interfaces.raw │ └── vyatta_vyos_show_interfaces.yml └── show_ip_bgp_summary │ ├── vyatta_vyos_show_ip_bgp_summary.raw │ └── vyatta_vyos_show_ip_bgp_summary.yml ├── watchguard_firebox └── show_arp │ ├── watchguard_firebox_show_arp.raw │ └── watchguard_firebox_show_arp.yml ├── yamaha ├── show_environment │ ├── yamaha_show_environment.raw │ └── yamaha_show_environment.yml └── show_ip_route │ ├── yamaha_show_ip_route.raw │ └── yamaha_show_ip_route.yml ├── zte_zxros ├── show_arp │ ├── zte_zxros_show_arp.raw │ └── zte_zxros_show_arp.yml ├── show_interface │ ├── zte_zxros_show_interface.raw │ └── zte_zxros_show_interface.yml ├── show_interface_brief │ ├── zte_zxros_show_interface_brief.raw │ └── zte_zxros_show_interface_brief.yml ├── show_isis_adjacency │ ├── zte_zxros_show_isis_adjacency.raw │ └── zte_zxros_show_isis_adjacency.yml ├── show_mpls_traffic-eng_tunnels │ ├── zte_zxros_show_mpls_traffic-eng_tunnels.raw │ └── zte_zxros_show_mpls_traffic-eng_tunnels.yml └── show_version │ ├── zte_zxros_show_version.raw │ └── zte_zxros_show_version.yml └── zyxel_os ├── cfg_firewall_acl_get ├── zyxel_os_cfg_firewall_acl_get.raw ├── zyxel_os_cfg_firewall_acl_get.yml ├── zyxel_os_cfg_firewall_acl_get2.raw └── zyxel_os_cfg_firewall_acl_get2.yml ├── cfg_intf_group_get ├── zyxel_os_cfg_intf_group_get.raw └── zyxel_os_cfg_intf_group_get.yml ├── cfg_ipalias_get ├── zyxel_os_cfg_ipalias_get.raw └── zyxel_os_cfg_ipalias_get.yml ├── cfg_lan_get ├── zyxel_os_cfg_lan_get.raw └── zyxel_os_cfg_lan_get.yml ├── cfg_lan_get_--Name_name ├── zyxel_os_cfg_lan_get_name.raw └── zyxel_os_cfg_lan_get_name.yml ├── cfg_lanhosts_get ├── zyxel_os_cfg_lanhosts_get.raw └── zyxel_os_cfg_lanhosts_get.yml ├── cfg_nat_addr_map_get ├── zyxel_os_cfg_nat_addr_map_get.raw └── zyxel_os_cfg_nat_addr_map_get.yml ├── cfg_nat_get ├── zyxel_os_cfg_nat_get.raw └── zyxel_os_cfg_nat_get.yml ├── cfg_snmp_get ├── zyxel_os_cfg_snmp_get.raw └── zyxel_os_cfg_snmp_get.yml ├── cfg_static_dhcp_get ├── zyxel_os_cfg_static_dhcp_get.raw └── zyxel_os_cfg_static_dhcp_get.yml ├── cfg_static_route_get ├── zyxel_os_cfg_static_route_get.raw └── zyxel_os_cfg_static_route_get.yml ├── cfg_wlan_get ├── zyxel_os_cfg_wlan_get.raw └── zyxel_os_cfg_wlan_get.yml ├── sys_atsh ├── zyxel_os_sys_atsh_1.raw ├── zyxel_os_sys_atsh_1.yml ├── zyxel_os_sys_atsh_2.raw ├── zyxel_os_sys_atsh_2.yml ├── zyxel_os_sys_atsh_3.raw ├── zyxel_os_sys_atsh_3.yml ├── zyxel_os_sys_atsh_4.raw └── zyxel_os_sys_atsh_4.yml └── zycli_Ethctl_media-type ├── zyxel_os_zycli_Ethctl_media-type.raw └── zyxel_os_zycli_Ethctl_media-type.yml /.bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.bandit.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.pydocstyle.ini -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.vale.ini -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.yamllint -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/README.md -------------------------------------------------------------------------------- /changes_for_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/changes_for_4.md -------------------------------------------------------------------------------- /changes_for_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/changes_for_5.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/cli.py -------------------------------------------------------------------------------- /docs/admin/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/install.md -------------------------------------------------------------------------------- /docs/admin/release_notes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/index.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_0.9.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.1.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.2.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.3.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.4.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.5.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.6.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_1.7.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_2.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_2.1.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_2.2.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_2.3.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.1.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.2.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.3.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.4.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_3.5.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_4.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_4.1.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_4.2.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_4.3.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_4.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_4.4.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_5.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_6.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.1.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.2.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.3.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.4.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.5.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.6.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.7.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.8.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_7.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_7.9.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_8.0.md -------------------------------------------------------------------------------- /docs/admin/release_notes/version_8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/release_notes/version_8.1.md -------------------------------------------------------------------------------- /docs/admin/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/uninstall.md -------------------------------------------------------------------------------- /docs/admin/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/admin/upgrade.md -------------------------------------------------------------------------------- /docs/assets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/extra.css -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/networktocode_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/networktocode_bw.png -------------------------------------------------------------------------------- /docs/assets/networktocode_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/networktocode_logo.png -------------------------------------------------------------------------------- /docs/assets/networktocode_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/networktocode_logo.svg -------------------------------------------------------------------------------- /docs/assets/overrides/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/assets/overrides/partials/copyright.html -------------------------------------------------------------------------------- /docs/dev/code_reference/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/code_reference/parse.md -------------------------------------------------------------------------------- /docs/dev/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/contributing.md -------------------------------------------------------------------------------- /docs/dev/data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/data_model.md -------------------------------------------------------------------------------- /docs/dev/dev_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/dev_environment.md -------------------------------------------------------------------------------- /docs/dev/dev_parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/dev_parser.md -------------------------------------------------------------------------------- /docs/dev/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/dev/extending.md -------------------------------------------------------------------------------- /docs/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/icon-ntc-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/images/icon-ntc-templates.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/user/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/user/faq.md -------------------------------------------------------------------------------- /docs/user/lib_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/user/lib_getting_started.md -------------------------------------------------------------------------------- /docs/user/lib_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/user/lib_overview.md -------------------------------------------------------------------------------- /docs/user/lib_use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/docs/user/lib_use_cases.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /ntc_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/__init__.py -------------------------------------------------------------------------------- /ntc_templates/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/parse.py -------------------------------------------------------------------------------- /ntc_templates/templates/alcatel_aos_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/alcatel_aos_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/alcatel_aos_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/alcatel_aos_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/alcatel_sros_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/alcatel_sros_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/alcatel_sros_show_lag.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/alcatel_sros_show_lag.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/alcatel_sros_show_port.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/alcatel_sros_show_port.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_bash_df_-h.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_bash_df_-h.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_clock.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_clock.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_ip_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_ip_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_ip_bgp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_ip_bgp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_mlag.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_mlag.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_module.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_module.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/arista_eos_show_vrf.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/arista_eos_show_vrf.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_aoscx_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_aoscx_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_aoscx_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_aoscx_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_os_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_os_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_os_show_hostname.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_os_show_hostname.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_os_show_inventory.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_os_show_inventory.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_os_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_os_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/aruba_os_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/aruba_os_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/avaya_ers_show_mlt.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/avaya_ers_show_mlt.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/avaya_ers_show_sys-info.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/avaya_ers_show_sys-info.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/avaya_ers_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/avaya_ers_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/avaya_vsp_show_software.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/avaya_vsp_show_software.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/bogus_for_testing.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/bogus_for_testing.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/checkpoint_gaia_fw_stat.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/checkpoint_gaia_fw_stat.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/ciena_saos_port_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/ciena_saos_port_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/ciena_saos_rstp_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/ciena_saos_rstp_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/ciena_saos_vlan_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/ciena_saos_vlan_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_asp_drop.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_asp_drop.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_failover.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_failover.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_logging.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_logging.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_module.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_module.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_name.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_name.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_nat.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_nat.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_route.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_route.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_asa_show_xlate.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_asa_show_xlate.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_aliases.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_aliases.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_archive.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_archive.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_boot.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_boot.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_clock.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_clock.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_cts_pacs.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_cts_pacs.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_dmvpn.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_dmvpn.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_ip_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_ip_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_ip_bgp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_ip_bgp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_ip_cef.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_ip_cef.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_ip_route.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_ip_route.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_license.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_license.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_logging.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_logging.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_module.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_module.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_nve_vni.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_nve_vni.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_platform.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_platform.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_standby.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_standby.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_tacacs.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_tacacs.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_users.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_users.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_vlans.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_vlans.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_vrf.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_vrf.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_show_vrrp_all.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_show_vrrp_all.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_ios_traceroute.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_ios_traceroute.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nvfis_show_nic.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nvfis_show_nic.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_clock.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_clock.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_feature.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_feature.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_fex.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_fex.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_fex_id.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_fex_id.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_ip_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_ip_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_ip_bgp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_ip_bgp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_module.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_module.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_nve_vni.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_nve_vni.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_vdc.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_vdc.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_vpc.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_vpc.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_nxos_show_vrf.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_nxos_show_vrf.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_s300_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_s300_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_s300_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_s300_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_s300_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_s300_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_viptela_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_viptela_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_wlc_ssh_show_boot.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_wlc_ssh_show_boot.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_wlc_ssh_show_time.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_wlc_ssh_show_time.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_admin_show_vm.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_admin_show_vm.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_show_bgp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_show_bgp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_show_hsrp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_show_hsrp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_show_ip_route.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_show_ip_route.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/cisco_xr_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/cisco_xr_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/dell_force10_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/dell_force10_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/dell_force10_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/dell_force10_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/dlink_ds_show_arpentry.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/dlink_ds_show_arpentry.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/edgecore_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/edgecore_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/edgecore_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/edgecore_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/edgecore_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/edgecore_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/eltex_show_interface.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/eltex_show_interface.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/eltex_show_ip_interface.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/eltex_show_ip_interface.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/eltex_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/eltex_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/eltex_show_system_id.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/eltex_show_system_id.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/eltex_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/eltex_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/ericsson_ipos_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/ericsson_ipos_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/extreme_exos_show_fdb.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/extreme_exos_show_fdb.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/extreme_exos_show_iparp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/extreme_exos_show_iparp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fortinet_execute_date.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fortinet_execute_date.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fortinet_execute_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fortinet_execute_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fortinet_execute_time.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fortinet_execute_time.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fortinet_get_system_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fortinet_get_system_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fsas_sir_show_ether.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fsas_sir_show_ether.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fsas_sir_show_ip_route.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fsas_sir_show_ip_route.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/fsas_sir_show_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/fsas_sir_show_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_comware_display_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_comware_display_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_procurve_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_procurve_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_procurve_show_ip.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_procurve_show_ip.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_procurve_show_system.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_procurve_show_system.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_procurve_show_trunks.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_procurve_show_trunks.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/hp_procurve_show_vlans.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/hp_procurve_show_vlans.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/huawei_ont_display_sn.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/huawei_ont_display_sn.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/huawei_smartax_ont_add.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/huawei_smartax_ont_add.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/huawei_vrp_dir.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/huawei_vrp_dir.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/huawei_vrp_display_vlan.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/huawei_vrp_display_vlan.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/index -------------------------------------------------------------------------------- /ntc_templates/templates/linux_arp_-a.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_arp_-a.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_bluetoothctl_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_bluetoothctl_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_dmidecode_-t_bios.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_dmidecode_-t_bios.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_ip_address_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_ip_address_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_ip_link_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_ip_link_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_ip_route_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_ip_route_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_ip_vrf_show.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_ip_vrf_show.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_iwconfig.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_iwconfig.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_pct_config_1.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_pct_config_1.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_pct_list.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_pct_list.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_pveversion.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_pveversion.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_qm_config_1.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_qm_config_1.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_qm_list.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_qm_list.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_top.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_top.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/linux_vzlist.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/linux_vzlist.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/mikrotik_routeros_ping.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/mikrotik_routeros_ping.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/oneaccess_oneos_ls.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/oneaccess_oneos_ls.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/vyatta_vyos_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/vyatta_vyos_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/yamaha_show_environment.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/yamaha_show_environment.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/yamaha_show_ip_route.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/yamaha_show_ip_route.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zte_zxros_show_arp.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zte_zxros_show_arp.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zte_zxros_show_version.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zte_zxros_show_version.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zyxel_os_cfg_lan_get.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zyxel_os_cfg_lan_get.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zyxel_os_cfg_nat_get.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zyxel_os_cfg_nat_get.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zyxel_os_cfg_snmp_get.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zyxel_os_cfg_snmp_get.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zyxel_os_cfg_wlan_get.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zyxel_os_cfg_wlan_get.textfsm -------------------------------------------------------------------------------- /ntc_templates/templates/zyxel_os_sys_atsh.textfsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/ntc_templates/templates/zyxel_os_sys_atsh.textfsm -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/alcatel_aos/show_port-security/alcatel_aos_show_port-security_3.raw: -------------------------------------------------------------------------------- 1 | No Port Security is configured in the system. 2 | 3 | -------------------------------------------------------------------------------- /tests/alcatel_aos/show_port-security/alcatel_aos_show_port-security_3.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_bounce.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_bounce.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_bounce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_bounce.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_fail.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_fail.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_bounce.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_bounce.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_bounce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_bounce.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_duplicate.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_duplicate.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_duplicate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_duplicate.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_fail.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_rapid_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_rapid_fail.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_source_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_source_fail.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/ping/ping_source_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/ping/ping_source_fail.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag/show_lag.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag/show_lag.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag/show_lag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag/show_lag.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag_port/show_lag_port.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag_port/show_lag_port.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag_port/show_lag_port.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag_port/show_lag_port.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag_port/show_lag_port_r22.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag_port/show_lag_port_r22.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/show_lag_port/show_lag_port_r22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_lag_port/show_lag_port_r22.yml -------------------------------------------------------------------------------- /tests/alcatel_sros/show_port/show_port.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_port/show_port.raw -------------------------------------------------------------------------------- /tests/alcatel_sros/show_port/show_port.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/alcatel_sros/show_port/show_port.yml -------------------------------------------------------------------------------- /tests/arista_eos/bash_df_-h/arista_eos_bash_df_-h.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/bash_df_-h/arista_eos_bash_df_-h.raw -------------------------------------------------------------------------------- /tests/arista_eos/bash_df_-h/arista_eos_bash_df_-h.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/bash_df_-h/arista_eos_bash_df_-h.yml -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_flash.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_flash.raw -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_flash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_flash.yml -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_recur_all.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_recur_all.raw -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_recur_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_recur_all.yml -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_system_nodate.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_system_nodate.raw -------------------------------------------------------------------------------- /tests/arista_eos/dir/arista_eos_dir_system_nodate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/dir/arista_eos_dir_system_nodate.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_boot-config/arista_eos_show_boot-config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - version: "flash:/EOS-2.2.0.swi" 4 | console: "(not set)" 5 | -------------------------------------------------------------------------------- /tests/arista_eos/show_clock/arista_eos_show_clock.raw: -------------------------------------------------------------------------------- 1 | Mon Jan 14 18:42:49 2013 2 | timezone is US/Central 3 | 4 | -------------------------------------------------------------------------------- /tests/arista_eos/show_clock/arista_eos_show_clock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_clock/arista_eos_show_clock.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_environment_power/arista_eos_show_environment_power4.raw: -------------------------------------------------------------------------------- 1 | % There seem to be no power supplies connected. 2 | -------------------------------------------------------------------------------- /tests/arista_eos/show_ip_arp/arista_eos_show_ip_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_ip_arp/arista_eos_show_ip_arp.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_ip_arp/arista_eos_show_ip_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_ip_arp/arista_eos_show_ip_arp.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_ip_bgp/arista_eos_show_ip_bgp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_ip_bgp/arista_eos_show_ip_bgp.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_ip_bgp/arista_eos_show_ip_bgp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_ip_bgp/arista_eos_show_ip_bgp.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_mlag/arista_eos_show_mlag.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_mlag/arista_eos_show_mlag.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_mlag/arista_eos_show_mlag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_mlag/arista_eos_show_mlag.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_port-channel_summary/arista_eos_show_port-channel_summary_none.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/arista_eos/show_vlan/arista_eos_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vlan/arista_eos_show_vlan.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_vlan/arista_eos_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vlan/arista_eos_show_vlan.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf-no-rd.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf-no-rd.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf-no-rd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf-no-rd.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf_2.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf_2.yml -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf_3.raw -------------------------------------------------------------------------------- /tests/arista_eos/show_vrf/arista_eos_show_vrf_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/arista_eos/show_vrf/arista_eos_show_vrf_3.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface1.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface1.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface2.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_interface/show_interface2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_interface/show_interface2.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system2.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system2.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system3.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system3.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system4.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system4.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system5.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_system/show_system5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_system/show_system5.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vlan/show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vlan/show_vlan.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vlan/show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vlan/show_vlan.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vsf_detail/show_vsf_detail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vsf_detail/show_vsf_detail.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vsf_detail/show_vsf_detail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vsf_detail/show_vsf_detail.yml -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vsf_detail/show_vsf_detail2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vsf_detail/show_vsf_detail2.raw -------------------------------------------------------------------------------- /tests/aruba_aoscx/show_vsf_detail/show_vsf_detail2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_aoscx/show_vsf_detail/show_vsf_detail2.yml -------------------------------------------------------------------------------- /tests/aruba_os/show_arp/aruba_os_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_arp/aruba_os_show_arp.raw -------------------------------------------------------------------------------- /tests/aruba_os/show_arp/aruba_os_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_arp/aruba_os_show_arp.yml -------------------------------------------------------------------------------- /tests/aruba_os/show_hostname/aruba_os_show_hostname.raw: -------------------------------------------------------------------------------- 1 | 2 | Hostname is WLC-AMC72-LAB01 -------------------------------------------------------------------------------- /tests/aruba_os/show_hostname/aruba_os_show_hostname.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - hostname: "WLC-AMC72-LAB01" 4 | -------------------------------------------------------------------------------- /tests/aruba_os/show_version/aruba_os_show_version.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_version/aruba_os_show_version.raw -------------------------------------------------------------------------------- /tests/aruba_os/show_version/aruba_os_show_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_version/aruba_os_show_version.yml -------------------------------------------------------------------------------- /tests/aruba_os/show_vlan/aruba_os_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_vlan/aruba_os_show_vlan.raw -------------------------------------------------------------------------------- /tests/aruba_os/show_vlan/aruba_os_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/aruba_os/show_vlan/aruba_os_show_vlan.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt1.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt1.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt2.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt2.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt3.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt3.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4800.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4800.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4800.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4800.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4900.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4900.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4900.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_4900.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_7000.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_7000.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_mlt/avaya_ers_show_mlt_7000.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_mlt/avaya_ers_show_mlt_7000.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_vlan/avaya_ers_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_vlan/avaya_ers_show_vlan.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_vlan/avaya_ers_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_vlan/avaya_ers_show_vlan.yml -------------------------------------------------------------------------------- /tests/avaya_ers/show_vlan/avaya_ers_show_vlan1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_vlan/avaya_ers_show_vlan1.raw -------------------------------------------------------------------------------- /tests/avaya_ers/show_vlan/avaya_ers_show_vlan1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/avaya_ers/show_vlan/avaya_ers_show_vlan1.yml -------------------------------------------------------------------------------- /tests/checkpoint_gaia/show_domainname/checkpoint_gaia_show_domainname.raw: -------------------------------------------------------------------------------- 1 | Domain name example.com 2 | -------------------------------------------------------------------------------- /tests/checkpoint_gaia/show_lom/checkpoint_gaia_show_lom.raw: -------------------------------------------------------------------------------- 1 | Firmware Revision : 2.2 2 | IP Address : 192.168.0.100 3 | -------------------------------------------------------------------------------- /tests/ciena_saos/port_show/ciena_saos_port_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/port_show/ciena_saos_port_show.raw -------------------------------------------------------------------------------- /tests/ciena_saos/port_show/ciena_saos_port_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/port_show/ciena_saos_port_show.yml -------------------------------------------------------------------------------- /tests/ciena_saos/rstp_show/ciena_saos_rstp_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/rstp_show/ciena_saos_rstp_show.raw -------------------------------------------------------------------------------- /tests/ciena_saos/rstp_show/ciena_saos_rstp_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/rstp_show/ciena_saos_rstp_show.yml -------------------------------------------------------------------------------- /tests/ciena_saos/vlan_show/ciena_saos_vlan_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/vlan_show/ciena_saos_vlan_show.raw -------------------------------------------------------------------------------- /tests/ciena_saos/vlan_show/ciena_saos_vlan_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/vlan_show/ciena_saos_vlan_show.yml -------------------------------------------------------------------------------- /tests/ciena_saos/vlan_show/ciena_saos_vlan_show2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/vlan_show/ciena_saos_vlan_show2.raw -------------------------------------------------------------------------------- /tests/ciena_saos/vlan_show/ciena_saos_vlan_show2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ciena_saos/vlan_show/ciena_saos_vlan_show2.yml -------------------------------------------------------------------------------- /tests/cisco_asa/dir/cisco_asa_dir.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/dir/cisco_asa_dir.raw -------------------------------------------------------------------------------- /tests/cisco_asa/dir/cisco_asa_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/dir/cisco_asa_dir.yml -------------------------------------------------------------------------------- /tests/cisco_asa/dir/cisco_asa_dir2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/dir/cisco_asa_dir2.raw -------------------------------------------------------------------------------- /tests/cisco_asa/dir/cisco_asa_dir2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/dir/cisco_asa_dir2.yml -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping.raw -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping.yml -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_mix.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_mix.raw -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_mix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_mix.yml -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_quench.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_quench.raw -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_quench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_quench.yml -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_unreachable.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_unreachable.raw -------------------------------------------------------------------------------- /tests/cisco_asa/ping/cisco_asa_ping_unreachable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/ping/cisco_asa_ping_unreachable.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_arp/cisco_asa_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_arp/cisco_asa_show_arp.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_arp/cisco_asa_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_arp/cisco_asa_show_arp.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_name/cisco_asa_show_name.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_name/cisco_asa_show_name.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_name/cisco_asa_show_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_name/cisco_asa_show_name.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_nat/cisco_asa_show_nat.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_nat/cisco_asa_show_nat.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_nat/cisco_asa_show_nat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_nat/cisco_asa_show_nat.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_route/cisc_asa_show_route_vpn.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_route/cisc_asa_show_route_vpn.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_route/cisc_asa_show_route_vpn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_route/cisc_asa_show_route_vpn.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_route/cisco_asa_show_route.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_route/cisco_asa_show_route.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_route/cisco_asa_show_route.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_route/cisco_asa_show_route.yml -------------------------------------------------------------------------------- /tests/cisco_asa/show_xlate/cisco_asa_show_xlate.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_xlate/cisco_asa_show_xlate.raw -------------------------------------------------------------------------------- /tests/cisco_asa/show_xlate/cisco_asa_show_xlate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_asa/show_xlate/cisco_asa_show_xlate.yml -------------------------------------------------------------------------------- /tests/cisco_ftd/ping/cisco_ftd_ping.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ftd/ping/cisco_ftd_ping.raw -------------------------------------------------------------------------------- /tests/cisco_ftd/ping/cisco_ftd_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ftd/ping/cisco_ftd_ping.yml -------------------------------------------------------------------------------- /tests/cisco_ftd/show_arp/cisco_ftd_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ftd/show_arp/cisco_ftd_show_arp.raw -------------------------------------------------------------------------------- /tests/cisco_ftd/show_arp/cisco_ftd_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ftd/show_arp/cisco_ftd_show_arp.yml -------------------------------------------------------------------------------- /tests/cisco_ios/dir/cisco_ios_dir.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/dir/cisco_ios_dir.raw -------------------------------------------------------------------------------- /tests/cisco_ios/dir/cisco_ios_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/dir/cisco_ios_dir.yml -------------------------------------------------------------------------------- /tests/cisco_ios/dir/cisco_ios_dir_no_files.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/dir/cisco_ios_dir_no_files.raw -------------------------------------------------------------------------------- /tests/cisco_ios/dir/cisco_ios_dir_no_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/dir/cisco_ios_dir_no_files.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_200.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_200.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_200.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_200.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_df.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_df.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_df.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_df.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_df_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_df_fail.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_df_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_df_fail.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_fail.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_fail.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_mix.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_mix.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_mix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_mix.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_quench.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_quench.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_quench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_quench.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_df.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_df.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_df.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_df.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_df_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_df_fail.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_df_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_df_fail.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_fail.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_source_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_source_fail.yml -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_unreachable.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_unreachable.raw -------------------------------------------------------------------------------- /tests/cisco_ios/ping/cisco_ios_ping_unreachable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/ping/cisco_ios_ping_unreachable.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_adjacency/show_adjacency_short.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_adjacency/show_adjacency_short.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_adjacency/show_adjacency_short.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_adjacency/show_adjacency_short.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_aliases/cisco_ios_show_aliases.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_aliases/cisco_ios_show_aliases.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_aliases/cisco_ios_show_aliases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_aliases/cisco_ios_show_aliases.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_archive/cisco_ios_show_archive.raw: -------------------------------------------------------------------------------- 1 | Archive feature not enabled -------------------------------------------------------------------------------- /tests/cisco_ios/show_archive/cisco_ios_show_archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_archive/cisco_ios_show_archive.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_arp/cisco_ios_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_arp/cisco_ios_show_arp.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_arp/cisco_ios_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_arp/cisco_ios_show_arp.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_boot/cisco_ios_show_boot.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_boot/cisco_ios_show_boot.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_boot/cisco_ios_show_boot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_boot/cisco_ios_show_boot.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_boot/cisco_ios_show_boot2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_boot/cisco_ios_show_boot2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_boot/cisco_ios_show_boot2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_boot/cisco_ios_show_boot2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_clock/cisco_ios_show_clock.raw: -------------------------------------------------------------------------------- 1 | *18:57:38.347 UTC Mon Oct 19 2015 2 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_clock/cisco_ios_show_clock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_clock/cisco_ios_show_clock.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_clock/cisco_ios_show_clock_2.raw: -------------------------------------------------------------------------------- 1 | .18:57:38.347 UTC Mon Oct 19 2015 2 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_clock/cisco_ios_show_clock_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_clock/cisco_ios_show_clock_2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_cts_credentials/cisco_ios_show_cts_credentials.raw: -------------------------------------------------------------------------------- 1 | No CTS credentials exist. -------------------------------------------------------------------------------- /tests/cisco_ios/show_cts_pacs/cisco_ios_show_cts_pacs_2.raw: -------------------------------------------------------------------------------- 1 | No PACs found in the key store. 2 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_dmvpn/cisco_ios_show_dmvpn.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_dmvpn/cisco_ios_show_dmvpn.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_dmvpn/cisco_ios_show_dmvpn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_dmvpn/cisco_ios_show_dmvpn.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_file_systems/show_file_systems.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_file_systems/show_file_systems.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_file_systems/show_file_systems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_file_systems/show_file_systems.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_arp/cisco_ios_show_ip_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_arp/cisco_ios_show_ip_arp.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_arp/cisco_ios_show_ip_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_arp/cisco_ios_show_ip_arp.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp3.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp3.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp4.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp4.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp5.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp5.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp6.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_bgp/cisco_ios_show_ip_bgp6.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2800_v2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2900_v1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2900_v1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c2900_v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c2900_v1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3750.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3750.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3750.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3750.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_ip_cef/show_ip_cef_c3850_v2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_disabled.raw: -------------------------------------------------------------------------------- 1 | %IPv4 CEF not running -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_cef/show_ip_cef_disabled.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_mroute/cisco_ios_show_ip_mroute2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_ip_vrf_interfaces/cisco_ios_show_ip_vrf_interfaces_empty.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_license/cisco_ios_show_license.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_license/cisco_ios_show_license.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_license/cisco_ios_show_license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_license/cisco_ios_show_license.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module3.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module3.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module4.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module4.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module5.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_module/cisco_ios_show_module5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_module/cisco_ios_show_module5.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_nve_vni/cisco_ios_show_nve_vni.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_nve_vni/cisco_ios_show_nve_vni.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_nve_vni/cisco_ios_show_nve_vni.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_nve_vni/cisco_ios_show_nve_vni.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_power_inline/cisco_ios_show_power_inline_6807-XL.raw: -------------------------------------------------------------------------------- 1 | %No inline power card on switch 2 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_power_inline/cisco_ios_show_power_inline_6807-XL.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_power_inline/cisco_ios_show_power_inline_6880-X.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_ios/show_standby/cisco_ios_show_standby.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_standby/cisco_ios_show_standby.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_standby/cisco_ios_show_standby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_standby/cisco_ios_show_standby.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_tacacs/cisco_ios_show_tacacs.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_tacacs/cisco_ios_show_tacacs.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_tacacs/cisco_ios_show_tacacs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_tacacs/cisco_ios_show_tacacs.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_users/cisco_ios_show_users.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_users/cisco_ios_show_users.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_users/cisco_ios_show_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_users/cisco_ios_show_users.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_users/cisco_ios_show_users_all.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_users/cisco_ios_show_users_all.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_users/cisco_ios_show_users_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_users/cisco_ios_show_users_all.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_version/cisco_ios_show_version.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_version/cisco_ios_show_version.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_version/cisco_ios_show_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_version/cisco_ios_show_version.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlan/cisco_ios_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlan/cisco_ios_show_vlan.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlan/cisco_ios_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlan/cisco_ios_show_vlan.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_01.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_01.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_01.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_02.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_02.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_02.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_03.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_03.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_03.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_04.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_04.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_04.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_05.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_05.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_05.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_05.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_06.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_06.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_06.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_06.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_07.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_07.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_07.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_07.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_08.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_08.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_08.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_08.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_09.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_09.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vlans/cisco_ios_show_vlans_09.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vlans/cisco_ios_show_vlans_09.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf01.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf01.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf01.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf02.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf02.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf02.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf3.raw -------------------------------------------------------------------------------- /tests/cisco_ios/show_vrf/cisco_ios_show_vrf3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/show_vrf/cisco_ios_show_vrf3.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_1.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_1.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_2.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_2.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_3.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_3.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_4.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_4.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_5.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_5.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_6.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_6.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_dns.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_dns.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_dns.yml -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_ip.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_ip.raw -------------------------------------------------------------------------------- /tests/cisco_ios/traceroute/cisco_ios_traceroute_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_ios/traceroute/cisco_ios_traceroute_ip.yml -------------------------------------------------------------------------------- /tests/cisco_nvfis/show_nic/cisco_nvfis_show_nic.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nvfis/show_nic/cisco_nvfis_show_nic.raw -------------------------------------------------------------------------------- /tests/cisco_nvfis/show_nic/cisco_nvfis_show_nic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nvfis/show_nic/cisco_nvfis_show_nic.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/dir/cisco_nxos_dir_01.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/dir/cisco_nxos_dir_01.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/dir/cisco_nxos_dir_01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/dir/cisco_nxos_dir_01.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/dir/cisco_nxos_dir_02.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/dir/cisco_nxos_dir_02.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/dir/cisco_nxos_dir_02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/dir/cisco_nxos_dir_02.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_clock/cisco_nxos_show_clock.raw: -------------------------------------------------------------------------------- 1 | 18:57:38.347 UTC Mon Oct 19 2015 2 | -------------------------------------------------------------------------------- /tests/cisco_nxos/show_clock/cisco_nxos_show_clock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_clock/cisco_nxos_show_clock.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_fex/cisco_nxos_show_fex.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_fex/cisco_nxos_show_fex.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_fex/cisco_nxos_show_fex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_fex/cisco_nxos_show_fex.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_fex_id/cisco_nxos_show_fex_id.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_fex_id/cisco_nxos_show_fex_id.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_hostname/cisco_nxos_show_hostname.raw: -------------------------------------------------------------------------------- 1 | n9k1 2 | -------------------------------------------------------------------------------- /tests/cisco_nxos/show_hostname/cisco_nxos_show_hostname.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - hostname: "n9k1" 4 | -------------------------------------------------------------------------------- /tests/cisco_nxos/show_ip_pim_neighbor_vrf_all/cisco_nxos_show_ip_pim_neighbor_vrf_all1.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vdc/cisco_nxos_show_vdc.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vdc/cisco_nxos_show_vdc.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vdc/cisco_nxos_show_vdc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vdc/cisco_nxos_show_vdc.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan2.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vlan/cisco_nxos_show_vlan2.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vpc/cisco_nxos_show_vpc.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vpc/cisco_nxos_show_vpc.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vpc/cisco_nxos_show_vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vpc/cisco_nxos_show_vpc.yml -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vrf/cisco_nxos_show_vrf.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vrf/cisco_nxos_show_vrf.raw -------------------------------------------------------------------------------- /tests/cisco_nxos/show_vrf/cisco_nxos_show_vrf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_nxos/show_vrf/cisco_nxos_show_vrf.yml -------------------------------------------------------------------------------- /tests/cisco_s300/show_system_id/cisco_s300_show_system_id.raw: -------------------------------------------------------------------------------- 1 | Serial number : IDN123456AA 2 | -------------------------------------------------------------------------------- /tests/cisco_s300/show_system_id/cisco_s300_show_system_id.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - serial_number: "IDN123456AA" 4 | -------------------------------------------------------------------------------- /tests/cisco_xr/dir/cisco_xr_dir_01.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/dir/cisco_xr_dir_01.raw -------------------------------------------------------------------------------- /tests/cisco_xr/dir/cisco_xr_dir_01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/dir/cisco_xr_dir_01.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_fail.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_fail.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_fail.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_mix.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_mix.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_mix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_mix.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_nocomma.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_nocomma.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_nocomma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_nocomma.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_quench.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_quench.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_quench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_quench.yml -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_unreachable.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_unreachable.raw -------------------------------------------------------------------------------- /tests/cisco_xr/ping/cisco_xr_ping_unreachable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/ping/cisco_xr_ping_unreachable.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_arp/cisco_xr_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_arp/cisco_xr_show_arp.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_arp/cisco_xr_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_arp/cisco_xr_show_arp.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_arp/cisco_xr_show_arp2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_arp/cisco_xr_show_arp2.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_arp/cisco_xr_show_arp2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_arp/cisco_xr_show_arp2.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_bgp/cisco_xr_show_bgp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_bgp/cisco_xr_show_bgp.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_bgp/cisco_xr_show_bgp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_bgp/cisco_xr_show_bgp.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_bgp/cisco_xr_show_bgp2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_bgp/cisco_xr_show_bgp2.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_bgp/cisco_xr_show_bgp2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_bgp/cisco_xr_show_bgp2.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp2.raw -------------------------------------------------------------------------------- /tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/cisco_xr/show_hsrp/cisco_xr_show_hsrp2.yml -------------------------------------------------------------------------------- /tests/cisco_xr/show_running-config_hostname/cisco_xr_show_run_hostname.raw: -------------------------------------------------------------------------------- 1 | Thu Aug 29 16:30:30.674 CDT 2 | hostname rtr-01 3 | -------------------------------------------------------------------------------- /tests/cisco_xr/show_running-config_hostname/cisco_xr_show_run_hostname.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - hostname: "rtr-01" 4 | -------------------------------------------------------------------------------- /tests/cisco_xr/show_running-config_hostname/cisco_xr_show_run_hostname1.raw: -------------------------------------------------------------------------------- 1 | Fri Apr 4 15:15:54.223 UTC 2 | hostname NCS5011-LAB 3 | -------------------------------------------------------------------------------- /tests/cisco_xr/show_running-config_hostname/cisco_xr_show_run_hostname1.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - hostname: "NCS5011-LAB" 4 | -------------------------------------------------------------------------------- /tests/edgecore/show_system/edgecore_show_system.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/edgecore/show_system/edgecore_show_system.raw -------------------------------------------------------------------------------- /tests/edgecore/show_system/edgecore_show_system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/edgecore/show_system/edgecore_show_system.yml -------------------------------------------------------------------------------- /tests/edgecore/show_vlan/edgecore_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/edgecore/show_vlan/edgecore_show_vlan.raw -------------------------------------------------------------------------------- /tests/edgecore/show_vlan/edgecore_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/edgecore/show_vlan/edgecore_show_vlan.yml -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_1.raw -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_1.yml -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_2.raw -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_2.yml -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_3.raw -------------------------------------------------------------------------------- /tests/eltex/show_interface/show_interface_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_interface/show_interface_3.yml -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_1.raw -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_1.yml -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_2.raw -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_2.yml -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_3.raw -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_3.yml -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_4.raw -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_4.yml -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_5.raw -------------------------------------------------------------------------------- /tests/eltex/show_system/show_system_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system/show_system_5.yml -------------------------------------------------------------------------------- /tests/eltex/show_system_id/show_system_id_1.raw: -------------------------------------------------------------------------------- 1 | Serial number : ES12345678 2 | -------------------------------------------------------------------------------- /tests/eltex/show_system_id/show_system_id_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system_id/show_system_id_1.yml -------------------------------------------------------------------------------- /tests/eltex/show_system_id/show_system_id_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system_id/show_system_id_2.raw -------------------------------------------------------------------------------- /tests/eltex/show_system_id/show_system_id_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_system_id/show_system_id_2.yml -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_1.raw -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_1.yml -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_2.raw -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_2.yml -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_3.raw -------------------------------------------------------------------------------- /tests/eltex/show_vlan/show_vlan_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/eltex/show_vlan/show_vlan_3.yml -------------------------------------------------------------------------------- /tests/extreme_slxos/show_clock/extreme_slxos_show_clock_data.raw: -------------------------------------------------------------------------------- 1 | 2024-10-14 16:33:35 Europe/Zurich 2 | -------------------------------------------------------------------------------- /tests/fortinet/execute_date/fortinet_execute_date.raw: -------------------------------------------------------------------------------- 1 | current date is: 2023-08-07 2 | -------------------------------------------------------------------------------- /tests/fortinet/execute_time/fortinet_execute_time.raw: -------------------------------------------------------------------------------- 1 | current time is: 21:05:34 2 | last ntp sync: never 3 | -------------------------------------------------------------------------------- /tests/fortinet/get_router_info_bgp_neighbors/fortinet_get_router_info_bgp_neighbors_empty.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fortinet/get_router_info_bgp_neighbors/fortinet_get_router_info_bgp_neighbors_empty.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/fsas_sir/show_ether/fsas_sir_show_ether.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_ether/fsas_sir_show_ether.raw -------------------------------------------------------------------------------- /tests/fsas_sir/show_ether/fsas_sir_show_ether.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_ether/fsas_sir_show_ether.yml -------------------------------------------------------------------------------- /tests/fsas_sir/show_ether/fsas_sir_show_ether2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_ether/fsas_sir_show_ether2.raw -------------------------------------------------------------------------------- /tests/fsas_sir/show_ether/fsas_sir_show_ether2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_ether/fsas_sir_show_ether2.yml -------------------------------------------------------------------------------- /tests/fsas_sir/show_vlan/fsas_sir_show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_vlan/fsas_sir_show_vlan.raw -------------------------------------------------------------------------------- /tests/fsas_sir/show_vlan/fsas_sir_show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/fsas_sir/show_vlan/fsas_sir_show_vlan.yml -------------------------------------------------------------------------------- /tests/hp_comware/display_clock/hp_comware_display_clock.raw: -------------------------------------------------------------------------------- 1 | 19:35:31 UTC Sat 01/08/2011 -------------------------------------------------------------------------------- /tests/hp_comware/display_clock/hp_comware_display_clock_1.raw: -------------------------------------------------------------------------------- 1 | 10:09:00 UTC Fri 03/16/2015 -------------------------------------------------------------------------------- /tests/hp_procurve/show_arp/hp_procurve_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_arp/hp_procurve_show_arp.raw -------------------------------------------------------------------------------- /tests/hp_procurve/show_arp/hp_procurve_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_arp/hp_procurve_show_arp.yml -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip.raw -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip.yml -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip1.raw -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip1.yml -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip2.raw -------------------------------------------------------------------------------- /tests/hp_procurve/show_ip/hp_procurve_show_ip2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/hp_procurve/show_ip/hp_procurve_show_ip2.yml -------------------------------------------------------------------------------- /tests/huawei_ont/display_access_mode/huawei_ont_display_access_mode.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - access_mode: "epon" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_boardItem/huawei_ont_display_baordItem.raw: -------------------------------------------------------------------------------- 1 | board item = 023FTS6RG7026737 2 | 3 | success! -------------------------------------------------------------------------------- /tests/huawei_ont/display_boardItem/huawei_ont_display_baordItem.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - board_item: "023FTS6RG7026737" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_flashlock_status/huawei_ont_display_flashlock_status.raw: -------------------------------------------------------------------------------- 1 | current flash protect status: 0 2 | 3 | success! -------------------------------------------------------------------------------- /tests/huawei_ont/display_flashlock_status/huawei_ont_display_flashlock_status.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - flashlock_status: "0" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_lanmac/huawei_ont_display_lanmac.raw: -------------------------------------------------------------------------------- 1 | lan mac = 34:6A:C2:CA:49:25 2 | 3 | success! -------------------------------------------------------------------------------- /tests/huawei_ont/display_machineItem/huawei_ont_display_machineItem.raw: -------------------------------------------------------------------------------- 1 | machine item = 2102311BVH6RG7310915 2 | 3 | success! 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_machineItem/huawei_ont_display_machineItem.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - machine_item: "2102311BVH6RG7310915" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_optmode/huawei_ont_display_optmode.raw: -------------------------------------------------------------------------------- 1 | optic mode = 200 2 | 3 | success! -------------------------------------------------------------------------------- /tests/huawei_ont/display_optmode/huawei_ont_display_optmode.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - optic_mode: "200" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_sn/huawei_ont_display_sn.raw: -------------------------------------------------------------------------------- 1 | sn = 48575443CA49257B 2 | 3 | success! -------------------------------------------------------------------------------- /tests/huawei_ont/display_sn/huawei_ont_display_sn.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - serial_number: "48575443CA49257B" 4 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_timeout/huawei_ont_display_timeout.raw: -------------------------------------------------------------------------------- 1 | timeout value = 5 min 2 | success! 3 | -------------------------------------------------------------------------------- /tests/huawei_ont/display_timeout/huawei_ont_display_timeout.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - timeout: "5 min" 4 | -------------------------------------------------------------------------------- /tests/huawei_smartax/display_cpu/huawei_smartax_display_cpu.raw: -------------------------------------------------------------------------------- 1 | CPU occupancy: 17% -------------------------------------------------------------------------------- /tests/huawei_smartax/display_cpu/huawei_smartax_display_cpu.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - cpu_occupancy: "17" 4 | -------------------------------------------------------------------------------- /tests/huawei_smartax/display_mem/huawei_smartax_display_mem.raw: -------------------------------------------------------------------------------- 1 | Memory occupancy: 79% -------------------------------------------------------------------------------- /tests/huawei_smartax/display_mem/huawei_smartax_display_mem.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - memory_occupancy: "79" 4 | -------------------------------------------------------------------------------- /tests/huawei_smartax/display_sysuptime/huawei_smartax_display_sysuptime.raw: -------------------------------------------------------------------------------- 1 | System up time: 11 day 22 hour 5 minute 17 second -------------------------------------------------------------------------------- /tests/huawei_smartax/port_vlan/huawei_smartax_port_vlan.raw: -------------------------------------------------------------------------------- 1 | Set ONT port(s) VLAN configuration, success: 1, failed: 0 2 | -------------------------------------------------------------------------------- /tests/huawei_vrp/dir/huawei_vrp_dir.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/huawei_vrp/dir/huawei_vrp_dir.raw -------------------------------------------------------------------------------- /tests/huawei_vrp/dir/huawei_vrp_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/huawei_vrp/dir/huawei_vrp_dir.yml -------------------------------------------------------------------------------- /tests/huawei_vrp/display_eth-trunk/huawei_vrp_display_eth-trunk2.raw: -------------------------------------------------------------------------------- 1 | Info: No valid trunk in the system. -------------------------------------------------------------------------------- /tests/huawei_vrp/display_eth-trunk/huawei_vrp_display_eth-trunk2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/huawei_vrp/display_sn_license/huawei_vrp_display_version.raw: -------------------------------------------------------------------------------- 1 | ESN of device: 21500104792SM8504636 2 | -------------------------------------------------------------------------------- /tests/huawei_vrp/display_sn_license/huawei_vrp_display_version.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - serial_number: "21500104792SM8504636" 4 | -------------------------------------------------------------------------------- /tests/juniper_junos/show_system_configuration_database_usage/juniper_junos_show_system_configuration_database_usage_locked.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/linux/arp_-a/linux_arp_a.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/arp_-a/linux_arp_a.raw -------------------------------------------------------------------------------- /tests/linux/arp_-a/linux_arp_a.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/arp_-a/linux_arp_a.yml -------------------------------------------------------------------------------- /tests/linux/ip_link_show/busybox_ip_link_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/busybox_ip_link_show.raw -------------------------------------------------------------------------------- /tests/linux/ip_link_show/busybox_ip_link_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/busybox_ip_link_show.yml -------------------------------------------------------------------------------- /tests/linux/ip_link_show/linux_ip_link_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/linux_ip_link_show.raw -------------------------------------------------------------------------------- /tests/linux/ip_link_show/linux_ip_link_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/linux_ip_link_show.yml -------------------------------------------------------------------------------- /tests/linux/ip_link_show/linux_ip_link_show_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/linux_ip_link_show_2.raw -------------------------------------------------------------------------------- /tests/linux/ip_link_show/linux_ip_link_show_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_link_show/linux_ip_link_show_2.yml -------------------------------------------------------------------------------- /tests/linux/ip_route_show/linux_ip_route_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_route_show/linux_ip_route_show.raw -------------------------------------------------------------------------------- /tests/linux/ip_route_show/linux_ip_route_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_route_show/linux_ip_route_show.yml -------------------------------------------------------------------------------- /tests/linux/ip_route_show/linux_ip_route_show2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_route_show/linux_ip_route_show2.raw -------------------------------------------------------------------------------- /tests/linux/ip_route_show/linux_ip_route_show2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_route_show/linux_ip_route_show2.yml -------------------------------------------------------------------------------- /tests/linux/ip_vrf_show/linux_ip_vrf_show.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_vrf_show/linux_ip_vrf_show.raw -------------------------------------------------------------------------------- /tests/linux/ip_vrf_show/linux_ip_vrf_show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/ip_vrf_show/linux_ip_vrf_show.yml -------------------------------------------------------------------------------- /tests/linux/iwconfig/linux_iwconfig.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/iwconfig/linux_iwconfig.raw -------------------------------------------------------------------------------- /tests/linux/iwconfig/linux_iwconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/iwconfig/linux_iwconfig.yml -------------------------------------------------------------------------------- /tests/linux/iwconfig/linux_iwconfig_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/iwconfig/linux_iwconfig_2.raw -------------------------------------------------------------------------------- /tests/linux/iwconfig/linux_iwconfig_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/iwconfig/linux_iwconfig_2.yml -------------------------------------------------------------------------------- /tests/linux/pct_config_1/linux_pct_config_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pct_config_1/linux_pct_config_1.raw -------------------------------------------------------------------------------- /tests/linux/pct_config_1/linux_pct_config_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pct_config_1/linux_pct_config_1.yml -------------------------------------------------------------------------------- /tests/linux/pct_list/linux_pct_list.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pct_list/linux_pct_list.raw -------------------------------------------------------------------------------- /tests/linux/pct_list/linux_pct_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pct_list/linux_pct_list.yml -------------------------------------------------------------------------------- /tests/linux/pveversion/linux_pveversion.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pveversion/linux_pveversion.raw -------------------------------------------------------------------------------- /tests/linux/pveversion/linux_pveversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/pveversion/linux_pveversion.yml -------------------------------------------------------------------------------- /tests/linux/qm_config_1/linux_qm_config_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/qm_config_1/linux_qm_config_1.raw -------------------------------------------------------------------------------- /tests/linux/qm_config_1/linux_qm_config_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/qm_config_1/linux_qm_config_1.yml -------------------------------------------------------------------------------- /tests/linux/qm_list/linux_qm_list.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/qm_list/linux_qm_list.raw -------------------------------------------------------------------------------- /tests/linux/qm_list/linux_qm_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/qm_list/linux_qm_list.yml -------------------------------------------------------------------------------- /tests/linux/top/linux_top.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/top/linux_top.raw -------------------------------------------------------------------------------- /tests/linux/top/linux_top.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/top/linux_top.yml -------------------------------------------------------------------------------- /tests/linux/vzlist/linux_vzlist.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/vzlist/linux_vzlist.raw -------------------------------------------------------------------------------- /tests/linux/vzlist/linux_vzlist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/linux/vzlist/linux_vzlist.yml -------------------------------------------------------------------------------- /tests/mikrotik_routeros/system_identity_print/mikrotik_routeros_system_identity_print.raw: -------------------------------------------------------------------------------- 1 | name: Mikrotik-Device_Name 2 | -------------------------------------------------------------------------------- /tests/mikrotik_routeros/system_identity_print/mikrotik_routeros_system_identity_print.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - name: "Mikrotik-Device_Name" 4 | -------------------------------------------------------------------------------- /tests/mocks/expected/parsed_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/expected/parsed_sample.yml -------------------------------------------------------------------------------- /tests/mocks/expected/show_mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/expected/show_mac.yml -------------------------------------------------------------------------------- /tests/mocks/expected/yaml_comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/expected/yaml_comments.yml -------------------------------------------------------------------------------- /tests/mocks/load/glob/parsed_sample1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/load/glob/parsed_sample1.yml -------------------------------------------------------------------------------- /tests/mocks/load/glob/parsed_sample2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/load/glob/parsed_sample2.yml -------------------------------------------------------------------------------- /tests/mocks/load/parsed_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/load/parsed_sample.yml -------------------------------------------------------------------------------- /tests/mocks/load/yaml_comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/mocks/load/yaml_comments.yml -------------------------------------------------------------------------------- /tests/oneaccess_oneos/hostname/hostname.raw: -------------------------------------------------------------------------------- 1 | dops-lab-02 2 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/hostname/hostname.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: 3 | - hostname: "dops-lab-02" 4 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw -------------------------------------------------------------------------------- /tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml -------------------------------------------------------------------------------- /tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw -------------------------------------------------------------------------------- /tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw: -------------------------------------------------------------------------------- 1 | AS path access list 102 2 | permit ^$ 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw: -------------------------------------------------------------------------------- 1 | AS path access list 102 2 | permit ^$ 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw: -------------------------------------------------------------------------------- 1 | 2 | No SFP module present 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw: -------------------------------------------------------------------------------- 1 | SFP 1/0: 2 | No Inventory data available 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml: -------------------------------------------------------------------------------- 1 | --- 2 | parsed_sample: [] 3 | -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_version/show_version.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_version/show_version.raw -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_version/show_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_version/show_version.yml -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_vlan/show_vlan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_vlan/show_vlan.raw -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_vlan/show_vlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_vlan/show_vlan.yml -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_vlan/show_vlan1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_vlan/show_vlan1.raw -------------------------------------------------------------------------------- /tests/ruckus_fastiron/show_vlan/show_vlan1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/ruckus_fastiron/show_vlan/show_vlan1.yml -------------------------------------------------------------------------------- /tests/test_capture_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/test_capture_group.py -------------------------------------------------------------------------------- /tests/test_development_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/test_development_scripts.py -------------------------------------------------------------------------------- /tests/test_index_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/test_index_order.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_testcases_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/test_testcases_exists.py -------------------------------------------------------------------------------- /tests/vyatta_vyos/show_arp/vyatta_vyos_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/vyatta_vyos/show_arp/vyatta_vyos_show_arp.raw -------------------------------------------------------------------------------- /tests/vyatta_vyos/show_arp/vyatta_vyos_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/vyatta_vyos/show_arp/vyatta_vyos_show_arp.yml -------------------------------------------------------------------------------- /tests/yamaha/show_ip_route/yamaha_show_ip_route.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/yamaha/show_ip_route/yamaha_show_ip_route.raw -------------------------------------------------------------------------------- /tests/yamaha/show_ip_route/yamaha_show_ip_route.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/yamaha/show_ip_route/yamaha_show_ip_route.yml -------------------------------------------------------------------------------- /tests/zte_zxros/show_arp/zte_zxros_show_arp.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zte_zxros/show_arp/zte_zxros_show_arp.raw -------------------------------------------------------------------------------- /tests/zte_zxros/show_arp/zte_zxros_show_arp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zte_zxros/show_arp/zte_zxros_show_arp.yml -------------------------------------------------------------------------------- /tests/zyxel_os/cfg_lan_get/zyxel_os_cfg_lan_get.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/cfg_lan_get/zyxel_os_cfg_lan_get.raw -------------------------------------------------------------------------------- /tests/zyxel_os/cfg_lan_get/zyxel_os_cfg_lan_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/cfg_lan_get/zyxel_os_cfg_lan_get.yml -------------------------------------------------------------------------------- /tests/zyxel_os/cfg_nat_get/zyxel_os_cfg_nat_get.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/cfg_nat_get/zyxel_os_cfg_nat_get.raw -------------------------------------------------------------------------------- /tests/zyxel_os/cfg_nat_get/zyxel_os_cfg_nat_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/cfg_nat_get/zyxel_os_cfg_nat_get.yml -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_1.raw -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_1.yml -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_2.raw -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_2.yml -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_3.raw -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_3.yml -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_4.raw -------------------------------------------------------------------------------- /tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networktocode/ntc-templates/HEAD/tests/zyxel_os/sys_atsh/zyxel_os_sys_atsh_4.yml --------------------------------------------------------------------------------