├── .gitignore ├── CiscoLive └── UploadCustomWebhookTemplate.py ├── Installing Python on Windows.txt ├── LICENSE.md ├── README.md ├── RadiusCertSurvey ├── RadiusCertSurvey.py ├── RadiusCertSurveyResults.csv └── readme.md ├── addroutes ├── addroutes.py └── routes.txt ├── android_patch_audit ├── android_patch_audit.py └── config.yaml ├── asa_cryptomap_converter ├── README.md ├── asa_config_parser_module.py └── cryptomap_converter.py ├── audit_client_tracking.py ├── auto-cycle-port ├── auto-cycle-port.py └── config.yaml ├── auto_combine_networks.py ├── auto_reboot.py ├── autovpn_tunnel_count.py ├── backup_configs ├── backup_GET_operations.csv ├── backup_configs.py ├── defaults │ ├── alerts_settings.json │ ├── alerts_settings_template.json │ ├── appliance_connectivity_monitoring_destinations.json │ ├── appliance_content_filtering.json │ ├── appliance_firewall_cellular_firewall_rules.json │ ├── appliance_firewall_firewalled_services.json │ ├── appliance_firewall_l3_firewall_rules.json │ ├── appliance_security_intrusion.json │ ├── appliance_security_malware.json │ ├── appliance_single_lan.json │ ├── appliance_traffic_shaping.json │ ├── appliance_traffic_shaping_rules.json │ ├── appliance_traffic_shaping_uplink_bandwidth.json │ ├── appliance_traffic_shaping_uplink_bandwidth_2.json │ ├── appliance_traffic_shaping_uplink_selection.json │ ├── appliance_vpn_site_to_site_vpn.json │ ├── cellular_gateway_connectivity_monitoring_destinations.json │ ├── cellular_gateway_dhcp.json │ ├── cellular_gateway_subnet_pool.json │ ├── cellular_gateway_uplink.json │ ├── management_interface.json │ ├── settings.json │ ├── snmp.json │ ├── switch_access_control_lists.json │ ├── switch_dhcp_server_policy.json │ ├── switch_dscp_to_cos_mappings.json │ ├── switch_mtu.json │ ├── switch_routing_multicast.json │ ├── switch_settings.json │ ├── switch_settings_template.json │ ├── switch_stp.json │ ├── traffic_analysis.json │ ├── wireless_settings.json │ ├── wireless_ssid_firewall_l3_firewall_rules_ssid_0.json │ ├── wireless_ssid_splash_settings_ssid_0.json │ ├── wireless_ssid_traffic_shaping_rules_ssid_0.json │ └── wireless_ssids.json ├── requirements.txt ├── restore_configs.py └── restore_operations.csv ├── bssid.py ├── checksubnets.py ├── clientcount.py ├── clients_in_ip_range.py ├── clone_port_configs.py ├── cloneprovision ├── cloneprovision.py └── input.txt ├── copymxvlans.py ├── copynetworks.py ├── copyswitchcfg.py ├── daily_crossings.py ├── deployappliance.py ├── deploycustomer.py ├── deploydevices.py ├── deviceupdownstatus.py ├── disable_status_page.py ├── eos_scanner.py ├── export_mx_l3.py ├── export_mx_s2svpn.py ├── find_clients.py ├── find_ports.py ├── firmware_lock ├── config.yaml.example └── firmware_lock.py ├── getNetworks.rb ├── get_license_capacities_csv.py ├── get_license_info.py ├── getbeacons.py ├── googletimezonetest.py ├── import_mx_l3.py ├── import_mx_s2svpn.py ├── inventorycsv.py ├── invlist.py ├── latest_devices.py ├── license_counts_csv.py ├── listip.py ├── manage_firmware └── firmware_upgrade_manager.py ├── manageadmins.py ├── merakidevicecounts.py ├── merakilicensealert.py ├── mi_bom_tool.py ├── migrate_cat3k ├── migrate_cat3k.py └── migrate_cat3k_init_example.txt ├── migrate_devices └── migrate_devices.py ├── migrate_networks ├── config.yaml └── migrate_networks.py ├── migratecomware.py ├── migration_init_file.txt ├── movedevices.py ├── mr_mqtt_monitoring.py ├── mv_gp.py ├── mx_firewall_control ├── README.md ├── mxfirewallcontrol.py └── mxfirewallcontrol_example_input_file.txt ├── nodejs_sdk_builder ├── endpoint.template ├── nodejs_sdk_builder.py ├── readme.md └── sdk_core.template ├── offline_logging ├── README.md ├── config.yaml └── offline_logging.py ├── org_subnets.py ├── orgclientscsv.py ├── postman_collection_generator.py ├── provision_sites ├── provision_sites.py ├── provision_sites_example_input_file.csv └── provision_sites_input_file_generator.xlsx ├── reboot.py ├── removetemplate.py ├── report_statuses.py ├── rotate_psks └── psk_rotator.py ├── secure_connect ├── Private_Applications_CSV_Import │ ├── README.md │ ├── privateApplicationsImport.csv │ └── privateApplicationsImport.py └── Remote_Access_Logs_Analyzer │ ├── README.md │ └── remoteAccessLogsAnalyzer.py ├── setSwitchPortOnMacOui ├── cmdlist.txt ├── ouilist.txt └── setSwitchPortOnMacOui.py ├── set_client_tracking.py ├── setlocation.py ├── setlocation_legacy.py ├── setssidvlanid.py ├── tag_all_ports.py ├── topusers ├── templates │ └── index.html └── topusers.py ├── update_ports.py ├── uplink.py ├── usagestats.py ├── usagestats_initconfig.txt └── usagestats_manual.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /CiscoLive/UploadCustomWebhookTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/CiscoLive/UploadCustomWebhookTemplate.py -------------------------------------------------------------------------------- /Installing Python on Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/Installing Python on Windows.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/README.md -------------------------------------------------------------------------------- /RadiusCertSurvey/RadiusCertSurvey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/RadiusCertSurvey/RadiusCertSurvey.py -------------------------------------------------------------------------------- /RadiusCertSurvey/RadiusCertSurveyResults.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RadiusCertSurvey/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/RadiusCertSurvey/readme.md -------------------------------------------------------------------------------- /addroutes/addroutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/addroutes/addroutes.py -------------------------------------------------------------------------------- /addroutes/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/addroutes/routes.txt -------------------------------------------------------------------------------- /android_patch_audit/android_patch_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/android_patch_audit/android_patch_audit.py -------------------------------------------------------------------------------- /android_patch_audit/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/android_patch_audit/config.yaml -------------------------------------------------------------------------------- /asa_cryptomap_converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/asa_cryptomap_converter/README.md -------------------------------------------------------------------------------- /asa_cryptomap_converter/asa_config_parser_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/asa_cryptomap_converter/asa_config_parser_module.py -------------------------------------------------------------------------------- /asa_cryptomap_converter/cryptomap_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/asa_cryptomap_converter/cryptomap_converter.py -------------------------------------------------------------------------------- /audit_client_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/audit_client_tracking.py -------------------------------------------------------------------------------- /auto-cycle-port/auto-cycle-port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/auto-cycle-port/auto-cycle-port.py -------------------------------------------------------------------------------- /auto-cycle-port/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/auto-cycle-port/config.yaml -------------------------------------------------------------------------------- /auto_combine_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/auto_combine_networks.py -------------------------------------------------------------------------------- /auto_reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/auto_reboot.py -------------------------------------------------------------------------------- /autovpn_tunnel_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/autovpn_tunnel_count.py -------------------------------------------------------------------------------- /backup_configs/backup_GET_operations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/backup_GET_operations.csv -------------------------------------------------------------------------------- /backup_configs/backup_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/backup_configs.py -------------------------------------------------------------------------------- /backup_configs/defaults/alerts_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/alerts_settings.json -------------------------------------------------------------------------------- /backup_configs/defaults/alerts_settings_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/alerts_settings_template.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_connectivity_monitoring_destinations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_connectivity_monitoring_destinations.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_content_filtering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_content_filtering.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_firewall_cellular_firewall_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_firewall_cellular_firewall_rules.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_firewall_firewalled_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_firewall_firewalled_services.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_firewall_l3_firewall_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_firewall_l3_firewall_rules.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_security_intrusion.json: -------------------------------------------------------------------------------- 1 | { 2 | "mode": "disabled" 3 | } -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_security_malware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_security_malware.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_single_lan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_single_lan.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_traffic_shaping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_traffic_shaping.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_traffic_shaping_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_traffic_shaping_rules.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_traffic_shaping_uplink_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_traffic_shaping_uplink_bandwidth.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_traffic_shaping_uplink_bandwidth_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_traffic_shaping_uplink_bandwidth_2.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_traffic_shaping_uplink_selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/appliance_traffic_shaping_uplink_selection.json -------------------------------------------------------------------------------- /backup_configs/defaults/appliance_vpn_site_to_site_vpn.json: -------------------------------------------------------------------------------- 1 | { 2 | "mode": "none" 3 | } -------------------------------------------------------------------------------- /backup_configs/defaults/cellular_gateway_connectivity_monitoring_destinations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/cellular_gateway_connectivity_monitoring_destinations.json -------------------------------------------------------------------------------- /backup_configs/defaults/cellular_gateway_dhcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/cellular_gateway_dhcp.json -------------------------------------------------------------------------------- /backup_configs/defaults/cellular_gateway_subnet_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/cellular_gateway_subnet_pool.json -------------------------------------------------------------------------------- /backup_configs/defaults/cellular_gateway_uplink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/cellular_gateway_uplink.json -------------------------------------------------------------------------------- /backup_configs/defaults/management_interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/management_interface.json -------------------------------------------------------------------------------- /backup_configs/defaults/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/settings.json -------------------------------------------------------------------------------- /backup_configs/defaults/snmp.json: -------------------------------------------------------------------------------- 1 | { 2 | "access": "none" 3 | } -------------------------------------------------------------------------------- /backup_configs/defaults/switch_access_control_lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_access_control_lists.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_dhcp_server_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_dhcp_server_policy.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_dscp_to_cos_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_dscp_to_cos_mappings.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_mtu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_mtu.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_routing_multicast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_routing_multicast.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_settings.json -------------------------------------------------------------------------------- /backup_configs/defaults/switch_settings_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "vlan": 1 3 | } -------------------------------------------------------------------------------- /backup_configs/defaults/switch_stp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/switch_stp.json -------------------------------------------------------------------------------- /backup_configs/defaults/traffic_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/traffic_analysis.json -------------------------------------------------------------------------------- /backup_configs/defaults/wireless_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/wireless_settings.json -------------------------------------------------------------------------------- /backup_configs/defaults/wireless_ssid_firewall_l3_firewall_rules_ssid_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/wireless_ssid_firewall_l3_firewall_rules_ssid_0.json -------------------------------------------------------------------------------- /backup_configs/defaults/wireless_ssid_splash_settings_ssid_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/wireless_ssid_splash_settings_ssid_0.json -------------------------------------------------------------------------------- /backup_configs/defaults/wireless_ssid_traffic_shaping_rules_ssid_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/wireless_ssid_traffic_shaping_rules_ssid_0.json -------------------------------------------------------------------------------- /backup_configs/defaults/wireless_ssids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/defaults/wireless_ssids.json -------------------------------------------------------------------------------- /backup_configs/requirements.txt: -------------------------------------------------------------------------------- 1 | meraki==1.40.1 2 | pyyaml==5.4 3 | requests==2.32.0 4 | -------------------------------------------------------------------------------- /backup_configs/restore_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/restore_configs.py -------------------------------------------------------------------------------- /backup_configs/restore_operations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/backup_configs/restore_operations.csv -------------------------------------------------------------------------------- /bssid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/bssid.py -------------------------------------------------------------------------------- /checksubnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/checksubnets.py -------------------------------------------------------------------------------- /clientcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/clientcount.py -------------------------------------------------------------------------------- /clients_in_ip_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/clients_in_ip_range.py -------------------------------------------------------------------------------- /clone_port_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/clone_port_configs.py -------------------------------------------------------------------------------- /cloneprovision/cloneprovision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/cloneprovision/cloneprovision.py -------------------------------------------------------------------------------- /cloneprovision/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/cloneprovision/input.txt -------------------------------------------------------------------------------- /copymxvlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/copymxvlans.py -------------------------------------------------------------------------------- /copynetworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/copynetworks.py -------------------------------------------------------------------------------- /copyswitchcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/copyswitchcfg.py -------------------------------------------------------------------------------- /daily_crossings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/daily_crossings.py -------------------------------------------------------------------------------- /deployappliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/deployappliance.py -------------------------------------------------------------------------------- /deploycustomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/deploycustomer.py -------------------------------------------------------------------------------- /deploydevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/deploydevices.py -------------------------------------------------------------------------------- /deviceupdownstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/deviceupdownstatus.py -------------------------------------------------------------------------------- /disable_status_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/disable_status_page.py -------------------------------------------------------------------------------- /eos_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/eos_scanner.py -------------------------------------------------------------------------------- /export_mx_l3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/export_mx_l3.py -------------------------------------------------------------------------------- /export_mx_s2svpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/export_mx_s2svpn.py -------------------------------------------------------------------------------- /find_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/find_clients.py -------------------------------------------------------------------------------- /find_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/find_ports.py -------------------------------------------------------------------------------- /firmware_lock/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/firmware_lock/config.yaml.example -------------------------------------------------------------------------------- /firmware_lock/firmware_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/firmware_lock/firmware_lock.py -------------------------------------------------------------------------------- /getNetworks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/getNetworks.rb -------------------------------------------------------------------------------- /get_license_capacities_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/get_license_capacities_csv.py -------------------------------------------------------------------------------- /get_license_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/get_license_info.py -------------------------------------------------------------------------------- /getbeacons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/getbeacons.py -------------------------------------------------------------------------------- /googletimezonetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/googletimezonetest.py -------------------------------------------------------------------------------- /import_mx_l3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/import_mx_l3.py -------------------------------------------------------------------------------- /import_mx_s2svpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/import_mx_s2svpn.py -------------------------------------------------------------------------------- /inventorycsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/inventorycsv.py -------------------------------------------------------------------------------- /invlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/invlist.py -------------------------------------------------------------------------------- /latest_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/latest_devices.py -------------------------------------------------------------------------------- /license_counts_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/license_counts_csv.py -------------------------------------------------------------------------------- /listip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/listip.py -------------------------------------------------------------------------------- /manage_firmware/firmware_upgrade_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/manage_firmware/firmware_upgrade_manager.py -------------------------------------------------------------------------------- /manageadmins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/manageadmins.py -------------------------------------------------------------------------------- /merakidevicecounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/merakidevicecounts.py -------------------------------------------------------------------------------- /merakilicensealert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/merakilicensealert.py -------------------------------------------------------------------------------- /mi_bom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mi_bom_tool.py -------------------------------------------------------------------------------- /migrate_cat3k/migrate_cat3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migrate_cat3k/migrate_cat3k.py -------------------------------------------------------------------------------- /migrate_cat3k/migrate_cat3k_init_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migrate_cat3k/migrate_cat3k_init_example.txt -------------------------------------------------------------------------------- /migrate_devices/migrate_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migrate_devices/migrate_devices.py -------------------------------------------------------------------------------- /migrate_networks/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migrate_networks/config.yaml -------------------------------------------------------------------------------- /migrate_networks/migrate_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migrate_networks/migrate_networks.py -------------------------------------------------------------------------------- /migratecomware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migratecomware.py -------------------------------------------------------------------------------- /migration_init_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/migration_init_file.txt -------------------------------------------------------------------------------- /movedevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/movedevices.py -------------------------------------------------------------------------------- /mr_mqtt_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mr_mqtt_monitoring.py -------------------------------------------------------------------------------- /mv_gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mv_gp.py -------------------------------------------------------------------------------- /mx_firewall_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mx_firewall_control/README.md -------------------------------------------------------------------------------- /mx_firewall_control/mxfirewallcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mx_firewall_control/mxfirewallcontrol.py -------------------------------------------------------------------------------- /mx_firewall_control/mxfirewallcontrol_example_input_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/mx_firewall_control/mxfirewallcontrol_example_input_file.txt -------------------------------------------------------------------------------- /nodejs_sdk_builder/endpoint.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/nodejs_sdk_builder/endpoint.template -------------------------------------------------------------------------------- /nodejs_sdk_builder/nodejs_sdk_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/nodejs_sdk_builder/nodejs_sdk_builder.py -------------------------------------------------------------------------------- /nodejs_sdk_builder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/nodejs_sdk_builder/readme.md -------------------------------------------------------------------------------- /nodejs_sdk_builder/sdk_core.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/nodejs_sdk_builder/sdk_core.template -------------------------------------------------------------------------------- /offline_logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/offline_logging/README.md -------------------------------------------------------------------------------- /offline_logging/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/offline_logging/config.yaml -------------------------------------------------------------------------------- /offline_logging/offline_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/offline_logging/offline_logging.py -------------------------------------------------------------------------------- /org_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/org_subnets.py -------------------------------------------------------------------------------- /orgclientscsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/orgclientscsv.py -------------------------------------------------------------------------------- /postman_collection_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/postman_collection_generator.py -------------------------------------------------------------------------------- /provision_sites/provision_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/provision_sites/provision_sites.py -------------------------------------------------------------------------------- /provision_sites/provision_sites_example_input_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/provision_sites/provision_sites_example_input_file.csv -------------------------------------------------------------------------------- /provision_sites/provision_sites_input_file_generator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/provision_sites/provision_sites_input_file_generator.xlsx -------------------------------------------------------------------------------- /reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/reboot.py -------------------------------------------------------------------------------- /removetemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/removetemplate.py -------------------------------------------------------------------------------- /report_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/report_statuses.py -------------------------------------------------------------------------------- /rotate_psks/psk_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/rotate_psks/psk_rotator.py -------------------------------------------------------------------------------- /secure_connect/Private_Applications_CSV_Import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/secure_connect/Private_Applications_CSV_Import/README.md -------------------------------------------------------------------------------- /secure_connect/Private_Applications_CSV_Import/privateApplicationsImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/secure_connect/Private_Applications_CSV_Import/privateApplicationsImport.csv -------------------------------------------------------------------------------- /secure_connect/Private_Applications_CSV_Import/privateApplicationsImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/secure_connect/Private_Applications_CSV_Import/privateApplicationsImport.py -------------------------------------------------------------------------------- /secure_connect/Remote_Access_Logs_Analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/secure_connect/Remote_Access_Logs_Analyzer/README.md -------------------------------------------------------------------------------- /secure_connect/Remote_Access_Logs_Analyzer/remoteAccessLogsAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/secure_connect/Remote_Access_Logs_Analyzer/remoteAccessLogsAnalyzer.py -------------------------------------------------------------------------------- /setSwitchPortOnMacOui/cmdlist.txt: -------------------------------------------------------------------------------- 1 | vlan: 30 2 | tags: phone-port -------------------------------------------------------------------------------- /setSwitchPortOnMacOui/ouilist.txt: -------------------------------------------------------------------------------- 1 | d8:24:bd 2 | 1c:6a:7a -------------------------------------------------------------------------------- /setSwitchPortOnMacOui/setSwitchPortOnMacOui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/setSwitchPortOnMacOui/setSwitchPortOnMacOui.py -------------------------------------------------------------------------------- /set_client_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/set_client_tracking.py -------------------------------------------------------------------------------- /setlocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/setlocation.py -------------------------------------------------------------------------------- /setlocation_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/setlocation_legacy.py -------------------------------------------------------------------------------- /setssidvlanid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/setssidvlanid.py -------------------------------------------------------------------------------- /tag_all_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/tag_all_ports.py -------------------------------------------------------------------------------- /topusers/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/topusers/templates/index.html -------------------------------------------------------------------------------- /topusers/topusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/topusers/topusers.py -------------------------------------------------------------------------------- /update_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/update_ports.py -------------------------------------------------------------------------------- /uplink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/uplink.py -------------------------------------------------------------------------------- /usagestats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/usagestats.py -------------------------------------------------------------------------------- /usagestats_initconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/usagestats_initconfig.txt -------------------------------------------------------------------------------- /usagestats_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meraki/automation-scripts/HEAD/usagestats_manual.pdf --------------------------------------------------------------------------------