├── Nornir ├── beta2.0.0b1 │ ├── config.yaml │ ├── inventory │ │ ├── default.yaml │ │ ├── groups.yaml │ │ └── hosts.yaml │ └── script1.py ├── using_napalm_plugin │ ├── archive │ │ ├── PH │ │ ├── groups.yaml │ │ ├── hosts.yaml │ │ ├── script1.py │ │ └── script1_output.txt │ ├── config.yaml │ ├── inventory │ │ ├── groups.yaml │ │ └── hosts.yaml │ └── nornir_pb.py └── using_netmiko_plugin │ ├── config_example.py │ ├── groups.yaml │ ├── hosts.yaml │ ├── output_config_example.txt │ ├── output_show_cmds_example.txt │ └── show_cmds_example.py ├── README.md ├── archive ├── Netmiko_multi_dev_script.py ├── commands.txt ├── devices.txt └── netmiko_script1.py ├── crontab_e_setup ├── dnac ├── get_client_health_info.py └── get_devices_dnac.py ├── eAPI ├── README.md ├── lab_script.py └── lab_script_2.py ├── meraki ├── Create_Network.py ├── Get_info_dashboard.py └── Update_SSID.py ├── misc ├── findingDupIP.py ├── loop_thru_cli_cmds.py └── loop_thru_cli_cmds_output.txt ├── napalm ├── archive │ ├── EOS_lab_Napalm_test_results │ └── Notes about Napalm_ios ├── config_scripts │ ├── access_list.cfg │ ├── conf_merge │ │ ├── eos1.txt │ │ ├── eos2.txt │ │ ├── napalm_cfg_merge.py │ │ └── output_napalm_cfg_merge_output.txt │ ├── config_file.cfg │ ├── config_script1.py │ ├── config_script_ios.py │ ├── global_config.cfg │ └── output_config_script_ios.py ├── napalm_eos_script_ex1.py ├── napalm_script1.py ├── script_get_cfg.py ├── script_get_facts.py └── svc_now │ ├── discovery_ios_svc_now.py │ └── post_svc_now_rest_api.py ├── netconf ├── README.md ├── netconf_config_bkup.py ├── netconf_config_bkup_output.txt ├── netconf_config_device.py ├── netconf_config_device_output.txt ├── netconf_ex1.py ├── netconf_get_conf.py ├── netconf_iosxe_cfg_bkup.py ├── netconf_svr_capability.py └── netconf_svr_capability_ouput.txt ├── netmiko ├── FRR │ ├── frr_lab_script.py │ ├── lab_script.py │ └── load_config_file │ │ ├── README.md │ │ ├── core1.cfg │ │ ├── core2.cfg │ │ ├── d1.cfg │ │ ├── d2.cfg │ │ └── load_frr_config.py ├── Juniper │ ├── config.txt │ ├── juniper_conf_from_file.py │ ├── juniper_conf_from_file_output.txt │ ├── juniper_script1.py │ └── juniper_script1_output.txt ├── NetworkDiscovery │ ├── host_file_and_script │ │ ├── README.md │ │ ├── archive │ │ │ └── discovery_script.py │ │ ├── auto_detect_script.py │ │ ├── host_file.txt │ │ ├── ios_discovery_enable_mode.py │ │ ├── ios_discovery_script.py │ │ └── script_output.txt │ ├── same_config_multi_device.py │ ├── show_cdp_neighbor.py │ ├── show_commands.py │ ├── show_ip_bgp_summ.py │ ├── show_ip_int_brief │ ├── show_ip_route.py │ ├── show_run.py │ ├── show_uptime.py │ └── show_version.py ├── Normal processing vs multi-processing pools ├── README.md ├── archive │ ├── clean_up_lab.py │ ├── netmiko_script2.py │ ├── netmiko_script3.py │ ├── output_netmiko_multi_dev_cfg │ ├── output_netmiko_script5.py │ ├── output_netmiko_show_cmds.txt │ └── placeholder ├── basic_ssh_script.py ├── config_scripts │ ├── interactive_config_script.py │ ├── multiple_device_config_script.py │ └── push_same_cfg_multi_devs.py ├── jinja_example │ ├── bgp_template_r4.yaml │ ├── bgp_template_r5.yaml │ ├── conf_bgp_r4_r5_using_class_obj.py │ ├── conf_bgp_r4_r5_using_dict.py │ ├── conf_bgp_yaml_jinja2.py │ └── ebgp_neighbor_template.j2 ├── netmiko_multi_dev_cfg.py ├── netmiko_script5.py ├── netmiko_show_cmds.py ├── ospf_configurator │ ├── README.md │ ├── devices.json │ ├── ospf_configurator.py │ └── requirements.txt ├── scp │ ├── ceos │ │ ├── ceos1.config │ │ ├── ceos2.config │ │ ├── info.text │ │ ├── scp_file_arista.output.txt │ │ ├── scp_file_arista.py │ │ └── test_file.txt │ ├── info.txt │ ├── netmiko_scp_script.py │ ├── output_netmiko_scp_script.txt │ └── test_file.txt ├── script_requests │ └── req_config_script_07292020.py ├── ssh_sandbox.py └── test_stuff │ ├── interactive_script.py │ └── interactive_script_output,txt ├── network_controller ├── Lab_1.pkt ├── get_all_devices_info.py ├── get_device_info.py ├── pt_get_info_api.py └── update_device_config.py ├── network_db ├── README.md ├── add_remove_device.py └── schema ├── nxapi ├── nxapi_script02.py ├── nxapi_script02_output.txt ├── nxapi_script1.py └── nxapi_script_ex1.output.txt ├── pip3 freeze ├── pyGNMI ├── README.md ├── get_intf_info_gnmi.py └── set_config_gnmi.py ├── pyeapi ├── .eapi.conf ├── README.md ├── archive │ ├── interactive_show_cmds.py │ ├── multi_dev_cfg_script.py │ └── multi_dev_cfg_script2.py ├── ceos_demo │ ├── .eapi.conf │ ├── README.md │ ├── script1.py │ ├── script2.py │ └── script3.py ├── ceos_lab_scripts │ ├── ceos_4_sw_lab.txt │ ├── lab_config_script.py │ └── wr_mem_lab_configs.py ├── demo │ ├── .eapi.conf │ ├── script1.py │ ├── script2.py │ └── script_results.txt ├── eapi_config_ex1.py ├── eapi_ex1.py ├── eapi_ex2.py ├── eapi_validation_ex1.py ├── interactive_scripts │ ├── README.md │ ├── pyeapi_config_script.py │ └── pyeapi_show_cmds_script.py ├── pyeapi_w_out_conf_file.py └── script results ├── restconf ├── 08.03.2025_restconf_ex.py ├── README.md ├── create_intf.py ├── delete_intf.py ├── req_intf_name_state_errors.py ├── req_intf_state_cfg.py ├── restconf_ex1.py ├── restconf_ex2.py └── script_output.txt ├── srlinux ├── README.md └── json_rpc │ ├── cli_example.py │ ├── enable_ospf.py │ ├── get_info.py │ ├── lab_cli_script.py │ └── update_intf_description.py └── telnetlib ├── script_output.txt ├── telnet_py3.py └── telnet_script_enable_mode.py /Nornir/beta2.0.0b1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/beta2.0.0b1/config.yaml -------------------------------------------------------------------------------- /Nornir/beta2.0.0b1/inventory/default.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /Nornir/beta2.0.0b1/inventory/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/beta2.0.0b1/inventory/groups.yaml -------------------------------------------------------------------------------- /Nornir/beta2.0.0b1/inventory/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/beta2.0.0b1/inventory/hosts.yaml -------------------------------------------------------------------------------- /Nornir/beta2.0.0b1/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/beta2.0.0b1/script1.py -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/archive/PH: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/archive/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/archive/groups.yaml -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/archive/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/archive/hosts.yaml -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/archive/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/archive/script1.py -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/archive/script1_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/archive/script1_output.txt -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/config.yaml -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/inventory/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/inventory/groups.yaml -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/inventory/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/inventory/hosts.yaml -------------------------------------------------------------------------------- /Nornir/using_napalm_plugin/nornir_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_napalm_plugin/nornir_pb.py -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/config_example.py -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/groups.yaml -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/hosts.yaml -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/output_config_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/output_config_example.txt -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/output_show_cmds_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/output_show_cmds_example.txt -------------------------------------------------------------------------------- /Nornir/using_netmiko_plugin/show_cmds_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/Nornir/using_netmiko_plugin/show_cmds_example.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/README.md -------------------------------------------------------------------------------- /archive/Netmiko_multi_dev_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/archive/Netmiko_multi_dev_script.py -------------------------------------------------------------------------------- /archive/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/archive/commands.txt -------------------------------------------------------------------------------- /archive/devices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/archive/devices.txt -------------------------------------------------------------------------------- /archive/netmiko_script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/archive/netmiko_script1.py -------------------------------------------------------------------------------- /crontab_e_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/crontab_e_setup -------------------------------------------------------------------------------- /dnac/get_client_health_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/dnac/get_client_health_info.py -------------------------------------------------------------------------------- /dnac/get_devices_dnac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/dnac/get_devices_dnac.py -------------------------------------------------------------------------------- /eAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/eAPI/README.md -------------------------------------------------------------------------------- /eAPI/lab_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/eAPI/lab_script.py -------------------------------------------------------------------------------- /eAPI/lab_script_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/eAPI/lab_script_2.py -------------------------------------------------------------------------------- /meraki/Create_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/meraki/Create_Network.py -------------------------------------------------------------------------------- /meraki/Get_info_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/meraki/Get_info_dashboard.py -------------------------------------------------------------------------------- /meraki/Update_SSID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/meraki/Update_SSID.py -------------------------------------------------------------------------------- /misc/findingDupIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/misc/findingDupIP.py -------------------------------------------------------------------------------- /misc/loop_thru_cli_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/misc/loop_thru_cli_cmds.py -------------------------------------------------------------------------------- /misc/loop_thru_cli_cmds_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/misc/loop_thru_cli_cmds_output.txt -------------------------------------------------------------------------------- /napalm/archive/EOS_lab_Napalm_test_results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/archive/EOS_lab_Napalm_test_results -------------------------------------------------------------------------------- /napalm/archive/Notes about Napalm_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/archive/Notes about Napalm_ios -------------------------------------------------------------------------------- /napalm/config_scripts/access_list.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/access_list.cfg -------------------------------------------------------------------------------- /napalm/config_scripts/conf_merge/eos1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/conf_merge/eos1.txt -------------------------------------------------------------------------------- /napalm/config_scripts/conf_merge/eos2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/conf_merge/eos2.txt -------------------------------------------------------------------------------- /napalm/config_scripts/conf_merge/napalm_cfg_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/conf_merge/napalm_cfg_merge.py -------------------------------------------------------------------------------- /napalm/config_scripts/conf_merge/output_napalm_cfg_merge_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/conf_merge/output_napalm_cfg_merge_output.txt -------------------------------------------------------------------------------- /napalm/config_scripts/config_file.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/config_file.cfg -------------------------------------------------------------------------------- /napalm/config_scripts/config_script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/config_script1.py -------------------------------------------------------------------------------- /napalm/config_scripts/config_script_ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/config_script_ios.py -------------------------------------------------------------------------------- /napalm/config_scripts/global_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/global_config.cfg -------------------------------------------------------------------------------- /napalm/config_scripts/output_config_script_ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/config_scripts/output_config_script_ios.py -------------------------------------------------------------------------------- /napalm/napalm_eos_script_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/napalm_eos_script_ex1.py -------------------------------------------------------------------------------- /napalm/napalm_script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/napalm_script1.py -------------------------------------------------------------------------------- /napalm/script_get_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/script_get_cfg.py -------------------------------------------------------------------------------- /napalm/script_get_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/script_get_facts.py -------------------------------------------------------------------------------- /napalm/svc_now/discovery_ios_svc_now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/svc_now/discovery_ios_svc_now.py -------------------------------------------------------------------------------- /napalm/svc_now/post_svc_now_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/napalm/svc_now/post_svc_now_rest_api.py -------------------------------------------------------------------------------- /netconf/README.md: -------------------------------------------------------------------------------- 1 | This is a work in progress. 2 | -------------------------------------------------------------------------------- /netconf/netconf_config_bkup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_config_bkup.py -------------------------------------------------------------------------------- /netconf/netconf_config_bkup_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_config_bkup_output.txt -------------------------------------------------------------------------------- /netconf/netconf_config_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_config_device.py -------------------------------------------------------------------------------- /netconf/netconf_config_device_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_config_device_output.txt -------------------------------------------------------------------------------- /netconf/netconf_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_ex1.py -------------------------------------------------------------------------------- /netconf/netconf_get_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_get_conf.py -------------------------------------------------------------------------------- /netconf/netconf_iosxe_cfg_bkup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_iosxe_cfg_bkup.py -------------------------------------------------------------------------------- /netconf/netconf_svr_capability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_svr_capability.py -------------------------------------------------------------------------------- /netconf/netconf_svr_capability_ouput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netconf/netconf_svr_capability_ouput.txt -------------------------------------------------------------------------------- /netmiko/FRR/frr_lab_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/frr_lab_script.py -------------------------------------------------------------------------------- /netmiko/FRR/lab_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/lab_script.py -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/README.md -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/core1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/core1.cfg -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/core2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/core2.cfg -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/d1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/d1.cfg -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/d2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/d2.cfg -------------------------------------------------------------------------------- /netmiko/FRR/load_config_file/load_frr_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/FRR/load_config_file/load_frr_config.py -------------------------------------------------------------------------------- /netmiko/Juniper/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Juniper/config.txt -------------------------------------------------------------------------------- /netmiko/Juniper/juniper_conf_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Juniper/juniper_conf_from_file.py -------------------------------------------------------------------------------- /netmiko/Juniper/juniper_conf_from_file_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Juniper/juniper_conf_from_file_output.txt -------------------------------------------------------------------------------- /netmiko/Juniper/juniper_script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Juniper/juniper_script1.py -------------------------------------------------------------------------------- /netmiko/Juniper/juniper_script1_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Juniper/juniper_script1_output.txt -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/README.md -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/archive/discovery_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/archive/discovery_script.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/auto_detect_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/auto_detect_script.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/host_file.txt: -------------------------------------------------------------------------------- 1 | r1 2 | r2 3 | bogus_rtr 4 | r3 5 | r4 6 | r5 7 | r6 8 | r7 9 | r8 10 | r9 11 | r10 12 | -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/ios_discovery_enable_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/ios_discovery_enable_mode.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/ios_discovery_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/ios_discovery_script.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/host_file_and_script/script_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/host_file_and_script/script_output.txt -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/same_config_multi_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/same_config_multi_device.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_cdp_neighbor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_cdp_neighbor.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_commands.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_ip_bgp_summ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_ip_bgp_summ.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_ip_int_brief: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_ip_int_brief -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_ip_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_ip_route.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_run.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_uptime.py -------------------------------------------------------------------------------- /netmiko/NetworkDiscovery/show_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/NetworkDiscovery/show_version.py -------------------------------------------------------------------------------- /netmiko/Normal processing vs multi-processing pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/Normal processing vs multi-processing pools -------------------------------------------------------------------------------- /netmiko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/README.md -------------------------------------------------------------------------------- /netmiko/archive/clean_up_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/clean_up_lab.py -------------------------------------------------------------------------------- /netmiko/archive/netmiko_script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/netmiko_script2.py -------------------------------------------------------------------------------- /netmiko/archive/netmiko_script3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/netmiko_script3.py -------------------------------------------------------------------------------- /netmiko/archive/output_netmiko_multi_dev_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/output_netmiko_multi_dev_cfg -------------------------------------------------------------------------------- /netmiko/archive/output_netmiko_script5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/output_netmiko_script5.py -------------------------------------------------------------------------------- /netmiko/archive/output_netmiko_show_cmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/archive/output_netmiko_show_cmds.txt -------------------------------------------------------------------------------- /netmiko/archive/placeholder: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /netmiko/basic_ssh_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/basic_ssh_script.py -------------------------------------------------------------------------------- /netmiko/config_scripts/interactive_config_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/config_scripts/interactive_config_script.py -------------------------------------------------------------------------------- /netmiko/config_scripts/multiple_device_config_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/config_scripts/multiple_device_config_script.py -------------------------------------------------------------------------------- /netmiko/config_scripts/push_same_cfg_multi_devs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/config_scripts/push_same_cfg_multi_devs.py -------------------------------------------------------------------------------- /netmiko/jinja_example/bgp_template_r4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/bgp_template_r4.yaml -------------------------------------------------------------------------------- /netmiko/jinja_example/bgp_template_r5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/bgp_template_r5.yaml -------------------------------------------------------------------------------- /netmiko/jinja_example/conf_bgp_r4_r5_using_class_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/conf_bgp_r4_r5_using_class_obj.py -------------------------------------------------------------------------------- /netmiko/jinja_example/conf_bgp_r4_r5_using_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/conf_bgp_r4_r5_using_dict.py -------------------------------------------------------------------------------- /netmiko/jinja_example/conf_bgp_yaml_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/conf_bgp_yaml_jinja2.py -------------------------------------------------------------------------------- /netmiko/jinja_example/ebgp_neighbor_template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/jinja_example/ebgp_neighbor_template.j2 -------------------------------------------------------------------------------- /netmiko/netmiko_multi_dev_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/netmiko_multi_dev_cfg.py -------------------------------------------------------------------------------- /netmiko/netmiko_script5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/netmiko_script5.py -------------------------------------------------------------------------------- /netmiko/netmiko_show_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/netmiko_show_cmds.py -------------------------------------------------------------------------------- /netmiko/ospf_configurator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/ospf_configurator/README.md -------------------------------------------------------------------------------- /netmiko/ospf_configurator/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/ospf_configurator/devices.json -------------------------------------------------------------------------------- /netmiko/ospf_configurator/ospf_configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/ospf_configurator/ospf_configurator.py -------------------------------------------------------------------------------- /netmiko/ospf_configurator/requirements.txt: -------------------------------------------------------------------------------- 1 | netmiko>=4.1.0 2 | 3 | -------------------------------------------------------------------------------- /netmiko/scp/ceos/ceos1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/ceos1.config -------------------------------------------------------------------------------- /netmiko/scp/ceos/ceos2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/ceos2.config -------------------------------------------------------------------------------- /netmiko/scp/ceos/info.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/info.text -------------------------------------------------------------------------------- /netmiko/scp/ceos/scp_file_arista.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/scp_file_arista.output.txt -------------------------------------------------------------------------------- /netmiko/scp/ceos/scp_file_arista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/scp_file_arista.py -------------------------------------------------------------------------------- /netmiko/scp/ceos/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/ceos/test_file.txt -------------------------------------------------------------------------------- /netmiko/scp/info.txt: -------------------------------------------------------------------------------- 1 | This test was done from vagrant lab 2 | -------------------------------------------------------------------------------- /netmiko/scp/netmiko_scp_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/netmiko_scp_script.py -------------------------------------------------------------------------------- /netmiko/scp/output_netmiko_scp_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/output_netmiko_scp_script.txt -------------------------------------------------------------------------------- /netmiko/scp/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/scp/test_file.txt -------------------------------------------------------------------------------- /netmiko/script_requests/req_config_script_07292020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/script_requests/req_config_script_07292020.py -------------------------------------------------------------------------------- /netmiko/ssh_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/ssh_sandbox.py -------------------------------------------------------------------------------- /netmiko/test_stuff/interactive_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/test_stuff/interactive_script.py -------------------------------------------------------------------------------- /netmiko/test_stuff/interactive_script_output,txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/netmiko/test_stuff/interactive_script_output,txt -------------------------------------------------------------------------------- /network_controller/Lab_1.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_controller/Lab_1.pkt -------------------------------------------------------------------------------- /network_controller/get_all_devices_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_controller/get_all_devices_info.py -------------------------------------------------------------------------------- /network_controller/get_device_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_controller/get_device_info.py -------------------------------------------------------------------------------- /network_controller/pt_get_info_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_controller/pt_get_info_api.py -------------------------------------------------------------------------------- /network_controller/update_device_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_controller/update_device_config.py -------------------------------------------------------------------------------- /network_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_db/README.md -------------------------------------------------------------------------------- /network_db/add_remove_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_db/add_remove_device.py -------------------------------------------------------------------------------- /network_db/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/network_db/schema -------------------------------------------------------------------------------- /nxapi/nxapi_script02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/nxapi/nxapi_script02.py -------------------------------------------------------------------------------- /nxapi/nxapi_script02_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/nxapi/nxapi_script02_output.txt -------------------------------------------------------------------------------- /nxapi/nxapi_script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/nxapi/nxapi_script1.py -------------------------------------------------------------------------------- /nxapi/nxapi_script_ex1.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/nxapi/nxapi_script_ex1.output.txt -------------------------------------------------------------------------------- /pip3 freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pip3 freeze -------------------------------------------------------------------------------- /pyGNMI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyGNMI/README.md -------------------------------------------------------------------------------- /pyGNMI/get_intf_info_gnmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyGNMI/get_intf_info_gnmi.py -------------------------------------------------------------------------------- /pyGNMI/set_config_gnmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyGNMI/set_config_gnmi.py -------------------------------------------------------------------------------- /pyeapi/.eapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/.eapi.conf -------------------------------------------------------------------------------- /pyeapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/README.md -------------------------------------------------------------------------------- /pyeapi/archive/interactive_show_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/archive/interactive_show_cmds.py -------------------------------------------------------------------------------- /pyeapi/archive/multi_dev_cfg_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/archive/multi_dev_cfg_script.py -------------------------------------------------------------------------------- /pyeapi/archive/multi_dev_cfg_script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/archive/multi_dev_cfg_script2.py -------------------------------------------------------------------------------- /pyeapi/ceos_demo/.eapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_demo/.eapi.conf -------------------------------------------------------------------------------- /pyeapi/ceos_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_demo/README.md -------------------------------------------------------------------------------- /pyeapi/ceos_demo/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_demo/script1.py -------------------------------------------------------------------------------- /pyeapi/ceos_demo/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_demo/script2.py -------------------------------------------------------------------------------- /pyeapi/ceos_demo/script3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_demo/script3.py -------------------------------------------------------------------------------- /pyeapi/ceos_lab_scripts/ceos_4_sw_lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_lab_scripts/ceos_4_sw_lab.txt -------------------------------------------------------------------------------- /pyeapi/ceos_lab_scripts/lab_config_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_lab_scripts/lab_config_script.py -------------------------------------------------------------------------------- /pyeapi/ceos_lab_scripts/wr_mem_lab_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/ceos_lab_scripts/wr_mem_lab_configs.py -------------------------------------------------------------------------------- /pyeapi/demo/.eapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/demo/.eapi.conf -------------------------------------------------------------------------------- /pyeapi/demo/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/demo/script1.py -------------------------------------------------------------------------------- /pyeapi/demo/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/demo/script2.py -------------------------------------------------------------------------------- /pyeapi/demo/script_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/demo/script_results.txt -------------------------------------------------------------------------------- /pyeapi/eapi_config_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/eapi_config_ex1.py -------------------------------------------------------------------------------- /pyeapi/eapi_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/eapi_ex1.py -------------------------------------------------------------------------------- /pyeapi/eapi_ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/eapi_ex2.py -------------------------------------------------------------------------------- /pyeapi/eapi_validation_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/eapi_validation_ex1.py -------------------------------------------------------------------------------- /pyeapi/interactive_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/interactive_scripts/README.md -------------------------------------------------------------------------------- /pyeapi/interactive_scripts/pyeapi_config_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/interactive_scripts/pyeapi_config_script.py -------------------------------------------------------------------------------- /pyeapi/interactive_scripts/pyeapi_show_cmds_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/interactive_scripts/pyeapi_show_cmds_script.py -------------------------------------------------------------------------------- /pyeapi/pyeapi_w_out_conf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/pyeapi_w_out_conf_file.py -------------------------------------------------------------------------------- /pyeapi/script results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/pyeapi/script results -------------------------------------------------------------------------------- /restconf/08.03.2025_restconf_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/08.03.2025_restconf_ex.py -------------------------------------------------------------------------------- /restconf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/README.md -------------------------------------------------------------------------------- /restconf/create_intf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/create_intf.py -------------------------------------------------------------------------------- /restconf/delete_intf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/delete_intf.py -------------------------------------------------------------------------------- /restconf/req_intf_name_state_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/req_intf_name_state_errors.py -------------------------------------------------------------------------------- /restconf/req_intf_state_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/req_intf_state_cfg.py -------------------------------------------------------------------------------- /restconf/restconf_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/restconf_ex1.py -------------------------------------------------------------------------------- /restconf/restconf_ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/restconf_ex2.py -------------------------------------------------------------------------------- /restconf/script_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/restconf/script_output.txt -------------------------------------------------------------------------------- /srlinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/README.md -------------------------------------------------------------------------------- /srlinux/json_rpc/cli_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/json_rpc/cli_example.py -------------------------------------------------------------------------------- /srlinux/json_rpc/enable_ospf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/json_rpc/enable_ospf.py -------------------------------------------------------------------------------- /srlinux/json_rpc/get_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/json_rpc/get_info.py -------------------------------------------------------------------------------- /srlinux/json_rpc/lab_cli_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/json_rpc/lab_cli_script.py -------------------------------------------------------------------------------- /srlinux/json_rpc/update_intf_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/srlinux/json_rpc/update_intf_description.py -------------------------------------------------------------------------------- /telnetlib/script_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/telnetlib/script_output.txt -------------------------------------------------------------------------------- /telnetlib/telnet_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/telnetlib/telnet_py3.py -------------------------------------------------------------------------------- /telnetlib/telnet_script_enable_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twr14152/Network-Automation-Scripts-Python3/HEAD/telnetlib/telnet_script_enable_mode.py --------------------------------------------------------------------------------