├── .ansible-lint ├── .devcontainer └── devcontainer.json ├── .docker ├── Readme.md ├── docker-compose.yml ├── files │ ├── mongo-init.js │ ├── mongodb.key │ ├── nginx.conf │ └── rs-init.sh └── noc.conf ├── .dockerignore ├── .dockerignore.tests ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── workflows │ ├── build-docs.yml │ ├── codeql.yml │ ├── docker-master.yml │ ├── infra-image.yml │ ├── js-tests.yml │ ├── py-tests.yml │ └── ui-master.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── Bug.md │ └── FeatureRequest.md ├── .prettierrc ├── .requirements └── reverted_modules.xtx ├── .yamllint ├── CITATION.cff ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── VERSION ├── __init__.py ├── aaa ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_default_user.py │ ├── 0003_permission.py │ ├── 0004_remove_userprofile.py │ ├── 0005_user_clear_fields.py │ ├── 0006_user_fix_language.py │ ├── 0007_user_last_login.py │ ├── 0008_user_last_login_null.py │ ├── 0009_user_password_policy.py │ ├── 0010_force_password_change.py │ ├── 0011_user_blocked_till.py │ └── __init__.py └── models │ ├── __init__.py │ ├── apikey.py │ ├── group.py │ ├── modelprotectionprofile.py │ ├── permission.py │ ├── user.py │ └── usercontact.py ├── ansible ├── .ansible-ci.yml ├── deploy.yml ├── library │ └── yedit.py ├── lookup_plugins │ ├── __init__.py │ ├── get_tags.py │ └── myglob.py ├── molecule │ ├── common │ │ ├── cache.yml │ │ ├── cache_download.yml │ │ ├── create.yml │ │ ├── destroy.yml │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ ├── ssh_config.j2 │ │ ├── tower.yml │ │ └── verify.yml │ ├── debian10 │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── debian11 │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── default │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── freebsd │ │ ├── cache.yml │ │ ├── cache_download.yml │ │ ├── inv.yml │ │ ├── molecule.yml │ │ ├── prepare.yml │ │ ├── tests │ │ │ └── test_dummy.yml │ │ └── verify.yml │ ├── oel7 │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── redos │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── ubuntu20 │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── tests │ │ │ └── test_dummy.yml │ ├── ubuntu22 │ │ ├── inv.yml │ │ ├── molecule.yml │ │ └── test │ │ │ └── test_dummy.yml │ └── yc │ │ ├── cache_download.yml │ │ ├── create.yml │ │ ├── destroy.yml │ │ ├── playbook.yml │ │ ├── prepare.yml │ │ ├── templates │ │ └── template.tf │ │ └── tower.yml ├── noc_roles │ ├── activator │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── bh │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── bi │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── card │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── chwriter │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── classifier │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── correlator │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── datastream │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── discovery │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── escalator │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── grafanads │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── kafkasender │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── login │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── mailsender │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── metrics │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── mib │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── migrate │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ └── tasks │ │ │ ├── configure_consul.yml │ │ │ └── main.yml │ ├── mrt │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── mx │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── task │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── nbi │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── noc │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── lookup_plugins │ │ │ └── supervisorctl_key.py │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── bring_python.yml │ │ │ ├── checks.yml │ │ │ ├── clean_dir.yml │ │ │ ├── config.yml │ │ │ ├── dirs.yml │ │ │ ├── git.yml │ │ │ ├── hacks.yml │ │ │ ├── init_venv_python3.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ ├── post_install.yml │ │ │ └── tests.yml │ │ └── templates │ │ │ ├── activator.goss.yml.j2 │ │ │ ├── bi.goss.yml.j2 │ │ │ ├── card.goss.yml.j2 │ │ │ ├── ch_datasource.goss.yml.j2 │ │ │ ├── chwriter.goss.yml.j2 │ │ │ ├── classifier.goss.yml.j2 │ │ │ ├── correlator.goss.yml.j2 │ │ │ ├── datastream.goss.yml.j2 │ │ │ ├── discovery.goss.yml.j2 │ │ │ ├── env.j2 │ │ │ ├── escalator.goss.yml.j2 │ │ │ ├── etc │ │ │ ├── noc_services.conf.j2 │ │ │ ├── pooled.yml.j2 │ │ │ ├── pools.yml.j2 │ │ │ ├── supervisord.conf.j2 │ │ │ └── tower.yml.j2 │ │ │ ├── grafanads.goss.yml.j2 │ │ │ ├── kafkasender.goss.yml.j2 │ │ │ ├── lib │ │ │ └── python │ │ │ │ └── site-packages │ │ │ │ └── sitecustomize.py.j2 │ │ │ ├── login.goss.yml.j2 │ │ │ ├── mailsender.goss.yml.j2 │ │ │ ├── metrics.goss.yml.j2 │ │ │ ├── mib.goss.yml.j2 │ │ │ ├── mrt.goss.yml.j2 │ │ │ ├── mx.goss.yml.j2 │ │ │ ├── nbi.goss.yml.j2 │ │ │ ├── noc.goss.yml.j2 │ │ │ ├── noc.service.j2 │ │ │ ├── os │ │ │ ├── Debian_10 │ │ │ │ └── etc │ │ │ │ │ └── init.d │ │ │ │ │ └── noc.j2 │ │ │ ├── Debian_11 │ │ │ │ └── etc │ │ │ │ │ └── init.d │ │ │ │ │ └── noc.j2 │ │ │ └── FreeBSD_12 │ │ │ │ ├── etc │ │ │ │ └── rc.d │ │ │ │ │ └── noc.j2 │ │ │ │ └── telegraf.conf │ │ │ ├── ping.goss.yml.j2 │ │ │ ├── runner.goss.yml.j2 │ │ │ ├── sae.goss.yml.j2 │ │ │ ├── scheduler.goss.yml.j2 │ │ │ ├── selfmon.goss.yml.j2 │ │ │ ├── syslogcollector.goss.yml.j2 │ │ │ ├── tgsender.goss.yml.j2 │ │ │ ├── trapcollector.goss.yml.j2 │ │ │ ├── ui.goss.yml.j2 │ │ │ ├── web.goss.yml.j2 │ │ │ └── worker.goss.yml.j2 │ ├── ping │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── post │ │ ├── meta │ │ │ └── tower.yml │ │ └── tasks │ │ │ └── main.yml │ ├── pre │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ └── tower.yml │ │ ├── tasks │ │ │ ├── checks.yml │ │ │ ├── facts.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ │ ├── CentOS_7 │ │ │ │ ├── firewall.yml │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ ├── firewall.yml │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ ├── firewall.yml │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ ├── firewall.yml │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ └── main.yml │ │ └── templates │ │ │ └── hosts.j2 │ ├── runner │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── sae │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── scheduler │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── selfmon │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── syslogcollector │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── tgsender │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── trapcollector │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── ui │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ ├── web │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ └── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ ├── CentOS_7 │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ └── main.yml │ └── worker │ │ ├── defaults │ │ └── main.yml │ │ ├── meta │ │ ├── main.yml │ │ └── tower.yml │ │ └── tasks │ │ ├── checks.yml │ │ ├── main.yml │ │ └── os │ │ ├── CentOS_7 │ │ └── main.yml │ │ ├── Debian_10 │ │ └── main.yml │ │ ├── Debian_11 │ │ └── main.yml │ │ ├── FreeBSD_12 │ │ └── main.yml │ │ ├── OracleLinux_7 │ │ └── main.yml │ │ ├── RED_7 │ │ └── main.yml │ │ ├── RedHat_7 │ │ └── main.yml │ │ ├── Ubuntu_20 │ │ └── main.yml │ │ └── Ubuntu_22 │ │ └── main.yml ├── post.yml ├── pre.yml ├── site.yml ├── system_roles │ ├── clickhouse │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── checks.yml │ │ │ ├── ds.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ └── tests.yml │ │ └── templates │ │ │ ├── clickhouse.goss.yml.j2 │ │ │ ├── config.xml │ │ │ ├── noc.xml │ │ │ └── users.xml │ ├── consul-template │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── noc_bi.ctmpl │ │ │ ├── noc_ch_datasource.ctmpl │ │ │ ├── noc_chwriter.ctmpl │ │ │ ├── noc_discovery.ctmpl │ │ │ ├── noc_escalator.ctmpl │ │ │ ├── noc_grafanads.ctmpl │ │ │ ├── noc_login.ctmpl │ │ │ ├── noc_mailsender.ctmpl │ │ │ ├── noc_mrt.ctmpl │ │ │ ├── noc_ping.ctmpl │ │ │ ├── noc_sae.ctmpl │ │ │ ├── noc_scheduler.ctmpl │ │ │ ├── noc_trapcollector.ctmpl │ │ │ └── noc_web.ctmpl │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── deservice.yml │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ └── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ ├── service.yml │ │ │ └── tests.yml │ │ └── templates │ │ │ ├── consul-template.bsdinit.j2 │ │ │ ├── consul-template.cfg.j2 │ │ │ ├── consul-template.goss.yml.j2 │ │ │ ├── consul-template.service.j2 │ │ │ └── service.hcl.j2 │ ├── consul │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── lookup_plugins │ │ │ └── consul_key.py │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── acl.yml │ │ │ ├── checks.yml │ │ │ ├── config.yml │ │ │ ├── control.yml │ │ │ ├── deservice.yml │ │ │ ├── dirs.yml │ │ │ ├── install_wo_repo.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ ├── service.yml │ │ │ ├── service_config_set.yml │ │ │ ├── service_config_update.yml │ │ │ └── tests.yml │ │ ├── templates │ │ │ ├── config_bootstrap.json.j2 │ │ │ ├── config_client.json.j2 │ │ │ ├── config_server.json.j2 │ │ │ ├── configd_50acl_policy.hcl.j2 │ │ │ ├── consul.goss.yml.j2 │ │ │ ├── consul.hcl.j2 │ │ │ ├── consul_bsdinit.j2 │ │ │ ├── consul_systemd.service.j2 │ │ │ ├── perfomance.json.j2 │ │ │ └── service.json.j2 │ │ └── vars │ │ │ ├── CentOS_7.yml │ │ │ ├── Debian_10.yml │ │ │ ├── Debian_11.yml │ │ │ ├── FreeBSD_12.yml │ │ │ ├── OracleLinux_7.yml │ │ │ ├── RED_7.yml │ │ │ ├── RedHat_7.yml │ │ │ ├── Ubuntu_20.yml │ │ │ └── Ubuntu_22.yml │ ├── goss │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ └── service.yml │ │ └── templates │ │ │ ├── ansible.goss.yml.j2 │ │ │ └── time.goss.yml.j2 │ ├── grafana │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── dashboards.yml │ │ │ ├── datasources.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ ├── plugins.yml │ │ │ └── tests.yml │ │ └── templates │ │ │ ├── grafana.goss.yml.j2 │ │ │ ├── grafana.ini │ │ │ ├── noc.js.j2 │ │ │ ├── os │ │ │ └── FreeBSD_12 │ │ │ │ └── grafana.conf │ │ │ ├── render.js │ │ │ └── report.js.j2 │ ├── kafka │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── config.yml │ │ │ ├── dirs.yml │ │ │ ├── init.yml │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ │ ├── CentOS_7 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ └── main.yml │ │ └── templates │ │ │ ├── kafka.goss.yml.j2 │ │ │ ├── kafka.service.j2 │ │ │ └── server.properties.j2 │ ├── liftbridge │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── checks.yml │ │ │ ├── config.yml │ │ │ ├── dirs.yml │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ │ ├── CentOS_7 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ └── main.yml │ │ ├── templates │ │ │ ├── liftbridge.goss.yml.j2 │ │ │ └── liftbridge_systemd.service.j2 │ │ └── vars │ │ │ ├── CentOS_7.yml │ │ │ ├── Debian_10.yml │ │ │ ├── Debian_11.yml │ │ │ ├── FreeBSD_12.yml │ │ │ ├── OracleLinux_7.yml │ │ │ ├── RED_7.yml │ │ │ ├── RedHat_7.yml │ │ │ ├── Ubuntu_20.yml │ │ │ └── Ubuntu_22.yml │ ├── mongod │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── lookup_plugins │ │ │ └── mongo_key.py │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ ├── master.yml │ │ │ ├── master_rs.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ ├── arbiter.yml │ │ │ │ │ └── main.yml │ │ │ ├── rs_update.yml │ │ │ └── tests.yml │ │ ├── templates │ │ │ ├── admininit.js.j2 │ │ │ ├── etc │ │ │ │ ├── logrotate.d │ │ │ │ │ ├── mongod-arbiter.conf.j2 │ │ │ │ │ └── mongod.conf.j2 │ │ │ │ ├── security │ │ │ │ │ └── limits.d │ │ │ │ │ │ └── mongo_limits.conf.j2 │ │ │ │ ├── systemd │ │ │ │ │ └── system │ │ │ │ │ │ ├── mongod-arbiter.service.j2 │ │ │ │ │ │ └── mongod.service.j2 │ │ │ │ └── tmpfiles.d │ │ │ │ │ └── mongo.conf.j2 │ │ │ ├── mongod-arbiter.conf.j2 │ │ │ ├── mongod.conf.j2 │ │ │ ├── mongod.goss.yml.j2 │ │ │ ├── mongodb.sh.j2 │ │ │ ├── os │ │ │ │ ├── Debian_10 │ │ │ │ │ └── etc │ │ │ │ │ │ ├── default │ │ │ │ │ │ ├── mongod-arbiter.j2 │ │ │ │ │ │ └── mongod.j2 │ │ │ │ │ │ └── grub.d │ │ │ │ │ │ └── 50_disable_transparent_hugepages.j2 │ │ │ │ ├── Debian_11 │ │ │ │ │ └── etc │ │ │ │ │ │ ├── default │ │ │ │ │ │ ├── mongod-arbiter.j2 │ │ │ │ │ │ └── mongod.j2 │ │ │ │ │ │ └── grub.d │ │ │ │ │ │ └── 50_disable_transparent_hugepages.j2 │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── mongo.conf │ │ │ │ ├── RED_7 │ │ │ │ │ └── etc │ │ │ │ │ │ └── systemd │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── mongod-arbiter.service.j2 │ │ │ │ │ │ └── mongod.service.j2 │ │ │ │ ├── RedHat_7 │ │ │ │ │ └── etc │ │ │ │ │ │ ├── default │ │ │ │ │ │ ├── mongod-arbiter.j2 │ │ │ │ │ │ └── mongod.j2 │ │ │ │ │ │ ├── grub.d │ │ │ │ │ │ └── 50_disable_transparent_hugepages.j2 │ │ │ │ │ │ ├── sysconfig │ │ │ │ │ │ ├── mongod-arbiter.j2 │ │ │ │ │ │ └── mongod.j2 │ │ │ │ │ │ └── systemd │ │ │ │ │ │ └── system │ │ │ │ │ │ └── custom-mongodb-readahead.service │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── etc │ │ │ │ │ │ └── systemd │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── mongod-arbiter.service.j2 │ │ │ │ │ │ └── mongod.service.j2 │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── etc │ │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ ├── mongod-arbiter.service.l2 │ │ │ │ │ └── mongod.service.j2 │ │ │ ├── rsinit.js.j2 │ │ │ ├── shell.js.j2 │ │ │ └── userinit.js.j2 │ │ └── vars │ │ │ ├── CentOS_7.yml │ │ │ ├── Debian_10.yml │ │ │ ├── Debian_11.yml │ │ │ ├── FreeBSD_12.yml │ │ │ ├── OracleLinux_7.yml │ │ │ ├── RED_7.yml │ │ │ ├── RedHat_7.yml │ │ │ ├── Ubuntu_20.yml │ │ │ └── Ubuntu_22.yml │ ├── nats │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── checks.yml │ │ │ ├── config.yml │ │ │ ├── dirs.yml │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ └── os │ │ │ │ ├── CentOS_7 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ └── main.yml │ │ ├── templates │ │ │ ├── config.conf.j2 │ │ │ ├── nats-server_systemd.service.j2 │ │ │ └── nats.goss.yml.j2 │ │ └── vars │ │ │ ├── CentOS_7.yml │ │ │ ├── Debian_10.yml │ │ │ ├── Debian_11.yml │ │ │ ├── FreeBSD_12.yml │ │ │ ├── OracleLinux_7.yml │ │ │ ├── RED_7.yml │ │ │ ├── RedHat_7.yml │ │ │ ├── Ubuntu_20.yml │ │ │ └── Ubuntu_22.yml │ ├── nginx │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ └── upstream.conf.ctmpl │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── main.yml │ │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ │ ├── certs.yml │ │ │ ├── checks.yml │ │ │ ├── main.yml │ │ │ ├── os │ │ │ │ ├── CentOS_7 │ │ │ │ │ ├── firewall.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_10 │ │ │ │ │ └── main.yml │ │ │ │ ├── Debian_11 │ │ │ │ │ └── main.yml │ │ │ │ ├── FreeBSD_12 │ │ │ │ │ └── main.yml │ │ │ │ ├── OracleLinux_7 │ │ │ │ │ ├── firewall.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── RED_7 │ │ │ │ │ ├── firewall.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── RedHat_7 │ │ │ │ │ ├── firewall.yml │ │ │ │ │ └── main.yml │ │ │ │ ├── Ubuntu_20 │ │ │ │ │ └── main.yml │ │ │ │ └── Ubuntu_22 │ │ │ │ │ └── main.yml │ │ │ ├── path.yml │ │ │ └── tests.yml │ │ ├── templates │ │ │ ├── allow_ip_datastream.conf.j2 │ │ │ ├── allow_ip_nbi.conf.j2 │ │ │ ├── etc │ │ │ │ └── telegraf │ │ │ │ │ └── telegraf.d │ │ │ │ │ ├── discovery.conf.j2 │ │ │ │ │ └── fm-monitor.conf.j2 │ │ │ ├── nginx.goss.yml.j2 │ │ │ ├── nginx.json.j2 │ │ │ ├── noc.conf.j2 │ │ │ ├── noc_ssl.conf.j2 │ │ │ └── os │ │ │ │ └── FreeBSD_12 │ │ │ │ └── nginx.conf │ │ └── vars │ │ │ ├── CentOS_7.yml │ │ │ ├── Debian_10.yml │ │ │ ├── Debian_11.yml │ │ │ ├── FreeBSD_12.yml │ │ │ ├── OracleLinux_7.yml │ │ │ ├── RED_7.yml │ │ │ ├── RedHat_7.yml │ │ │ ├── Ubuntu_20.yml │ │ │ └── Ubuntu_22.yml │ └── postgres │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ ├── main.yml │ │ └── tower.yml │ │ ├── service.yml │ │ ├── tasks │ │ ├── checks.yml │ │ ├── install.yml │ │ ├── main.yml │ │ ├── os │ │ │ ├── CentOS_7 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── Debian_10 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── Debian_11 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── FreeBSD_12 │ │ │ │ ├── checks.yml │ │ │ │ └── main.yml │ │ │ ├── OracleLinux_7 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── RED_7 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── RedHat_7 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ ├── Ubuntu_20 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ │ └── Ubuntu_22 │ │ │ │ ├── checks.yml │ │ │ │ ├── install.yml │ │ │ │ └── main.yml │ │ ├── tests.yml │ │ ├── users.yml │ │ └── utils.yml │ │ └── templates │ │ ├── etc │ │ └── security │ │ │ └── limits.d │ │ │ └── postgres_limits.conf.j2 │ │ ├── postgres.conf.j2 │ │ ├── postgres.goss.yml.j2 │ │ └── postgres_check.sh.j2 └── vars │ ├── CentOS_7.yml │ ├── Debian_10.yml │ ├── Debian_11.yml │ ├── FreeBSD_12.yml │ ├── OracleLinux_7.yml │ ├── RED_7.yml │ ├── RedHat_7.yml │ ├── Ubuntu_20.yml │ ├── Ubuntu_22.yml │ └── main.yml ├── bi ├── __init__.py └── models │ ├── __init__.py │ ├── alarmlogs.py │ ├── alarms.py │ ├── changes.py │ ├── dashboard.py │ ├── dashboardlayout.py │ ├── diagnostichistory.py │ ├── disposelog.py │ ├── events.py │ ├── mac.py │ ├── macdb.py │ ├── managedobjects.py │ ├── metricstate.py │ ├── netflow.py │ ├── outages.py │ ├── purgatorium.py │ ├── reboots.py │ ├── reportexecutionhistory.py │ ├── routingneighbors.py │ ├── serviceoutages.py │ ├── span.py │ └── syslog.py ├── cm ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_register_vcs.py │ ├── 0003_access_profile.py │ ├── 0004_split_object.py │ ├── 0005_split_object_data.py │ ├── 0006_rpsl.py │ ├── 0007_last_modified.py │ ├── 0008_notify.py │ ├── 0009_access_and_notify.py │ ├── 0010_trap_source_ip.py │ ├── 0011_clean_up_config.py │ ├── 0012_object_notify_add_notification_group.py │ ├── 0013_create_notification_groups.py │ ├── 0014_object_notifify_drop_emails.py │ ├── 0015_tags.py │ ├── 0016_no_objectgroup.py │ ├── 0017_drop_config.py │ └── __init__.py └── models │ ├── __init__.py │ ├── confdbquery.py │ ├── configurationparam.py │ ├── configurationscope.py │ ├── interfacevalidationpolicy.py │ ├── objectnotify.py │ └── objectvalidationpolicy.py ├── cmibs ├── __init__.py ├── adsl_line_mib.py ├── airespace_switching_mib.py ├── airespace_wireless_mib.py ├── bgp4_mib.py ├── bridge_mib.py ├── cambium_pmp80211_mib.py ├── cisco_cdp_mib.py ├── cisco_class_based_qos_mib.py ├── cisco_mac_notification_mib.py ├── cisco_port_channel_mib.py ├── cisco_pppoe_mib.py ├── cisco_rttmon_mib.py ├── cisco_vlan_membership_mib.py ├── cisco_vpdn_mgmt_mib.py ├── cisco_vrf_mib.py ├── cisco_vtp_mib.py ├── disman_ping_mib.py ├── entity_mib.py ├── entity_sensor_mib.py ├── entity_state_mib.py ├── etherlike_mib.py ├── fastpath_wlan_access_point_mib.py ├── host_resources_mib.py ├── huawei_aaa_mib.py ├── huawei_bgp_vpn_mib.py ├── huawei_cbqos_mib.py ├── huawei_device_mib.py ├── huawei_entity_extent_mib.py ├── huawei_environment_mib.py ├── huawei_ippool_mib.py ├── huawei_l2if_mib.py ├── huawei_power_mib.py ├── huawei_sys_man_mib.py ├── huawei_xpon_mib.py ├── ieee8021_bridge_mib.py ├── ieee8021_q_bridge_mib.py ├── ieee8023_lag_mib.py ├── if_mib.py ├── ip_mib.py ├── juniper_cos_mib.py ├── juniper_dom_mib.py ├── juniper_mib.py ├── juniper_rpm_mib.py ├── juniper_virtualchassis_mib.py ├── lldp_mib.py ├── mpls_l3vpn_std_mib.py ├── mpls_vpn_mib.py ├── nag_mib.py ├── nqa_mib.py ├── ntpv4_mib.py ├── q_bridge_mib.py ├── radlan_stack_mib.py ├── rfc1213_mib.py ├── rmon2_mib.py ├── snmpv2_mib.py └── vdsl2_line_mib.py ├── codecov.yml ├── collections ├── README.md ├── bi.dashboardlayouts │ ├── 2x2.json │ ├── 3x3.json │ └── 4x4.json ├── bi.dashboards │ ├── 033756b0-8e38-410b-a900-25ebefacf43f.json │ ├── 0a542cf3-0ec9-489d-9d28-1bccdf845e41.json │ ├── 89f892d6-0c89-4b7d-9a36-da695fe7a649.json │ ├── 8c03d0f5-de6b-48e6-a89c-f26fc41297f7.json │ └── fd891d39-2950-4585-8f35-e21af8d64f23.json ├── cm.configurationparams │ ├── Administrative_State.json │ ├── CMax.json │ ├── CMin.json │ ├── Category.json │ ├── Description.json │ ├── Destination.json │ ├── EnableTx.json │ ├── Location.json │ ├── Mode.json │ ├── SetALSMode.json │ ├── SetDataType.json │ ├── SetFECType.json │ ├── SetFreq.json │ ├── SetLoopback.json │ ├── SetModType.json │ ├── SetPayload.json │ ├── SetState.json │ ├── SetTxPwr.json │ ├── WMax.json │ └── WMin.json ├── cm.configurationscopes │ ├── Common.json │ ├── EthernetPort.json │ ├── OTN.json │ ├── OpticaLinePort.json │ ├── OpticalPort.json │ └── Sensor.json ├── cm.errortypes │ ├── Config │ │ ├── Match_Template.json │ │ └── Mismatch_Template.json │ ├── Interface │ │ ├── Admin_Status_Down.json │ │ ├── Admin_Status_Up.json │ │ ├── CDP_Disabled.json │ │ ├── CDP_Enabled.json │ │ ├── IP_Proxy_ARP_Enabled.json │ │ ├── IP_Redirects_Enabled.json │ │ ├── ISIS_Without_ISO.json │ │ ├── Invalid_Description.json │ │ ├── MPLS_Without_ISIS.json │ │ └── No_Description.json │ ├── Service │ │ └── Enabled.json │ ├── System │ │ ├── Hostname_Mismatches_DB.json │ │ ├── Hostname_Mismatches_Regexp.json │ │ └── Hostname_is_Empty.json │ └── Validator │ │ └── Internal_Error.json ├── dev.quiz │ ├── Ad_Hoc.json │ ├── General_DSLAM.json │ └── General_Switches.json ├── dev.specs │ ├── Cisco_L2_L3_switches_devices.json │ ├── Dlink_DAS_devices.json │ ├── Generic_SNMP_devices_example.json │ ├── Huawei_L2_Access_Switches.json │ ├── Huawei_MA5300_devices.json │ ├── NSN_hiX56xx_devices.json │ └── Raisecom_L2_Access_Switches.json ├── fm.alarmclasses │ ├── Chassis │ │ ├── CPU │ │ │ └── CPU_Exhausted.json │ │ ├── Clock │ │ │ └── Clock_Failed.json │ │ ├── Fabric │ │ │ └── CRC_Errors.json │ │ ├── Fan │ │ │ ├── Fan_Failed.json │ │ │ └── Fan_Removed.json │ │ ├── Hardware │ │ │ ├── Hardware_Error.json │ │ │ ├── Hardware_Port_Error.json │ │ │ ├── Hardware_Port_Warning.json │ │ │ ├── Hardware_Warning.json │ │ │ └── Module │ │ │ │ ├── Invalid_Module.json │ │ │ │ ├── Module_Down.json │ │ │ │ └── Module_Error.json │ │ ├── Linecard │ │ │ ├── LC_Down.json │ │ │ └── LC_Error.json │ │ ├── PSU │ │ │ ├── PSU_Failed.json │ │ │ └── Power_Failed.json │ │ ├── RAM │ │ │ ├── Insufficient_Memory.json │ │ │ └── RAM_Failed.json │ │ ├── Stack │ │ │ └── Stack_Degraded.json │ │ ├── Supervisor │ │ │ └── Supervisor_Down.json │ │ └── TCAM │ │ │ ├── TCAM_Entry_Capacity_Exceeded.json │ │ │ └── TCAM_Error.json │ ├── Config │ │ ├── Config_Download_Failed.json │ │ ├── Config_Sync_Failed.json │ │ ├── Config_Upload_Failed.json │ │ ├── Invalid_Config.json │ │ ├── Policy_Violation.json │ │ └── Policy_Violations.json │ ├── Discovery │ │ ├── Error │ │ │ ├── Auth_Failed.json │ │ │ ├── Connection_Refused.json │ │ │ ├── Low_Privileges.json │ │ │ ├── No_Super.json │ │ │ ├── SNMP_Community.json │ │ │ ├── SSH_Protocol.json │ │ │ ├── Service_Not_Available.json │ │ │ └── Unhandled_Exception.json │ │ ├── Guess │ │ │ ├── CLI_Credentials.json │ │ │ └── Profile.json │ │ └── Job │ │ │ ├── Box.json │ │ │ └── Periodic.json │ ├── Environment │ │ ├── AC_Voltage_Out_of_Range.json │ │ ├── Chassis_Voltage_Out_of_Range.json │ │ ├── DC_Voltage_Out_of_Range.json │ │ ├── Humidity_Out_of_Range.json │ │ ├── Module_Voltage_Out_of_Range.json │ │ ├── Temperature_Out_of_Range.json │ │ ├── Total_Power_Loss.json │ │ └── UPS │ │ │ ├── Battery_Power_Low.json │ │ │ ├── Input_Power_Failed.json │ │ │ ├── Input_Power_Low.json │ │ │ ├── Input_Voltage_or_Frequency_Problem.json │ │ │ └── Self-Test_Failed.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ └── Alarm.json │ ├── Multicast │ │ └── Frequency │ │ │ └── Overflow.json │ ├── NOC │ │ ├── Group.json │ │ ├── IPAM │ │ │ └── VRF_Group_Address_Collision.json │ │ ├── Managed_Object │ │ │ ├── Access_Degraded.json │ │ │ ├── Access_Lost.json │ │ │ ├── Configuration_Errors │ │ │ │ └── Misconfigured_SNMP.json │ │ │ ├── Denied_Firmware.json │ │ │ ├── New_Platform.json │ │ │ ├── Ping_Failed.json │ │ │ └── Storm_Control.json │ │ ├── PM │ │ │ ├── High_Error.json │ │ │ ├── High_Warning.json │ │ │ ├── Low_Error.json │ │ │ ├── Low_Warning.json │ │ │ ├── Out_of_Interface_Thresholds.json │ │ │ └── Out_of_Thresholds.json │ │ ├── Periodic │ │ │ └── Periodic_Failed.json │ │ ├── Ping_Failed.json │ │ ├── SA │ │ │ └── Activator_Pool_Degraded.json │ │ └── Service_Status_Change.json │ ├── Network │ │ ├── BFD │ │ │ └── Session_Down.json │ │ ├── BGP │ │ │ ├── Peer_Down.json │ │ │ └── Prefix_Limit_Exceeded.json │ │ ├── CEF │ │ │ └── Resource_Failure.json │ │ ├── DHCP │ │ │ └── Untrusted_Server.json │ │ ├── DNS │ │ │ └── Bad_Query.json │ │ ├── DOCSIS │ │ │ ├── BPI_Unautorized.json │ │ │ ├── Bad_Timing_Offset.json │ │ │ ├── Invalid_CoS.json │ │ │ ├── Invalid_DOCSIS_Message.json │ │ │ ├── Invalid_QoS.json │ │ │ ├── Invalid_Shared_Secret.json │ │ │ ├── Max_CPE_Reached.json │ │ │ ├── Maximum_Capacity_Reached.json │ │ │ └── Maximum_SIDs.json │ │ ├── EIGRP │ │ │ └── Neighbor_Down.json │ │ ├── IMPB │ │ │ └── Unauthenticated_IP-MAC.json │ │ ├── IP │ │ │ ├── ARP_Moved.json │ │ │ ├── Address_Conflict.json │ │ │ └── IP_Flap.json │ │ ├── IS-IS │ │ │ └── Adjacency_Down.json │ │ ├── LBD │ │ │ ├── Loop_Detected.json │ │ │ └── Vlan_Loop_Detected.json │ │ ├── Link │ │ │ ├── DOM │ │ │ │ ├── Alarm_Out_of_Threshold.json │ │ │ │ └── Warning_Out_of_Threshold.json │ │ │ ├── Duplex_Mismatch.json │ │ │ ├── Err-Disable.json │ │ │ ├── Half-Duplex.json │ │ │ └── Link_Down.json │ │ ├── MAC │ │ │ ├── BD_MAC_Exceed.json │ │ │ ├── Duplicate_MAC.json │ │ │ ├── Invalid_MAC.json │ │ │ ├── Link_MAC_Exceed.json │ │ │ ├── MAC_Exceed.json │ │ │ ├── MAC_Flap.json │ │ │ └── MAC_Flood.json │ │ ├── MPLS │ │ │ ├── LDP_Neighbor_Down.json │ │ │ ├── LDP_Session_Down.json │ │ │ ├── LSP_Down.json │ │ │ ├── Path_Down.json │ │ │ └── TDP_Neighbor_Down.json │ │ ├── MSDP │ │ │ └── Peer_Down.json │ │ ├── Monitor │ │ │ └── CRC_Error_Detected.json │ │ ├── OSPF │ │ │ └── Neighbor_Down.json │ │ ├── PIM │ │ │ ├── DR_Change.json │ │ │ ├── Invalid_RP.json │ │ │ ├── MSDP_Peer_Down.json │ │ │ └── Neighbor_Down.json │ │ ├── Port │ │ │ └── Loss_of_Signal.json │ │ ├── Port_Security │ │ │ └── Port_Security_Violation.json │ │ ├── RSVP │ │ │ └── Neighbor_Down.json │ │ ├── STP │ │ │ ├── BPDU_Guard_Violation.json │ │ │ ├── Root_Guard_Violation.json │ │ │ ├── STP_Loop_Detected.json │ │ │ └── STP_Vlan_Loop_Detected.json │ │ ├── Storm_Control │ │ │ ├── Broadcast_Storm_Detected.json │ │ │ ├── Multicast_Storm_Detected.json │ │ │ ├── Storm_Detected.json │ │ │ └── Unicast_Storm_Detected.json │ │ ├── UDLD │ │ │ └── UDLD_Protocol_Error_Detected.json │ │ └── xPON │ │ │ ├── Laser_Always_On.json │ │ │ └── ONU │ │ │ └── Power_Failed.json │ ├── OTN │ │ ├── ODU │ │ │ ├── AIS.json │ │ │ ├── LOFLOM.json │ │ │ ├── Loss_of_Frame.json │ │ │ ├── Loss_of_Signal.json │ │ │ ├── PM │ │ │ │ ├── BEI.json │ │ │ │ ├── BIP.json │ │ │ │ └── SF.json │ │ │ └── SM │ │ │ │ └── Signal_Fail.json │ │ └── OTU │ │ │ ├── Loss_of_Frame.json │ │ │ ├── Loss_of_Signal.json │ │ │ └── SM │ │ │ └── Signal_Fail.json │ ├── Security │ │ ├── Abduct │ │ │ └── Cable_Abduct.json │ │ ├── Access │ │ │ ├── Case_Open.json │ │ │ └── Door_Open.json │ │ ├── Attack │ │ │ ├── Attack.json │ │ │ ├── Blat_Attack.json │ │ │ ├── IP_Spoofing.json │ │ │ ├── Land_Attack.json │ │ │ ├── Ping_Of_Death.json │ │ │ ├── Smurf_Attack.json │ │ │ ├── TCP_SYNFIN_Scan.json │ │ │ └── Teardrop_Attack.json │ │ └── Authentication │ │ │ ├── RADIUS_server_failed.json │ │ │ └── TACACS+_server_failed.json │ ├── System │ │ ├── Insufficient_Memory.json │ │ ├── Process_Crashed.json │ │ └── Reboot.json │ └── Vendor │ │ ├── Arista │ │ └── EOS │ │ │ └── VMTracer │ │ │ └── Failed_to_connect_to_vCenter.json │ │ ├── Cisco │ │ ├── IOS │ │ │ └── Network │ │ │ │ └── Load_Balance │ │ │ │ ├── Server_Farm_Degraded.json │ │ │ │ └── vserver_Out_of_Service.json │ │ └── SCOS │ │ │ └── Security │ │ │ └── Attack │ │ │ └── Attack_Detected.json │ │ └── f5 │ │ └── BIGIP │ │ └── Network │ │ └── Load_Balance │ │ ├── Node_Down.json │ │ └── Service_Down.json ├── fm.alarmseverities │ ├── CRITICAL.json │ ├── IGNORE.json │ ├── INFO.json │ ├── MAJOR.json │ ├── MINOR.json │ └── WARNING.json ├── fm.dispositionrules │ ├── Chassis │ │ ├── Clock │ │ │ ├── Clock_Failed_Chassis │ │ │ │ └── Clock │ │ │ │ │ └── Clock_Failed_dispose_.json │ │ │ └── Clock_Recovered_Chassis │ │ │ │ └── Clock │ │ │ │ └── Clock_Failed_dispose_.json │ │ ├── Fabric │ │ │ └── CRC_Errors_Chassis │ │ │ │ └── Fabric │ │ │ │ └── CRC_Errors_dispose_.json │ │ ├── Fan │ │ │ ├── Fan_Failed_Chassis │ │ │ │ └── Fan │ │ │ │ │ └── Fan_Failed_dispose_.json │ │ │ ├── Fan_Inserted_Chassis │ │ │ │ └── Fan │ │ │ │ │ └── Fan_Removed_dispose_.json │ │ │ ├── Fan_Recovered_Chassis │ │ │ │ └── Fan │ │ │ │ │ └── Fan_Failed_dispose_.json │ │ │ └── Fan_Removed_Chassis │ │ │ │ └── Fan │ │ │ │ └── Fan_Removed_dispose_.json │ │ ├── Hardware │ │ │ ├── Hardware_Error_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Error_dispose_.json │ │ │ ├── Hardware_Port_Error_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Port_Error_dispose_.json │ │ │ ├── Hardware_Port_Error_Recover_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Port_Error_dispose_.json │ │ │ ├── Hardware_Port_Warning_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Port_Warning_dispose_.json │ │ │ ├── Hardware_Port_Warning_Recover_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Port_Warning_dispose_.json │ │ │ ├── Hardware_Warning_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Hardware_Warning_dispose_.json │ │ │ └── Module │ │ │ │ ├── Invalid_Module_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Invalid_Module_dispose_.json │ │ │ │ ├── Invalid_Resume_Module_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Invalid_Module_dispose_.json │ │ │ │ ├── Module_Down_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Module_Down_dispose_.json │ │ │ │ ├── Module_Error_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Module_Error_dispose_.json │ │ │ │ ├── Module_Offline_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Module_Down_dispose_.json │ │ │ │ ├── Module_Power_Off_Chassis │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ └── Module_Down_dispose_.json │ │ │ │ └── Module_Up_Chassis │ │ │ │ └── Hardware │ │ │ │ └── Module │ │ │ │ └── Module_Down_dispose_.json │ │ ├── Linecard │ │ │ ├── LC_Down_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Down_dispose_.json │ │ │ ├── LC_Error_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Error_dispose_.json │ │ │ ├── LC_Error_Recover_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Error_dispose_.json │ │ │ ├── LC_Offline_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Down_dispose_.json │ │ │ ├── LC_Power_Off_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Down_dispose_.json │ │ │ ├── LC_Removed_Chassis │ │ │ │ └── Linecard │ │ │ │ │ └── LC_Down_dispose_.json │ │ │ └── LC_Up_Chassis │ │ │ │ └── Linecard │ │ │ │ └── LC_Down_dispose_.json │ │ ├── PSU │ │ │ ├── PSU_Failed_Chassis │ │ │ │ └── PSU │ │ │ │ │ └── PSU_Failed_dispose_.json │ │ │ ├── PSU_Recovered_Chassis │ │ │ │ └── PSU │ │ │ │ │ └── PSU_Failed_dispose_.json │ │ │ └── Power_Failed_Chassis │ │ │ │ └── PSU │ │ │ │ └── Power_Failed_dispose_.json │ │ ├── RAM │ │ │ ├── Insufficient_Memory_Chassis │ │ │ │ └── RAM │ │ │ │ │ └── Insufficient_Memory_dispose_.json │ │ │ └── RAM_Failed_Chassis │ │ │ │ └── RAM │ │ │ │ └── RAM_Failed_dispose_.json │ │ ├── Stack │ │ │ ├── Stack_Degraded_Chassis │ │ │ │ └── Stack │ │ │ │ │ └── Stack_Degraded_dispose_.json │ │ │ └── Stack_is_Raised_Chassis │ │ │ │ └── Stack │ │ │ │ └── Stack_Degraded_dispose_.json │ │ ├── Supervisor │ │ │ ├── Supervisor_Down_Chassis │ │ │ │ └── Supervisor │ │ │ │ │ └── Supervisor_Down_dispose_.json │ │ │ └── Supervisor_Up_Chassis │ │ │ │ └── Supervisor │ │ │ │ └── Supervisor_Down_dispose_.json │ │ └── TCAM │ │ │ ├── TCAM_Entry_Capacity_Exceeded_Chassis │ │ │ └── TCAM │ │ │ │ └── TCAM_Entry_Capacity_Exceeded_dispose_.json │ │ │ └── TCAM_Error_Chassis │ │ │ └── TCAM │ │ │ └── TCAM_Error_dispose_.json │ ├── Config │ │ ├── Config_Changed_handlers_.json │ │ ├── Config_Copy_handlers_.json │ │ ├── Config_Corrected_Config │ │ │ └── Invalid_Config_dispose_.json │ │ ├── Config_Download_Failed_Config │ │ │ └── Config_Download_Failed_dispose_.json │ │ ├── Config_Upload_Failed_Config │ │ │ └── Config_Upload_Failed_dispose_.json │ │ └── Invalid_Config_Config │ │ │ └── Invalid_Config_dispose_.json │ ├── Environment │ │ ├── AC_Voltage_Out_of_Range_Environment │ │ │ └── AC_Voltage_Out_of_Range_dispose_.json │ │ ├── AC_Voltage_Returned_to_Normal_Range_Environment │ │ │ └── AC_Voltage_Out_of_Range_dispose_.json │ │ ├── Chassis_Voltage_Out_of_Range_Environment │ │ │ └── Chassis_Voltage_Out_of_Range_dispose_.json │ │ ├── Chassis_Voltage_Returned_to_Normal_Range_Environment │ │ │ └── Chassis_Voltage_Out_of_Range_dispose_.json │ │ ├── DC_Voltage_Out_of_Range_Environment │ │ │ └── DC_Voltage_Out_of_Range_dispose_.json │ │ ├── DC_Voltage_Returned_to_Normal_Range_Environment │ │ │ └── DC_Voltage_Out_of_Range_dispose_.json │ │ ├── Humidity_Out_of_Range_Environment │ │ │ └── Humidity_Out_of_Range_dispose_.json │ │ ├── Humidity_Returned_to_Normal_Range_Environment │ │ │ └── Humidity_Out_of_Range_dispose_.json │ │ ├── Module_Voltage_Out_of_Range_Environment │ │ │ └── Module_Voltage_Out_of_Range_dispose_.json │ │ ├── Module_Voltage_Returned_to_Normal_Range_Environment │ │ │ └── Module_Voltage_Out_of_Range_dispose_.json │ │ ├── Temperature_Out_of_Range_Environment │ │ │ └── Temperature_Out_of_Range_dispose_.json │ │ ├── Temperature_Returned_to_Normal_Range_Environment │ │ │ └── Temperature_Out_of_Range_dispose_.json │ │ └── UPS │ │ │ ├── Battery_Power_Low_Environment │ │ │ └── UPS │ │ │ │ └── Battery_Power_Low_dispose_.json │ │ │ ├── Battery_Power_Normal_Environment │ │ │ └── UPS │ │ │ │ └── Battery_Power_Low_dispose_.json │ │ │ ├── Input_Power_Failed_Environment │ │ │ └── UPS │ │ │ │ └── Input_Power_Failed_dispose_.json │ │ │ ├── Input_Power_Low_Environment │ │ │ └── UPS │ │ │ │ └── Input_Power_Low_dispose_.json │ │ │ ├── Input_Power_OK_Environment │ │ │ └── UPS │ │ │ │ ├── Input_Power_Failed_dispose_.json │ │ │ │ ├── Input_Power_Low_dispose_.json │ │ │ │ └── Input_Voltage_or_Frequency_Problem_dispose_.json │ │ │ ├── Input_Voltage_or_Frequency_Problem_Environment │ │ │ └── UPS │ │ │ │ └── Input_Voltage_or_Frequency_Problem_dispose_.json │ │ │ └── Self-Test_Failed_Environment │ │ │ └── UPS │ │ │ └── Self-Test_Failed_dispose_.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ ├── Alarm_cleared_IRE-Polus │ │ │ └── Horizon │ │ │ │ └── Alarm_dispose_.json │ │ │ └── Alarm_raised_IRE-Polus │ │ │ └── Horizon │ │ │ └── Alarm_dispose_.json │ ├── Multicast │ │ └── Frequency │ │ │ ├── Overflow_Multicast │ │ │ └── Frequency │ │ │ │ └── Overflow_dispose_.json │ │ │ └── Overflow_Resume_Multicast │ │ │ └── Frequency │ │ │ └── Overflow_dispose_.json │ ├── NOC │ │ ├── IPAM │ │ │ └── VRF_Group_Address_Collision_NOC │ │ │ │ └── IPAM │ │ │ │ └── VRF_Group_Address_Collision_dispose_.json │ │ ├── Managed_Object │ │ │ ├── Ping_Failed_NOC │ │ │ │ └── Managed_Object │ │ │ │ │ └── Ping_Failed_dispose_.json │ │ │ ├── Ping_OK_Chassis │ │ │ │ └── PSU │ │ │ │ │ └── Power_Failed_dispose_.json │ │ │ └── Ping_OK_NOC │ │ │ │ └── Managed_Object │ │ │ │ └── Ping_Failed_dispose_.json │ │ ├── Periodic │ │ │ ├── Periodic_Failed_NOC │ │ │ │ └── Periodic │ │ │ │ │ └── Periodic_Failed_dispose_.json │ │ │ └── Periodic_OK_NOC │ │ │ │ └── Periodic │ │ │ │ └── Periodic_Failed_dispose_.json │ │ └── SA │ │ │ ├── Join_Activator_Pool_NOC │ │ │ └── SA │ │ │ │ ├── Activator_Pool_Degraded_clear_.json │ │ │ │ └── Activator_Pool_Degraded_raise_.json │ │ │ └── Leave_Activator_Pool_NOC │ │ │ └── SA │ │ │ ├── Activator_Pool_Degraded_clear_.json │ │ │ └── Activator_Pool_Degraded_raise_.json │ ├── Network │ │ ├── BFD │ │ │ ├── Session_Down_Network │ │ │ │ └── BFD │ │ │ │ │ └── Session_Down_dispose_.json │ │ │ └── Session_Up_Network │ │ │ │ └── BFD │ │ │ │ └── Session_Down_dispose_.json │ │ ├── BGP │ │ │ ├── Backward_Transition_Network │ │ │ │ └── BGP │ │ │ │ │ └── Peer_Down_dispose_.json │ │ │ ├── Established_Network │ │ │ │ └── BGP │ │ │ │ │ ├── Peer_Down_dispose_.json │ │ │ │ │ └── Prefix_Limit_Exceeded_dispose_.json │ │ │ ├── Peer_Down_Network │ │ │ │ └── BGP │ │ │ │ │ └── Peer_Down_dispose_.json │ │ │ ├── Peer_State_Changed_Network │ │ │ │ └── BGP │ │ │ │ │ ├── Peer_Down_clear_peer_down_.json │ │ │ │ │ ├── Peer_Down_raise_.json │ │ │ │ │ └── Prefix_Limit_Exceeded_clear_maxprefix_.json │ │ │ └── Prefix_Limit_Exceeded_Network │ │ │ │ └── BGP │ │ │ │ └── Prefix_Limit_Exceeded_dispose_.json │ │ ├── CEF │ │ │ └── Resource_Failure_Network │ │ │ │ └── CEF │ │ │ │ └── Resource_Failure_dispose_.json │ │ ├── DHCP │ │ │ └── Untrusted_Server_Network │ │ │ │ └── DHCP │ │ │ │ └── Untrusted_Server_dispose_.json │ │ ├── DNS │ │ │ └── Bad_Query_Network │ │ │ │ └── DNS │ │ │ │ └── Bad_Query_dispose_.json │ │ ├── DOCSIS │ │ │ ├── BPI_Unautorized_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── BPI_Unautorized_dispose_.json │ │ │ ├── Bad_Timing_Offset_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Bad_Timing_Offset_dispose_.json │ │ │ ├── Invalid_CoS_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Invalid_CoS_dispose_.json │ │ │ ├── Invalid_DOCSIS_Message_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Invalid_DOCSIS_Message_dispose_.json │ │ │ ├── Invalid_QoS_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Invalid_QoS_dispose_.json │ │ │ ├── Invalid_Shared_Secret_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Invalid_Shared_Secret_dispose_.json │ │ │ ├── Max_CPE_Reached_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Max_CPE_Reached_dispose_.json │ │ │ ├── Maximum_Capacity_Reached_Network │ │ │ │ └── DOCSIS │ │ │ │ │ └── Maximum_Capacity_Reached_dispose_.json │ │ │ └── Maximum_SIDs_Network │ │ │ │ └── DOCSIS │ │ │ │ └── Maximum_SIDs_dispose_.json │ │ ├── EIGRP │ │ │ ├── Neighbor_Down_Network │ │ │ │ └── EIGRP │ │ │ │ │ └── Neighbor_Down_dispose_.json │ │ │ └── Neighbor_Up_Network │ │ │ │ └── EIGRP │ │ │ │ └── Neighbor_Down_dispose_.json │ │ ├── IMPB │ │ │ ├── Recover_IMPB_stop_learning_state_Network │ │ │ │ └── IMPB │ │ │ │ │ └── Unauthenticated_IP-MAC_dispose_.json │ │ │ └── Unauthenticated_IP-MAC_Network │ │ │ │ └── IMPB │ │ │ │ └── Unauthenticated_IP-MAC_dispose_.json │ │ ├── IP │ │ │ ├── ARP_Moved_Network │ │ │ │ └── IP │ │ │ │ │ └── ARP_Moved_dispose_.json │ │ │ ├── Address_Conflict_Network │ │ │ │ └── IP │ │ │ │ │ └── Address_Conflict_dispose_.json │ │ │ └── IP_Flap_Network │ │ │ │ └── IP │ │ │ │ └── IP_Flap_dispose_.json │ │ ├── IS-IS │ │ │ ├── Adjacency_Down_Network │ │ │ │ └── IS-IS │ │ │ │ │ └── Adjacency_Down_dispose_.json │ │ │ └── Adjacency_Up_Network │ │ │ │ └── IS-IS │ │ │ │ └── Adjacency_Down_dispose_.json │ │ ├── LBD │ │ │ ├── Loop_Cleared_Network │ │ │ │ └── LBD │ │ │ │ │ └── Loop_Detected_dispose_.json │ │ │ ├── Loop_Detected_Network │ │ │ │ └── LBD │ │ │ │ │ └── Loop_Detected_dispose_.json │ │ │ ├── Vlan_Loop_Cleared_Network │ │ │ │ └── LBD │ │ │ │ │ └── Vlan_Loop_Detected_dispose_.json │ │ │ └── Vlan_Loop_Detected_Network │ │ │ │ └── LBD │ │ │ │ └── Vlan_Loop_Detected_dispose_.json │ │ ├── Link │ │ │ ├── DOM │ │ │ │ ├── Alarm_Out_of_Threshold_Network │ │ │ │ │ └── Link │ │ │ │ │ │ └── DOM │ │ │ │ │ │ └── Alarm_Out_of_Threshold_dispose_.json │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_Network │ │ │ │ │ └── Link │ │ │ │ │ │ └── DOM │ │ │ │ │ │ └── Alarm_Out_of_Threshold_dispose_.json │ │ │ │ ├── Warning_Out_of_Threshold_Network │ │ │ │ │ └── Link │ │ │ │ │ │ └── DOM │ │ │ │ │ │ └── Warning_Out_of_Threshold_dispose_.json │ │ │ │ └── Warning_Out_of_Threshold_Recovered_Network │ │ │ │ │ └── Link │ │ │ │ │ └── DOM │ │ │ │ │ └── Warning_Out_of_Threshold_dispose_.json │ │ │ ├── Duplex_Mismatch_Network │ │ │ │ └── Link │ │ │ │ │ └── Duplex_Mismatch_dispose_.json │ │ │ ├── Err-Disable_Network │ │ │ │ └── Link │ │ │ │ │ └── Err-Disable_dispose_.json │ │ │ ├── Full-Duplex_Network │ │ │ │ └── Link │ │ │ │ │ └── Half-Duplex_dispose_.json │ │ │ ├── Half-Duplex_Network │ │ │ │ └── Link │ │ │ │ │ └── Half-Duplex_dispose_.json │ │ │ ├── Link_Down_Network │ │ │ │ └── Link │ │ │ │ │ └── Link_Down_dispose_.json │ │ │ ├── Link_Flap_Error_Detected_Network │ │ │ │ └── Link │ │ │ │ │ └── Err-Disable_dispose_.json │ │ │ ├── Link_Flap_Error_Recovery_Network │ │ │ │ └── Link │ │ │ │ │ └── Err-Disable_dispose_.json │ │ │ └── Link_Up_Network │ │ │ │ ├── Link │ │ │ │ ├── Err-Disable_Clear_Err-Disable_.json │ │ │ │ └── Link_Down_Clear_Link_Down_.json │ │ │ │ └── STP │ │ │ │ ├── BPDU_Guard_Violation_Clear_BPDU_Guard_Violation_.json │ │ │ │ └── Root_Guard_Violation_Clear_Root_Guard_Violation_.json │ │ ├── MAC │ │ │ ├── Duplicate_MAC_Network │ │ │ │ └── MAC │ │ │ │ │ └── Duplicate_MAC_dispose_.json │ │ │ ├── Invalid_MAC_Network │ │ │ │ └── MAC │ │ │ │ │ └── Invalid_MAC_dispose_.json │ │ │ ├── Link_MAC_Exceed_Network │ │ │ │ └── MAC │ │ │ │ │ └── Link_MAC_Exceed_dispose_.json │ │ │ ├── MAC_Flap_Network │ │ │ │ └── MAC │ │ │ │ │ └── MAC_Flap_dispose_.json │ │ │ ├── MAC_Flood_Network │ │ │ │ └── MAC │ │ │ │ │ └── MAC_Flood_dispose_.json │ │ │ └── MAC_Learned_handlers_.json │ │ ├── MPLS │ │ │ ├── LDP_Neighbor_Down_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LDP_Neighbor_Down_dispose_.json │ │ │ ├── LDP_Neighbor_Up_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LDP_Neighbor_Down_dispose_.json │ │ │ ├── LDP_Session_Down_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LDP_Session_Down_dispose_.json │ │ │ ├── LDP_Session_Up_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LDP_Session_Down_dispose_.json │ │ │ ├── LSP_Down_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LSP_Down_dispose_.json │ │ │ ├── LSP_Up_Network │ │ │ │ └── MPLS │ │ │ │ │ └── LSP_Down_dispose_.json │ │ │ ├── Path_Down_Network │ │ │ │ └── MPLS │ │ │ │ │ └── Path_Down_dispose_.json │ │ │ ├── Path_Up_Network │ │ │ │ └── MPLS │ │ │ │ │ └── Path_Down_dispose_.json │ │ │ ├── TDP_Neighbor_Down_Network │ │ │ │ └── MPLS │ │ │ │ │ └── TDP_Neighbor_Down_dispose_.json │ │ │ └── TDP_Neighbor_Up_Network │ │ │ │ └── MPLS │ │ │ │ └── TDP_Neighbor_Down_dispose_.json │ │ ├── MSDP │ │ │ ├── Peer_Down_Network │ │ │ │ └── MSDP │ │ │ │ │ └── Peer_Down_dispose_.json │ │ │ └── Peer_Up_Network │ │ │ │ └── MSDP │ │ │ │ └── Peer_Down_dispose_.json │ │ ├── Monitor │ │ │ ├── CRC_Error_Cleared_Network │ │ │ │ └── Monitor │ │ │ │ │ └── CRC_Error_Detected_dispose_.json │ │ │ └── CRC_Error_Detected_Network │ │ │ │ └── Monitor │ │ │ │ └── CRC_Error_Detected_dispose_.json │ │ ├── OAM │ │ │ └── Client_Recieved_Remote_Failure_Environment │ │ │ │ └── Total_Power_Loss_Total_power_loss_.json │ │ ├── OSPF │ │ │ ├── Neighbor_Down_Network │ │ │ │ └── OSPF │ │ │ │ │ └── Neighbor_Down_dispose_.json │ │ │ └── Neighbor_Up_Network │ │ │ │ └── OSPF │ │ │ │ └── Neighbor_Down_dispose_.json │ │ ├── PIM │ │ │ ├── DR_Change_Network │ │ │ │ └── PIM │ │ │ │ │ └── DR_Change_dispose_.json │ │ │ ├── Invalid_RP_Network │ │ │ │ └── PIM │ │ │ │ │ └── Invalid_RP_dispose_.json │ │ │ ├── MSDP_Peer_Down_Network │ │ │ │ └── PIM │ │ │ │ │ └── MSDP_Peer_Down_dispose_.json │ │ │ ├── MSDP_Peer_Up_Network │ │ │ │ └── PIM │ │ │ │ │ └── MSDP_Peer_Down_dispose_.json │ │ │ ├── Neighbor_Down_Network │ │ │ │ └── PIM │ │ │ │ │ └── Neighbor_Down_dispose_.json │ │ │ └── Neighbor_Up_Network │ │ │ │ └── PIM │ │ │ │ └── Neighbor_Down_dispose_.json │ │ ├── Port │ │ │ ├── Loss_of_Signal_Network │ │ │ │ └── Port │ │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ │ └── Loss_of_Signal_Resume_Network │ │ │ │ └── Port │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ ├── Port_Security │ │ │ └── Port_Security_Violation_Network │ │ │ │ └── Port_Security │ │ │ │ └── Port_Security_Violation_dispose_.json │ │ ├── RSVP │ │ │ ├── Neighbor_Down_Network │ │ │ │ └── RSVP │ │ │ │ │ └── Neighbor_Down_dispose_.json │ │ │ └── Neighbor_Up_Network │ │ │ │ └── RSVP │ │ │ │ └── Neighbor_Down_dispose_.json │ │ ├── STP │ │ │ ├── BPDU_Guard_Recovery_Network │ │ │ │ └── STP │ │ │ │ │ └── BPDU_Guard_Violation_dispose_.json │ │ │ ├── BPDU_Guard_Violation_Network │ │ │ │ └── STP │ │ │ │ │ └── BPDU_Guard_Violation_dispose_.json │ │ │ ├── BPDU_Root_Violation_Network │ │ │ │ └── STP │ │ │ │ │ └── Root_Guard_Violation_dispose_.json │ │ │ ├── Root_Guard_Recovery_Network │ │ │ │ └── STP │ │ │ │ │ └── Root_Guard_Violation_dispose_.json │ │ │ ├── STP_Loop_Cleared_Network │ │ │ │ └── STP │ │ │ │ │ └── STP_Loop_Detected_dispose_.json │ │ │ ├── STP_Loop_Detected_Network │ │ │ │ └── STP │ │ │ │ │ └── STP_Loop_Detected_dispose_.json │ │ │ ├── STP_Vlan_Loop_Cleared_Network │ │ │ │ └── STP │ │ │ │ │ └── STP_Vlan_Loop_Detected_dispose_.json │ │ │ └── STP_Vlan_Loop_Detected_Network │ │ │ │ └── STP │ │ │ │ └── STP_Vlan_Loop_Detected_dispose_.json │ │ ├── Storm_Control │ │ │ ├── Broadcast_Storm_Cleared_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Broadcast_Storm_Detected_dispose_.json │ │ │ ├── Broadcast_Storm_Detected_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Broadcast_Storm_Detected_dispose_.json │ │ │ ├── Multicast_Storm_Cleared_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Multicast_Storm_Detected_dispose_.json │ │ │ ├── Multicast_Storm_Detected_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Multicast_Storm_Detected_dispose_.json │ │ │ ├── Storm_Cleared_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Storm_Detected_dispose_.json │ │ │ ├── Storm_Detected_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Storm_Detected_dispose_.json │ │ │ ├── Unicast_Storm_Cleared_Network │ │ │ │ └── Storm_Control │ │ │ │ │ └── Unicast_Storm_Detected_dispose_.json │ │ │ └── Unicast_Storm_Detected_Network │ │ │ │ └── Storm_Control │ │ │ │ └── Unicast_Storm_Detected_dispose_.json │ │ └── UDLD │ │ │ ├── UDLD_Protocol_Error_Detected_Network │ │ │ └── UDLD │ │ │ │ └── UDLD_Protocol_Error_Detected_dispose_.json │ │ │ └── UDLD_Protocol_Recovery_Network │ │ │ └── UDLD │ │ │ └── UDLD_Protocol_Error_Detected_dispose_.json │ ├── OTN │ │ ├── ODU │ │ │ ├── AIS_Clear_OTN │ │ │ │ └── ODU │ │ │ │ │ └── AIS_dispose_.json │ │ │ ├── AIS_OTN │ │ │ │ └── ODU │ │ │ │ │ └── AIS_dispose_.json │ │ │ ├── LOFLOM_Clear_OTN │ │ │ │ └── ODU │ │ │ │ │ └── LOFLOM_dispose_.json │ │ │ ├── LOFLOM_OTN │ │ │ │ └── ODU │ │ │ │ │ └── LOFLOM_dispose_.json │ │ │ ├── Loss_of_Frame_Clear_OTN │ │ │ │ └── ODU │ │ │ │ │ └── Loss_of_Frame_dispose_.json │ │ │ ├── Loss_of_Frame_OTN │ │ │ │ └── ODU │ │ │ │ │ └── Loss_of_Frame_dispose_.json │ │ │ ├── Loss_of_Signal_Clear_OTN │ │ │ │ └── ODU │ │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ │ ├── Loss_of_Signal_OTN │ │ │ │ └── ODU │ │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ │ ├── PM │ │ │ │ ├── BEI_Clear_OTN │ │ │ │ │ └── ODU │ │ │ │ │ │ └── PM │ │ │ │ │ │ └── BEI_dispose_.json │ │ │ │ ├── BEI_OTN │ │ │ │ │ └── ODU │ │ │ │ │ │ └── PM │ │ │ │ │ │ └── BEI_dispose_.json │ │ │ │ ├── BIP_Clear_OTN │ │ │ │ │ └── ODU │ │ │ │ │ │ └── PM │ │ │ │ │ │ └── BIP_dispose_.json │ │ │ │ ├── BIP_OTN │ │ │ │ │ └── ODU │ │ │ │ │ │ └── PM │ │ │ │ │ │ └── BIP_dispose_.json │ │ │ │ ├── SF_Clear_OTN │ │ │ │ │ └── ODU │ │ │ │ │ │ └── PM │ │ │ │ │ │ └── SF_dispose_.json │ │ │ │ └── SF_OTN │ │ │ │ │ └── ODU │ │ │ │ │ └── PM │ │ │ │ │ └── SF_dispose_.json │ │ │ └── SM │ │ │ │ ├── Signal_Fail_Clear_OTN │ │ │ │ └── ODU │ │ │ │ │ └── SM │ │ │ │ │ └── Signal_Fail_dispose_.json │ │ │ │ └── Signal_Fail_OTN │ │ │ │ └── ODU │ │ │ │ └── SM │ │ │ │ └── Signal_Fail_dispose_.json │ │ └── OTU │ │ │ ├── Loss_of_Frame_Clear_OTN │ │ │ └── OTU │ │ │ │ └── Loss_of_Frame_dispose_.json │ │ │ ├── Loss_of_Frame_OTN │ │ │ └── OTU │ │ │ │ └── Loss_of_Frame_dispose_.json │ │ │ ├── Loss_of_Signal_Clear_OTN │ │ │ └── OTU │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ │ ├── Loss_of_Signal_OTN │ │ │ └── OTU │ │ │ │ └── Loss_of_Signal_dispose_.json │ │ │ └── SM │ │ │ ├── Signal_Fail_Clear_OTN │ │ │ └── OTU │ │ │ │ └── SM │ │ │ │ └── Signal_Fail_dispose_.json │ │ │ └── Signal_Fail_OTN │ │ │ └── OTU │ │ │ └── SM │ │ │ └── Signal_Fail_dispose_.json │ ├── Security │ │ ├── Abduct │ │ │ └── Cable_Abduct_Security │ │ │ │ └── Abduct │ │ │ │ └── Cable_Abduct_dispose_.json │ │ ├── Access │ │ │ ├── Case_Close_Security │ │ │ │ └── Access │ │ │ │ │ └── Case_Open_dispose_.json │ │ │ ├── Case_Open_Security │ │ │ │ └── Access │ │ │ │ │ └── Case_Open_dispose_.json │ │ │ ├── Door_Close_Security │ │ │ │ └── Access │ │ │ │ │ └── Door_Open_dispose_.json │ │ │ └── Door_Open_Security │ │ │ │ └── Access │ │ │ │ └── Door_Open_dispose_.json │ │ ├── Attack │ │ │ ├── Attack_Security │ │ │ │ └── Attack │ │ │ │ │ └── Attack_dispose_.json │ │ │ ├── Blat_Attack_Security │ │ │ │ └── Attack │ │ │ │ │ └── Blat_Attack_dispose_.json │ │ │ ├── IP_Spoofing_Security │ │ │ │ └── Attack │ │ │ │ │ └── IP_Spoofing_dispose_.json │ │ │ ├── Land_Attack_Security │ │ │ │ └── Attack │ │ │ │ │ └── Land_Attack_dispose_.json │ │ │ ├── Ping_Of_Death_Security │ │ │ │ └── Attack │ │ │ │ │ └── Ping_Of_Death_dispose_.json │ │ │ ├── Smurf_Attack_Security │ │ │ │ └── Attack │ │ │ │ │ └── Smurf_Attack_dispose_.json │ │ │ ├── TCP_SYNFIN_Scan_Security │ │ │ │ └── Attack │ │ │ │ │ └── TCP_SYNFIN_Scan_dispose_.json │ │ │ └── Teardrop_Attack_Security │ │ │ │ └── Attack │ │ │ │ └── Teardrop_Attack_dispose_.json │ │ ├── Audit │ │ │ └── Command_handlers_.json │ │ └── Authentication │ │ │ ├── Login_handlers_.json │ │ │ ├── Logout_handlers_.json │ │ │ ├── RADIUS_server_failed_Security │ │ │ └── Authentication │ │ │ │ └── RADIUS_server_failed_dispose_.json │ │ │ ├── RADIUS_server_recovered_Security │ │ │ └── Authentication │ │ │ │ └── RADIUS_server_failed_dispose_.json │ │ │ ├── Rejected_handlers_.json │ │ │ ├── TACACS+_server_failed_Security │ │ │ └── Authentication │ │ │ │ └── TACACS+_server_failed_dispose_.json │ │ │ └── TACACS+_server_recovered_Security │ │ │ └── Authentication │ │ │ └── TACACS+_server_failed_dispose_.json │ ├── System │ │ ├── Halt_handlers_.json │ │ ├── Process_Crashed_System │ │ │ └── Process_Crashed_dispose_.json │ │ ├── Reboot_System │ │ │ └── Reboot_dispose_.json │ │ └── Started_System │ │ │ └── Reboot_dispose_.json │ └── Vendor │ │ ├── Arista │ │ └── EOS │ │ │ └── VMTracer │ │ │ └── Failed_to_connect_to_vCenter_Vendor │ │ │ └── Arista │ │ │ └── EOS │ │ │ └── VMTracer │ │ │ └── Failed_to_connect_to_vCenter_dispose_.json │ │ ├── Cisco │ │ ├── IOS │ │ │ └── Network │ │ │ │ └── Load_Balance │ │ │ │ ├── Server_Farm_Degraded_Vendor │ │ │ │ └── Cisco │ │ │ │ │ └── IOS │ │ │ │ │ └── Network │ │ │ │ │ └── Load_Balance │ │ │ │ │ └── Server_Farm_Degraded_dispose_.json │ │ │ │ ├── Server_Farm_is_Operate_Vendor │ │ │ │ └── Cisco │ │ │ │ │ └── IOS │ │ │ │ │ └── Network │ │ │ │ │ └── Load_Balance │ │ │ │ │ └── Server_Farm_Degraded_dispose_.json │ │ │ │ ├── vserver_In_Service_Vendor │ │ │ │ └── Cisco │ │ │ │ │ └── IOS │ │ │ │ │ └── Network │ │ │ │ │ └── Load_Balance │ │ │ │ │ └── vserver_Out_of_Service_dispose_.json │ │ │ │ └── vserver_Out_of_Service_Vendor │ │ │ │ └── Cisco │ │ │ │ └── IOS │ │ │ │ └── Network │ │ │ │ └── Load_Balance │ │ │ │ └── vserver_Out_of_Service_dispose_.json │ │ └── SCOS │ │ │ └── Security │ │ │ └── Attack │ │ │ ├── Attack_Detected_Vendor │ │ │ └── Cisco │ │ │ │ └── SCOS │ │ │ │ └── Security │ │ │ │ └── Attack │ │ │ │ └── Attack_Detected_Attack_Detected_.json │ │ │ └── End-of-attack_detected_Vendor │ │ │ └── Cisco │ │ │ └── SCOS │ │ │ └── Security │ │ │ └── Attack │ │ │ └── Attack_Detected_Clear_Attack_Detected_.json │ │ ├── DLink │ │ └── DxS │ │ │ └── Chassis │ │ │ └── CPU │ │ │ ├── Safeguard_Engine_enters_EXHAUSTED_mode_Chassis │ │ │ └── CPU │ │ │ │ └── CPU_Exhausted_dispose_.json │ │ │ └── Safeguard_Engine_enters_NORMAL_mode_Chassis │ │ │ └── CPU │ │ │ └── CPU_Exhausted_dispose_.json │ │ └── f5 │ │ └── BIGIP │ │ └── Network │ │ └── Load_Balance │ │ ├── Node_Down_Vendor │ │ └── f5 │ │ │ └── BIGIP │ │ │ └── Network │ │ │ └── Load_Balance │ │ │ └── Node_Down_dispose_.json │ │ ├── Node_Up_Vendor │ │ └── f5 │ │ │ └── BIGIP │ │ │ └── Network │ │ │ └── Load_Balance │ │ │ └── Node_Down_dispose_.json │ │ ├── Service_Down_Vendor │ │ └── f5 │ │ │ └── BIGIP │ │ │ └── Network │ │ │ └── Load_Balance │ │ │ └── Service_Down_dispose_.json │ │ └── Service_Up_Vendor │ │ └── f5 │ │ └── BIGIP │ │ └── Network │ │ └── Load_Balance │ │ └── Service_Down_dispose_.json ├── fm.enumerations │ ├── bgp_state.json │ ├── ospf_state.json │ └── stp_state.json ├── fm.eventclasses │ ├── Chassis │ │ ├── CPU │ │ │ ├── CPU_Usage_Above_Threshold.json │ │ │ ├── CPU_Usage_Drops_Below_Threshold.json │ │ │ └── CoPP_Drop.json │ │ ├── Clock │ │ │ ├── Clock_Failed.json │ │ │ └── Clock_Recovered.json │ │ ├── Fabric │ │ │ └── CRC_Errors.json │ │ ├── Fan │ │ │ ├── Fan_Failed.json │ │ │ ├── Fan_Inserted.json │ │ │ ├── Fan_Recovered.json │ │ │ └── Fan_Removed.json │ │ ├── Hardware │ │ │ ├── Flash_Device_Changed.json │ │ │ ├── Flash_Device_Inserted.json │ │ │ ├── Flash_Device_Removed.json │ │ │ ├── Hardware_Error.json │ │ │ ├── Hardware_Port_Error.json │ │ │ ├── Hardware_Port_Error_Recover.json │ │ │ ├── Hardware_Port_Warning.json │ │ │ ├── Hardware_Port_Warning_Recover.json │ │ │ ├── Hardware_Warning.json │ │ │ ├── Module │ │ │ │ ├── Invalid_Module.json │ │ │ │ ├── Invalid_Resume_Module.json │ │ │ │ ├── Module_Down.json │ │ │ │ ├── Module_Error.json │ │ │ │ ├── Module_Inserted.json │ │ │ │ ├── Module_Offline.json │ │ │ │ ├── Module_Power_Off.json │ │ │ │ ├── Module_Present.json │ │ │ │ ├── Module_Removed.json │ │ │ │ ├── Module_Up.json │ │ │ │ ├── Module_not_Present.json │ │ │ │ └── Sensor_Threshold_Exceeded.json │ │ │ ├── RF │ │ │ │ ├── RF_Progression_Changed.json │ │ │ │ └── RF_SWACT_Change.json │ │ │ └── Version_Upgrading.json │ │ ├── Linecard │ │ │ ├── LC_Down.json │ │ │ ├── LC_Error.json │ │ │ ├── LC_Error_Recover.json │ │ │ ├── LC_Inserted.json │ │ │ ├── LC_Offline.json │ │ │ ├── LC_Power_Off.json │ │ │ ├── LC_Removed.json │ │ │ ├── LC_Up.json │ │ │ └── Redundancy_Switchover.json │ │ ├── Memory │ │ │ └── Memory_Usage_Above_Threshold.json │ │ ├── PSU │ │ │ ├── Internal_Voltage_Out_of_Range.json │ │ │ ├── PSU_Changed.json │ │ │ ├── PSU_Failed.json │ │ │ ├── PSU_Output_Capacity_Changed.json │ │ │ ├── PSU_Recovered.json │ │ │ └── Power_Failed.json │ │ ├── RAM │ │ │ ├── Insufficient_Memory.json │ │ │ ├── Memory_Buffer_Peak.json │ │ │ └── RAM_Failed.json │ │ ├── Stack │ │ │ ├── Stack_Degraded.json │ │ │ └── Stack_is_Raised.json │ │ ├── Supervisor │ │ │ ├── Supervisor_Down.json │ │ │ └── Supervisor_Up.json │ │ └── TCAM │ │ │ ├── TCAM_Entry_Capacity_Exceeded.json │ │ │ └── TCAM_Error.json │ ├── Config │ │ ├── Config_Changed.json │ │ ├── Config_Copy.json │ │ ├── Config_Corrected.json │ │ ├── Config_Download_Failed.json │ │ ├── Config_Downloaded_Successfully.json │ │ ├── Config_Sync_Failed.json │ │ ├── Config_Synced.json │ │ ├── Config_Upload_Failed.json │ │ ├── Config_Uploaded_Successfully.json │ │ ├── Entering_Configuration_Mode.json │ │ ├── Exiting_Configuration_Mode.json │ │ └── Invalid_Config.json │ ├── Environment │ │ ├── AC_Voltage_Out_of_Range.json │ │ ├── AC_Voltage_Returned_to_Normal_Range.json │ │ ├── Chassis_Voltage_Out_of_Range.json │ │ ├── Chassis_Voltage_Returned_to_Normal_Range.json │ │ ├── DC_Voltage_Out_of_Range.json │ │ ├── DC_Voltage_Returned_to_Normal_Range.json │ │ ├── Humidity_Out_of_Range.json │ │ ├── Humidity_Returned_to_Normal_Range.json │ │ ├── Module_Voltage_Out_of_Range.json │ │ ├── Module_Voltage_Returned_to_Normal_Range.json │ │ ├── Temperature_Out_of_Range.json │ │ ├── Temperature_Returned_to_Normal_Range.json │ │ └── UPS │ │ │ ├── Battery_Power_Low.json │ │ │ ├── Battery_Power_Normal.json │ │ │ ├── Battery_Replaced.json │ │ │ ├── Input_Power_Failed.json │ │ │ ├── Input_Power_Low.json │ │ │ ├── Input_Power_OK.json │ │ │ ├── Input_Voltage_or_Frequency_Problem.json │ │ │ ├── Self-Test_Failed.json │ │ │ ├── Self-Test_Passed.json │ │ │ └── Self-Test_Started.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ ├── Action.json │ │ │ ├── Alarm_cleared.json │ │ │ ├── Alarm_on_port.json │ │ │ ├── Alarm_raised.json │ │ │ ├── Change_Parameter.json │ │ │ ├── Change_User.json │ │ │ ├── Error.json │ │ │ ├── Gateway_Reachable.json │ │ │ ├── Module_State_Changed.json │ │ │ └── Module_ejected.json │ ├── Multicast │ │ └── Frequency │ │ │ ├── Overflow.json │ │ │ └── Overflow_Resume.json │ ├── NOC │ │ ├── IPAM │ │ │ └── VRF_Group_Address_Collision.json │ │ ├── Managed_Object │ │ │ ├── Ping_Failed.json │ │ │ └── Ping_OK.json │ │ ├── Periodic │ │ │ ├── Periodic_Failed.json │ │ │ └── Periodic_OK.json │ │ ├── SA │ │ │ ├── Join_Activator_Pool.json │ │ │ └── Leave_Activator_Pool.json │ │ ├── Unhandled_Exception.json │ │ └── Unknown_Event_Source.json │ ├── Network │ │ ├── 802_11 │ │ │ ├── Associated.json │ │ │ ├── Disassociated.json │ │ │ ├── Max_Retries.json │ │ │ └── Roamed.json │ │ ├── BFD │ │ │ ├── Session_Down.json │ │ │ └── Session_Up.json │ │ ├── BGP │ │ │ ├── Backward_Transition.json │ │ │ ├── Established.json │ │ │ ├── Max_Prefixes_Exceeds.json │ │ │ ├── Max_Prefixes_Warning.json │ │ │ ├── Peer_Down.json │ │ │ ├── Peer_State_Changed.json │ │ │ └── Prefix_Limit_Exceeded.json │ │ ├── CEF │ │ │ ├── Inconsistency_Detection.json │ │ │ ├── Peer_State_Changed.json │ │ │ └── Resource_Failure.json │ │ ├── DHCP │ │ │ └── Untrusted_Server.json │ │ ├── DNS │ │ │ └── Bad_Query.json │ │ ├── DOCSIS │ │ │ ├── BPI_Unautorized.json │ │ │ ├── Bad_Timing_Offset.json │ │ │ ├── Channel_Width_Changed.json │ │ │ ├── Invalid_CoS.json │ │ │ ├── Invalid_DOCSIS_Message.json │ │ │ ├── Invalid_QoS.json │ │ │ ├── Invalid_Shared_Secret.json │ │ │ ├── Max_CPE_Reached.json │ │ │ ├── Maximum_Capacity_Reached.json │ │ │ ├── Maximum_SIDs.json │ │ │ ├── Unregistered_Modem_Deleted.json │ │ │ ├── Upstream_Frequency_Changed.json │ │ │ └── Upstream_Input_Power_Level_Changed.json │ │ ├── EIGRP │ │ │ ├── Neighbor_Down.json │ │ │ └── Neighbor_Up.json │ │ ├── HSRP │ │ │ └── GRP_State_Changed.json │ │ ├── IMPB │ │ │ ├── Dynamic_IMPB_entry_is_conflicting_with_static.json │ │ │ ├── Recover_IMPB_stop_learning_state.json │ │ │ └── Unauthenticated_IP-MAC.json │ │ ├── IP │ │ │ ├── ARP_Moved.json │ │ │ ├── ARP_Zero_MAC.json │ │ │ ├── Address_Conflict.json │ │ │ ├── IP_Flap.json │ │ │ ├── Port_Exhaustion.json │ │ │ ├── Route_Limit_Exceeded.json │ │ │ └── Route_Limit_Warning.json │ │ ├── IS-IS │ │ │ ├── Adjacency_Down.json │ │ │ ├── Adjacency_State_Changed.json │ │ │ ├── Adjacency_Up.json │ │ │ ├── Area_Max_Addresses_Mismatch.json │ │ │ ├── Authenticate_Failure.json │ │ │ ├── Database_Overload.json │ │ │ ├── Protocols_Supported_Mismatch.json │ │ │ ├── SP_Error.json │ │ │ └── Sequence_Num_Skip.json │ │ ├── LAG │ │ │ ├── Bundle.json │ │ │ ├── LACP_Timeout.json │ │ │ └── Unbundle.json │ │ ├── LBD │ │ │ ├── Loop_Cleared.json │ │ │ ├── Loop_Detected.json │ │ │ ├── Vlan_Loop_Cleared.json │ │ │ └── Vlan_Loop_Detected.json │ │ ├── LLDP │ │ │ ├── Created_New_Neighbor.json │ │ │ ├── LLDP_Aged_Out.json │ │ │ ├── Native_Vlan_Not_Match.json │ │ │ └── Remote_Tables_Change.json │ │ ├── Link │ │ │ ├── Connection_Problem.json │ │ │ ├── DOM │ │ │ │ ├── Alarm_Out_of_Threshold.json │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered.json │ │ │ │ ├── Warning_Out_of_Threshold.json │ │ │ │ └── Warning_Out_of_Threshold_Recovered.json │ │ │ ├── Duplex_Mismatch.json │ │ │ ├── Err-Disable.json │ │ │ ├── Full-Duplex.json │ │ │ ├── Half-Duplex.json │ │ │ ├── Link_Down.json │ │ │ ├── Link_Flap_Error_Detected.json │ │ │ ├── Link_Flap_Error_Recovery.json │ │ │ └── Link_Up.json │ │ ├── MAC │ │ │ ├── BD_MAC_Exceed.json │ │ │ ├── Duplicate_MAC.json │ │ │ ├── Invalid_MAC.json │ │ │ ├── Link_MAC_Exceed.json │ │ │ ├── MAC_Aged.json │ │ │ ├── MAC_Exceed.json │ │ │ ├── MAC_Flap.json │ │ │ ├── MAC_Flood.json │ │ │ ├── MAC_Learned.json │ │ │ └── MAC_Moved.json │ │ ├── MPLS │ │ │ ├── LDP_Init_Session_Above_Threshold.json │ │ │ ├── LDP_Neighbor_Down.json │ │ │ ├── LDP_Neighbor_Up.json │ │ │ ├── LDP_Session_Down.json │ │ │ ├── LDP_Session_Up.json │ │ │ ├── LSP_Down.json │ │ │ ├── LSP_Path_Change.json │ │ │ ├── LSP_Up.json │ │ │ ├── LSR_XC_Down.json │ │ │ ├── LSR_XC_Up.json │ │ │ ├── Link_Down.json │ │ │ ├── Link_Up.json │ │ │ ├── Path_Down.json │ │ │ ├── Path_Up.json │ │ │ ├── TDP_Neighbor_Down.json │ │ │ ├── TDP_Neighbor_Up.json │ │ │ ├── TE_Tunnel_Rerouted.json │ │ │ ├── VRF_Interface_Down.json │ │ │ ├── VRF_Interface_Up.json │ │ │ ├── VRF_Router_Num_Above_Max_Threshold.json │ │ │ └── VRF_Router_Num_Above_Mid_Threshold.json │ │ ├── MSDP │ │ │ ├── Peer_Down.json │ │ │ └── Peer_Up.json │ │ ├── Monitor │ │ │ ├── CRC_Error_Cleared.json │ │ │ └── CRC_Error_Detected.json │ │ ├── NTP │ │ │ ├── Lost_synchronization.json │ │ │ ├── NTP_Server_Reachable.json │ │ │ ├── NTP_Server_Unreachable.json │ │ │ ├── System_Clock_Adjusted.json │ │ │ └── System_Clock_Synchronized.json │ │ ├── OAM │ │ │ ├── Client_Clear_Remote_Failure.json │ │ │ ├── Client_Recieved_Remote_Failure.json │ │ │ ├── Discovery_Timeout.json │ │ │ ├── Enter_Session.json │ │ │ ├── Entering_Master_Loopback_Mode.json │ │ │ ├── Entering_Slave_Loopback_Mode.json │ │ │ ├── Exit_Session.json │ │ │ ├── Exiting_Master_Loopback_Mode.json │ │ │ ├── Exiting_Slave_Loopback_Mode.json │ │ │ └── Monitoring_Error.json │ │ ├── OSPF │ │ │ ├── Authentication_Failure.json │ │ │ ├── Interface_State_Changed.json │ │ │ ├── LSA_Max_Age.json │ │ │ ├── LSA_Originate.json │ │ │ ├── LSA_TX_Retransmit.json │ │ │ ├── Neighbor_Down.json │ │ │ ├── Neighbor_State_Changed.json │ │ │ └── Neighbor_Up.json │ │ ├── PIM │ │ │ ├── DR_Change.json │ │ │ ├── Invalid_RP.json │ │ │ ├── MSDP_Peer_Down.json │ │ │ ├── MSDP_Peer_Up.json │ │ │ ├── Neighbor_Down.json │ │ │ └── Neighbor_Up.json │ │ ├── Port │ │ │ ├── Loss_of_Signal.json │ │ │ └── Loss_of_Signal_Resume.json │ │ ├── Port_Security │ │ │ └── Port_Security_Violation.json │ │ ├── RMON │ │ │ ├── Agent_Get_Error.json │ │ │ └── Agent_Get_Ok.json │ │ ├── RSVP │ │ │ ├── Neighbor_Down.json │ │ │ └── Neighbor_Up.json │ │ ├── SONET │ │ │ └── Path_Status_Change.json │ │ ├── STP │ │ │ ├── BPDU_Guard_Recovery.json │ │ │ ├── BPDU_Guard_Violation.json │ │ │ ├── BPDU_Root_Violation.json │ │ │ ├── Inconsistency_Update_STP.json │ │ │ ├── Root_Changed.json │ │ │ ├── Root_Guard_Recovery.json │ │ │ ├── STP_Loop_Cleared.json │ │ │ ├── STP_Loop_Detected.json │ │ │ ├── STP_Port_Role_Changed.json │ │ │ ├── STP_Port_State_Changed.json │ │ │ ├── STP_Vlan_Loop_Cleared.json │ │ │ ├── STP_Vlan_Loop_Detected.json │ │ │ ├── STP_instances_exceeded.json │ │ │ └── Topology_Changed.json │ │ ├── Storm_Control │ │ │ ├── Broadcast_Storm_Cleared.json │ │ │ ├── Broadcast_Storm_Detected.json │ │ │ ├── Multicast_Storm_Cleared.json │ │ │ ├── Multicast_Storm_Detected.json │ │ │ ├── Storm_Cleared.json │ │ │ ├── Storm_Detected.json │ │ │ ├── Unicast_Storm_Cleared.json │ │ │ └── Unicast_Storm_Detected.json │ │ ├── UDLD │ │ │ ├── UDLD_Protocol_Error_Detected.json │ │ │ └── UDLD_Protocol_Recovery.json │ │ ├── VLAN │ │ │ ├── Trunk_Port_Status_Changed.json │ │ │ ├── VLAN_Created.json │ │ │ └── VLAN_Deleted.json │ │ ├── VRRP │ │ │ └── New_Master.json │ │ └── xPON │ │ │ ├── Laser_Always_On.json │ │ │ └── ONU │ │ │ ├── Activated.json │ │ │ ├── Discovered.json │ │ │ ├── Offline.json │ │ │ └── Power_Failed.json │ ├── OTN │ │ ├── ODU │ │ │ ├── AIS.json │ │ │ ├── AIS_Clear.json │ │ │ ├── LOFLOM.json │ │ │ ├── LOFLOM_Clear.json │ │ │ ├── Loss_of_Frame.json │ │ │ ├── Loss_of_Frame_Clear.json │ │ │ ├── Loss_of_Signal.json │ │ │ ├── Loss_of_Signal_Clear.json │ │ │ ├── PM │ │ │ │ ├── BEI.json │ │ │ │ ├── BEI_Clear.json │ │ │ │ ├── BIP.json │ │ │ │ ├── BIP_Clear.json │ │ │ │ ├── SF.json │ │ │ │ └── SF_Clear.json │ │ │ └── SM │ │ │ │ ├── Signal_Fail.json │ │ │ │ └── Signal_Fail_Clear.json │ │ └── OTU │ │ │ ├── Loss_of_Frame.json │ │ │ ├── Loss_of_Frame_Clear.json │ │ │ ├── Loss_of_Signal.json │ │ │ ├── Loss_of_Signal_Clear.json │ │ │ └── SM │ │ │ ├── Signal_Fail.json │ │ │ └── Signal_Fail_Clear.json │ ├── PM │ │ ├── Out_of_Thresholds.json │ │ └── Returned_to_Normal_Range.json │ ├── PPPOE │ │ └── Accounting │ │ │ └── Session_Threshold_Exceeded.json │ ├── Phone │ │ └── SCCP │ │ │ ├── Register.json │ │ │ ├── Register_Alarm.json │ │ │ ├── Register_New.json │ │ │ ├── Unregister_Abnormal.json │ │ │ └── Unregister_Normal.json │ ├── Security │ │ ├── ACL │ │ │ ├── ACL_Deny.json │ │ │ └── ACL_Permit.json │ │ ├── Abduct │ │ │ └── Cable_Abduct.json │ │ ├── Access │ │ │ ├── Case_Close.json │ │ │ ├── Case_Open.json │ │ │ ├── Door_Close.json │ │ │ └── Door_Open.json │ │ ├── Accounting │ │ │ └── WebVPN │ │ │ │ ├── Assigned.json │ │ │ │ └── Disconnected.json │ │ ├── Attack │ │ │ ├── Attack.json │ │ │ ├── Blat_Attack.json │ │ │ ├── IP_Spoofing.json │ │ │ ├── Land_Attack.json │ │ │ ├── Ping_Of_Death.json │ │ │ ├── Smurf_Attack.json │ │ │ ├── TCP_SYNFIN_Scan.json │ │ │ └── Teardrop_Attack.json │ │ ├── Audit │ │ │ ├── Clearing_Counters.json │ │ │ ├── Command.json │ │ │ └── Cron.json │ │ └── Authentication │ │ │ ├── 802_1x_failed.json │ │ │ ├── Authentication_Failed.json │ │ │ ├── Login.json │ │ │ ├── Login_Failed.json │ │ │ ├── Logout.json │ │ │ ├── Privilege_Level_Change_Fail.json │ │ │ ├── Privilege_Level_Changed.json │ │ │ ├── RADIUS_server_failed.json │ │ │ ├── RADIUS_server_recovered.json │ │ │ ├── Rejected.json │ │ │ ├── SNMP_Authentication_Failure.json │ │ │ ├── TACACS+_server_failed.json │ │ │ └── TACACS+_server_recovered.json │ ├── System │ │ ├── Halt.json │ │ ├── Process_Crashed.json │ │ ├── Process_Exited.json │ │ ├── Process_Started.json │ │ ├── Reboot.json │ │ └── Started.json │ ├── Unknown │ │ ├── Default.json │ │ ├── Ignore.json │ │ ├── SNMP_Trap.json │ │ └── Syslog.json │ ├── Vendor │ │ ├── Arista │ │ │ └── EOS │ │ │ │ └── VMTracer │ │ │ │ └── Failed_to_connect_to_vCenter.json │ │ ├── Cisco │ │ │ ├── ASA │ │ │ │ └── Network │ │ │ │ │ └── Flow_Accounting │ │ │ │ │ ├── Built_Flow.json │ │ │ │ │ ├── Duplicate_TCP_SYN.json │ │ │ │ │ └── Teardown_Flow.json │ │ │ ├── IOS │ │ │ │ └── Network │ │ │ │ │ └── Load_Balance │ │ │ │ │ ├── Server_Farm_Degraded.json │ │ │ │ │ ├── Server_Farm_is_Operate.json │ │ │ │ │ ├── vserver_In_Service.json │ │ │ │ │ └── vserver_Out_of_Service.json │ │ │ └── SCOS │ │ │ │ └── Security │ │ │ │ └── Attack │ │ │ │ ├── Attack_Detected.json │ │ │ │ └── End-of-attack_detected.json │ │ ├── DLink │ │ │ └── DxS │ │ │ │ └── Chassis │ │ │ │ └── CPU │ │ │ │ ├── Safeguard_Engine_enters_EXHAUSTED_mode.json │ │ │ │ └── Safeguard_Engine_enters_NORMAL_mode.json │ │ └── f5 │ │ │ └── BIGIP │ │ │ └── Network │ │ │ └── Load_Balance │ │ │ ├── Node_Down.json │ │ │ ├── Node_Up.json │ │ │ ├── Service_Down.json │ │ │ └── Service_Up.json │ └── Zabbix │ │ ├── Agent │ │ └── Not_Available.json │ │ ├── Configuration_Syncer │ │ └── Utilization_High.json │ │ ├── Data_Collection │ │ └── Utilization_High.json │ │ ├── Error.json │ │ ├── Host │ │ ├── Ping_Failed.json │ │ ├── Ping_Loss_Too_High.json │ │ └── Ping_Response_Too_High.json │ │ ├── ICMP_RTT │ │ └── Too_High.json │ │ ├── Internal_Process │ │ └── Utilization_High.json │ │ ├── LLD_Worker │ │ └── Utilization_High.json │ │ ├── Poller │ │ └── Utilization_High.json │ │ ├── Proxy │ │ ├── Memory_Buffer │ │ │ └── Too_High.json │ │ ├── Missing_Data_Item │ │ │ └── Too_High.json │ │ └── Version_Changed.json │ │ ├── Reboot.json │ │ ├── SNMP │ │ └── Not_Available.json │ │ ├── Trigger.json │ │ ├── Unreachable_Poller │ │ └── Utilization_High.json │ │ └── Zabbix_Proxy │ │ └── Last_Seen │ │ └── Too_High.json ├── fm.eventclassificationrules │ ├── APC │ │ └── AOS │ │ │ ├── Chassis │ │ │ ├── Fan │ │ │ │ ├── Fan_Failed_1_SYSLOG_.json │ │ │ │ ├── Fan_Failed_2_SYSLOG_.json │ │ │ │ ├── Fan_Failed_3_SYSLOG_.json │ │ │ │ ├── Fan_Recovered_1_SYSLOG_.json │ │ │ │ ├── Fan_Recovered_2_SYSLOG_.json │ │ │ │ └── Fan_Recovered_3_SYSLOG_.json │ │ │ └── PSU │ │ │ │ ├── PSU_Failed_1_SYSLOG_.json │ │ │ │ ├── PSU_Failed_2_SYSLOG_.json │ │ │ │ ├── PSU_Failed_3_SYSLOG_.json │ │ │ │ ├── PSU_Failed_SNMP_.json │ │ │ │ ├── PSU_Recovered_1_SYSLOG_.json │ │ │ │ ├── PSU_Recovered_2_SYSLOG_.json │ │ │ │ ├── PSU_Recovered_3_SYSLOG_.json │ │ │ │ └── PSU_Recovered_SNMP_.json │ │ │ ├── Config │ │ │ ├── Config_Changed_2_SYSLOG_.json │ │ │ └── Config_Changed_SYSLOG_.json │ │ │ ├── Environment │ │ │ ├── Temperature_Out_of_Range_1_SYSLOG_.json │ │ │ ├── Temperature_Out_of_Range_2_SYSLOG_.json │ │ │ └── UPS │ │ │ │ ├── Battery_Power_Low_1_SYSLOG_.json │ │ │ │ ├── Battery_Power_Low_2_SYSLOG_.json │ │ │ │ ├── Battery_Power_Low_3_SYSLOG_.json │ │ │ │ ├── Battery_Power_Normal_1_SYSLOG_.json │ │ │ │ ├── Battery_Power_Normal_2_SYSLOG_.json │ │ │ │ ├── Input_Power_Failed_2_SYSLOG_.json │ │ │ │ ├── Input_Power_Failed_SYSLOG_.json │ │ │ │ ├── Input_Power_Low_SYSLOG_.json │ │ │ │ ├── Input_Power_OK_1_SYSLOG_.json │ │ │ │ ├── Input_Power_OK_2_SYSLOG_.json │ │ │ │ ├── Input_Power_OK_3_SYSLOG_.json │ │ │ │ ├── Input_Voltage_or_Frequency_Problem_1_SYSLOG_.json │ │ │ │ ├── Input_Voltage_or_Frequency_Problem_2_SYSLOG_.json │ │ │ │ ├── Input_Voltage_or_Frequency_Problem_3_SYSLOG_.json │ │ │ │ ├── Self-Test_Passed_SNMP_.json │ │ │ │ ├── Self-Test_Passed_SYSLOG_.json │ │ │ │ ├── Self-Test_Started_2_SYSLOG_.json │ │ │ │ └── Self-Test_Started_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_Failed_SNMP_.json │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ └── SNMP_Authentication_Failure_SYSLOG_.json │ │ │ └── System │ │ │ └── Started_SYSLOG_.json │ ├── Alcatel │ │ ├── 7324RU │ │ │ ├── Environment │ │ │ │ ├── Chassis_Voltage_Out_of_Range_SYSLOG_.json │ │ │ │ └── Chassis_Voltage_Returned_to_Normal_Range_SYSLOG_.json │ │ │ ├── Network │ │ │ │ └── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── System │ │ │ │ ├── Reboot_SYSLOG_.json │ │ │ │ └── Started_SYSLOG_.json │ │ ├── AOS │ │ │ └── Network │ │ │ │ └── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ └── TIMOS │ │ │ └── Network │ │ │ └── Link │ │ │ ├── Link_Down_SNMP_.json │ │ │ └── Link_Up_SNMP_.json │ ├── Alentis │ │ └── NetPing │ │ │ ├── Environment │ │ │ ├── Temperature_Out_of_Range_SNMP_.json │ │ │ └── Temperature_Returned_to_Normal_Range_SNMP_.json │ │ │ └── Security │ │ │ └── Access │ │ │ ├── Door_Close_SNMP_.json │ │ │ └── Door_Open_SNMP_.json │ ├── AlliedTelesis │ │ └── AT9400 │ │ │ ├── Network │ │ │ └── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ └── Logout_2_SYSLOG_.json │ │ │ └── System │ │ │ └── Started_SYSLOG_.json │ ├── Arista │ │ └── EOS │ │ │ └── Config │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ └── Entering_Configuration_Mode_SYSLOG_.json │ ├── BDCOM │ │ └── xPON │ │ │ ├── Chassis │ │ │ ├── CPU │ │ │ │ ├── CPU_Usage_Above_Threshold_SYSLOG_.json │ │ │ │ └── CPU_Usage_Drops_Below_Threshold_SYSLOG_.json │ │ │ ├── Fan │ │ │ │ └── Fan_Recovered_SYSLOG_.json │ │ │ └── PSU │ │ │ │ ├── PSU_Failed_SYSLOG_.json │ │ │ │ └── PSU_Recovered_SYSLOG_.json │ │ │ ├── Config │ │ │ └── Config_Changed_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── DHCP │ │ │ │ └── Untrusted_Server_SYSLOG_.json │ │ │ ├── LBD │ │ │ │ ├── Loop_Cleared_1_SYSLOG_.json │ │ │ │ └── Loop_Detected_1_SYSLOG.json │ │ │ ├── Link │ │ │ │ ├── DOM │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ ├── Alarm_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ └── Warning_Out_of_Threshold_SYSLOG_.json │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ │ ├── BPDU_Root_Violation_SYSLOG.json │ │ │ │ ├── Root_Guard_Recovery_SYSLOG.json │ │ │ │ └── STP_Port_State_Changed_MSTP_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_1_SYSLOG.json │ │ │ │ ├── Login_2_SYSLOG.json │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Logout_1_SYSLOG.json │ │ │ │ └── Logout_2_SYSLOG.json │ │ │ ├── System │ │ │ └── Started_SYSLOG_.json │ │ │ └── Unknown │ │ │ └── Ignore_Line_Protocol_SYSLOG_.json │ ├── Brocade │ │ └── IronWare │ │ │ ├── Chassis │ │ │ └── PSU │ │ │ │ ├── PSU_Failed_SYSLOG_.json │ │ │ │ └── PSU_Recovered_SYSLOG_.json │ │ │ ├── Config │ │ │ └── Config_Changed_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── VLAN │ │ │ │ └── VLAN_Created_SYSLOG_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_1_SYSLOG_.json │ │ │ ├── Login_2_SYSLOG_.json │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ ├── Logout_SYSLOG_.json │ │ │ └── SNMP_Authentication_Failure_SYSLOG_.json │ ├── Chassis │ │ └── Fan │ │ │ └── Fan_Failed_SNMP_.json │ ├── Cisco │ │ ├── ASA │ │ │ ├── Security │ │ │ │ ├── ACL │ │ │ │ │ ├── ACL_Deny_1_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_2_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_3_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_4_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_5_SYSLOG_.json │ │ │ │ │ └── ACL_Deny_6_SYSLOG_.json │ │ │ │ ├── Accounting │ │ │ │ │ └── WebVPN │ │ │ │ │ │ ├── Assigned_1_SYSLOG_.json │ │ │ │ │ │ └── Disconnected_1_SYSLOG_.json │ │ │ │ ├── Audit │ │ │ │ │ └── Command_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Logout │ │ │ │ │ └── Rejected_1_SYSLOG_.json │ │ │ │ │ ├── Logout_SYSLOG_.json │ │ │ │ │ └── Privilege_Level_Changed_SYSLOG_.json │ │ │ ├── Unknown │ │ │ │ ├── Ignore_IPsec_debug_SYSLOG_.json │ │ │ │ └── Ignore_flow_setup_messages_SYSLOG_.json │ │ │ └── Vendor │ │ │ │ └── Cisco │ │ │ │ └── ASA │ │ │ │ └── Network │ │ │ │ └── Flow_Accounting │ │ │ │ ├── Built_Flow_1_SYSLOG_.json │ │ │ │ ├── Built_Flow_2_SYSLOG_.json │ │ │ │ ├── Built_Flow_3_SYSLOG_.json │ │ │ │ ├── Duplicate_TCP_SYN_SYSLOG_.json │ │ │ │ ├── Teardown_Flow_1_SYSLOG_.json │ │ │ │ ├── Teardown_Flow_2_SYSLOG_.json │ │ │ │ └── Teardown_Flow_3_SYSLOG_.json │ │ ├── IOS │ │ │ ├── Chassis │ │ │ │ ├── CPU │ │ │ │ │ ├── CPU_Usage_Above_Threshold_SNMP_.json │ │ │ │ │ └── CPU_Usage_Drops_Below_Threshold_SNMP_.json │ │ │ │ ├── Clock │ │ │ │ │ ├── Clock_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Clock_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Clock_Failed_3_SYSLOG_.json │ │ │ │ │ ├── Clock_Failed_4_SYSLOG_.json │ │ │ │ │ ├── Clock_Recovered_1_SYSLOG_.json │ │ │ │ │ ├── Clock_Recovered_3_SYSLOG_.json │ │ │ │ │ └── Clock_Recovered_4_SYSLOG_.json │ │ │ │ ├── Fabric │ │ │ │ │ └── CRC_Errors_SYSLOG_.json │ │ │ │ ├── Fan │ │ │ │ │ ├── Fan_Failed_10_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_3_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_4_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_5_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_6_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_7_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_8_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_9_SYSLOG_.json │ │ │ │ │ ├── Fan_Inserted_1_SYSLOG_.json │ │ │ │ │ ├── Fan_Inserted_2_SYSLOG_.json │ │ │ │ │ ├── Fan_Recovered_1_SYSLOG_.json │ │ │ │ │ ├── Fan_Recovered_3_SYSLOG_.json │ │ │ │ │ ├── Fan_Recovered_8_SYSLOG_.json │ │ │ │ │ ├── Fan_Recovered_9_SYSLOG_.json │ │ │ │ │ ├── Fan_Removed_1_SYSLOG_.json │ │ │ │ │ └── Fan_Removed_2_SYSLOG_.json │ │ │ │ ├── Hardware │ │ │ │ │ ├── Flash_Device_Changed_1_SNMP_.json │ │ │ │ │ ├── Flash_Device_Inserted_1_SNMP_.json │ │ │ │ │ ├── Flash_Device_Removed_1_SNMP_.json │ │ │ │ │ ├── Hardware_Port_Error_1_SYSLOG_.json │ │ │ │ │ ├── Hardware_Port_Error_2_SYSLOG_.json │ │ │ │ │ ├── Hardware_Port_Error_3_SYSLOG_.json │ │ │ │ │ ├── Hardware_Port_Error_4_SYSLOG_.json │ │ │ │ │ ├── Hardware_Port_Error_Recover_4_SYSLOG_.json │ │ │ │ │ ├── Hardware_Warning_1_SYSLOG_.json │ │ │ │ │ ├── Hardware_Warning_2_SYSLOG_.json │ │ │ │ │ ├── Module │ │ │ │ │ │ ├── Invalid_Module_1_SYSLOG_.json │ │ │ │ │ │ ├── Invalid_Module_2_SYSLOG_.json │ │ │ │ │ │ ├── Invalid_Module_3_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_10_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_1_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_2_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_3_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_4_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_5_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_7_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_8_SYSLOG_.json │ │ │ │ │ │ ├── Module_Error_9_SYSLOG_.json │ │ │ │ │ │ ├── Module_Inserted_1_SNMP_.json │ │ │ │ │ │ ├── Module_Inserted_1_SYSLOG_.json │ │ │ │ │ │ ├── Module_Inserted_2_SYSLOG_.json │ │ │ │ │ │ ├── Module_Inserted_3_SYSLOG_.json │ │ │ │ │ │ ├── Module_Removed_1_SNMP_.json │ │ │ │ │ │ ├── Module_Removed_1_SYSLOG_.json │ │ │ │ │ │ ├── Module_Removed_2_SYSLOG_.json │ │ │ │ │ │ ├── Module_Removed_3_SYSLOG_.json │ │ │ │ │ │ ├── Power_Off_1_SNMP_.json │ │ │ │ │ │ └── Sensor_Threshold_Exceeded_SNMP_.json │ │ │ │ │ └── RF │ │ │ │ │ │ ├── RF_Progression_Changed_1_SNMP_.json │ │ │ │ │ │ ├── RF_SWACT_Changed_1_SNMP_.json │ │ │ │ │ │ └── RF_State_Notif_rev_1_1_SNMP_.json │ │ │ │ ├── Linecard │ │ │ │ │ ├── LC_Down_SYSLOG_.json │ │ │ │ │ └── LC_Up_SYSLOG_.json │ │ │ │ ├── PSU │ │ │ │ │ ├── PSU_Changed_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_10_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_11_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_12_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_1_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_2_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_3_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_4_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_5_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_6_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_7_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_8_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_9_SYSLOG_.json │ │ │ │ │ ├── PSU_Failed_SNMP_.json │ │ │ │ │ ├── PSU_Output_Capacity_Changed_SNMP_.json │ │ │ │ │ ├── PSU_Recovered_10_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_12_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_2_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_3_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_4_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_5_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_6_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_7_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_8_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_9_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_SNMP_.json │ │ │ │ │ └── Power_Failed_SYSLOG_.json │ │ │ │ ├── RAM │ │ │ │ │ ├── Insufficient_Memory_SYSLOG_.json │ │ │ │ │ ├── Memory_Buffer_Peak_SNMP_.json │ │ │ │ │ └── RAM_Failed_SYSLOG_.json │ │ │ │ ├── Stack │ │ │ │ │ └── Stack_Degraded_SNMP_.json │ │ │ │ ├── Supervisor │ │ │ │ │ ├── Supervisor_Down_1_SYSLOG_.json │ │ │ │ │ ├── Supervisor_Down_2_SYSLOG_.json │ │ │ │ │ ├── Supervisor_Down_3_SYSLOG_.json │ │ │ │ │ └── Supervisor_Up_SYSLOG_.json │ │ │ │ └── TCAM │ │ │ │ │ ├── TCAM_Error_1_SYSLOG_.json │ │ │ │ │ ├── TCAM_Error_2_SYSLOG_.json │ │ │ │ │ ├── TCAM_entry_capacity_exceeded_1_SYSLOG_.json │ │ │ │ │ ├── TCAM_entry_capacity_exceeded_2_SYSLOG_.json │ │ │ │ │ ├── TCAM_entry_capacity_exceeded_3_SYSLOG_.json │ │ │ │ │ └── TCAM_entry_capacity_exceeded_4_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_1_SNMP_.json │ │ │ │ ├── Config_Changed_2_SNMP_.json │ │ │ │ ├── Config_Changed_3_SNMP_.json │ │ │ │ ├── Config_Changed_4_SNMP_.json │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ ├── Config_Copy_Completion_1_SNMP_.json │ │ │ │ ├── Config_Download_Failed_SYSLOG_.json │ │ │ │ ├── Config_Downloaded_Successfully_SYSLOG_.json │ │ │ │ ├── Config_Sync_Failed_SYSLOG_.json │ │ │ │ ├── Config_Synced_1_SYSLOG_.json │ │ │ │ ├── Config_Synced_2_SYSLOG_.json │ │ │ │ ├── Entering_Configuration_Mode_SNMP_.json │ │ │ │ ├── Exiting_Configuration_Mode_1_SYSLOG_.json │ │ │ │ └── Exiting_Configuration_Mode_2_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ ├── DC_Voltage_Out_of_Range_1_SNMP_.json │ │ │ │ ├── DC_Voltage_Out_of_Range_1_SYSLOG_.json │ │ │ │ ├── DC_Voltage_Out_of_Range_2_SNMP_.json │ │ │ │ ├── DC_Voltage_Out_of_Range_2_SYSLOG_.json │ │ │ │ ├── DC_Voltage_Out_of_Range_3_SYSLOG_.json │ │ │ │ ├── DC_Voltage_Returned_to_Normal_Range_1_SNMP_.json │ │ │ │ ├── DC_Voltage_Returned_to_Normal_Range_2_SNMP_.json │ │ │ │ ├── Temperature_Out_of_Range_10_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_11_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_12_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_13_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_14_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_1_SNMP_.json │ │ │ │ ├── Temperature_Out_of_Range_1_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_2_SNMP_.json │ │ │ │ ├── Temperature_Out_of_Range_2_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_3_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_4_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_5_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_7_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_8_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_9_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_10_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_11_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_13_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_1_SNMP_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_1_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_2_SNMP_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_2_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_3_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_4_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_5_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_6_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_7_SYSLOG_.json │ │ │ │ └── Temperature_Returned_to_Normal_Range_8_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── 802_11 │ │ │ │ │ ├── Associated_SYSLOG_.json │ │ │ │ │ ├── Disassociated_SYSLOG_.json │ │ │ │ │ ├── Max_Retries_SYSLOG_.json │ │ │ │ │ └── Roamed_SYSLOG_.json │ │ │ │ ├── BGP │ │ │ │ │ ├── Backward_Transition_SNMP_.json │ │ │ │ │ ├── Established_SYSLOG_.json │ │ │ │ │ ├── Max_Prefixes_Exceeds_SYSLOG_.json │ │ │ │ │ ├── Max_Prefixes_Warning_SYSLOG_.json │ │ │ │ │ ├── Peer_Down_1_SYSLOG_.json │ │ │ │ │ ├── Peer_Down_2_SYSLOG_.json │ │ │ │ │ ├── Peer_Down_3_SYSLOG_.json │ │ │ │ │ ├── Peer_State_Changed_1_SNMP_.json │ │ │ │ │ ├── Peer_State_Changed_2_SNMP_.json │ │ │ │ │ └── Peer_State_Changed_SNMP_.json │ │ │ │ ├── CEF │ │ │ │ │ ├── Inconsistency_Detection_SNMP_.json │ │ │ │ │ ├── Peer_FIB_State_Changed_1_SNMP_.json │ │ │ │ │ ├── Peer_State_Changed_1_SNMP_.json │ │ │ │ │ └── Resource_Failure_SNMP_.json │ │ │ │ ├── DNS │ │ │ │ │ └── Bad_Query_SYSLOG_.json │ │ │ │ ├── DOCSIS │ │ │ │ │ ├── BPI_Unautorized_SYSLOG_.json │ │ │ │ │ ├── Bad_Timing_Offset_SYSLOG_.json │ │ │ │ │ ├── Channel_Width_Changed_SYSLOG_.json │ │ │ │ │ ├── Invalid_CoS_SYSLOG_.json │ │ │ │ │ ├── Invalid_DOCSIS_Message_1_SYSLOG_.json │ │ │ │ │ ├── Invalid_DOCSIS_Message_2_SYSLOG_.json │ │ │ │ │ ├── Invalid_DOCSIS_Message_3_SYSLOG_.json │ │ │ │ │ ├── Invalid_QoS_SYSLOG_.json │ │ │ │ │ ├── Invalid_Shared_Secret_SYSLOG_.json │ │ │ │ │ ├── Max_CPE_Reached_SYSLOG_.json │ │ │ │ │ ├── Maximum_Capacity_Reached_SYSLOG_.json │ │ │ │ │ ├── Maximum_SIDs_SYSLOG_.json │ │ │ │ │ ├── Unregistered_Modem_Deleted_SYSLOG_.json │ │ │ │ │ ├── Upstream_Frequency_Changed_SYSLOG_.json │ │ │ │ │ └── Upstream_Input_Power_Level_Changed_SYSLOG_.json │ │ │ │ ├── EIGRP │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ │ ├── HSRP │ │ │ │ │ └── GRP_State_Changed_SNMP_.json │ │ │ │ ├── IP │ │ │ │ │ ├── Address_Conflict_SYSLOG_.json │ │ │ │ │ ├── Route_Limit_Exceeded_SYSLOG_.json │ │ │ │ │ └── Route_Limit_Warning_SYSLOG_.json │ │ │ │ ├── IS-IS │ │ │ │ │ ├── Adjacency_Down_SYSLOG_.json │ │ │ │ │ └── Adjacency_Up_SYSLOG_.json │ │ │ │ ├── LAG │ │ │ │ │ ├── Bundle_SYSLOG_.json │ │ │ │ │ └── Unbundle_SYSLOG_.json │ │ │ │ ├── LBD │ │ │ │ │ ├── Loop_Cleared_SYSLOG_.json │ │ │ │ │ └── Loop_Detected_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Connection_Problem_2_SYSLOG_.json │ │ │ │ │ ├── Connection_Problem_SNMP_.json │ │ │ │ │ ├── Connection_Problem_SYSLOG_.json │ │ │ │ │ ├── DOM │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ │ └── Warning_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ ├── Duplex_Mismatch_SYSLOG_.json │ │ │ │ │ ├── Link_Down_1_SNMP_.json │ │ │ │ │ ├── Link_Down_2_SNMP_.json │ │ │ │ │ ├── Link_Down_3_SNMP_.json │ │ │ │ │ ├── Link_Down_4_SNMP_.json │ │ │ │ │ ├── Link_Down_5_SNMP_.json │ │ │ │ │ ├── Link_Down_6_SNMP_.json │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ ├── Link_Flap_Error_Detected_SYSLOG_.json │ │ │ │ │ ├── Link_Flap_Error_Recovery_SYSLOG_.json │ │ │ │ │ ├── Link_Up_1_SNMP_.json │ │ │ │ │ ├── Link_Up_2_SNMP_.json │ │ │ │ │ ├── Link_Up_3_SNMP_.json │ │ │ │ │ ├── Link_Up_4_SNMP_.json │ │ │ │ │ ├── Link_Up_5_SNMP_.json │ │ │ │ │ ├── Link_Up_6_SNMP_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ ├── MAC │ │ │ │ │ ├── Duplicate_MAC_SYSLOG_.json │ │ │ │ │ ├── Invalid_MAC_SYSLOG_.json │ │ │ │ │ ├── MAC_Flap_1_SYSLOG_.json │ │ │ │ │ ├── MAC_Flap_2_SYSLOG_.json │ │ │ │ │ ├── MAC_Flap_3_SYSLOG_.json │ │ │ │ │ ├── MAC_Flap_4_SYSLOG_.json │ │ │ │ │ ├── MAC_Learned_SNMP_.json │ │ │ │ │ └── MAC_Moved_SNMP_.json │ │ │ │ ├── MPLS │ │ │ │ │ ├── LDP_Neighbor_Down_SYSLOG_.json │ │ │ │ │ ├── LDP_Neighbor_Up_SYSLOG_.json │ │ │ │ │ ├── TDP_Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── TDP_Neighbor_Up_SYSLOG_.json │ │ │ │ ├── MSDP │ │ │ │ │ ├── Peer_Down_SYSLOG_.json │ │ │ │ │ └── Peer_Up_SYSLOG_.json │ │ │ │ ├── NTP │ │ │ │ │ ├── Lost_synchronization_SYSLOG_.json │ │ │ │ │ ├── NTP_Server_Reachable_SYSLOG_.json │ │ │ │ │ ├── NTP_Server_Unreachable_SYSLOG_.json │ │ │ │ │ ├── System_Clock_Adjusted_1_SYSLOG_.json │ │ │ │ │ ├── System_Clock_Adjusted_2_SYSLOG_.json │ │ │ │ │ └── System_Clock_Synchronized_SYSLOG_.json │ │ │ │ ├── OAM │ │ │ │ │ ├── Client_Clear_Remote_Failure_SYSLOG_.json │ │ │ │ │ ├── Client_Recieved_Remote_Failure_SYSLOG_.json │ │ │ │ │ ├── Discovery_Timeout_SYSLOG_.json │ │ │ │ │ ├── Enter_Session_SYSLOG_.json │ │ │ │ │ ├── Entering_Master_Loopback_Mode_SYSLOG_.json │ │ │ │ │ ├── Entering_Slave_Loopback_Mode_SYSLOG_.json │ │ │ │ │ ├── Exit_Session_SYSLOG_.json │ │ │ │ │ ├── Exiting_Master_Loopback_Mode_SYSLOG_.json │ │ │ │ │ ├── Exiting_Slave_Loopback_Mode_SYSLOG_.json │ │ │ │ │ └── Monitoring_Error_SYSLOG_.json │ │ │ │ ├── OSPF │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ │ ├── PIM │ │ │ │ │ ├── DR_Change_1_SYSLOG_.json │ │ │ │ │ ├── DR_Change_2_SYSLOG_.json │ │ │ │ │ ├── Invalid_RP_1_SYSLOG_.json │ │ │ │ │ ├── Invalid_RP_2_SYSLOG_.json │ │ │ │ │ ├── Neighbor_Down_1_SYSLOG_.json │ │ │ │ │ ├── Neighbor_Down_2_SYSLOG_.json │ │ │ │ │ ├── Neighbor_Up_1_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_2_SYSLOG_.json │ │ │ │ ├── PPPOE │ │ │ │ │ └── Accounting │ │ │ │ │ │ └── Session_Threshold_Exceeded_1_SNMP_.json │ │ │ │ ├── Port_Security │ │ │ │ │ ├── Port_Security_Violation_SNMP_.json │ │ │ │ │ └── Port_Security_Violation_SYSLOG_.json │ │ │ │ ├── SONET │ │ │ │ │ └── Path_Status_Change_1_SNMP_.json │ │ │ │ ├── STP │ │ │ │ │ ├── BPDU_Guard_Recovery_SYSLOG_.json │ │ │ │ │ ├── BPDU_Guard_Violation_SYSLOG_.json │ │ │ │ │ ├── Inconsistency_Update_STP_SNMP_.json │ │ │ │ │ ├── Root_Changed_SYSLOG_.json │ │ │ │ │ ├── STP_Vlan_Loop_Cleared_SNMP_.json │ │ │ │ │ ├── STP_Vlan_Loop_Cleared_SYSLOG_.json │ │ │ │ │ ├── STP_Vlan_Loop_Detected_SNMP_.json │ │ │ │ │ ├── STP_Vlan_Loop_Detected_SYSLOG_.json │ │ │ │ │ ├── STP_instances_exceeded_SYSLOG_.json │ │ │ │ │ ├── Topology_Changed_MSTP_SNMP_.json │ │ │ │ │ └── Topology_Changed_PVST_SNMP_.json │ │ │ │ ├── Storm_Control │ │ │ │ │ ├── Broadcast_Storm_Detected_SYSLOG_.json │ │ │ │ │ ├── Storm_Cleared_SYSLOG_.json │ │ │ │ │ └── Storm_Detected_SYSLOG_.json │ │ │ │ ├── UDLD │ │ │ │ │ ├── UDLD_Protocol_Error_Detected_SYSLOG_.json │ │ │ │ │ └── UDLD_Protocol_Recovery_SYSLOG_.json │ │ │ │ └── VLAN │ │ │ │ │ ├── Trunk_Port_Status_Changed_SNMP_.json │ │ │ │ │ ├── VLAN_Created_SNMP_.json │ │ │ │ │ └── VLAN_Deleted_SNMP_.json │ │ │ ├── Phone │ │ │ │ └── SCCP │ │ │ │ │ ├── Register_Alarm_SYSLOG_.json │ │ │ │ │ ├── Register_New_SYSLOG_.json │ │ │ │ │ ├── Register_SYSLOG_.json │ │ │ │ │ ├── Unregister_Abnormal_SYSLOG_.json │ │ │ │ │ └── Unregister_Normal_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── ACL │ │ │ │ │ ├── ACL_Deny_1_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_2_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_3_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_4_SYSLOG_.json │ │ │ │ │ ├── ACL_Deny_5_SYSLOG_.json │ │ │ │ │ ├── ACL_Permit_1_SYSLOG_.json │ │ │ │ │ ├── ACL_Permit_2_SYSLOG_.json │ │ │ │ │ └── ACL_Permit_3_SYSLOG_.json │ │ │ │ ├── Attack │ │ │ │ │ └── IP_Spoofing_1_SYSLOG_.json │ │ │ │ ├── Audit │ │ │ │ │ ├── Clearing_Counters_SYSLOG_.json │ │ │ │ │ ├── Clearing_Counters_SYSLOG_2.json │ │ │ │ │ ├── Command_1_SYSLOG_.json │ │ │ │ │ ├── Command_2_SYSLOG_.json │ │ │ │ │ └── Command_SNMP_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ │ ├── Logout_SNMP_.json │ │ │ │ │ ├── Logout_SYSLOG_.json │ │ │ │ │ ├── Privilege_Level_Change_Fail_SYSLOG_.json │ │ │ │ │ ├── RADIUS_server_failed_SYSLOG_.json │ │ │ │ │ ├── RADIUS_server_recovered_SYSLOG_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_2_SNMP_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_SNMP_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_SYSLOG_.json │ │ │ │ │ ├── SSH_-_Login_Failed_SYSLOG_.json │ │ │ │ │ ├── SSH_-_Login_SYSLOG_.json │ │ │ │ │ ├── SSH_-_Logout_SYSLOG_.json │ │ │ │ │ └── SSH_-_Unexpected_message_type_SYSLOG_.json │ │ │ ├── System │ │ │ │ ├── Process_Started_SYSLOG_.json │ │ │ │ ├── Process_Started_SYSLOG_2.json │ │ │ │ ├── Reboot_SNMP_.json │ │ │ │ ├── Reboot_SYSLOG_.json │ │ │ │ └── Started_SYSLOG_.json │ │ │ ├── Unknown │ │ │ │ ├── Ignore_ACL_logging_SYSLOG_.json │ │ │ │ ├── Ignore_BGP_Notification_1_SNMP_.json │ │ │ │ ├── Ignore_BGP_Notification_1_SYSLOG_.json │ │ │ │ ├── Ignore_BGP_Notification_2_SNMP_.json │ │ │ │ ├── Ignore_BGP_Notification_2_SYSLOG_.json │ │ │ │ ├── Ignore_BPDUGUARD_SYSLOG_.json │ │ │ │ ├── Ignore_IGMP_CGMP_MODE_logging_SYSLOG_.json │ │ │ │ ├── Ignore_Line_Protocol_SYSLOG_.json │ │ │ │ ├── Ignore_SNMP_Syslog_SNMP_.json │ │ │ │ ├── Ignore_SSH_Request_SYSLOG_.json │ │ │ │ ├── Ignore_Storm_Control_SYSLOG_.json │ │ │ │ ├── Ignore_TCP_Connection_Close_SNMP_.json │ │ │ │ ├── Ignore_show_running-config_2_SNMP_.json │ │ │ │ ├── Ignore_show_running-config_SNMP_.json │ │ │ │ └── MPLS_TDP_Info_SYSLOG_.json │ │ │ └── Vendor │ │ │ │ └── Cisco │ │ │ │ └── IOS │ │ │ │ └── Network │ │ │ │ └── Load_Balance │ │ │ │ ├── Server_Farm_Degraded_1_SNMP_.json │ │ │ │ ├── Server_Farm_Degraded_2_SNMP_.json │ │ │ │ ├── Server_Farm_Degraded_SYSLOG_.json │ │ │ │ ├── Server_Farm_is_Operate_1_SNMP_.json │ │ │ │ ├── Server_Farm_is_Operate_2_SNMP_.json │ │ │ │ ├── Server_Farm_is_Operate_SYSLOG_.json │ │ │ │ ├── vserver_In_Service_1_SYSLOG_.json │ │ │ │ ├── vserver_In_Service_2_SYSLOG_.json │ │ │ │ ├── vserver_In_Service_3_SYSLOG_.json │ │ │ │ ├── vserver_Out_of_Service_1_SYSLOG_.json │ │ │ │ ├── vserver_Out_of_Service_2_SYSLOG_.json │ │ │ │ └── vserver_Out_of_Service_3_SYSLOG_.json │ │ ├── IOSXR │ │ │ ├── Chassis │ │ │ │ ├── Hardware │ │ │ │ │ └── Module │ │ │ │ │ │ └── Invalid_Module_1_SYSLOG_.json │ │ │ │ └── PSU │ │ │ │ │ ├── PSU_Failed_SYSLOG_.json │ │ │ │ │ └── PSU_Recovered_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ ├── Config_Corrected_1_SYSLOG_.json │ │ │ │ ├── Config_Corrected_2_SYSLOG_.json │ │ │ │ ├── Exiting_Configuration_Mode_SYSLOG_.json │ │ │ │ ├── Invalid_Config_1_SYSLOG_.json │ │ │ │ └── Invalid_Config_2_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ ├── Chassis_Voltage_Out_of_Range_SYSLOG_.json │ │ │ │ ├── Chassis_Voltage_Returned_to_Normal_Range_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_2_SYSLOG_.json │ │ │ │ ├── Temperature_Out_of_Range_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_2_SYSLOG_.json │ │ │ │ └── Temperature_Returned_to_Normal_Range_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── BFD │ │ │ │ │ ├── Session_Down_SYSLOG_.json │ │ │ │ │ └── Session_Up_SYSLOG_.json │ │ │ │ ├── BGP │ │ │ │ │ ├── Established_SYSLOG_.json │ │ │ │ │ └── Peer_Down_SYSLOG_.json │ │ │ │ ├── IP │ │ │ │ │ └── Address_Conflict_SYSLOG_.json │ │ │ │ ├── IS-IS │ │ │ │ │ ├── Adjacency_Down_SYSLOG_.json │ │ │ │ │ └── Adjacency_Up_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── DOM │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ │ └── Warning_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ ├── Link_Up_SNMP_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ ├── MAC │ │ │ │ │ └── MAC_Moved_SYSLOG_.json │ │ │ │ ├── MSDP │ │ │ │ │ ├── Peer_Down_SYSLOG_.json │ │ │ │ │ └── Peer_Up_SYSLOG_.json │ │ │ │ ├── OAM │ │ │ │ │ ├── Discovery_Timeout_SYSLOG_.json │ │ │ │ │ ├── Enter_Session_SYSLOG_.json │ │ │ │ │ └── Exit_Session_SYSLOG_.json │ │ │ │ ├── OSPF │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ │ └── PIM │ │ │ │ │ ├── MSDP_Peer_Down_SYSLOG_.json │ │ │ │ │ ├── MSDP_Peer_Up_SYSLOG_.json │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Audit │ │ │ │ │ ├── Clearing_Counters_SYSLOG_.json │ │ │ │ │ ├── Command_1_SYSLOG_.json │ │ │ │ │ └── Command_2_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_SNMP_.json │ │ │ │ │ ├── SSH_-_Login_Failed_SYSLOG_.json │ │ │ │ │ ├── SSH_-_Login_SYSLOG_.json │ │ │ │ │ └── SSH_-_Logout_SYSLOG_.json │ │ │ ├── System │ │ │ │ └── Process_Exited_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_PLATFORM-ENVMON-2-ENV_CONDITION_1_SYSLOG_.json │ │ │ │ └── Ignore_PLATFORM-ENVMON-2-ENV_CONDITION_2_SYSLOG_.json │ │ ├── NXOS │ │ │ ├── Config │ │ │ │ └── Config_Changed_1_SNMP_.json │ │ │ └── Network │ │ │ │ ├── Link │ │ │ │ ├── DOM │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ ├── Alarm_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ └── Warning_Out_of_Threshold_SYSLOG_.json │ │ │ │ ├── Link_Down_1_SNMP_.json │ │ │ │ ├── Link_Down_2_SNMP_.json │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ ├── Link_Up_1_SNMP_.json │ │ │ │ ├── Link_Up_2_SNMP_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ └── MAC │ │ │ │ └── MAC_Flap_1_SYSLOG_.json │ │ ├── SCOS │ │ │ └── Vendor │ │ │ │ └── Cisco │ │ │ │ └── SCOS │ │ │ │ └── Security │ │ │ │ └── Attack │ │ │ │ ├── Attack_Detected_1.json │ │ │ │ ├── Attack_Detected_2.json │ │ │ │ ├── Attack_Ended_1.json │ │ │ │ └── Attack_Ended_2.json │ │ └── SMB │ │ │ └── Network │ │ │ ├── Link │ │ │ ├── Duplex_Mismatch_SYSLOG_.json │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ ├── DLink │ │ ├── DGS3100 │ │ │ ├── Chassis │ │ │ │ ├── Fan │ │ │ │ │ ├── Fan_Failed_SYSLOG_.json │ │ │ │ │ └── Fan_Recovered_SYSLOG_.json │ │ │ │ ├── Hardware │ │ │ │ │ └── Module │ │ │ │ │ │ ├── Module_Present_SYSLOG_.json │ │ │ │ │ │ └── Module_not_Present_SYSLOG_.json │ │ │ │ ├── PSU │ │ │ │ │ ├── PSU_Failed_SYSLOG_.json │ │ │ │ │ └── PSU_Recovered_SYSLOG_.json │ │ │ │ ├── RAM │ │ │ │ │ └── Insufficient_Memory_SYSLOG_.json │ │ │ │ └── Stack │ │ │ │ │ ├── Stack_Degraded_1_SYSLOG_.json │ │ │ │ │ ├── Stack_Degraded_2_SYSLOG_.json │ │ │ │ │ ├── Stack_is_Raised_1_SYSLOG_.json │ │ │ │ │ └── Stack_is_Raised_2_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_SNMP_.json │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ └── Config_Sync_Failed_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ └── Temperature_Out_of_Range_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── LAG │ │ │ │ │ ├── Bundle_SYSLOG_.json │ │ │ │ │ └── Unbundle_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ ├── Link_Up_SNMP_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ └── STP │ │ │ │ │ ├── STP_Port_Role_Changed_SYSLOG_.json │ │ │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── ACL │ │ │ │ │ └── ACL_Deny_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ │ └── Logout_2_SYSLOG_.json │ │ │ └── System │ │ │ │ └── Started_SYSLOG_.json │ │ ├── DxS │ │ │ ├── Chassis │ │ │ │ ├── CPU │ │ │ │ │ ├── Safeguard_Engine_enters_EXHAUSTED_mode_SNMP_.json │ │ │ │ │ ├── Safeguard_Engine_enters_EXHAUSTED_mode_SYSLOG_.json │ │ │ │ │ ├── Safeguard_Engine_enters_NORMAL_mode_SNMP_.json │ │ │ │ │ └── Safeguard_Engine_enters_NORMAL_mode_SYSLOG_.json │ │ │ │ ├── Fan │ │ │ │ │ ├── Fan_Failed_SYSLOG_.json │ │ │ │ │ └── Fan_Recovered_SYSLOG_.json │ │ │ │ ├── Hardware │ │ │ │ │ └── Hardware_Error_SYSLOG_.json │ │ │ │ ├── PSU │ │ │ │ │ ├── PSU_Failed_SYSLOG_.json │ │ │ │ │ ├── PSU_Recovered_SYSLOG_.json │ │ │ │ │ └── Power_Failed_SNMP_.json │ │ │ │ └── Stack │ │ │ │ │ ├── Stack_Degraded_SYSLOG_.json │ │ │ │ │ └── Stack_is_Raised_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_1_SNMP_.json │ │ │ │ ├── Config_Changed_1_SYSLOG_.json │ │ │ │ ├── Config_Changed_2_SNMP_.json │ │ │ │ ├── Config_Changed_2_SYSLOG_.json │ │ │ │ └── Config_Uploaded_Successfully_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ ├── Temperature_Out_of_Range_SYSLOG_.json │ │ │ │ └── Temperature_Returned_to_Normal_Range_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── BGP │ │ │ │ │ ├── Backward_Transition_SNMP_.json │ │ │ │ │ ├── Established_SNMP_.json │ │ │ │ │ ├── Established_SYSLOG_.json │ │ │ │ │ ├── Peer_Down_1_SYSLOG_.json │ │ │ │ │ ├── Peer_Down_2_SYSLOG_.json │ │ │ │ │ └── Peer_Down_3_SYSLOG_.json │ │ │ │ ├── DHCP │ │ │ │ │ └── Untrusted_Server_SYSLOG_.json │ │ │ │ ├── IMPB │ │ │ │ │ ├── Dynamic_IMPB_entry_is_conflicting_with_static_SYSLOG_.json │ │ │ │ │ ├── Recover_IMPB_stop_learning_state_SYSLOG_.json │ │ │ │ │ ├── Unauthenticated_IP-MAC_1_SYSLOG_.json │ │ │ │ │ ├── Unauthenticated_IP-MAC_2_SYSLOG_.json │ │ │ │ │ └── Unauthenticated_IP-MAC_SNMP_.json │ │ │ │ ├── IP │ │ │ │ │ ├── Address_Conflict_SNMP_.json │ │ │ │ │ └── Address_Conflict_SYSLOG_.json │ │ │ │ ├── LBD │ │ │ │ │ ├── Loop_Cleared_1_SYSLOG_.json │ │ │ │ │ ├── Loop_Detected_1_SYSLOG_.json │ │ │ │ │ ├── Loop_Detected_2_SYSLOG_.json │ │ │ │ │ ├── Vlan_Loop_Cleared_SNMP_.json │ │ │ │ │ ├── Vlan_Loop_Cleared_SYSLOG_.json │ │ │ │ │ ├── Vlan_Loop_Detected_SNMP_.json │ │ │ │ │ └── Vlan_Loop_Detected_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── DOM │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_SYSLOG_.json │ │ │ │ │ │ └── Warning_Out_of_Threshold_SYSLOG_.json │ │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ ├── Link_Up_SNMP_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ ├── MAC │ │ │ │ │ ├── MAC_Aged_SNMP_.json │ │ │ │ │ ├── MAC_Flood_SNMP_.json │ │ │ │ │ ├── MAC_Flood_SYSLOG_.json │ │ │ │ │ ├── MAC_Learned_SNMP_.json │ │ │ │ │ └── MAC_Moved_SNMP_.json │ │ │ │ ├── OAM │ │ │ │ │ └── Monitoring_Error_SYSLOG.json │ │ │ │ ├── Port_Security │ │ │ │ │ ├── Port_Security_Violation_1_SYSLOG_.json │ │ │ │ │ ├── Port_Security_Violation_2_SYSLOG_.json │ │ │ │ │ ├── Port_Security_Violation_3_SYSLOG_.json │ │ │ │ │ └── Port_Security_Violation_SNMP_.json │ │ │ │ ├── STP │ │ │ │ │ ├── BPDU_Guard_Recovery_SYSLOG_.json │ │ │ │ │ ├── BPDU_Guard_Violation_SYSLOG_.json │ │ │ │ │ ├── STP_Loop_Detected_1_SYSLOG_.json │ │ │ │ │ ├── STP_Port_Role_Changed_SYSLOG_.json │ │ │ │ │ ├── STP_Port_State_Changed_SYSLOG_.json │ │ │ │ │ ├── STP_Vlan_Loop_Detected_1_SYSLOG_.json │ │ │ │ │ └── Topology_Changed_SYSLOG_.json │ │ │ │ ├── Storm_Control │ │ │ │ │ ├── Broadcast_Storm_Cleared_1_SYSLOG_.json │ │ │ │ │ ├── Broadcast_Storm_Cleared_2_SYSLOG_.json │ │ │ │ │ ├── Broadcast_Storm_Detected_1_SYSLOG_.json │ │ │ │ │ ├── Broadcast_Storm_Detected_2_SYSLOG_.json │ │ │ │ │ ├── Multicast_Storm_Cleared_1_SYSLOG_.json │ │ │ │ │ ├── Multicast_Storm_Cleared_2_SYSLOG_.json │ │ │ │ │ ├── Multicast_Storm_Detected_1_SYSLOG_.json │ │ │ │ │ ├── Multicast_Storm_Detected_2_SYSLOG_.json │ │ │ │ │ ├── Storm_Cleared_SNMP_.json │ │ │ │ │ ├── Storm_Detected_SNMP_.json │ │ │ │ │ └── Storm_Detected_SYSLOG_.json │ │ │ │ └── UDLD │ │ │ │ │ └── UDLD_Protocol_Error_Detected_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Attack │ │ │ │ │ ├── Blat_Attack_SNMP_.json │ │ │ │ │ ├── Blat_Attack_SYSLOG_.json │ │ │ │ │ ├── IP_Spoofing_SYSLOG_.json │ │ │ │ │ ├── Land_Attack_SNMP_.json │ │ │ │ │ ├── Land_Attack_SYSLOG_.json │ │ │ │ │ ├── Ping_Of_Death_SNMP_.json │ │ │ │ │ ├── Ping_Of_Death_SYSLOG_.json │ │ │ │ │ ├── Smurf_Attack_SNMP_.json │ │ │ │ │ ├── Smurf_Attack_SYSLOG_.json │ │ │ │ │ ├── TCP_SYNFIN_Scan_SNMP_.json │ │ │ │ │ └── TCP_SYNFIN_Scan_SYSLOG_.json │ │ │ │ ├── Audit │ │ │ │ │ └── Command_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Login_3_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_3_SYSLOG_.json │ │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ │ ├── Logout_3_SYSLOG_.json │ │ │ │ │ ├── Privilege_Level_Change_Fail_1_SYSLOG_.json │ │ │ │ │ ├── Privilege_Level_Change_Fail_2_SYSLOG_.json │ │ │ │ │ ├── Privilege_Level_Changed_SYSLOG_.json │ │ │ │ │ ├── RADIUS_server_failed_SYSLOG_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_SYSLOG_.json │ │ │ │ │ ├── Session_timed_out_SYSLOG_.json │ │ │ │ │ └── TACACS+_server_failed_SYSLOG_.json │ │ │ ├── System │ │ │ │ ├── Started_1_SYSLOG_.json │ │ │ │ └── Started_2_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ └── Ignore_STP_Port_Status_Changed_SYSLOG_.json │ │ ├── DxS_Cisco_CLI │ │ │ ├── Chassis │ │ │ │ └── RAM │ │ │ │ │ ├── Insufficient_Memory_1_SYSLOG_.json │ │ │ │ │ └── Insufficient_Memory_2_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── BGP │ │ │ │ │ ├── Established_SYSLOG_.json │ │ │ │ │ └── Peer_Down_SYSLOG_.json │ │ │ │ ├── IP │ │ │ │ │ ├── ARP_Moved_SYSLOG_.json │ │ │ │ │ ├── ARP_Zero_MAC_SYSLOG_.json │ │ │ │ │ └── Address_Conflict_SYSLOG_.json │ │ │ │ ├── LBD │ │ │ │ │ ├── Loop_Cleared_1_SYSLOG_.json │ │ │ │ │ ├── Loop_Detected_1_SYSLOG_.json │ │ │ │ │ └── Loop_Detected_2_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ └── NTP │ │ │ │ │ └── System_Clock_Adjusted_SYSLOG_.json │ │ │ ├── Security │ │ │ │ └── Attack │ │ │ │ │ ├── Attack_1_SYSLOG_.json │ │ │ │ │ ├── Attack_2_SYSLOG_.json │ │ │ │ │ ├── Attack_3_SYSLOG_.json │ │ │ │ │ └── Attack_4_SYSLOG_.json │ │ │ ├── System │ │ │ │ ├── Started_1_SYSLOG_.json │ │ │ │ └── Started_2_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_Console_Events_SYSLOG_.json │ │ │ │ └── Ignore_Line_Protocol_SYSLOG_.json │ │ └── DxS_Smart │ │ │ ├── Network │ │ │ └── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ └── Login_SYSLOG_.json │ ├── EdgeCore │ │ └── ES │ │ │ ├── Chassis │ │ │ └── CPU │ │ │ │ ├── CPU_Usage_Above_Threshold_SNMP_.json │ │ │ │ ├── CPU_Usage_Above_Threshold_SYSLOG_.json │ │ │ │ ├── CPU_Usage_Drops_Below_Threshold_SNMP_.json │ │ │ │ └── CPU_Usage_Drops_Below_Threshold_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── LBD │ │ │ │ ├── Loop_Cleared_SNMP_.json │ │ │ │ ├── Loop_Cleared_SYSLOG_.json │ │ │ │ ├── Loop_Detected_SNMP_.json │ │ │ │ └── Loop_Detected_SYSLOG_.json │ │ │ ├── Link │ │ │ │ ├── Link_Down_2_SYSLOG_.json │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ ├── Link_Up_1_SYSLOG_.json │ │ │ │ ├── Link_Up_2_SYSLOG_.json │ │ │ │ ├── Link_Up_SNMP_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ ├── MAC │ │ │ │ ├── MAC_Aged_1_SNMP_.json │ │ │ │ ├── MAC_Aged_2_SNMP_.json │ │ │ │ ├── MAC_Learned_1_SNMP_.json │ │ │ │ └── MAC_Learned_2_SNMP_.json │ │ │ ├── Port_Security │ │ │ │ ├── Port_Security_Violation_1_SNMP_.json │ │ │ │ ├── Port_Security_Violation_1_SYSLOG_.json │ │ │ │ ├── Port_Security_Violation_SNMP_.json │ │ │ │ └── Port_Security_Violation_SYSLOG_.json │ │ │ └── STP │ │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ │ │ ├── Security │ │ │ ├── Audit │ │ │ │ └── Command_SYSLOG_.json │ │ │ └── Authentication │ │ │ │ ├── Authentication_Failed_1_SYSLOG_.json │ │ │ │ ├── Login_1_SNMP_.json │ │ │ │ ├── Login_2_SNMP_.json │ │ │ │ ├── Login_Failed_1_SNMP_.json │ │ │ │ ├── Login_Failed_2_SNMP_.json │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ └── Login_SYSLOG_.json │ │ │ └── System │ │ │ └── Started_SYSLOG_.json │ ├── ElectronR │ │ ├── KO01M │ │ │ ├── Environment │ │ │ │ └── UPS │ │ │ │ │ ├── Input_Power_Failed_SNMP_.json │ │ │ │ │ └── Input_Power_OK_SNMP_.json │ │ │ └── Security │ │ │ │ └── Access │ │ │ │ ├── Door_Close_SNMP_.json │ │ │ │ └── Door_Open_SNMP_.json │ │ └── KO01MV2 │ │ │ ├── Environment │ │ │ └── UPS │ │ │ │ ├── Input_Power_Failed_SNMP_.json │ │ │ │ └── Input_Power_OK_SNMP_.json │ │ │ └── Security │ │ │ └── Access │ │ │ ├── Door_Close_SNMP_.json │ │ │ └── Door_Open_SNMP_.json │ ├── Eltex │ │ ├── ESR │ │ │ └── Chassis │ │ │ │ └── Fan │ │ │ │ ├── Fan_Failed_SNMP_.json │ │ │ │ └── Fan_Recovered_SNMP_.json │ │ └── MES │ │ │ ├── Chassis │ │ │ └── Hardware │ │ │ │ └── Module │ │ │ │ ├── Module_Present_SYSLOG_.json │ │ │ │ └── Module_not_Present_SYSLOG_.json │ │ │ ├── Config │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ └── Config_Synced_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── LAG │ │ │ │ ├── Bundle_SYSLOG_.json │ │ │ │ └── Unbundle_SYSLOG_.json │ │ │ ├── LLDP │ │ │ │ ├── Created_New_Neighbor_SYSLOG_.json │ │ │ │ └── LLDP_Aged_Out_SYSLOG_.json │ │ │ ├── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ └── Logout_SYSLOG_.json │ │ │ ├── System │ │ │ └── Started_SYSLOG_.json │ │ │ └── Unknown │ │ │ └── Ignore_Logging_started_SYSLOG_.json │ ├── Environment │ │ └── UPS │ │ │ ├── Input_Power_Failed_SNMP_.json │ │ │ └── Input_Power_OK_SNMP_.json │ ├── Force10 │ │ └── FTOS │ │ │ ├── Chassis │ │ │ ├── CPU │ │ │ │ ├── CPU_Usage_Above_Threshold_SNMP_.json │ │ │ │ ├── CPU_Usage_Drops_Below_Threshold_SNMP_.json │ │ │ │ └── CoPP_Drop_SYSLOG_.json │ │ │ └── Linecard │ │ │ │ ├── LC_Down_SNMP_.json │ │ │ │ └── LC_Up_SNMP_.json │ │ │ ├── Config │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ └── Entering_Configuration_Mode_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── Link │ │ │ │ ├── Link_Down_1_SNMP_.json │ │ │ │ ├── Link_Down_2_SNMP_.json │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ ├── Link_Up_1_SNMP_.json │ │ │ │ ├── Link_Up_2_SNMP_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ │ └── STP_Port_State_Changed_SNMP_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_SYSLOG_.json │ │ │ ├── Logout_SYSLOG_.json │ │ │ └── SNMP_Authentication_Failure_SNMP_.json │ ├── HP │ │ ├── 1905 │ │ │ ├── Network │ │ │ │ ├── LLDP │ │ │ │ │ ├── Created_New_Neighbor_SYSLOG_.json │ │ │ │ │ └── LLDP_Aged_Out_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ └── NTP │ │ │ │ │ ├── NTP_Server_Reachable_SYSLOG_.json │ │ │ │ │ └── System_Clock_Synchronized_SYSLOG_.json │ │ │ ├── Security │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ │ └── Logout_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_1_SYSLOG_.json │ │ │ │ └── Ignore_2_SYSLOG_.json │ │ ├── 1910 │ │ │ ├── Config │ │ │ │ ├── Config_Changed_1_SYSLOG_.json │ │ │ │ ├── Config_Changed_2_SYSLOG_.json │ │ │ │ ├── Config_Synced_SYSLOG_.json │ │ │ │ ├── Exiting_Configuration_Mode_1_SYSLOG_.json │ │ │ │ └── Exiting_Configuration_Mode_2_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── LAG │ │ │ │ │ ├── Bundle_SYSLOG_.json │ │ │ │ │ └── Unbundle_SYSLOG_.json │ │ │ │ ├── LLDP │ │ │ │ │ ├── Created_New_Neighbor_SYSLOG_.json │ │ │ │ │ ├── LLDP_Aged_Out_1_SYSLOG_.json │ │ │ │ │ ├── LLDP_Aged_Out_2_SYSLOG_.json │ │ │ │ │ └── Remote_Tables_Change_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Link_Down_1_SYSLOG_.json │ │ │ │ │ ├── Link_Down_2_SYSLOG_.json │ │ │ │ │ ├── Link_Down_3_SYSLOG_.json │ │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ │ ├── Link_Up_1_SYSLOG_.json │ │ │ │ │ ├── Link_Up_2_SYSLOG_.json │ │ │ │ │ ├── Link_Up_3_SYSLOG_.json │ │ │ │ │ ├── Link_Up_4_SYSLOG_.json │ │ │ │ │ └── Link_Up_SNMP_.json │ │ │ │ ├── NTP │ │ │ │ │ └── System_Clock_Synchronized_SYSLOG_.json │ │ │ │ ├── STP │ │ │ │ │ └── Topology_Changed_SYSLOG_.json │ │ │ │ └── VLAN │ │ │ │ │ └── VLAN_Created_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Audit │ │ │ │ │ ├── Command_1_SYSLOG_.json │ │ │ │ │ └── Command_2_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Login_3_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_3_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_SNMP_.json │ │ │ │ │ ├── Login_SNMP_.json │ │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ │ ├── Logout_SNMP_.json │ │ │ │ │ └── Privilege_Level_Changed_SYSLOG_.json │ │ │ ├── System │ │ │ │ └── Started_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_10_SYSLOG_.json │ │ │ │ ├── Ignore_11_SYSLOG_.json │ │ │ │ ├── Ignore_12_SYSLOG_.json │ │ │ │ ├── Ignore_13_SYSLOG_.json │ │ │ │ ├── Ignore_14_SYSLOG_.json │ │ │ │ ├── Ignore_15_SYSLOG_.json │ │ │ │ ├── Ignore_16_SYSLOG_.json │ │ │ │ ├── Ignore_18_SYSLOG_.json │ │ │ │ ├── Ignore_19_SYSLOG_.json │ │ │ │ ├── Ignore_1_SYSLOG_.json │ │ │ │ ├── Ignore_20_SYSLOG_.json │ │ │ │ ├── Ignore_22_SYSLOG_.json │ │ │ │ ├── Ignore_23_SYSLOG_.json │ │ │ │ ├── Ignore_27_SYSLOG_.json │ │ │ │ ├── Ignore_28_SYSLOG_.json │ │ │ │ ├── Ignore_29_SYSLOG_.json │ │ │ │ ├── Ignore_2_SYSLOG_.json │ │ │ │ ├── Ignore_3_SYSLOG_.json │ │ │ │ ├── Ignore_4_SYSLOG_.json │ │ │ │ ├── Ignore_5_SYSLOG_.json │ │ │ │ ├── Ignore_6_SYSLOG_.json │ │ │ │ ├── Ignore_7_SYSLOG_.json │ │ │ │ ├── Ignore_8_SYSLOG_.json │ │ │ │ ├── Ignore_9_SYSLOG_.json │ │ │ │ ├── Syslog_17_SYSLOG_.json │ │ │ │ ├── Syslog_21_SYSLOG_.json │ │ │ │ ├── Syslog_24_SYSLOG_.json │ │ │ │ ├── Syslog_25_SYSLOG_.json │ │ │ │ └── Syslog_26_SYSLOG_.json │ │ ├── ProCurve │ │ │ ├── Network │ │ │ │ └── Link │ │ │ │ │ └── Connection_Problem_SYSLOG_.json │ │ │ └── Security │ │ │ │ └── Authentication │ │ │ │ ├── 802_1x_failed_SYSLOG_.json │ │ │ │ └── RADIUS_server_failed_SYSLOG_.json │ │ └── ProCurve9xxx │ │ │ ├── Config │ │ │ └── Config_Changed_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── IP │ │ │ │ └── IP_Flap_SYSLOG_.json │ │ │ ├── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ │ ├── STP_Port_State_Changed_SYSLOG_.json │ │ │ │ └── Topology_Changed_SYSLOG_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ ├── Login_SYSLOG_.json │ │ │ └── Logout_SYSLOG_.json │ ├── Huawei │ │ ├── VRP │ │ │ ├── Chassis │ │ │ │ ├── Board │ │ │ │ │ ├── Board_Fail_Recover_SNMP_.json │ │ │ │ │ └── Board_Fail_SNMP_.json │ │ │ │ ├── CPU │ │ │ │ │ ├── CPU_Usage_Above_Threshold_SNMP_.json │ │ │ │ │ ├── CPU_Usage_Above_Threshold_SYSLOG_.json │ │ │ │ │ ├── CPU_Usage_Drops_Below_Threshold_SNMP_.json │ │ │ │ │ ├── CPU_Usage_Drops_Below_Threshold_SYSLOG_.json │ │ │ │ │ └── CoPP_Drop_SYSLOG_.json │ │ │ │ └── Hardware │ │ │ │ │ └── Module │ │ │ │ │ ├── Module_Inserted_1_SNMP_.json │ │ │ │ │ ├── Module_Inserted_SYSLOG_.json │ │ │ │ │ ├── Module_Invalid_1_SNMP_.json │ │ │ │ │ ├── Module_Invalid_Resume_1_SNMP_.json │ │ │ │ │ ├── Module_Removed_1_SNMP_.json │ │ │ │ │ └── Module_Removed_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_1_SNMP_.json │ │ │ │ ├── Config_Changed_2_SNMP_.json │ │ │ │ ├── Config_Changed_3_SNMP_.json │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ └── Exiting_Configuration_Mode_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── BFD │ │ │ │ │ ├── Session_Down_SNMP_.json │ │ │ │ │ └── Session_Up_SNMP_.json │ │ │ │ ├── LBD │ │ │ │ │ ├── Loop_Cleared_SNMP_.json │ │ │ │ │ ├── Loop_Cleared_SYSLOG_.json │ │ │ │ │ ├── Loop_Detected_SNMP_.json │ │ │ │ │ ├── Loop_Detected_SYSLOG_.json │ │ │ │ │ ├── Vlan_Loop_Cleared_1_SYSLOG_.json │ │ │ │ │ ├── Vlan_Loop_Detected_1_SYSLOG_.json │ │ │ │ │ └── Vlan_Loop_Detected_2_SYSLOG_.json │ │ │ │ ├── LLDP │ │ │ │ │ └── Remote_Tables_Change_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Full-Duplex_SNMP_.json │ │ │ │ │ ├── Full-Duplex_SYSLOG_.json │ │ │ │ │ ├── Half-Duplex_SNMP_.json │ │ │ │ │ ├── Half-Duplex_SYSLOG_.json │ │ │ │ │ ├── Link_Down_1_SNMP_.json │ │ │ │ │ ├── Link_Down_1_SYSLOG_.json │ │ │ │ │ ├── Link_Down_2_SNMP_.json │ │ │ │ │ ├── Link_Down_2_SYSLOG_.json │ │ │ │ │ ├── Link_Down_3_SYSLOG_.json │ │ │ │ │ ├── Link_Down_SYSLOG_4.json │ │ │ │ │ ├── Link_Down_SYSLOG_5.json │ │ │ │ │ ├── Link_Up_1_SNMP_.json │ │ │ │ │ ├── Link_Up_1_SYSLOG_.json │ │ │ │ │ ├── Link_Up_2_SNMP_.json │ │ │ │ │ ├── Link_Up_2_SYSLOG_.json │ │ │ │ │ ├── Link_Up_3_SYSLOG_.json │ │ │ │ │ ├── Link_Up_SYSLOG_4.json │ │ │ │ │ └── Link_Up_SYSLOG_5.json │ │ │ │ ├── MAC │ │ │ │ │ └── MAC_Flap_SYSLOG_.json │ │ │ │ ├── Monitor │ │ │ │ │ ├── CRC_Error_Cleared_SYSLOG_.json │ │ │ │ │ ├── CRC_Error_Detected_SYSLOG_.json │ │ │ │ │ ├── CRC_Error_Resume_Threshold_SNMP_.json │ │ │ │ │ └── CRC_Error_Threshold_SNMP_.json │ │ │ │ ├── NTP │ │ │ │ │ ├── Lost_synchronization_SYSLOG_.json │ │ │ │ │ └── NTP_Server_Reachable_SYSLOG_.json │ │ │ │ ├── Port │ │ │ │ │ ├── Loss_of_Signal_Resume_SNMP_.json │ │ │ │ │ └── Loss_of_Signal_SNMP_.json │ │ │ │ └── STP │ │ │ │ │ ├── STP_Port_State_Changed_MSTP_1_SYSLOG_.json │ │ │ │ │ ├── STP_Port_State_Changed_MSTP_2_SYSLOG_.json │ │ │ │ │ └── Topology_Changed_MSTP_1_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Audit │ │ │ │ │ └── Command_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SNMP_.json │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Login_3_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_3_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_4_SYSLOG_.json │ │ │ │ │ ├── Logout_1_SNMP_.json │ │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ │ ├── Logout_3_SYSLOG_.json │ │ │ │ │ ├── Logout_4_SYSLOG_.json │ │ │ │ │ ├── Logout_5_SYSLOG_.json │ │ │ │ │ └── RADIUS_server_failed_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_FIB_refresh_SYSLOG_.json │ │ │ │ ├── Ignore_NTP_1_SYSLOG_.json │ │ │ │ ├── Ignore_auth_messages_1_SYSLOG_.json │ │ │ │ └── Ignore_repeats_SYSLOG_.json │ │ └── VRP3 │ │ │ └── Network │ │ │ ├── LBD │ │ │ └── Vlan_Loop_Detected_SYSLOG_.json │ │ │ └── Link │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ └── Link_Up_SYSLOG_.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ ├── Access_User_SNMP_.json │ │ │ ├── Action_SNMP_1.json │ │ │ ├── Action_SNMP_2.json │ │ │ ├── Alarm_Cleared_SNMP_.json │ │ │ ├── Alarm_on_port_SNMP_.json │ │ │ ├── Alarm_raised_SNMP_.json │ │ │ ├── Change_Module_State_SNMP_.json │ │ │ ├── Change_Parameter_SNMP_.json │ │ │ ├── Change_User_SNMP_.json │ │ │ ├── Error_SNMP_.json │ │ │ ├── Gateway_reachable_SNMP_.json │ │ │ ├── Login_SNMP_.json │ │ │ ├── Logout_SNMP_.json │ │ │ ├── Module_Ejected_SNMP_.json │ │ │ └── OTN │ │ │ ├── LOS_SNMP_.json │ │ │ ├── LOS_SNMP_Clear.json │ │ │ ├── ODU │ │ │ ├── AIS_SNMP_.json │ │ │ ├── AIS_SNMP_Clear.json │ │ │ ├── LOFLOM_SNMP_.json │ │ │ ├── LOFLOM_SNMP_Clear.json │ │ │ ├── LOF_SNMP_.json │ │ │ ├── LOF_SNMP_Clear.json │ │ │ ├── LOS_SNMP_.json │ │ │ ├── LOS_SNMP_Clear.json │ │ │ ├── PM │ │ │ │ ├── BEI_SNMP_.json │ │ │ │ ├── BEI_SNMP_Clear.json │ │ │ │ ├── BIP_SNMP_.json │ │ │ │ ├── BIP_SNMP_Clear.json │ │ │ │ ├── SF_SNMP_.json │ │ │ │ └── SF_SNMP_Clear.json │ │ │ └── SM │ │ │ │ ├── Signal_Fail_SNMP_.json │ │ │ │ └── Signal_Fail_SNMP_Clear.json │ │ │ └── OTU │ │ │ ├── LOF_SNMP_.json │ │ │ ├── LOF_SNMP_Clear.json │ │ │ ├── LOS_SNMP_.json │ │ │ ├── LOS_SNMP_Clear.json │ │ │ └── SM │ │ │ ├── Signal_Fail_SNMP_.json │ │ │ └── Signal_Fail_SNMP_Clear.json │ ├── Juniper │ │ ├── JUNOS │ │ │ ├── Chassis │ │ │ │ ├── Fan │ │ │ │ │ ├── Fan_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Fan_Failed_SNMP_.json │ │ │ │ │ ├── Fan_Inserted_1_SYSLOG_.json │ │ │ │ │ ├── Fan_Recovered_SNMP_.json │ │ │ │ │ └── Fan_Removed_1_SYSLOG_.json │ │ │ │ ├── Hardware │ │ │ │ │ └── Module │ │ │ │ │ │ ├── Module_Error_1_SNMP_.json │ │ │ │ │ │ ├── Module_Error_SNMP_.json │ │ │ │ │ │ ├── Module_Inserted_SNMP_.json │ │ │ │ │ │ ├── Module_Offline_1_SNMP_.json │ │ │ │ │ │ ├── Module_Offline_SNMP_.json │ │ │ │ │ │ ├── Module_Power_Off_SNMP_.json │ │ │ │ │ │ ├── Module_Removed_SNMP_.json │ │ │ │ │ │ ├── Module_Up_1_SNMP_.json │ │ │ │ │ │ └── Module_not_Present_1_SNMP_.json │ │ │ │ ├── Linecard │ │ │ │ │ ├── LC_Down_SNMP_.json │ │ │ │ │ ├── LC_Error_SNMP_.json │ │ │ │ │ ├── LC_Inserted_SNMP_.json │ │ │ │ │ ├── LC_Offline_SNMP_.json │ │ │ │ │ ├── LC_Power_Off_SNMP_.json │ │ │ │ │ ├── LC_Removed_SNMP_.json │ │ │ │ │ ├── LC_Up_SNMP_.json │ │ │ │ │ └── Redundancy_Switchover.json │ │ │ │ ├── Memory │ │ │ │ │ └── Memory_Usage_Above_Threshold_SNMP_.json │ │ │ │ └── PSU │ │ │ │ │ ├── PSU_Failed_1_SNMP_.json │ │ │ │ │ ├── PSU_Failed_2_SNMP_.json │ │ │ │ │ ├── PSU_Recovered_1_SNMP_.json │ │ │ │ │ └── PSU_Recovered_2_SNMP_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_SNMP_.json │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ ├── Entering_Configuration_Mode_SYSLOG_.json │ │ │ │ └── Exiting_Configuration_Mode_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ ├── Temperature_Out_of_Range_1_SNMP_.json │ │ │ │ ├── Temperature_Out_of_Range_2_SNMP_.json │ │ │ │ ├── Temperature_Out_of_Range_SYSLOG_.json │ │ │ │ ├── Temperature_Returned_to_Normal_Range_1_SNMP_.json │ │ │ │ └── Temperature_Returned_to_Normal_Range_2_SNMP_.json │ │ │ ├── Network │ │ │ │ ├── BFD │ │ │ │ │ ├── Session_Down_SNMP_.json │ │ │ │ │ ├── Session_Down_SYSLOG_.json │ │ │ │ │ ├── Session_Up_SNMP_.json │ │ │ │ │ └── Session_Up_SYSLOG_.json │ │ │ │ ├── BGP │ │ │ │ │ ├── Backward_Transition_SNMP_.json │ │ │ │ │ ├── Peer_State_Changed_SYSLOG_.json │ │ │ │ │ └── Prefix_Limit_Exceeded_SYSLOG_.json │ │ │ │ ├── IP │ │ │ │ │ ├── ARP_Moved_SYSLOG_.json │ │ │ │ │ └── Address_Conflict_SYSLOG_.json │ │ │ │ ├── IS-IS │ │ │ │ │ ├── Adjacency_Down_SYSLOG_.json │ │ │ │ │ └── Adjacency_Up_SYSLOG_.json │ │ │ │ ├── LAG │ │ │ │ │ └── LACP_Timeout_1_SNMP_.json │ │ │ │ ├── Link │ │ │ │ │ ├── DOM │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_1_SYSLOG_.json │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_2_SYSLOG_.json │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_1_SYSLOG_.json │ │ │ │ │ │ ├── Alarm_Out_of_Threshold_Recovered_2_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_1_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_2_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_1_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_Recovered_2_SYSLOG_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_RxMaxPower_Recovered_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_RxMaxPower_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_RxMinPower_Recovered_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_RxMinPower_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_TxMaxPower_Recovered_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_TxMaxPower_SNMP_.json │ │ │ │ │ │ ├── Warning_Out_of_Threshold_TxMinPower_Recovered_SNMP_.json │ │ │ │ │ │ └── Warning_Out_of_Threshold_TxMinPower_SNMP_.json │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ ├── MAC │ │ │ │ │ └── MAC_Exceed_SNMP_.json │ │ │ │ ├── MPLS │ │ │ │ │ ├── LDP_Neighbor_Down_SYSLOG_.json │ │ │ │ │ ├── LDP_Neighbor_Up_SYSLOG_.json │ │ │ │ │ ├── LDP_Session_Down_SNMP_.json │ │ │ │ │ ├── LDP_Session_Up_SNMP_.json │ │ │ │ │ ├── LSP_Down_SNMP_.json │ │ │ │ │ ├── LSP_Down_SYSLOG_.json │ │ │ │ │ ├── LSP_Up_SNMP_.json │ │ │ │ │ ├── LSP_Up_SYSLOG_.json │ │ │ │ │ ├── Path_Down_SYSLOG_.json │ │ │ │ │ ├── Path_Up_SYSLOG_.json │ │ │ │ │ ├── VPN_Link_Down_SNMP_.json │ │ │ │ │ └── VPN_Link_Up_SNMP_.json │ │ │ │ ├── NTP │ │ │ │ │ ├── NTP_Server_Unreachable_SYSLOG_.json │ │ │ │ │ └── System_Clock_Synchronized_SYSLOG_.json │ │ │ │ ├── OSPF │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ │ ├── Port_Security │ │ │ │ │ └── Port_Security_Violation_SYSLOG_.json │ │ │ │ ├── RMON │ │ │ │ │ ├── Alarms_Get_Failure.json │ │ │ │ │ └── Alarms_Get_Ok.json │ │ │ │ ├── RSVP │ │ │ │ │ ├── Neighbor_Down_SYSLOG_.json │ │ │ │ │ └── Neighbor_Up_SYSLOG_.json │ │ │ │ ├── STP │ │ │ │ │ ├── BPDU_Guard_Recovery_SYSLOG_.json │ │ │ │ │ └── BPDU_Guard_Violation_SYSLOG_.json │ │ │ │ └── Storm_Control │ │ │ │ │ ├── Storm_Cleared_SYSLOG_.json │ │ │ │ │ └── Storm_Detected_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Audit │ │ │ │ │ ├── Command_SYSLOG_.json │ │ │ │ │ └── Cron_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ │ ├── Login_Failed_2_SYSLOG_.json │ │ │ │ │ ├── Login_SNMP_.json │ │ │ │ │ ├── Logout_SYSLOG_.json │ │ │ │ │ ├── SNMP_Authentication_Failure_1_SYSLOG_.json │ │ │ │ │ └── SNMP_Authentication_Failure_2_SYSLOG_.json │ │ │ ├── System │ │ │ │ ├── Halt_SYSLOG_.json │ │ │ │ ├── Process_Exited_SYSLOG_.json │ │ │ │ ├── Process_Started_SYSLOG_.json │ │ │ │ ├── Reboot_SYSLOG_.json │ │ │ │ ├── Started_SYSLOG_.json │ │ │ │ └── Syslog_SNMP_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore │ │ │ │ └── Ignore_mcae_conn_init_connect_SYSLOG_.json │ │ │ │ ├── Ignore_UI_CHILD_START_SYSLOG_.json │ │ │ │ ├── Ignore_UI_CHILD_STATUS_SYSLOG_.json │ │ │ │ └── Ignore_UI_COMMIT_PROGRESS_SYSLOG_.json │ │ └── ScreenOS │ │ │ ├── Network │ │ │ ├── BGP │ │ │ │ ├── Backward_Transition_SNMP_.json │ │ │ │ ├── Established_SNMP_.json │ │ │ │ └── Peer_State_Changed_SYSLOG_.json │ │ │ └── NTP │ │ │ │ └── System_Clock_Adjusted_SYSLOG_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── SNMP_Authentication_Failure_1_SYSLOG_.json │ │ │ └── SNMP_Authentication_Failure_2_SYSLOG_.json │ ├── Linksys │ │ └── SPS2xx │ │ │ ├── Config │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ └── Config_Synced_SYSLOG_.json │ │ │ ├── Network │ │ │ └── Link │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ ├── Link_Up_SNMP_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ └── Logout_SYSLOG_.json │ │ │ ├── System │ │ │ └── Started_SYSLOG_.json │ │ │ └── Unknown │ │ │ └── Ignore_Logging_started_SYSLOG_.json │ ├── MikroTik │ │ └── RouterOS │ │ │ ├── Network │ │ │ ├── 802_11 │ │ │ │ ├── Associated_SYSLOG_.json │ │ │ │ └── Disassociated_SYSLOG_.json │ │ │ ├── BFD │ │ │ │ ├── Session_Down_SYSLOG_.json │ │ │ │ └── Session_Up_SYSLOG_.json │ │ │ └── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ └── Logout_SYSLOG_.json │ │ │ └── System │ │ │ └── Reboot_SYSLOG_.json │ ├── NAG │ │ └── SNR │ │ │ └── Network │ │ │ └── Link │ │ │ ├── Link_Down_8_SYSLOG_.json │ │ │ └── Link_Up_8_SYSLOG_.json │ ├── NOC │ │ ├── Managed_Object │ │ │ ├── Ping_Failed.json │ │ │ └── Ping_OK.json │ │ ├── PM │ │ │ ├── Out_of_Thresholds.json │ │ │ └── Returned_to_Normal_Range.json │ │ ├── Periodic │ │ │ ├── Periodic_Failed.json │ │ │ ├── Periodic_Failed │ │ │ │ └── PM_Failed.json │ │ │ ├── Periodic_OK.json │ │ │ └── Probe_Ok.json │ │ ├── SA │ │ │ ├── Join_Activator_Pool.json │ │ │ └── Leave_Activator_Pool.json │ │ ├── Unhandled_Exception.json │ │ └── Unknown_Event_Source.json │ ├── NSN │ │ └── hiX56xx │ │ │ ├── Network │ │ │ └── Link │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ └── Link_Up_SNMP_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ └── Login_SYSLOG_.json │ ├── Network │ │ ├── BGP │ │ │ ├── Backward_Transition_Notification_SNMP_.json │ │ │ ├── Backward_Transition_SNMP_.json │ │ │ ├── Established_Notification_SNMP_.json │ │ │ └── Established_SNMP_.json │ │ ├── IS-IS │ │ │ ├── Adjacency_State_Changed_SNMP_.json │ │ │ ├── Area_Max_Addresses_Mismatch_SNMP_.json │ │ │ ├── Authenticate_Failure_SNMP_.json │ │ │ ├── Authenticate_Type_Failure_SNMP_.json │ │ │ ├── Database_Overload_SNMP_.json │ │ │ ├── Protocols_Supported_Mismatch_SNMP_.json │ │ │ ├── SP_Error_SNMP_.json │ │ │ └── Sequence_Num_Skip_SNMP_.json │ │ ├── LLDP │ │ │ ├── Notifications_SNMP_.json │ │ │ └── Remote_Tables_Change_SNMP_.json │ │ ├── Link │ │ │ ├── Link_Down_SNMP_.json │ │ │ └── Link_Up_SNMP_.json │ │ ├── MPLS │ │ │ ├── LDP_Init_Session_Above_Threshold_SNMP_.json │ │ │ ├── LDP_Session_Down_SNMP_.json │ │ │ ├── LDP_Session_Up_SNMP_.json │ │ │ ├── LSP_Down_SNMP_.json │ │ │ ├── LSP_Path_Change_SNMP_.json │ │ │ ├── LSP_Up_SNMP_.json │ │ │ ├── LSR_XC_Down_SNMP_.json │ │ │ ├── LSR_XC_Up_SNMP_.json │ │ │ ├── Path_Down_SNMP_.json │ │ │ ├── Path_Up_SNMP_.json │ │ │ ├── TE_Tunnel_Rerouted_SNMP_.json │ │ │ ├── VRF_Interface_Down_SNMP_.json │ │ │ ├── VRF_Interface_Up_SNMP_.json │ │ │ ├── VRF_Router_Num_Above_Max_Threshold_SNMP_.json │ │ │ └── VRF_Router_Num_Above_Threshold_SNMP_.json │ │ ├── OSPF │ │ │ ├── Authentication_Failure_SNMP_.json │ │ │ ├── Interface_State_Changed_SNMP_.json │ │ │ ├── LSA_Max_Age_SNMP_.json │ │ │ ├── LSA_Originate_SNMP_.json │ │ │ ├── LSA_TX_Retransmit_SNMP_.json │ │ │ └── Neighbor_State_Changed_SNMP_.json │ │ └── VRRP │ │ │ └── New_Master_SNMP_.json │ ├── OS │ │ └── FreeBSD │ │ │ ├── Chassis │ │ │ └── RAM │ │ │ │ └── RAM_Failed_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── IP │ │ │ │ ├── ARP_Moved_SYSLOG_.json │ │ │ │ └── IP_Flap_SYSLOG_.json │ │ │ ├── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── NTP │ │ │ │ ├── System_Clock_Adjusted_SYSLOG_.json │ │ │ │ └── System_Clock_Synchronized_SYSLOG_.json │ │ │ ├── Security │ │ │ ├── ACL │ │ │ │ ├── ACL_Deny_1_SYSLOG_.json │ │ │ │ ├── ACL_Deny_2_SYSLOG_.json │ │ │ │ ├── ACL_Permit_1_SYSLOG_.json │ │ │ │ └── ACL_Permit_2_SYSLOG_.json │ │ │ └── Authentication │ │ │ │ ├── SSH_-_Did_not_receive_identification_string_SYSLOG_.json │ │ │ │ ├── SSH_-_Invalid_user_SYSLOG_.json │ │ │ │ ├── SSH_-_Login_SYSLOG_.json │ │ │ │ ├── SSH_-_Logout_SYSLOG_.json │ │ │ │ ├── SSH_-_Possible_break-in_attempt_1_SYSLOG_.json │ │ │ │ ├── SSH_-_Possible_break-in_attempt_2_SYSLOG_.json │ │ │ │ ├── SSH_-_Protocol_major_versions_differ_SYSLOG_.json │ │ │ │ ├── TTY_-_Bad_SU_SYSLOG_.json │ │ │ │ ├── TTY_-_Device_not_configured_SYSLOG_.json │ │ │ │ ├── TTY_-_Exec_format_error_SYSLOG_.json │ │ │ │ ├── TTY_-_Login_Failed_SYSLOG_.json │ │ │ │ ├── TTY_-_Login_SYSLOG_.json │ │ │ │ └── pam-helper_-_invalid_password_SYSLOG_.json │ │ │ ├── System │ │ │ └── Process_Exited_SYSLOG_.json │ │ │ └── Unknown │ │ │ ├── Cron_Message_1_SYSLOG_.json │ │ │ ├── Cron_Message_2_SYSLOG_.json │ │ │ └── Cron_Message_3_SYSLOG_.json │ ├── Qtech │ │ ├── BFC_PBIC_S │ │ │ ├── Environment │ │ │ │ └── UPS │ │ │ │ │ ├── Input_Power_Failed_SNMP_.json │ │ │ │ │ └── Input_Power_OK_SNMP_.json │ │ │ └── Security │ │ │ │ └── Access │ │ │ │ ├── Door_Close_SNMP_.json │ │ │ │ └── Door_Open_SNMP_.json │ │ ├── QSW │ │ │ ├── Chassis │ │ │ │ └── CPU │ │ │ │ │ ├── CPU_Usage_Above_Threshold_SYSLOG_.json │ │ │ │ │ └── CPU_Usage_Drops_Below_Threshold_SYSLOG_.json │ │ │ ├── Config │ │ │ │ ├── Config_Changed_SYSLOG_.json │ │ │ │ ├── Entering_Configuration_Mode_SYSLOG_.json │ │ │ │ └── Exiting_Configuration_Mode_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── IP │ │ │ │ │ └── ARP_Moved_SYSLOG_.json │ │ │ │ ├── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ │ └── STP │ │ │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ │ │ ├── Security │ │ │ │ ├── Audit │ │ │ │ │ ├── Command_1_SYSLOG_.json │ │ │ │ │ └── Command_2_SYSLOG_.json │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ │ ├── Login_2_SYSLOG_.json │ │ │ │ │ ├── Logout_1_SYSLOG_.json │ │ │ │ │ ├── Logout_2_SYSLOG_.json │ │ │ │ │ ├── Privilege_Level_Changed_1_SYSLOG_.json │ │ │ │ │ └── Privilege_Level_Changed_2_SYSLOG_.json │ │ │ ├── System │ │ │ │ └── Started_SYSLOG_.json │ │ │ └── Unknown │ │ │ │ ├── Ignore_LLDP_Link_aggregation_SYSLOG_.json │ │ │ │ ├── Ignore_LLDP_Update_SYSLOG_.json │ │ │ │ ├── Ignore_LLDP_local_link_Up_Down_SYSLOG_.json │ │ │ │ ├── Ignore_LLDP_local_tx_rs_change_SYSLOG_.json │ │ │ │ ├── Ignore_LLDP_shutdown_SYSLOG_.json │ │ │ │ ├── Ignore_LLDP_time_out_SYSLOG_.json │ │ │ │ ├── Syslog_LLDP_Create_SYSLOG_.json │ │ │ │ └── Syslog_STP_received_BPDU_SYSLOG_.json │ │ └── QSW2800 │ │ │ ├── Config │ │ │ └── Config_Changed_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── STP │ │ │ │ └── STP_Port_State_Changed_SYSLOG_.json │ │ │ ├── Security │ │ │ ├── Audit │ │ │ │ └── Command_SYSLOG_.json │ │ │ └── Authentication │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ └── Logout_SYSLOG_.json │ │ │ └── System │ │ │ └── Started_SYSLOG_.json │ ├── Security │ │ └── Authentication │ │ │ └── Authentication_Failed_SNMP_.json │ ├── Sumavision │ │ └── IPQAM │ │ │ ├── Multicast │ │ │ └── Frequency │ │ │ │ ├── Overflow_Resume_SNMP_.json │ │ │ │ └── Overflow_SNMP_.json │ │ │ └── Network │ │ │ └── Link │ │ │ ├── Link_Down_SNMP_.json │ │ │ └── Link_Up_SNMP_.json │ ├── Supertel │ │ └── K2X │ │ │ ├── Chassis │ │ │ └── Fan │ │ │ │ └── Fan_Failed_1_SYSLOG_.json │ │ │ ├── Config │ │ │ ├── Config_Synced_1_SNMP_.json │ │ │ └── Config_Synced_1_SYSLOG_.json │ │ │ ├── Network │ │ │ ├── LAG │ │ │ │ ├── Bundle_1_SNMP_.json │ │ │ │ ├── Bundle_1_SYSLOG_.json │ │ │ │ ├── Unbundle_1_SNMP_.json │ │ │ │ └── Unbundle_1_SYSLOG_.json │ │ │ ├── Link │ │ │ │ ├── Link_Down_1_SYSLOG_.json │ │ │ │ ├── Link_Down_2_SYSLOG_.json │ │ │ │ └── Link_Up_1_SYSLOG_.json │ │ │ └── STP │ │ │ │ ├── STP_Port_State_Changed_1_SNMP_.json │ │ │ │ ├── STP_Port_State_Changed_1_SYSLOG_.json │ │ │ │ ├── STP_Port_State_Changed_2_SNMP_.json │ │ │ │ └── STP_Port_State_Changed_2_SYSLOG_.json │ │ │ ├── Security │ │ │ ├── ACL │ │ │ │ └── ACL_Deny_1_SYSLOG_.json │ │ │ └── Authentication │ │ │ │ ├── Login_1_SYSLOG_.json │ │ │ │ ├── Login_Failed_1_SYSLOG_.json │ │ │ │ └── Logout_2_SYSLOG_.json │ │ │ ├── System │ │ │ └── Started_1_SYSLOG_.json │ │ │ └── Unknown │ │ │ ├── Ignore_1_SYSLOG_.json │ │ │ └── Ignore_2_SYSLOG_.json │ ├── System │ │ ├── Started_1_SNMP_.json │ │ └── Started_2_SNMP_.json │ ├── Ubiquiti │ │ └── AirOS │ │ │ ├── Security │ │ │ └── Authentication │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ └── Logout_SYSLOG_.json │ │ │ └── Unknown │ │ │ ├── Ignore_STA_JOIN_SYSLOG_.json │ │ │ ├── Ignore_STA_LEAVE_SYSLOG_.json │ │ │ ├── Ignore_ace_reporter_SYSLOG_.json │ │ │ ├── Ignore_dropbear_SYSLOG_.json │ │ │ ├── Ignore_libubnt_SYSLOG_.json │ │ │ ├── Ignore_mca-client_SYSLOG_.json │ │ │ ├── Ignore_mcad-ctrl_SYSLOG_.json │ │ │ └── Ignore_uplink-monitor_SYSLOG_.json │ ├── Unknown │ │ ├── Default.json │ │ ├── Ignore │ │ │ └── Ignore_Syslog_Repeats_SYSLOG_.json │ │ ├── SNMP_Trap.json │ │ ├── SNMP_Trap_Raw_.json │ │ └── Syslog.json │ ├── Vendor │ │ └── Arista │ │ │ └── EOS │ │ │ └── VMTracer │ │ │ └── Failed_to_connect_to_vCenter_1_SYSLOG_.json │ ├── Vyatta │ │ └── Vyatta │ │ │ ├── Network │ │ │ └── Link │ │ │ │ ├── Link_Down_SNMP_.json │ │ │ │ └── Link_Up_SNMP_.json │ │ │ ├── System │ │ │ ├── Halt_SYSLOG_.json │ │ │ └── Reboot_SYSLOG_.json │ │ │ └── Unknown │ │ │ └── nsNotify_SNMP_.json │ ├── Xtreme │ │ ├── Summit200 │ │ │ ├── Network │ │ │ │ ├── LBD │ │ │ │ │ └── Loop_Detected_SYSLOG_.json │ │ │ │ └── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── Security │ │ │ │ └── Authentication │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ └── Login_SYSLOG_.json │ │ └── XOS │ │ │ ├── Network │ │ │ ├── LBD │ │ │ │ └── Vlan_Loop_Detected_SYSLOG_.json │ │ │ └── Link │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ └── Security │ │ │ └── Authentication │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ └── Login_SYSLOG_.json │ ├── Zabbix │ │ ├── Configuration_Syncer │ │ │ └── Utilization_High_Zabbix_.json │ │ ├── Data_Collection_Process │ │ │ └── Utilization_High_Zabbix_.json │ │ ├── Host │ │ │ ├── Last_Seen_Too_High_Zabbix_.json │ │ │ ├── Ping_Failed_Zabbix_.json │ │ │ ├── Ping_Loss_Too_High_Zabbix_.json │ │ │ └── Ping_Response_Too_High_Zabbix_.json │ │ ├── Internal_Process │ │ │ └── Utilization_High_Zabbix_.json │ │ ├── LLD_Worker │ │ │ └── Utilization_High_Zabbix_.json │ │ ├── Poller │ │ │ └── Utilization_High_Zabbix_.json │ │ ├── Power │ │ │ └── No_Data_Zabbix_Power_.json │ │ ├── Proxy │ │ │ ├── Memory_Buffer │ │ │ │ └── Too_High_Zabbix_.json │ │ │ ├── Missing_Data_Item │ │ │ │ └── Too_High_Zabbix_.json │ │ │ └── Version_Changed_Zabbix_.json │ │ ├── Reboot_Zabbix_.json │ │ ├── Scenario_Step │ │ │ └── Failed_Zabbix_.json │ │ └── Unreachable_Poller │ │ │ └── Utilization_High_Zabbix_.json │ ├── Zebra │ │ └── Zebra │ │ │ └── Network │ │ │ └── BGP │ │ │ └── Established_SNMP_.json │ ├── Zyxel │ │ ├── ZyNOS │ │ │ ├── Chassis │ │ │ │ ├── Fan │ │ │ │ │ ├── Fan_Failed_SYSLOG_.json │ │ │ │ │ └── Fan_Recovered_SYSLOG_.json │ │ │ │ └── PSU │ │ │ │ │ └── Internal_Voltage_Out_of_Range_SYSLOG_.json │ │ │ ├── Environment │ │ │ │ ├── Temperature_Out_of_Range_SYSLOG_.json │ │ │ │ └── Temperature_Returned_to_Normal_Range_SYSLOG_.json │ │ │ ├── Network │ │ │ │ ├── LBD │ │ │ │ │ └── Loop_Detected_SYSLOG_.json │ │ │ │ └── Link │ │ │ │ │ ├── Link_Down_SYSLOG_.json │ │ │ │ │ └── Link_Up_SYSLOG_.json │ │ │ ├── Security │ │ │ │ └── Authentication │ │ │ │ │ ├── Login_Failed_SYSLOG_.json │ │ │ │ │ ├── Login_SYSLOG_.json │ │ │ │ │ └── Logout_SYSLOG_.json │ │ │ └── System │ │ │ │ ├── Reboot_SYSLOG_.json │ │ │ │ ├── Started_1_SYSLOG_.json │ │ │ │ └── Started_2_SYSLOG_.json │ │ └── ZyNOS_EE │ │ │ └── Network │ │ │ └── Link │ │ │ ├── Link_Down_SNMP_.json │ │ │ └── Link_Up_SNMP_.json │ └── f5 │ │ └── BIGIP │ │ ├── Network │ │ └── IP │ │ │ └── Port_Exhaustion_SNMP_.json │ │ ├── Security │ │ ├── ACL │ │ │ └── ACL_Deny_SNMP_.json │ │ └── Authentication │ │ │ └── Authentication_Failed_SNMP_.json │ │ └── Vendor │ │ └── f5 │ │ └── BIGIP │ │ └── Network │ │ └── Load_Balance │ │ ├── Node_Down_SNMP_.json │ │ ├── Node_Up_SNMP_.json │ │ ├── Service_Down_SNMP_.json │ │ └── Service_Up_SNMP_.json ├── fm.mibaliases │ ├── DGS3612G-L2MGMT-MIB.json │ ├── DGS3627-L2MGMT-MIB.json │ ├── DGS3627G-L2MGMT-MIB.json │ ├── DGS3650-L2MGMT-MIB.json │ └── SWDGS3120PRIMGMT-MIB.json ├── fm.mibpreferences │ ├── AGENT-GENERAL-MIB.json │ ├── ARISTA-PRODUCTS-MIB.json │ ├── ARISTA-SNMP-TRANSPORTS-MIB.json │ ├── CISCO-IETF-PW-MIB.json │ ├── CISCO-IETF-PW-TC-MIB.json │ ├── DLINK-3100-BRIDGEMIBOBJECTS-MIB.json │ ├── DLINK-3100-DEVICEPARAMS-MIB.json │ ├── DLINK-3100-INC-MIB.json │ ├── DLINK-3100-MIB.json │ ├── DLINK-ID-REC-MIB.json │ ├── ELT-MES-DEV-PARAMS.json │ ├── ELTEX-MES-AAA.json │ ├── ELTEX-MES-BOOTPASSWORD.json │ ├── ELTEX-MES-DOT1X.json │ ├── ELTEX-MES-ENDOFMIB-MIB.json │ ├── ELTEX-MES-IP-BFD-MIB.json │ ├── ELTEX-MES-IP.json │ ├── ELTEX-MES-MNG-MIB.json │ ├── ELTEX-MES-PHY.json │ ├── ELTEX-MES-PHYSICAL-DESCRIPTION-MIB.json │ ├── ELTEX-MES-SMON-MIB.json │ ├── ELTEX-MES-SSH-MIB.json │ ├── ELTEX-MES-TRAPS-MIB.json │ ├── ELTEX-MES-eltMacNotification-MIB.json │ ├── ELTEX-MES.json │ ├── EQUIPMENT-MIB.json │ ├── FOUNDRY-SN-IP-MIB.json │ ├── FOUNDRY-SN-IP-VRRP-MIB.json │ ├── FOUNDRY-SN-MAC-AUTHENTICATION-MIB.json │ ├── FOUNDRY-SN-MAC-VLAN-MIB.json │ ├── FOUNDRY-SN-MRP-MIB.json │ ├── FOUNDRY-SN-SWITCH-GROUP-MIB.json │ ├── HUAWEI-CONFIG-MAN-MIB.json │ ├── HUAWEI-DEVICE-MIB.json │ ├── HUAWEI-FLASH-MAN-MIB.json │ ├── HUAWEI-GPON-MIB.json │ ├── HUAWEI-MIB.json │ ├── HUAWEI-SECURITY-STAT-MIB.json │ ├── IANA-MAU-MIB.json │ ├── IEEE8021-TC-MIB.json │ ├── IF-MIB.json │ ├── INT-SERV-MIB.json │ ├── INTEGRATED-SERVICES-MIB.json │ ├── IP-MIB.json │ ├── JUNIPER-EXPERIMENT-MIB.json │ ├── JUNIPER-SMI.json │ ├── Juniper-MIBs.json │ ├── Juniper-System-MIB.json │ ├── Juniper-TC.json │ ├── Juniper-UNI-SMI.json │ ├── LLDP-V2-TC-MIB.json │ ├── MARVELL-POE-MIB.json │ ├── MAU-MIB.json │ ├── RADLAN-3SW2SWTABLES-MIB.json │ ├── RADLAN-AAA.json │ ├── RADLAN-AGGREGATEVLAN-MIB.json │ ├── RADLAN-ARPSPOOFING-MIB.json │ ├── RADLAN-AUTOUPDATE-MIB.json │ ├── RADLAN-BANNER-MIB.json │ ├── RADLAN-BGP.json │ ├── RADLAN-BONJOUR-MIB.json │ ├── RADLAN-BOOTP-MIB.json │ ├── RADLAN-BRGMACSWITCH-MIB.json │ ├── RADLAN-BRIDGE-SECURITY.json │ ├── RADLAN-BRIDGEMIBOBJECTS-MIB.json │ ├── RADLAN-BaudRate-MIB.json │ ├── RADLAN-CDB-MIB.json │ ├── RADLAN-CDP-MIB.json │ ├── RADLAN-CLI-MIB.json │ ├── RADLAN-COPY-MIB.json │ ├── RADLAN-CPU-COUNTERS-MIB.json │ ├── RADLAN-DEBUGCAPABILITIES-MIB.json │ ├── RADLAN-DEVICEPARAMS-MIB.json │ ├── RADLAN-DHCPCL-MIB.json │ ├── RADLAN-DHCPv6.json │ ├── RADLAN-DIGITALKEYMANAGE-MIB.json │ ├── RADLAN-DNSCL-MIB.json │ ├── RADLAN-DOT1X-MIB.json │ ├── RADLAN-DhcpSpoofing-MIB.json │ ├── RADLAN-EMBWEB-MIB.json │ ├── RADLAN-ENDOFMIB-MIB.json │ ├── RADLAN-ETS-MIB.json │ ├── RADLAN-File.json │ ├── RADLAN-GMRP-MIB.json │ ├── RADLAN-GVRP-MIB.json │ ├── RADLAN-HWENVIROMENT.json │ ├── RADLAN-IP.json │ ├── RADLAN-IPSTDACL-MIB.json │ ├── RADLAN-IPV6FHS-MIB.json │ ├── RADLAN-IPv6.json │ ├── RADLAN-IpRouter.json │ ├── RADLAN-JUMBOFRAMES-MIB.json │ ├── RADLAN-LLDP-MIB.json │ ├── RADLAN-LOCALIZATION-MIB.json │ ├── RADLAN-MAC-BASE-PRIO.json │ ├── RADLAN-MGMD-ROUTER-MIB.json │ ├── RADLAN-MIB.json │ ├── RADLAN-MIR-MIB.json │ ├── RADLAN-MNGINF-MIB.json │ ├── RADLAN-MULTISESSIONTERMINAL-MIB.json │ ├── RADLAN-OSPF-MIB.json │ ├── RADLAN-PHY-MIB.json │ ├── RADLAN-PIM-MIB.json │ ├── RADLAN-POLICY-MIB.json │ ├── RADLAN-PORT-STATISTICS-MIB.json │ ├── RADLAN-Physicaldescription-MIB.json │ ├── RADLAN-QCN-MIB.json │ ├── RADLAN-QOS-CLI-MIB.json │ ├── RADLAN-RADIUSSRV.json │ ├── RADLAN-RCLI-MIB.json │ ├── RADLAN-RLINVENTORYENT-MIB.json │ ├── RADLAN-RLPFC-MIB.json │ ├── RADLAN-RMON.json │ ├── RADLAN-SECSD-MIB.json │ ├── RADLAN-SECURITY-SUITE.json │ ├── RADLAN-SMARTPORTS-MIB.json │ ├── RADLAN-SMON-MIB.json │ ├── RADLAN-SNMP-MIB.json │ ├── RADLAN-SOCKET-MIB.json │ ├── RADLAN-SSH-MIB.json │ ├── RADLAN-SSL.json │ ├── RADLAN-STACK-MIB.json │ ├── RADLAN-STORMCTRL-MIB.json │ ├── RADLAN-SWPACKAGEVERSION-MIB.json │ ├── RADLAN-SYSLOG-MIB.json │ ├── RADLAN-SYSMNG-MIB.json │ ├── RADLAN-TBI-MIB.json │ ├── RADLAN-TCPSESSIONS.json │ ├── RADLAN-TELNET-MIB.json │ ├── RADLAN-TIMESYNCHRONIZATION-MIB.json │ ├── RADLAN-TRACEROUTE-MIB.json │ ├── RADLAN-TRAPS-MIB.json │ ├── RADLAN-TRUNK-MIB.json │ ├── RADLAN-TUNNEL-MIB.json │ ├── RADLAN-Tuning.json │ ├── RADLAN-UDP.json │ ├── RADLAN-UPNP-MIB.json │ ├── RADLAN-WBA-MIB.json │ ├── RADLAN-ippreflist-MIB.json │ ├── RADLAN-rlBrgMcMngr-MIB.json │ ├── RADLAN-rlBrgMulticast-MIB.json │ ├── RADLAN-rlDvmrp-MIB.json │ ├── RADLAN-rlFft.json │ ├── RADLAN-rlIPMulticast-MIB.json │ ├── RADLAN-rlInterfaces.json │ ├── RADLAN-rndApplications.json │ ├── RADLAN-rndMng.json │ ├── RADLAN-vlan-MIB.json │ ├── RADLAN-vlanVoice-MIB.json │ ├── RFC1155-SMI.json │ ├── RFC1213-MIB.json │ ├── RMON-MIB.json │ ├── RMON2-MIB.json │ ├── SNMPv2-MIB.json │ ├── SNMPv2-SMI.json │ ├── SW34XXPRIMGMT-MIB.json │ ├── SW36XXPRIMGMT-MIB.json │ ├── SWPRIMGMT-DES30XXP-MIB.json │ ├── SWPRIMGMT-MIB.json │ ├── TIMETRA-SAP-MIB.json │ ├── TIMETRA-SERV-MIB.json │ ├── VRRP-MIB.json │ └── VRRPV3-MIB.json ├── fm.mibs │ ├── ADSL-LINE-MIB.json.gz │ ├── ADSL-TC-MIB.json.gz │ ├── ARICENT-ISS-MIB.json.gz │ ├── ARISTA-ACL-MIB.json.gz │ ├── ARISTA-BRIDGE-EXT-MIB.json.gz │ ├── ARISTA-PRODUCTS-MIB.json.gz │ ├── ARISTA-QUEUE-MIB.json.gz │ ├── ARISTA-SMI-MIB.json.gz │ ├── ARISTA-SNMP-TRANSPORTS-MIB.json.gz │ ├── ARISTA-SW-IP-FORWARDING-MIB.json.gz │ ├── ATM-MIB.json.gz │ ├── ATM-TC-MIB.json.gz │ ├── Accton │ │ └── ES3528MO-MIB.json.gz │ ├── Alentis │ │ └── DKSF-50-8-1-A-X.json.gz │ ├── BFD-STD-MIB.json.gz │ ├── BGP4-MIB.json.gz │ ├── BGP4-V2-MIB-JUNIPER.json.gz │ ├── BPDU-PROTECTION-MIB.json.gz │ ├── BRIDGE-MIB.json.gz │ ├── Cisco │ │ ├── AIRESPACE-REF-MIB.json.gz │ │ ├── AIRESPACE-SWITCHING-MIB.json.gz │ │ ├── AIRESPACE-WIRELESS-MIB.json.gz │ │ ├── CISCO-ACCESS-ENVMON-MIB.json.gz │ │ ├── CISCO-BGP4-MIB.json.gz │ │ ├── CISCO-CDP-MIB.json.gz │ │ ├── CISCO-CEF-MIB.json.gz │ │ ├── CISCO-CLUSTER-MIB.json.gz │ │ ├── CISCO-CONFIG-COPY-MIB.json.gz │ │ ├── CISCO-CONFIG-MAN-MIB.json.gz │ │ ├── CISCO-DIAL-CONTROL-MIB.json.gz │ │ ├── CISCO-ENHANCED-MEMPOOL-MIB.json.gz │ │ ├── CISCO-ENTITY-ALARM-MIB.json.gz │ │ ├── CISCO-ENTITY-FRU-CONTROL-MIB.json.gz │ │ ├── CISCO-ENTITY-SENSOR-MIB.json.gz │ │ ├── CISCO-ENVMON-MIB.json.gz │ │ ├── CISCO-EPM-NOTIFICATION-MIB.json.gz │ │ ├── CISCO-ERR-DISABLE-MIB.json.gz │ │ ├── CISCO-FLASH-MIB.json.gz │ │ ├── CISCO-HSRP-MIB.json.gz │ │ ├── CISCO-IETF-BFD-MIB.json.gz │ │ ├── CISCO-IETF-IPMROUTE-MIB.json.gz │ │ ├── CISCO-IETF-ISIS-MIB.json.gz │ │ ├── CISCO-IETF-MSDP-MIB.json.gz │ │ ├── CISCO-IETF-PIM-EXT-MIB.json.gz │ │ ├── CISCO-IETF-PIM-MIB.json.gz │ │ ├── CISCO-IETF-PW-MIB.json.gz │ │ ├── CISCO-IETF-PW-TC-MIB.json.gz │ │ ├── CISCO-IETF-VRRP-07-MIB.json.gz │ │ ├── CISCO-IETF-VRRP-MIB.json.gz │ │ ├── CISCO-IPSEC-FLOW-MONITOR-MIB.json.gz │ │ ├── CISCO-IPSEC-MIB.json.gz │ │ ├── CISCO-ISDN-MIB.json.gz │ │ ├── CISCO-LWAPP-AAA-MIB.json.gz │ │ ├── CISCO-LWAPP-TC-MIB.json.gz │ │ ├── CISCO-LWAPP-WLAN-MIB.json.gz │ │ ├── CISCO-MAC-NOTIFICATION-MIB.json.gz │ │ ├── CISCO-MEDIA-GATEWAY-MIB.json.gz │ │ ├── CISCO-MPLS-TE-STD-EXT-MIB.json.gz │ │ ├── CISCO-NETSYNC-MIB.json.gz │ │ ├── CISCO-NTP-MIB.json.gz │ │ ├── CISCO-PIM-MIB.json.gz │ │ ├── CISCO-PORT-CHANNEL-MIB.json.gz │ │ ├── CISCO-PORT-SECURITY-MIB.json.gz │ │ ├── CISCO-PPPOE-MIB.json.gz │ │ ├── CISCO-PRIVATE-VLAN-MIB.json.gz │ │ ├── CISCO-PROCESS-MIB.json.gz │ │ ├── CISCO-PRODUCTS-MIB.json.gz │ │ ├── CISCO-QOS-PIB-MIB.json.gz │ │ ├── CISCO-RF-MIB.json.gz │ │ ├── CISCO-SCAS-BB-MIB.json.gz │ │ ├── CISCO-SLB-MIB.json.gz │ │ ├── CISCO-SMI.json.gz │ │ ├── CISCO-SNMP-TARGET-EXT-MIB.json.gz │ │ ├── CISCO-SONET-MIB.json.gz │ │ ├── CISCO-ST-TC.json.gz │ │ ├── CISCO-STACK-MIB.json.gz │ │ ├── CISCO-STP-EXTENSIONS-MIB.json.gz │ │ ├── CISCO-STUN-MIB.json.gz │ │ ├── CISCO-SYSLOG-MIB.json.gz │ │ ├── CISCO-SYSTEM-MIB.json.gz │ │ ├── CISCO-TC.json.gz │ │ ├── CISCO-UDLDP-MIB.json.gz │ │ ├── CISCO-VLAN-MEMBERSHIP-MIB.json.gz │ │ ├── CISCO-VOICE-COMMON-DIAL-CONTROL-MIB.json.gz │ │ ├── CISCO-VOICE-DIAL-CONTROL-MIB.json.gz │ │ ├── CISCO-VOICE-DNIS-MIB.json.gz │ │ ├── CISCO-VPDN-MGMT-MIB.json.gz │ │ ├── CISCO-VRF-MIB.json.gz │ │ ├── CISCO-VTP-MIB.json.gz │ │ ├── CISCOTRAP-MIB.json.gz │ │ ├── FDDI-SMT73-MIB.json.gz │ │ ├── MPLS-LDP-MIB.json.gz │ │ ├── OLD-CISCO-INTERFACES-MIB.json.gz │ │ ├── OLD-CISCO-SYSTEM-MIB.json.gz │ │ ├── OLD-CISCO-TCP-MIB.json.gz │ │ └── OLD-CISCO-TS-MIB.json.gz │ ├── DIAL-CONTROL-MIB.json.gz │ ├── DIFF-SERV-MIB.json.gz │ ├── DIFFSERV-DSCP-TC.json.gz │ ├── DIFFSERV-MIB.json.gz │ ├── DISMAN-EVENT-MIB.json.gz │ ├── DLink │ │ ├── AGENT-GENERAL-MIB.json.gz │ │ ├── ARP-Spoofing-Prevent-MIB.json.gz │ │ ├── BPDU-PROTECTION-MIB.json.gz │ │ ├── CFMEXTENSION-MIB.json.gz │ │ ├── DDM-MGMT-MIB.json.gz │ │ ├── DES3010F-L2MGMT-MIB.json.gz │ │ ├── DES3010FL-L2MGMT-MIB.json.gz │ │ ├── DES3010g-L2MGMT-MIB.json.gz │ │ ├── DES3016-L2MGMT-MIB.json.gz │ │ ├── DES3018-L2MGMT-MIB.json.gz │ │ ├── DES3026-L2MGMT-MIB.json.gz │ │ ├── DES3028-L2MGMT-MIB.json.gz │ │ ├── DES3028G-L2MGMT-MIB.json.gz │ │ ├── DES3028P-L2MGMT-MIB.json.gz │ │ ├── DES3052-L2MGMT-MIB.json.gz │ │ ├── DES3052P-L2MGMT-MIB.json.gz │ │ ├── DES3200-10-L2MGMT-MIB.json.gz │ │ ├── DES3200-18-L2MGMT-MIB.json.gz │ │ ├── DES3200-26-L2MGMT-MIB.json.gz │ │ ├── DES3200-28-L2MGMT-MIB.json.gz │ │ ├── DES3200-28F-L2MGMT-MIB.json.gz │ │ ├── DES3200-28P-L2MGMT-MIB.json.gz │ │ ├── DES3200-52-L2MGMT-MIB.json.gz │ │ ├── DES3200-52P-L2MGMT-MIB.json.gz │ │ ├── DES3200ME-28-L2MGMT-MIB.json.gz │ │ ├── DES3226S-L2MGMT-MIB.json.gz │ │ ├── DES3326S-L2MGMT-MIB.json.gz │ │ ├── DES3326SR-L2MGMT-MIB.json.gz │ │ ├── DES3526-L2MGMT-MIB.json.gz │ │ ├── DES3528-L2MGMT-MIB.json.gz │ │ ├── DES3528DC-L2MGMT-MIB.json.gz │ │ ├── DES3528P-L2MGMT-MIB.json.gz │ │ ├── DES3550-L2MGMT-MIB.json.gz │ │ ├── DES3552-L2MGMT-MIB.json.gz │ │ ├── DES3552P-L2MGMT-MIB.json.gz │ │ ├── DES3810-28-L2MGMT-MIB.json.gz │ │ ├── DES3810-52-L2MGMT-MIB.json.gz │ │ ├── DES3828-L2MGMT-MIB.json.gz │ │ ├── DES3828DC-L2MGMT-MIB.json.gz │ │ ├── DES3828P-L2MGMT-MIB.json.gz │ │ ├── DES3852-L2MGMT-MIB.json.gz │ │ ├── DES3852P-L2MGMT-MIB.json.gz │ │ ├── DES6500-L2MGMT-MIB.json.gz │ │ ├── DGS-3120-48TC-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-26SC-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-28PC-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-28SC-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-28TC-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-52P-L2MGMT-MIB.json.gz │ │ ├── DGS-3420-52T-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-28PC-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-28SC-DC-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-28SC-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-28TC-DC-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-28TC-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-52P-L2MGMT-MIB.json.gz │ │ ├── DGS-3620-52T-L2MGMT-MIB.json.gz │ │ ├── DGS-3700-12-L2MGMT-MIB.json.gz │ │ ├── DGS-3700-12G-L2MGMT-MIB.json.gz │ │ ├── DGS-3710-12-L2MGMT-MIB.json.gz │ │ ├── DGS-3710-12C-L2MGMT-MIB.json.gz │ │ ├── DGS-3710-12S-L2MGMT-MIB.json.gz │ │ ├── DGS3000-10TC-L2MGMT-MIB.json.gz │ │ ├── DGS3000-26TC-L2MGMT-MIB.json.gz │ │ ├── DGS3024-L2MGMT-MIB.json.gz │ │ ├── DGS3120-24PC-L2MGMT-MIB.json.gz │ │ ├── DGS3120-24SC-DC-L2MGMT-MIB.json.gz │ │ ├── DGS3120-24SC-L2MGMT-MIB.json.gz │ │ ├── DGS3120-24TC-L2MGMT-MIB.json.gz │ │ ├── DGS3120-48PC-L2MGMT-MIB.json.gz │ │ ├── DGS3200-L2MGMT-MIB.json.gz │ │ ├── DGS3216-L2MGMT-MIB.json.gz │ │ ├── DGS3224-L2MGMT-MIB.json.gz │ │ ├── DGS3312SR-L2MGMT-MIB.json.gz │ │ ├── DGS3426-L2MGMT-MIB.json.gz │ │ ├── DGS3426G-L2MGMT-MIB.json.gz │ │ ├── DGS3426P-L2MGMT-MIB.json.gz │ │ ├── DGS3427-L2MGMT-MIB.json.gz │ │ ├── DGS3450-L2MGMT-MIB.json.gz │ │ ├── DGS3612-L2MGMT-MIB.json.gz │ │ ├── DGS3612G-L2MGMT-MIB.json.gz │ │ ├── DGS3627-L2MGMT-MIB.json.gz │ │ ├── DGS3627G-L2MGMT-MIB.json.gz │ │ ├── DGS3650-L2MGMT-MIB.json.gz │ │ ├── DLINK-3100-BRIDGEMIBOBJECTS-MIB.json.gz │ │ ├── DLINK-3100-DEVICEPARAMS-MIB.json.gz │ │ ├── DLINK-3100-INC-MIB.json.gz │ │ ├── DLINK-3100-MIB.json.gz │ │ ├── DLINK-3100-TRAPS-MIB.json.gz │ │ ├── DLINK-ID-REC-MIB.json.gz │ │ ├── DOS-PREV-MIB.json.gz │ │ ├── EQUIPMENT-MIB.json.gz │ │ ├── ERPS-MIB.json.gz │ │ ├── IP-MAC-BIND-MIB.json.gz │ │ ├── LOOPBACK-DETECT-MIB.json.gz │ │ ├── PKT-STORM-CTRL-MIB.json.gz │ │ ├── PORT-SECURITY-MIB.json.gz │ │ ├── SAFEGUARD-ENGINE-MIB.json.gz │ │ ├── SW3200PRIMGMT-MIB.json.gz │ │ ├── SW34XXPRIMGMT-MIB.json.gz │ │ ├── SW3500PRIMGMT-MIB.json.gz │ │ ├── SW3528PRIMGMT-MIB.json.gz │ │ ├── SW36XXPRIMGMT-MIB.json.gz │ │ ├── SW3700PRIMGMT-MIB.json.gz │ │ ├── SW3800PRIMGMT-MIB.json.gz │ │ ├── SW3810PRIMGMT-MIB.json.gz │ │ ├── SW3x12SRPRIMGMT-MIB.json.gz │ │ ├── SW6500PRIMGMT-MIB.json.gz │ │ ├── SWDGS3024PRIMGMT-MIB.json.gz │ │ ├── SWDGS3120PRIMGMT-MIB.json.gz │ │ ├── SWDGS3420PRIMGMT-MIB.json.gz │ │ ├── SWDGS3620PRIMGMT-MIB.json.gz │ │ ├── SWPRIMGMT-DES30XXP-MIB.json.gz │ │ ├── SWPRIMGMT-DES3200-MIB.json.gz │ │ ├── SWPRIMGMT-DGS3000-MIB.json.gz │ │ ├── SWPRIMGMT-MIB.json.gz │ │ └── TIMERANGE-MIB.json.gz │ ├── DOCS-CABLE-DEVICE-MIB.json.gz │ ├── DOCS-CABLE-DEVICE-TRAP-MIB.json.gz │ ├── DOCS-IF-EXT-MIB.json.gz │ ├── DOCS-IF-MIB.json.gz │ ├── DOT3-OAM-MIB.json.gz │ ├── DVMRP-STD-MIB.json.gz │ ├── ENTITY-MIB.json.gz │ ├── ENTITY-SENSOR-MIB.json.gz │ ├── ENTITY-STATE-MIB.json.gz │ ├── ENTITY-STATE-TC-MIB.json.gz │ ├── Eltex │ │ ├── ELT-MES-DEV-PARAMS.json.gz │ │ ├── ELTEX-ARP-INTERFACE-TABLE-MIB.json.gz │ │ ├── ELTEX-BGP-MIB.json.gz │ │ ├── ELTEX-BRIDGE-ERPS-MIB.json.gz │ │ ├── ELTEX-BRIDGE-EXT-MIB.json.gz │ │ ├── ELTEX-CFM-MIB.json.gz │ │ ├── ELTEX-DHCP.json.gz │ │ ├── ELTEX-DNS-MIB.json.gz │ │ ├── ELTEX-DOT3-OAM-MIB.json.gz │ │ ├── ELTEX-DYING-GASP-MIB.json.gz │ │ ├── ELTEX-ENTITY-SENSOR-MIB.json.gz │ │ ├── ELTEX-FLEX-LINKS-MIB.json.gz │ │ ├── ELTEX-IP-UNNUMBERED-MIB.json.gz │ │ ├── ELTEX-L2-TUNNEL-CONFIG-MIB.json.gz │ │ ├── ELTEX-LBD-MIB.json.gz │ │ ├── ELTEX-LICENSE-MIB.json.gz │ │ ├── ELTEX-MES-AAA-STATISTICS-MIB.json.gz │ │ ├── ELTEX-MES-AAA.json.gz │ │ ├── ELTEX-MES-APPLICATIONS-MIB.json.gz │ │ ├── ELTEX-MES-BOOTPASSWORD.json.gz │ │ ├── ELTEX-MES-BRIDGE-SECURITY.json.gz │ │ ├── ELTEX-MES-COPY-MIB.json.gz │ │ ├── ELTEX-MES-COUNTERS-MIB.json.gz │ │ ├── ELTEX-MES-CPU-TASKS-UTIL-MIB.json.gz │ │ ├── ELTEX-MES-DOT1X.json.gz │ │ ├── ELTEX-MES-ENDOFMIB-MIB.json.gz │ │ ├── ELTEX-MES-GVRP-MIB.json.gz │ │ ├── ELTEX-MES-HARDWARE-MIB.json.gz │ │ ├── ELTEX-MES-HWENVIROMENT-MIB.json.gz │ │ ├── ELTEX-MES-IF-EXTENSION-MIB.json.gz │ │ ├── ELTEX-MES-IF-MIB.json.gz │ │ ├── ELTEX-MES-IP-BFD-MIB.json.gz │ │ ├── ELTEX-MES-IP.json.gz │ │ ├── ELTEX-MES-IpRouter.json.gz │ │ ├── ELTEX-MES-LINKAGG-MIB.json.gz │ │ ├── ELTEX-MES-MIB-2.json.gz │ │ ├── ELTEX-MES-MIB-OBJECTS.json.gz │ │ ├── ELTEX-MES-MNG-MIB.json.gz │ │ ├── ELTEX-MES-PHY.json.gz │ │ ├── ELTEX-MES-PHYSICAL-DESCRIPTION-MIB.json.gz │ │ ├── ELTEX-MES-POE-MIB.json.gz │ │ ├── ELTEX-MES-QOS-CLI-MIB.json.gz │ │ ├── ELTEX-MES-QOS-TAIL-DROP-MIB.json.gz │ │ ├── ELTEX-MES-SMON-MIB.json.gz │ │ ├── ELTEX-MES-SSH-MIB.json.gz │ │ ├── ELTEX-MES-SWITCH-RATE-LIMITER-MIB.json.gz │ │ ├── ELTEX-MES-SYSLOG-MIB.json.gz │ │ ├── ELTEX-MES-TRAPS-MIB.json.gz │ │ ├── ELTEX-MES-VLAN-MIB.json.gz │ │ ├── ELTEX-MES-eltBrgMulticast-MIB.json.gz │ │ ├── ELTEX-MES-eltInterfaces.json.gz │ │ ├── ELTEX-MES-eltMacNotification-MIB.json.gz │ │ ├── ELTEX-MES-eltMesIpMulticast-MIB.json.gz │ │ ├── ELTEX-MES.json.gz │ │ ├── ELTEX-MSDP-MIB.json.gz │ │ ├── ELTEX-POLICY-MIB.json.gz │ │ ├── ELTEX-PROCESS-MIB.json.gz │ │ ├── ELTEX-SMI-ACTUAL.json.gz │ │ ├── ELTEX-STORAGE-MIB.json.gz │ │ ├── ELTEX-TC.json.gz │ │ ├── ELTEX-ULD-MIB.json.gz │ │ └── ELTEX-VPC-MIB.json.gz │ ├── EtherLike-MIB.json.gz │ ├── Force10 │ │ ├── F10-CHASSIS-MIB.json.gz │ │ ├── FORCE10-SMI.json.gz │ │ └── FORCE10-TC.json.gz │ ├── Foundry │ │ ├── FOUNDRY-CAR-MIB.json.gz │ │ ├── FOUNDRY-SN-AGENT-MIB.json.gz │ │ ├── FOUNDRY-SN-APPLETALK-MIB.json.gz │ │ ├── FOUNDRY-SN-BGP4-GROUP-MIB.json.gz │ │ ├── FOUNDRY-SN-IGMP-MIB.json.gz │ │ ├── FOUNDRY-SN-IP-ACL-MIB.json.gz │ │ ├── FOUNDRY-SN-IP-MIB.json.gz │ │ ├── FOUNDRY-SN-IP-VRRP-MIB.json.gz │ │ ├── FOUNDRY-SN-IPX-MIB.json.gz │ │ ├── FOUNDRY-SN-MAC-AUTHENTICATION-MIB.json.gz │ │ ├── FOUNDRY-SN-MAC-VLAN-MIB.json.gz │ │ ├── FOUNDRY-SN-MRP-MIB.json.gz │ │ ├── FOUNDRY-SN-OSPF-GROUP-MIB.json.gz │ │ ├── FOUNDRY-SN-POS-GROUP-MIB.json.gz │ │ ├── FOUNDRY-SN-ROOT-MIB.json.gz │ │ ├── FOUNDRY-SN-ROUTER-TRAP-MIB.json.gz │ │ ├── FOUNDRY-SN-SW-L4-SWITCH-GROUP-MIB.json.gz │ │ ├── FOUNDRY-SN-SWITCH-GROUP-MIB.json.gz │ │ ├── FOUNDRY-SN-TRAP-MIB.json.gz │ │ ├── FOUNDRY-SN-VSRP-MIB.json.gz │ │ ├── FOUNDRY-SN-WIRELESS-GROUP-MIB.json.gz │ │ └── FOUNDRY-VLAN-CAR-MIB.json.gz │ ├── GBN │ │ ├── GBNDeviceSwitch-MIB.json.gz │ │ └── GBNPlatformOAM-MIB.json.gz │ ├── GNOME-PRODUCT-ZEBRA-MIB.json.gz │ ├── GNOME-SMI.json.gz │ ├── HC-PerfHist-TC-MIB.json.gz │ ├── HCNUM-TC.json.gz │ ├── Huawei │ │ ├── HUAWEI-AAA-MIB.json.gz │ │ ├── HUAWEI-BASE-TRAP-MIB.json.gz │ │ ├── HUAWEI-BFD-MIB.json.gz │ │ ├── HUAWEI-CBQOS-MIB.json.gz │ │ ├── HUAWEI-CONFIG-MAN-MIB.json.gz │ │ ├── HUAWEI-DATASYNC-MIB.json.gz │ │ ├── HUAWEI-DEVICE-MIB.json.gz │ │ ├── HUAWEI-ENTITY-EXTENT-MIB.json.gz │ │ ├── HUAWEI-ENTITY-TRAP-MIB.json.gz │ │ ├── HUAWEI-ETHOAM-MIB.json.gz │ │ ├── HUAWEI-FLASH-MAN-MIB.json.gz │ │ ├── HUAWEI-GTL-MIB.json.gz │ │ ├── HUAWEI-IF-EXT-MIB.json.gz │ │ ├── HUAWEI-IMA-MIB.json.gz │ │ ├── HUAWEI-IPPOOL-MIB.json.gz │ │ ├── HUAWEI-L2IF-MIB.json.gz │ │ ├── HUAWEI-LLDP-MIB.json.gz │ │ ├── HUAWEI-MFLP-MIB.json.gz │ │ ├── HUAWEI-MIB.json.gz │ │ ├── HUAWEI-PORT-MIB.json.gz │ │ ├── HUAWEI-SECURITY-STAT-MIB.json.gz │ │ ├── HUAWEI-SYS-MAN-MIB.json.gz │ │ ├── HUAWEI-TC-MIB.json.gz │ │ └── HUAWEI-XPON-MIB.json.gz │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB.json.gz │ ├── IANA-ENTITY-MIB.json.gz │ ├── IANA-ITU-ALARM-TC-MIB.json.gz │ ├── IANA-MAU-MIB.json.gz │ ├── IANA-RTPROTO-MIB.json.gz │ ├── IANAifType-MIB.json.gz │ ├── IEEE8021-CFM-MIB.json.gz │ ├── IEEE8021-CFM-V2-MIB.json.gz │ ├── IEEE8021-PAE-MIB.json.gz │ ├── IEEE8023-LAG-MIB.json.gz │ ├── IEEE802dot11-MIB.json.gz │ ├── IF-MIB.json.gz │ ├── IGMP-STD-MIB.json.gz │ ├── INET-ADDRESS-MIB.json.gz │ ├── INT-SERV-MIB.json.gz │ ├── INTEGRATED-SERVICES-MIB.json.gz │ ├── IP-FORWARD-MIB.json.gz │ ├── IP-MAC-BIND-MIB.json.gz │ ├── IP-MIB.json.gz │ ├── IPMROUTE-STD-MIB.json.gz │ ├── IPV6-FLOW-LABEL-MIB.json.gz │ ├── IPV6-MIB.json.gz │ ├── IPV6-TC.json.gz │ ├── ISDN-MIB.json.gz │ ├── ISIS-MIB.json.gz │ ├── ITU-ALARM-TC-MIB.json.gz │ ├── Juni │ │ ├── Juniper-MIBs.json.gz │ │ ├── Juniper-System-MIB.json.gz │ │ ├── Juniper-TC.json.gz │ │ └── Juniper-UNI-SMI.json.gz │ ├── Juniper │ │ ├── JUNIPER-CFGMGMT-MIB.json.gz │ │ ├── JUNIPER-CHASSIS-DEFINES-MIB.json.gz │ │ ├── JUNIPER-COLLECTOR-MIB.json.gz │ │ ├── JUNIPER-DOM-MIB.json.gz │ │ ├── JUNIPER-EXPERIMENT-MIB.json.gz │ │ ├── JUNIPER-JS-SCREENING-MIB.json.gz │ │ ├── JUNIPER-JS-SMI.json.gz │ │ ├── JUNIPER-L2ALD-MIB.json.gz │ │ ├── JUNIPER-L2CP-FEATURES-MIB.json.gz │ │ ├── JUNIPER-LDP-MIB.json.gz │ │ ├── JUNIPER-MIB.json.gz │ │ ├── JUNIPER-MPLS-LDP-MIB.json.gz │ │ ├── JUNIPER-RMON-MIB.json.gz │ │ ├── JUNIPER-SMI.json.gz │ │ ├── JUNIPER-SONET-MIB.json.gz │ │ ├── JUNIPER-SYSLOG-MIB.json.gz │ │ ├── JUNIPER-VPN-MIB.json.gz │ │ ├── NETSCREEN-BGP4-MIB.json.gz │ │ ├── NETSCREEN-SMI.json.gz │ │ ├── NETSCREEN-TRAP-MIB.json.gz │ │ └── NETSCREEN-VR-BGP4-MIB.json.gz │ ├── LLDP-EXT-DCBX-MIB.json.gz │ ├── LLDP-EXT-DOT1-MIB.json.gz │ ├── LLDP-EXT-DOT3-MIB.json.gz │ ├── LLDP-EXT-MED-MIB.json.gz │ ├── LLDP-MIB.json.gz │ ├── LLDP-V2-MIB.json.gz │ ├── LLDP-V2-TC-MIB.json.gz │ ├── LOOPBACK-DETECT-MIB.json.gz │ ├── MAU-MIB.json.gz │ ├── MGMD-STD-MIB.json.gz │ ├── MPLS-L3VPN-STD-MIB.json.gz │ ├── MPLS-LDP-MIB.json.gz │ ├── MPLS-LDP-STD-MIB.json.gz │ ├── MPLS-LSR-MIB.json.gz │ ├── MPLS-LSR-STD-MIB.json.gz │ ├── MPLS-MIB.json.gz │ ├── MPLS-TC-STD-MIB.json.gz │ ├── MPLS-TE-MIB.json.gz │ ├── MPLS-TE-STD-MIB.json.gz │ ├── MPLS-VPN-MIB.json.gz │ ├── Marvell │ │ ├── MARVELL-Dlf-MIB.json.gz │ │ ├── MARVELL-EEE-MIB.json.gz │ │ ├── MARVELL-ERRDISABLE-RECOVERY-MIB.json.gz │ │ ├── MARVELL-FIP-MIB.json.gz │ │ ├── MARVELL-GREEN-MIB.json.gz │ │ ├── MARVELL-LBD-MIB.json.gz │ │ ├── MARVELL-PBR-MIB.json.gz │ │ ├── MARVELL-POE-MIB.json.gz │ │ ├── MARVELL-ProtectedPorts-MIB.json.gz │ │ ├── MARVELL-ROUTEMAP-MIB.json.gz │ │ ├── MARVELL-SCT-MIB.json.gz │ │ ├── MARVELL-SFLOW-MIB.json.gz │ │ ├── MARVELL-SPAN-MIB.json.gz │ │ ├── MARVELL-SpecialBpdu-MIB.json.gz │ │ ├── MARVELL-TIMEBASED-PORT-SHUTDOWN-MIB.json.gz │ │ ├── MARVELL-TrafficSegmentation-MIB.json.gz │ │ ├── MARVELL-UDLD-MIB.json.gz │ │ ├── MARVELL-WeightedRandomTailDrop-MIB.json.gz │ │ └── MARVELL-rldot1q-MIB.json.gz │ ├── NAG-MIB.json.gz │ ├── NET-SNMP-AGENT-MIB.json.gz │ ├── NET-SNMP-MIB.json.gz │ ├── NET-SNMP-TC.json.gz │ ├── NTPv4-MIB.json.gz │ ├── OSPF-MIB.json.gz │ ├── OSPF-TRAP-MIB.json.gz │ ├── OSPFV3-MIB.json.gz │ ├── P-BRIDGE-MIB.json.gz │ ├── PCUBE-CONFIG-COPY-MIB.json.gz │ ├── PCUBE-PRODUCTS-MIB.json.gz │ ├── PCUBE-SE-MIB.json.gz │ ├── PCUBE-SMI.json.gz │ ├── PIM-BSR-MIB.json.gz │ ├── PIM-MIB.json.gz │ ├── PIM-STD-MIB.json.gz │ ├── PORT-SECURITY-MIB.json.gz │ ├── POWER-ETHERNET-MIB.json.gz │ ├── PerfHist-TC-MIB.json.gz │ ├── PowerNet-MIB.json.gz │ ├── Q-BRIDGE-MIB.json.gz │ ├── RFC-1212.json.gz │ ├── RFC-1215.json.gz │ ├── RFC1155-SMI.json.gz │ ├── RFC1213-MIB.json.gz │ ├── RFC1315-MIB.json.gz │ ├── RFC1389-MIB.json.gz │ ├── RIPv2-MIB.json.gz │ ├── RLLAN1-MIB.json.gz │ ├── RMON-MIB.json.gz │ ├── RMON2-MIB.json.gz │ ├── Radlan │ │ ├── RADLAN-3SW2SWTABLES-MIB.json.gz │ │ ├── RADLAN-AAA.json.gz │ │ ├── RADLAN-AGGREGATEVLAN-MIB.json.gz │ │ ├── RADLAN-ARPSPOOFING-MIB.json.gz │ │ ├── RADLAN-AUTOUPDATE-MIB.json.gz │ │ ├── RADLAN-BANNER-MIB.json.gz │ │ ├── RADLAN-BGP.json.gz │ │ ├── RADLAN-BONJOUR-MIB.json.gz │ │ ├── RADLAN-BOOTP-MIB.json.gz │ │ ├── RADLAN-BRGMACSWITCH-MIB.json.gz │ │ ├── RADLAN-BRIDGE-SECURITY.json.gz │ │ ├── RADLAN-BRIDGEMIBOBJECTS-MIB.json.gz │ │ ├── RADLAN-BaudRate-MIB.json.gz │ │ ├── RADLAN-CDB-MIB.json.gz │ │ ├── RADLAN-CDP-MIB.json.gz │ │ ├── RADLAN-CLI-MIB.json.gz │ │ ├── RADLAN-COPY-MIB.json.gz │ │ ├── RADLAN-CPU-COUNTERS-MIB.json.gz │ │ ├── RADLAN-DEBUGCAPABILITIES-MIB.json.gz │ │ ├── RADLAN-DEVICEPARAMS-MIB.json.gz │ │ ├── RADLAN-DHCP-MIB.json.gz │ │ ├── RADLAN-DHCPCL-MIB.json.gz │ │ ├── RADLAN-DHCPv6-CLIENT.json.gz │ │ ├── RADLAN-DHCPv6-RELAY.json.gz │ │ ├── RADLAN-DHCPv6.json.gz │ │ ├── RADLAN-DIGITALKEYMANAGE-MIB.json.gz │ │ ├── RADLAN-DNSCL-MIB.json.gz │ │ ├── RADLAN-DOT1X-MIB.json.gz │ │ ├── RADLAN-DhcpSpoofing-MIB.json.gz │ │ ├── RADLAN-EMBWEB-MIB.json.gz │ │ ├── RADLAN-ENDOFMIB-MIB.json.gz │ │ ├── RADLAN-ETS-MIB.json.gz │ │ ├── RADLAN-File.json.gz │ │ ├── RADLAN-GMRP-MIB.json.gz │ │ ├── RADLAN-GVRP-MIB.json.gz │ │ ├── RADLAN-HWENVIROMENT.json.gz │ │ ├── RADLAN-IP.json.gz │ │ ├── RADLAN-IPSTDACL-MIB.json.gz │ │ ├── RADLAN-IPV6FHS-MIB.json.gz │ │ ├── RADLAN-IPX-MIB.json.gz │ │ ├── RADLAN-IPv6.json.gz │ │ ├── RADLAN-IpRouter.json.gz │ │ ├── RADLAN-JUMBOFRAMES-MIB.json.gz │ │ ├── RADLAN-LLDP-MIB.json.gz │ │ ├── RADLAN-LOCALIZATION-MIB.json.gz │ │ ├── RADLAN-MAC-BASE-PRIO.json.gz │ │ ├── RADLAN-MGMD-ROUTER-MIB.json.gz │ │ ├── RADLAN-MIB.json.gz │ │ ├── RADLAN-MIR-MIB.json.gz │ │ ├── RADLAN-MNGINF-MIB.json.gz │ │ ├── RADLAN-MULTISESSIONTERMINAL-MIB.json.gz │ │ ├── RADLAN-OSPF-LSDB-MIB.json.gz │ │ ├── RADLAN-OSPF-MIB.json.gz │ │ ├── RADLAN-OSPFV3-LSDB-MIB.json.gz │ │ ├── RADLAN-OSPFV3-MIB.json.gz │ │ ├── RADLAN-PHY-MIB.json.gz │ │ ├── RADLAN-PIM-BSR-MIB.json.gz │ │ ├── RADLAN-PIM-MIB.json.gz │ │ ├── RADLAN-POLICY-MIB.json.gz │ │ ├── RADLAN-PORT-STATISTICS-MIB.json.gz │ │ ├── RADLAN-Physicaldescription-MIB.json.gz │ │ ├── RADLAN-QCN-MIB.json.gz │ │ ├── RADLAN-QOS-CLI-MIB.json.gz │ │ ├── RADLAN-QOS-SERV.json.gz │ │ ├── RADLAN-RADIUSSRV.json.gz │ │ ├── RADLAN-RCLI-MIB.json.gz │ │ ├── RADLAN-RLINVENTORYENT-MIB.json.gz │ │ ├── RADLAN-RLPFC-MIB.json.gz │ │ ├── RADLAN-RMON.json.gz │ │ ├── RADLAN-Redistribute.json.gz │ │ ├── RADLAN-SECSD-MIB.json.gz │ │ ├── RADLAN-SECURITY-SUITE.json.gz │ │ ├── RADLAN-SENSORENTMIB.json.gz │ │ ├── RADLAN-SMARTPORTS-MIB.json.gz │ │ ├── RADLAN-SMON-MIB.json.gz │ │ ├── RADLAN-SNMP-MIB.json.gz │ │ ├── RADLAN-SOCKET-MIB.json.gz │ │ ├── RADLAN-SSH-MIB.json.gz │ │ ├── RADLAN-SSL.json.gz │ │ ├── RADLAN-STACK-MIB.json.gz │ │ ├── RADLAN-STORMCTRL-MIB.json.gz │ │ ├── RADLAN-SWPACKAGEVERSION-MIB.json.gz │ │ ├── RADLAN-SYSLOG-MIB.json.gz │ │ ├── RADLAN-SYSMNG-MIB.json.gz │ │ ├── RADLAN-TBI-MIB.json.gz │ │ ├── RADLAN-TCPSESSIONS.json.gz │ │ ├── RADLAN-TELNET-MIB.json.gz │ │ ├── RADLAN-TIMESYNCHRONIZATION-MIB.json.gz │ │ ├── RADLAN-TRACEROUTE-MIB.json.gz │ │ ├── RADLAN-TRAPS-MIB.json.gz │ │ ├── RADLAN-TRUNK-MIB.json.gz │ │ ├── RADLAN-TUNNEL-MIB.json.gz │ │ ├── RADLAN-Tuning.json.gz │ │ ├── RADLAN-UDP.json.gz │ │ ├── RADLAN-UPNP-MIB.json.gz │ │ ├── RADLAN-UUSC-MIB.json.gz │ │ ├── RADLAN-VRRP.json.gz │ │ ├── RADLAN-WBA-MIB.json.gz │ │ ├── RADLAN-ippreflist-MIB.json.gz │ │ ├── RADLAN-iscsi-MIB.json.gz │ │ ├── RADLAN-openflow-MIB.json.gz │ │ ├── RADLAN-rlBrgMcMngr-MIB.json.gz │ │ ├── RADLAN-rlBrgMulticast-MIB.json.gz │ │ ├── RADLAN-rlDvmrp-MIB.json.gz │ │ ├── RADLAN-rlFft.json.gz │ │ ├── RADLAN-rlIP-MIB.json.gz │ │ ├── RADLAN-rlIPMulticast-MIB.json.gz │ │ ├── RADLAN-rlInterfaces.json.gz │ │ ├── RADLAN-rlLcli-MIB.json.gz │ │ ├── RADLAN-rlMacMulticast-MIB.json.gz │ │ ├── RADLAN-rndApplications.json.gz │ │ ├── RADLAN-rndMng.json.gz │ │ ├── RADLAN-vlan-MIB.json.gz │ │ └── RADLAN-vlanVoice-MIB.json.gz │ ├── SNMP-COMMUNITY-MIB.json.gz │ ├── SNMP-FRAMEWORK-MIB.json.gz │ ├── SNMP-TARGET-MIB.json.gz │ ├── SNMP-USER-BASED-SM-MIB.json.gz │ ├── SNMP-VIEW-BASED-ACM-MIB.json.gz │ ├── SNMPv2-CONF-v1.json.gz │ ├── SNMPv2-CONF.json.gz │ ├── SNMPv2-MIB.json.gz │ ├── SNMPv2-SMI-v1.json.gz │ ├── SNMPv2-SMI.json.gz │ ├── SNMPv2-TC.json.gz │ ├── SYSLOG-TC-MIB.json.gz │ ├── TIMERANGE-MIB.json.gz │ ├── TOKEN-RING-RMON-MIB.json.gz │ ├── TRANSPORT-ADDRESS-MIB.json.gz │ ├── TUNNEL-MIB.json.gz │ ├── Timetra │ │ ├── TIMETRA-BFD-MIB.json.gz │ │ ├── TIMETRA-BGP-MIB.json.gz │ │ ├── TIMETRA-CHASSIS-MIB.json.gz │ │ ├── TIMETRA-DHCP-SERVER-MIB.json.gz │ │ ├── TIMETRA-FILTER-MIB.json.gz │ │ ├── TIMETRA-GLOBAL-MIB.json.gz │ │ ├── TIMETRA-ISIS-MIB.json.gz │ │ ├── TIMETRA-ISIS-NG-MIB.json.gz │ │ ├── TIMETRA-LLDP-MIB.json.gz │ │ ├── TIMETRA-PORT-MIB.json.gz │ │ ├── TIMETRA-QOS-MIB.json.gz │ │ ├── TIMETRA-RADIUS-MIB.json.gz │ │ ├── TIMETRA-SAP-MIB.json.gz │ │ ├── TIMETRA-SDP-MIB.json.gz │ │ ├── TIMETRA-SERV-MIB.json.gz │ │ ├── TIMETRA-SUBSCRIBER-MGMT-MIB.json.gz │ │ ├── TIMETRA-TC-MG-MIB.json.gz │ │ ├── TIMETRA-TC-MIB.json.gz │ │ └── TIMETRA-VRTR-MIB.json.gz │ ├── UCD-SNMP-MIB.json.gz │ ├── UPS-MIB.json.gz │ ├── VDSL2-LINE-MIB.json.gz │ ├── VDSL2-LINE-TC-MIB.json.gz │ ├── VPN-TC-STD-MIB.json.gz │ ├── VRRP-MIB.json.gz │ ├── VRRPV3-MIB.json.gz │ ├── XPPC-MIB.json.gz │ └── f5 │ │ └── F5-BIGIP-COMMON-MIB.json.gz ├── fm.oidaliases │ ├── 1.3.6.1.2.1.15.7.json │ ├── 1.3.6.1.4.1.259.8.1.12.2.1.0.115.json │ ├── 1.3.6.1.4.1.259.8.1.12.json │ └── 1.3.6.1.4.1.259.8.1.5.json ├── fm.syntaxaliases │ └── DES3526-L2MGMT-MIB__swL2IpMacBindingViolationIP.json ├── gis.layers │ ├── Addresses.json │ ├── Area.json │ ├── Cable_Entries.json │ ├── Cities.json │ ├── Conduits.json │ ├── Manholes.json │ ├── PoP │ │ ├── Access.json │ │ ├── Aggregation.json │ │ ├── Core.json │ │ ├── International.json │ │ ├── National.json │ │ └── Regional.json │ └── PoP_Links │ │ ├── Access.json │ │ ├── Aggregation.json │ │ ├── Core.json │ │ ├── International.json │ │ ├── National.json │ │ └── Regional.json ├── inv.capabilities │ ├── Asset │ │ ├── IP_Addresses.json │ │ ├── MAC_Addresses.json │ │ └── Serial_Numbers.json │ ├── BRAS │ │ ├── IPoE.json │ │ ├── L2TP.json │ │ ├── PPPoE.json │ │ └── PPTP.json │ ├── CPE │ │ ├── CPE.json │ │ ├── Controller.json │ │ ├── Distance.json │ │ ├── MAC_Address.json │ │ ├── Model.json │ │ ├── Serial_Number.json │ │ └── Vendor.json │ ├── Chassis │ │ ├── Boot_PROM.json │ │ ├── HW_Version.json │ │ └── Serial_Number.json │ ├── Cisco │ │ ├── ASA │ │ │ └── Security │ │ │ │ └── Context │ │ │ │ └── Mode.json │ │ ├── IOS │ │ │ ├── MIB │ │ │ │ └── CISCO-CLASS-BASED-QOS-MIB.json │ │ │ └── Syntax │ │ │ │ └── IP_SLA.json │ │ └── IP │ │ │ └── SLA │ │ │ ├── Probes.json │ │ │ └── Responder.json │ ├── Controller │ │ ├── GlobalId.json │ │ └── LocalId.json │ ├── DB │ │ ├── BGP_Peers.json │ │ ├── CPEs.json │ │ ├── Interfaces.json │ │ ├── SLAProbes.json │ │ └── Sensors.json │ ├── HP │ │ └── ProCurve │ │ │ └── CLI_Old.json │ ├── Huawei │ │ ├── MA5600T │ │ │ └── cli_display_mac.json │ │ ├── MIB │ │ │ ├── ENTITY-EXTENT-MIB.json │ │ │ └── HUAWEI-CBQOS-MIB.json │ │ ├── NDP.json │ │ ├── NQA │ │ │ ├── Probes.json │ │ │ └── Responder.json │ │ ├── OID │ │ │ ├── hwCBQoSClassifierStatisticsTable.json │ │ │ ├── hwCBQoSPolicyStatisticsClassifierTable.json │ │ │ ├── hwMemoryDevTable.json │ │ │ ├── hwOpticalModuleInfoTable.json │ │ │ └── hwOpticalModuleInfoTable_Lane.json │ │ └── SNMP │ │ │ ├── DOM_Indexes.json │ │ │ └── ModuleIndex.json │ ├── Juniper │ │ ├── CLI │ │ │ └── Help.json │ │ ├── OID │ │ │ └── jnxCosIfqStatsTable.json │ │ └── RPM │ │ │ └── Probes.json │ ├── Management │ │ └── Allow_sessions.json │ ├── Metrics │ │ ├── OID │ │ │ └── cpu_usage_value.json │ │ ├── qos_statistics.json │ │ └── subscribers.json │ ├── MikroTik │ │ └── RouterOS │ │ │ └── License │ │ │ ├── Level.json │ │ │ ├── SoftwareID.json │ │ │ └── Upgradable_To.json │ ├── NAG │ │ └── SNR │ │ │ └── CLI_FoxGate.json │ ├── Network │ │ ├── BFD.json │ │ ├── BGP.json │ │ ├── CDP.json │ │ ├── DHCP.json │ │ ├── DVBC.json │ │ ├── FDP.json │ │ ├── HSRP.json │ │ ├── IPv6.json │ │ ├── ISIS.json │ │ ├── LACP.json │ │ ├── LDP.json │ │ ├── LLDP.json │ │ ├── OAM.json │ │ ├── OSPF │ │ │ ├── v2.json │ │ │ └── v3.json │ │ ├── PON │ │ │ ├── OLT.json │ │ │ └── ONT.json │ │ ├── REP.json │ │ ├── RSVP.json │ │ ├── STP.json │ │ ├── UDLD.json │ │ └── VRRP │ │ │ ├── v2.json │ │ │ └── v3.json │ ├── OneAccess │ │ └── IP │ │ │ └── SLA │ │ │ ├── Probes.json │ │ │ └── Responder.json │ ├── Radio │ │ ├── Frequency.json │ │ ├── Mode.json │ │ ├── Remote_IP.json │ │ ├── Remote_MAC.json │ │ └── Width.json │ ├── SNMP.json │ ├── SNMP │ │ ├── Bulk.json │ │ ├── Bulk_Max_Repetition.json │ │ ├── EngineID.json │ │ ├── HOST-RESOURCES-MIB │ │ │ └── CPU_Cores │ │ │ │ └── Idx.json │ │ ├── IF-MIB.json │ │ ├── IF-MIB │ │ │ └── HC.json │ │ ├── MIB │ │ │ ├── ADSL-MIB.json │ │ │ ├── BGP4-MIB.json │ │ │ ├── HOST-RESOURCES-MIB.json │ │ │ ├── IEEE8021-Q-BRIDGE-MIB.json │ │ │ ├── NTPv4-MIB.json │ │ │ └── Q-BRIDGE-MIB.json │ │ ├── OID │ │ │ ├── EnterpriseID.json │ │ │ ├── RFC1213-MIB_ipAddrTable.json │ │ │ ├── sysDescr.json │ │ │ └── sysObjectID.json │ │ ├── v1.json │ │ ├── v2c.json │ │ └── v3.json │ ├── Sensor │ │ ├── elMeter.json │ │ ├── Controller.json │ │ └── UPS.json │ ├── Slot │ │ ├── Member_Ids.json │ │ ├── Member_Ids_Temperature.json │ │ └── Members.json │ ├── Software │ │ └── Build_Version.json │ ├── Stack │ │ ├── Member_Ids.json │ │ └── Members.json │ ├── Telecom │ │ ├── DeviceGateway.json │ │ ├── DeviceIP.json │ │ ├── DeviceMask.json │ │ ├── ProtocolName.json │ │ └── SIPServerStatus.json │ ├── VM │ │ ├── DNS_Servers.json │ │ ├── Gateway.json │ │ ├── Tools_Status.json │ │ ├── vCPU.json │ │ ├── vHDD.json │ │ └── vRAM.json │ ├── VMWare │ │ └── VM │ │ │ └── GlobalId.json │ └── WiFi │ │ ├── AP │ │ └── Site.json │ │ └── Controller │ │ └── Sites.json ├── inv.connectionrules │ ├── APC │ │ └── SmartUPS.json │ ├── Alcatel │ │ ├── 7302.json │ │ └── 7450.json │ ├── Arista │ │ └── 7100.json │ ├── Brocade │ │ ├── JetCore.json │ │ └── SX.json │ ├── Cisco │ │ ├── 2800.json │ │ ├── 2900.json │ │ ├── 3750X.json │ │ ├── 3800.json │ │ ├── 3850.json │ │ ├── 3900.json │ │ ├── 4500X.json │ │ ├── 6500-E.json │ │ ├── 6500.json │ │ ├── 7100.json │ │ ├── 7200.json │ │ ├── 7600.json │ │ ├── ASA.json │ │ ├── ASR1000.json │ │ ├── ASR9k.json │ │ ├── C3850.json │ │ ├── C4900.json │ │ ├── C6500ME.json │ │ ├── Nexus.json │ │ └── SCE.json │ ├── DLink │ │ └── DxS.json │ ├── Eltex │ │ ├── LTP16N.json │ │ ├── MA4000.json │ │ ├── MES.json │ │ └── MES5448.json │ ├── Ericsson │ │ └── SmartEdge.json │ ├── Extreme │ │ └── XOS.json │ ├── Generic │ │ ├── Switch_GBIC_Prefixed.json │ │ ├── Switch_SFP.json │ │ └── Switch_SFP_Prefixed.json │ ├── Huawei │ │ ├── AR1200.json │ │ ├── AR2200.json │ │ ├── CX.json │ │ ├── CloudEngine.json │ │ ├── Quidway.json │ │ ├── S12700E.json │ │ └── SmartAX.json │ ├── IRE-Polus │ │ └── Horizon.json │ ├── Juniper │ │ ├── ACX.json │ │ ├── EX.json │ │ ├── EX2200.json │ │ ├── EX3300.json │ │ ├── EX4200.json │ │ ├── EX4300.json │ │ ├── EX4550.json │ │ ├── EX8200.json │ │ ├── MX.json │ │ ├── MX104.json │ │ └── MX80.json │ ├── Maipu │ │ └── Switch.json │ ├── ZTE │ │ └── ZXA10 │ │ │ └── C3xx.json │ ├── Zhone │ │ └── GranDSLAM.json │ └── Zyxel │ │ └── MSAN.json ├── inv.connectiontypes │ ├── APC │ │ └── UPS │ │ │ ├── BR1200G-JP.json │ │ │ ├── EPO.json │ │ │ └── SS.json │ ├── Alcatel │ │ ├── 7302 │ │ │ └── LINECARD.json │ │ └── 7450 │ │ │ ├── CFM.json │ │ │ ├── FAN.json │ │ │ ├── IO.json │ │ │ ├── MDA.json │ │ │ └── PSU.json │ ├── Alstec │ │ └── CB.json │ ├── Arista │ │ └── 7100 │ │ │ ├── FAN.json │ │ │ └── PWR.json │ ├── Brocade │ │ ├── BigIron_RX │ │ │ ├── Line_Connector.json │ │ │ ├── Mgmt_Connector.json │ │ │ ├── PS_Connector_AC.json │ │ │ └── SFM_Connector.json │ │ ├── FastIron_SuperX │ │ │ ├── Line_Connector.json │ │ │ ├── Mgmt_Connector.json │ │ │ ├── PS_Connector_AC.json │ │ │ ├── PS_Connector_DC.json │ │ │ └── SFM_Connector.json │ │ └── JetCore │ │ │ ├── Backplane_Connector.json │ │ │ └── PS_Connector.json │ ├── Cables.json │ ├── Cisco │ │ ├── 1800 │ │ │ └── MOTHERBOARD.json │ │ ├── 1921 │ │ │ └── MOTHERBOARD.json │ │ ├── 2800 │ │ │ ├── MOTHERBOARD.json │ │ │ └── PSU.json │ │ ├── 2900 │ │ │ └── MOTHERBOARD.json │ │ ├── 2911 │ │ │ └── PSU.json │ │ ├── 3800 │ │ │ ├── AIM.json │ │ │ ├── DCS.json │ │ │ ├── MOTHERBOARD.json │ │ │ ├── NM.json │ │ │ ├── PSU.json │ │ │ └── PVDM.json │ │ ├── 3850 │ │ │ ├── NM.json │ │ │ └── PSU.json │ │ ├── 3900 │ │ │ ├── PSU.json │ │ │ └── SPE.json │ │ ├── 6500 │ │ │ ├── 6513-FAN-E.json │ │ │ ├── CLK.json │ │ │ ├── DFC.json │ │ │ ├── FAN-E.json │ │ │ ├── PSU.json │ │ │ ├── VTT-E.json │ │ │ └── VTT.json │ │ ├── 7100 │ │ │ ├── Linecard.json │ │ │ └── MOTHERBOARD.json │ │ ├── 7200 │ │ │ ├── 7201_PWR.json │ │ │ ├── Linecard.json │ │ │ ├── PWR-7200.json │ │ │ └── Supervisor.json │ │ ├── 7600 │ │ │ ├── 7603_Fan.json │ │ │ ├── 7604_Fan.json │ │ │ ├── 7606-S_Fan.json │ │ │ ├── 7606_Fan.json │ │ │ ├── 7609_Fan.json │ │ │ ├── 7613_Fan.json │ │ │ ├── Bus_Fabric_Linecard.json │ │ │ ├── Bus_Linecard.json │ │ │ ├── CLK.json │ │ │ ├── DFC.json │ │ │ ├── Fabric_Linecard.json │ │ │ ├── Linecard_Supervisor.json │ │ │ ├── PSU.json │ │ │ ├── Supervisor.json │ │ │ └── VTT.json │ │ ├── 7603 │ │ │ ├── PEM1.json │ │ │ └── PSU.json │ │ ├── 7604 │ │ │ └── PSU.json │ │ ├── 1941-2901 │ │ │ └── PSU.json │ │ ├── 2900-3900 │ │ │ └── ISM.json │ │ ├── 2921-2951 │ │ │ └── PSU.json │ │ ├── 3560E-3750E │ │ │ ├── FAN.json │ │ │ └── PSU.json │ │ ├── 3750X │ │ │ ├── NM.json │ │ │ └── PSU.json │ │ ├── 4500X │ │ │ ├── psu.json │ │ │ └── um.json │ │ ├── 6500-7600 │ │ │ ├── MSFC.json │ │ │ └── PFC.json │ │ ├── ASA │ │ │ ├── AIP-SSM.json │ │ │ └── PSU.json │ │ ├── ASR1000 │ │ │ ├── ASR1001_PSU.json │ │ │ ├── ASR1004_PSU.json │ │ │ ├── ASR1006_PSU.json │ │ │ ├── ESP.json │ │ │ ├── RP.json │ │ │ └── SIP.json │ │ ├── ASR9001 │ │ │ ├── FAN.json │ │ │ └── PSU.json │ │ ├── ASR9010 │ │ │ ├── FAN.json │ │ │ ├── PEM-V1.json │ │ │ └── PEM-V2.json │ │ ├── ASR9k │ │ │ ├── Linecard.json │ │ │ ├── MPA.json │ │ │ └── RSP.json │ │ ├── C3750ME │ │ │ └── PSU.json │ │ ├── C3850 │ │ │ ├── NM.json │ │ │ ├── PSU.json │ │ │ └── STACKPORT.json │ │ ├── C4900 │ │ │ ├── FAN.json │ │ │ ├── LINECARD.json │ │ │ └── PSU.json │ │ ├── C6500ME │ │ │ ├── FAN.json │ │ │ ├── MSFC.json │ │ │ ├── PFC.json │ │ │ └── PSU.json │ │ ├── Electrical │ │ │ ├── RSP14.json │ │ │ ├── RSP22.json │ │ │ ├── StackWise.json │ │ │ ├── StackWise_480.json │ │ │ └── StackWise_Plus.json │ │ ├── GEM │ │ │ └── GEM2.json │ │ ├── ISR │ │ │ ├── AIM.json │ │ │ ├── DCS.json │ │ │ ├── NM.json │ │ │ ├── PVDM2.json │ │ │ ├── PVDM3.json │ │ │ └── SM.json │ │ ├── ME3400E │ │ │ └── PSU.json │ │ ├── ME3600 │ │ │ └── PSU.json │ │ ├── Nexus_2k │ │ │ ├── 2200_PSU.json │ │ │ ├── 2232PP_TM_FAN.json │ │ │ └── C2232PP_SUP.json │ │ ├── Nexus_3k │ │ │ ├── 3064_FAN.json │ │ │ └── 3064_SUP.json │ │ ├── Nexus_5k │ │ │ ├── 5548_FAN.json │ │ │ ├── 5548_PSU.json │ │ │ ├── 5596UP_SUP.json │ │ │ ├── 5596_FAN.json │ │ │ └── 5596_PSU.json │ │ ├── Nexus_6k │ │ │ ├── 6001_FAN.json │ │ │ ├── 6001_PSU.json │ │ │ └── 6001_SUP.json │ │ ├── Nexus_9k │ │ │ ├── 9300-EX_FAN.json │ │ │ └── 9300-EX_PSU.json │ │ ├── PWR-C49-300.json │ │ ├── SCE │ │ │ ├── SCE8000_Fan.json │ │ │ ├── SCE8000_OPB.json │ │ │ └── SCE8000_SCM.json │ │ ├── SIP.json │ │ └── SPA.json │ ├── Combined.json │ ├── Composed.json │ ├── Conduits.json │ ├── DLink │ │ ├── DES30 │ │ │ └── Module.json │ │ ├── DES32-33 │ │ │ └── Module.json │ │ ├── DGS32-33 │ │ │ └── Module.json │ │ ├── DGS34-36 │ │ │ └── Module.json │ │ ├── DGS3610 │ │ │ └── Module.json │ │ ├── DXS33 │ │ │ └── Module.json │ │ └── DXS36 │ │ │ └── Module.json │ ├── Ducts.json │ ├── Electrical │ │ ├── 2.5mm-jack.json │ │ ├── CENC-36.json │ │ ├── CENC-64.json │ │ ├── D-sub.json │ │ ├── DB15.json │ │ ├── DB21.json │ │ ├── DB25.json │ │ ├── DB60.json │ │ ├── DB68.json │ │ ├── DB9.json │ │ ├── DVI.json │ │ ├── F.json │ │ ├── HDMI.json │ │ ├── IDC-100P.json │ │ ├── MINI-coax.json │ │ ├── MRJ21.json │ │ ├── MSTB_2_5_13-ST-5_08.json │ │ ├── MSTB_2_5_5-ST-5_08.json │ │ ├── RCA.json │ │ ├── RJ11.json │ │ ├── RJ12.json │ │ ├── RJ21.json │ │ ├── RJ45.json │ │ ├── RJ48.json │ │ ├── RJ9.json │ │ ├── S-Video.json │ │ ├── SCART.json │ │ ├── SFF-8470.json │ │ ├── SmartSerial.json │ │ ├── Telco-50.json │ │ ├── USB-type-B.json │ │ ├── USB.json │ │ ├── V35.json │ │ ├── XLR.json │ │ ├── micro-USB.json │ │ ├── micro_JST_XH_2-pin.json │ │ ├── mini-DVI.json │ │ └── mini-USB.json │ ├── Eltex │ │ ├── MA4000 │ │ │ ├── linecard.json │ │ │ └── sup.json │ │ └── MES │ │ │ └── PSU.json │ ├── Ericsson │ │ └── SE600 │ │ │ ├── Alarm.json │ │ │ ├── CARD.json │ │ │ ├── FAN.json │ │ │ └── MGMT.json │ ├── Extreme │ │ └── Summit │ │ │ ├── CLK.json │ │ │ ├── PSU.json │ │ │ ├── VIM.json │ │ │ ├── X460G2 │ │ │ └── FAN.json │ │ │ ├── X460G2_X450G2 │ │ │ └── PSU.json │ │ │ ├── X650 │ │ │ └── FAN.json │ │ │ └── X670G2 │ │ │ └── FAN.json │ ├── Flash │ │ ├── CF.json │ │ ├── MMC.json │ │ ├── Memory_Stick.json │ │ ├── PCMCIA.json │ │ ├── SD.json │ │ ├── microSD.json │ │ └── miniSD.json │ ├── Force10 │ │ └── S │ │ │ ├── Module.json │ │ │ ├── Stacking_12G.json │ │ │ └── Stacking_24G.json │ ├── Huawei │ │ ├── AR_1200 │ │ │ ├── SIC.json │ │ │ └── WSIC.json │ │ ├── AR_2240 │ │ │ ├── FAN.json │ │ │ ├── POWER.json │ │ │ ├── SIC.json │ │ │ ├── SRU.json │ │ │ ├── WSIC.json │ │ │ └── XSIC.json │ │ ├── CX200-300 │ │ │ ├── CX300-PSU.json │ │ │ ├── CX300A-FAN.json │ │ │ ├── CX300B-FAN.json │ │ │ ├── SCU.json │ │ │ └── SIC.json │ │ ├── CX600-X1-X2 │ │ │ ├── CX600-X1-M4_FAN.json │ │ │ ├── CX600-X1-M4_PSU.json │ │ │ ├── CX600-X2-M8_FAN.json │ │ │ ├── CX600-X2-M8_PSU.json │ │ │ ├── MPU.json │ │ │ ├── NPU.json │ │ │ └── PIC.json │ │ ├── CX_NE │ │ │ ├── CX600-X3A_FAN.json │ │ │ ├── CX600-X3A_PEM.json │ │ │ ├── CX600_FAN.json │ │ │ ├── FPIC.json │ │ │ ├── LPU.json │ │ │ ├── MPU.json │ │ │ ├── PEM.json │ │ │ ├── PIC.json │ │ │ ├── SFU.json │ │ │ └── SRU.json │ │ ├── CloudEngine │ │ │ ├── FAN.json │ │ │ └── PSU.json │ │ ├── Electrical │ │ │ └── RSP20.json │ │ ├── Quidway │ │ │ └── FAN.json │ │ ├── Quidway_S2300 │ │ │ └── PSU.json │ │ ├── Quidway_S5300 │ │ │ ├── Extension_slot.json │ │ │ ├── PSU.json │ │ │ ├── Rear_slot.json │ │ │ └── Stack_12G.json │ │ ├── Quidway_S5700 │ │ │ ├── Extension_slot.json │ │ │ ├── FAN.json │ │ │ ├── POWER.json │ │ │ ├── Rear_slot.json │ │ │ └── Stack_12G.json │ │ ├── S12700 │ │ │ ├── CMU.json │ │ │ ├── FAN-770A-B.json │ │ │ ├── MPU.json │ │ │ ├── PIC.json │ │ │ └── SFU.json │ │ ├── S8500 │ │ │ ├── LSB.json │ │ │ └── SRPU.json │ │ ├── S9300 │ │ │ ├── CMU.json │ │ │ ├── LPU.json │ │ │ ├── MPU.json │ │ │ ├── S9300_FAN.json │ │ │ ├── S9303_PEM.json │ │ │ ├── SC.json │ │ │ └── SRU.json │ │ └── SmartAX │ │ │ ├── Electrical │ │ │ ├── Champ_64-pin.json │ │ │ └── Delander_64-pin.json │ │ │ ├── FAN.json │ │ │ ├── MA5105 │ │ │ ├── CB.json │ │ │ └── SB.json │ │ │ ├── MA5600T │ │ │ ├── FAN-IEC.json │ │ │ └── FAN.json │ │ │ ├── MA5603T │ │ │ └── FAN.json │ │ │ ├── MA5608T │ │ │ └── FAN.json │ │ │ ├── MA560xT │ │ │ ├── DB.json │ │ │ ├── GIU.json │ │ │ ├── GPIO.json │ │ │ ├── MCU.json │ │ │ ├── PWR.json │ │ │ ├── SB.json │ │ │ └── SCU.json │ │ │ ├── MA5616 │ │ │ ├── CCU.json │ │ │ ├── DBPWR.json │ │ │ ├── FAN.json │ │ │ ├── PWR.json │ │ │ ├── SB.json │ │ │ ├── UDB.json │ │ │ └── VDB.json │ │ │ ├── MA5800 │ │ │ ├── CCU.json │ │ │ ├── FAN.json │ │ │ ├── PWR.json │ │ │ └── SB.json │ │ │ ├── MA5801 │ │ │ └── PWR.json │ │ │ ├── Power_3V3.json │ │ │ ├── SB.json │ │ │ ├── SCU.json │ │ │ └── SubB.json │ ├── IRE-Polus │ │ ├── CU.json │ │ ├── FAN.json │ │ ├── H4_Card.json │ │ ├── H8_Card.json │ │ └── PEM.json │ ├── Inter-PoP_Logical_Links.json │ ├── Iskratel │ │ ├── SI2000 │ │ │ └── SB.json │ │ └── SI3000 │ │ │ └── SB.json │ ├── Juniper │ │ ├── EX │ │ │ ├── 3400_PSU.json │ │ │ ├── 4200_PSU.json │ │ │ ├── 4300_PSU.json │ │ │ ├── 4500_PSU.json │ │ │ ├── 4500_VC_I.json │ │ │ ├── 4550_PSU.json │ │ │ ├── 8200_FPC.json │ │ │ ├── 8200_PWR.json │ │ │ ├── 8208_Fan.json │ │ │ ├── 8208_SRE.json │ │ │ ├── 8216_Fan.json │ │ │ ├── 8216_RE.json │ │ │ ├── 8216_SF.json │ │ │ ├── 9200_RE.json │ │ │ ├── 9200_SF.json │ │ │ ├── Uplink.json │ │ │ └── VCP.json │ │ ├── J │ │ │ ├── Mini-PIM.json │ │ │ ├── PIM.json │ │ │ └── UPIM.json │ │ ├── MX │ │ │ ├── AFEB.json │ │ │ ├── CPU.json │ │ │ ├── FPC.json │ │ │ ├── FPC_SCB.json │ │ │ ├── FPM.json │ │ │ ├── MIC.json │ │ │ ├── MX104_Fan.json │ │ │ ├── MX104_PEM.json │ │ │ ├── MX104_RE.json │ │ │ ├── MX204_Fan.json │ │ │ ├── MX240_Fan.json │ │ │ ├── MX480_Fan.json │ │ │ ├── MX480_PEM.json │ │ │ ├── MX80_PEM.json │ │ │ ├── MX960_Fan.json │ │ │ ├── MX960_PEM.json │ │ │ ├── PEM.json │ │ │ ├── QXM.json │ │ │ ├── RE.json │ │ │ └── SCB.json │ │ ├── QFX │ │ │ └── 5100_EM.json │ │ └── SRX │ │ │ └── Mini-PIM.json │ ├── Maipu │ │ └── PSU.json │ ├── Optical │ │ ├── E2000.json │ │ ├── FC.json │ │ ├── FL.json │ │ ├── FX.json │ │ ├── LC.json │ │ ├── MPO.json │ │ ├── SC.json │ │ ├── ST.json │ │ └── TOSLINK.json │ ├── Power │ │ ├── 2CDGB-5_08-02P-14-00A_H_.json │ │ ├── CEE_7_16_Type_C.json │ │ ├── CEE_7_17_Type_C.json │ │ ├── CEE_7_4_Type_F.json │ │ ├── CEE_7_5_Type_E.json │ │ ├── CEE_7_7_Type_E_F.json │ │ ├── Dual_M6_Lug.json │ │ ├── Dual_M6_Terminal_Studs.json │ │ ├── IEC_60130-10.json │ │ ├── IEC_60309.json │ │ ├── IEC_60320_C1.json │ │ ├── IEC_60320_C13.json │ │ ├── IEC_60320_C14.json │ │ ├── IEC_60320_C19.json │ │ ├── IEC_60320_C2.json │ │ ├── IEC_60320_C20.json │ │ ├── IEC_60320_C21.json │ │ ├── IEC_60320_C22.json │ │ ├── IEC_60320_C5.json │ │ ├── IEC_60320_C6.json │ │ ├── IEC_60320_C7.json │ │ ├── IEC_60320_C8.json │ │ ├── M4_Fork.json │ │ ├── M4_Pin.json │ │ ├── MSTB 2.5_10_ST_5_08.json │ │ ├── MSTB_2_5_16-ST-5_08.json │ │ ├── MSTB_2_5_2-G-5_08.json │ │ ├── MSTB_2_5_2-ST-5_08.json │ │ ├── MSTB_2_5_3-G-5_08.json │ │ ├── MSTB_2_5_3-ST-5_08.json │ │ ├── MSTB_2_5_4-G-5_08.json │ │ ├── MSTB_2_5_4-ST-5_08.json │ │ ├── MSTB_2_5_6-GF-5_08.json │ │ ├── MSTB_2_5_8-ST-5_08.json │ │ ├── Naked.json │ │ ├── TB_Barrier_Screw_12_Pin.json │ │ ├── TB_Barrier_Screw_24_Pin.json │ │ ├── TB_Barrier_Screw_2_Pin.json │ │ ├── TB_Barrier_Screw_3_Pin.json │ │ └── TB_Barrier_Screw_4_Pin.json │ ├── Radio │ │ └── RF │ │ │ ├── N.json │ │ │ ├── RPSMA.json │ │ │ ├── RPSMB.json │ │ │ └── SMA.json │ ├── Rubytech │ │ └── l2ms │ │ │ └── Module.json │ ├── SIM │ │ ├── R-UIM.json │ │ ├── micro-SIM.json │ │ ├── mini-SIM.json │ │ └── nano-SIM.json │ ├── Transceiver │ │ ├── CFP.json │ │ ├── CFP │ │ │ └── Juniper.json │ │ ├── CFP2.json │ │ ├── GBIC.json │ │ ├── GBIC │ │ │ └── Cisco.json │ │ ├── QSFP+.json │ │ ├── QSFP28.json │ │ ├── SFP+.json │ │ ├── SFP+ │ │ │ ├── Cisco.json │ │ │ ├── Force10.json │ │ │ └── Juniper.json │ │ ├── SFP.json │ │ ├── SFP │ │ │ └── Cisco.json │ │ ├── SFP28.json │ │ ├── X2.json │ │ ├── X2 │ │ │ └── Cisco.json │ │ ├── XENPAK.json │ │ ├── XENPAK │ │ │ └── Cisco.json │ │ ├── XFP.json │ │ └── XFP │ │ │ └── Cisco.json │ ├── ZTE │ │ └── ZXA10 │ │ │ └── C3xx │ │ │ ├── PWR.json │ │ │ └── SB.json │ ├── Zhone │ │ └── GranDSLAM │ │ │ └── card.json │ └── Zyxel │ │ ├── BPS-120_Connector.json │ │ ├── linecard.json │ │ └── mfp.json ├── inv.facades │ ├── Electrical │ │ ├── DB9_F_.json │ │ ├── DB9_M_.json │ │ └── RJ45_F_.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ ├── CU-H5_IP1432-2.json │ │ │ ├── Chassis_K10-H8.json │ │ │ └── Chassis_K4-H8.json │ ├── Maipu │ │ ├── NSS3530 │ │ │ ├── NSS3530-30TXF.json │ │ │ └── NSS3530-54TXP.json │ │ ├── NSS4330 │ │ │ └── NSS4330-32TXP.json │ │ └── NSS5930 │ │ │ └── NSS5930-56SQFP.json │ ├── Optical │ │ └── LC_F_.json │ ├── Power │ │ └── IEC_60320_C14_M_.json │ ├── RBS │ │ └── IData │ │ │ ├── ADM-10_1459-1.json │ │ │ ├── ADM-200_1438-1.json │ │ │ ├── ATP-2x200-CFP2_C3-H8.json │ │ │ ├── ATP-2x200_CFP2_QSFP28_IP1652.json │ │ │ ├── ATP_2x600_QSFP28.json │ │ │ ├── BS-1-1_H4_IP1540.json │ │ │ ├── CU-H5_IP1642.json │ │ │ ├── Chassis_K10-H8_back_view.json │ │ │ ├── Chassis_K4-H8_back_view.json │ │ │ ├── EAU │ │ │ ├── EAU-2x_40V_18+100_12_-OSC-H8.json │ │ │ └── EAU-_40V_24+350V_18_-OSC-H8.json │ │ │ ├── FAN_IP1592.json │ │ │ ├── HS-H8.json │ │ │ ├── OADM-16V_16-100-M-C21-OSC_1511_IP1550.json │ │ │ ├── OADM-4V_4-100-M-C21-OSC_1511_IP1550.json │ │ │ ├── OADM-8V_8-100-M-C21-OSC.json │ │ │ ├── OD-40-100-C21_IP1550.json │ │ │ ├── OD-40-100-H21_IP1550.json │ │ │ ├── OD-96-50-H13_IP1550.json │ │ │ ├── OM-40V-100-C21_IP1550.json │ │ │ ├── OM-40V-100-H21_IP1550.json │ │ │ ├── OM-96-50-H13_IP1550.json │ │ │ ├── PEM_1509-3.json │ │ │ ├── RBS-OPM-4-C-H4_IP1503.json │ │ │ ├── RBS-RA2-H4_IP1456.json │ │ │ ├── ROADM-2-C-50-H8_IP1436.json │ │ │ ├── ROADM-2x9-C-F-OCM-H8_IP1537.json │ │ │ └── ROADM-9-C-F-OCM-OSC_1511_-B_50_14_-P_175_18_-H8.json │ └── Transceiver │ │ ├── CFP2.json │ │ ├── QSFP28_LC.json │ │ ├── QSFP_F_.json │ │ ├── SFP_F_.json │ │ └── SFP_LC.json ├── inv.macblacklist │ ├── Broadcast MAC.json │ ├── Empty (Network) MAC.json │ ├── One MAC.json │ ├── Ubiquity Programmers.json │ ├── Very Smart programmer.json │ ├── Very Smart1 programmer.json │ └── Very Smart2 programmer.json ├── inv.modelinterfaces │ ├── address.json │ ├── agent.json │ ├── airflow.json │ ├── asset.json │ ├── caps.json │ ├── contacts.json │ ├── container.json │ ├── cpe.json │ ├── cpu.json │ ├── debug.json │ ├── dimensions.json │ ├── dwdm.json │ ├── geopoint.json │ ├── hw_path.json │ ├── hwlimits.json │ ├── length.json │ ├── management.json │ ├── modbus.json │ ├── optical.json │ ├── plan.json │ ├── pop.json │ ├── power.json │ ├── rack.json │ ├── rackmount.json │ ├── sector.json │ ├── signal_level.json │ ├── splitter.json │ ├── stack.json │ ├── twinax.json │ └── weight.json ├── inv.objectconfigurationrules │ ├── ADM-10.json │ ├── ATP_2_600.json │ └── OM_OD_Rules.json ├── inv.objectmodels │ ├── AGear │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── SFP+10G1SM3320LC.json │ │ │ └── SFP10G1SM1270-20.json │ │ │ └── GPON │ │ │ └── SFPGEPONOLT1490.json │ ├── APC │ │ ├── NetShelter_SX │ │ │ ├── 24U_AR3104.json │ │ │ ├── 42U_AR3100.json │ │ │ ├── 48U_AR3107.json │ │ │ ├── 48U_AR3307.json │ │ │ └── 48U_AR3357.json │ │ └── SmartUPS │ │ │ ├── 2200.json │ │ │ ├── 5000.json │ │ │ ├── 6000.json │ │ │ └── NMC2.json │ ├── Agilent │ │ └── Transceiver │ │ │ └── 1G │ │ │ └── HFBR-5710L.json │ ├── Alcatel │ │ ├── 7302 │ │ │ ├── 7302.json │ │ │ ├── 7330.json │ │ │ ├── AACU-C.json │ │ │ ├── AACU-E.json │ │ │ ├── EBLT-C.json │ │ │ ├── EBLT-D.json │ │ │ ├── EBLT-E.json │ │ │ ├── EBLT-F.json │ │ │ ├── ECNT-A.json │ │ │ ├── ECNT-C.json │ │ │ ├── NALT-C.json │ │ │ ├── NANT-A.json │ │ │ ├── NSLT-A.json │ │ │ ├── PWIO-B.json │ │ │ └── RCTA-A.json │ │ ├── 7450 │ │ │ ├── 7450-ESS-7.json │ │ │ ├── 7750-SR-7.json │ │ │ ├── IMM12-10GB-SF+.json │ │ │ ├── IMM5-10GB-XFP.json │ │ │ ├── IOM3-XP.json │ │ │ ├── M2-10GB-XP-XFP.json │ │ │ ├── M20-1GB-XP-SFP.json │ │ │ ├── SFM2-200G.json │ │ │ └── SFM4-12.json │ │ ├── 7324RU.json │ │ ├── CF │ │ │ └── SFCF4096.json │ │ └── OS │ │ │ ├── OS6850-U24X.json │ │ │ └── PS-126W-AC.json │ ├── Alistar │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── WDM-1G-1310-3SC.json │ │ │ └── WDM-1G-1550-3SC.json │ ├── Alstec │ │ └── 241XX │ │ │ ├── ALS-24100LVT-01.json │ │ │ ├── ALS-24100LVT-02.json │ │ │ ├── ALS-24100LVT-03.json │ │ │ ├── ALS-24110LVT-01.json │ │ │ ├── ALS-24110LVT-02.json │ │ │ ├── ALS-24110LVT-03.json │ │ │ ├── ALS-24110P.json │ │ │ ├── ALS-24304.json │ │ │ └── ALS-24306.json │ ├── Angtel │ │ └── Topaz │ │ │ ├── Topaz-2O-16E.json │ │ │ ├── Topaz-2O-24E.json │ │ │ └── Topaz-2O-8E.json │ ├── Area.json │ ├── Arista │ │ ├── 7100 │ │ │ ├── DCS-7124S.json │ │ │ ├── FAN-7100-F.json │ │ │ └── PWR-760AC.json │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── CAB-SFP-SFP-2M.json │ │ │ ├── CAB-SFP-SFP-3M.json │ │ │ ├── SFP-10G-SR.json │ │ │ └── SFP-10G-SRL.json │ │ │ └── 1G │ │ │ └── SFP-1G-T.json │ ├── Avago │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── 10Gbase-SR.json │ │ │ └── 1G │ │ │ ├── HBCU-5710R.json │ │ │ ├── HFBR-5710L.json │ │ │ ├── HFCT-5710L.json │ │ │ ├── SFP_LH.json │ │ │ └── SFP_SX.json │ ├── Avaya │ │ ├── ERS │ │ │ ├── 3510GT-PWR+.json │ │ │ ├── 4524GT-PWR.json │ │ │ ├── 4548GT-PWR.json │ │ │ ├── 4826GTS-PWR+.json │ │ │ ├── 4850GTS-PWR+.json │ │ │ ├── 5632FD.json │ │ │ ├── 5650TD-PWR.json │ │ │ └── 5650TD.json │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── SFP+.json │ │ │ └── XFP_LR.json │ │ │ └── 1G │ │ │ └── LX.json │ ├── Axiomtek │ │ └── IFB122.json │ ├── Bazis │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── BZ-SFP+-10G-DA-3.json │ │ │ ├── BZ-SFP+10GWDM-B10.json │ │ │ ├── BZ-SFP+10GWDM-B3.json │ │ │ └── SFP+10G-WDM-A-20.json │ │ │ └── GPON │ │ │ └── SFP-EPON-PX-20++.json │ ├── Bdcom │ │ ├── IOS │ │ │ └── S2210PB.json │ │ └── xPON │ │ │ ├── GP3600-04.json │ │ │ ├── GP3600-08B.json │ │ │ ├── P3310x-2AC.json │ │ │ ├── P3310x.json │ │ │ ├── P3600-04.json │ │ │ ├── P3600-08.json │ │ │ ├── P3600-08E.json │ │ │ ├── P3608-2TE.json │ │ │ └── P3608B.json │ ├── Beward │ │ └── Doorphone.json │ ├── Brocade │ │ ├── JetCore │ │ │ ├── 4_slot_chassis.json │ │ │ ├── 8_slot_chassis.json │ │ │ ├── B10G.json │ │ │ ├── B2x10G.json │ │ │ ├── J-BxG16.json │ │ │ ├── J-BxGMR4.json │ │ │ ├── J-FIxG16.json │ │ │ └── J-FIxGMR4.json │ │ ├── RX │ │ │ ├── BigIron_RX-8_Chassis.json │ │ │ ├── BigIron_RX_4XFP_linecard.json │ │ │ ├── BigIron_RX_Mgmt_module.json │ │ │ ├── PSU_AC_1200W.json │ │ │ └── Switch_Fabric_Module.json │ │ ├── SX │ │ │ ├── Chassis_FastIron_SX_1600.json │ │ │ ├── Chassis_FastIron_SX_800.json │ │ │ ├── SX-FI-24HF_24_SFP_Linecard1.json │ │ │ ├── SX-FI-2XG_2SFP+_Linecard.json │ │ │ └── SX-FIZMRXL6_0-port_management_module.json │ │ └── TurboIron_x24.json │ ├── Building.json │ ├── Bulat │ │ └── BFC-PBIC-S.json │ ├── Carelink │ │ ├── SWG │ │ │ └── CL-SWG-1002.json │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── CL-SFP+_20-33.json │ │ │ └── 1G │ │ │ ├── CL-SFP-LX-10-DD.json │ │ │ ├── CL-SFP-TX.json │ │ │ ├── CL-SFP-WDM-10-31.json │ │ │ ├── CL-SFP-WDM-10-55.json │ │ │ ├── CL-SFP-WDM-10-55SCDD.json │ │ │ ├── CL-SFP-WDM-20-31.json │ │ │ ├── CL-SFP-WDM-20-31LCDD.json │ │ │ ├── CL-SFP-WDM-20-55.json │ │ │ ├── CL-SFP-WDM-20-55SCDD.json │ │ │ ├── CL-SFP-WDM-3-31LC.json │ │ │ ├── CL-SFP-WDM-3-31SC.json │ │ │ ├── CL-SFP-WDM-3-31SCDD.json │ │ │ ├── CL-SFP-WDM-3-55LC.json │ │ │ ├── CL-SFP-WDM-3-55SC.json │ │ │ ├── CL-SFP-WDM-3-55SCDD.json │ │ │ ├── CL-SFP-WDM-40-55.json │ │ │ └── CL-SFP-WDM-80-55.json │ ├── Cisco │ │ ├── 1700 │ │ │ └── 1760_Chassis.json │ │ ├── 1800 │ │ │ ├── 1801.json │ │ │ ├── 1841-MB.json │ │ │ └── 1841.json │ │ ├── 1900 │ │ │ ├── 1921_Chassis.json │ │ │ └── 1921_Motherboard.json │ │ ├── 2800 │ │ │ ├── 2801_Chassis.json │ │ │ ├── 2801_Motherboard.json │ │ │ ├── 2811_Chassis.json │ │ │ ├── 2811_Motherboard.json │ │ │ ├── 2821_Chassis.json │ │ │ ├── 2821_Motherboard.json │ │ │ ├── 2851_Chassis.json │ │ │ └── 2851_Motherboard.json │ │ ├── 2900 │ │ │ ├── 2901_Chassis.json │ │ │ ├── 2901_Motherboard.json │ │ │ ├── 2911_Chassis.json │ │ │ ├── 2911_Motherboard.json │ │ │ ├── 2921_Chassis.json │ │ │ ├── 2921_Motherboard.json │ │ │ ├── 2951_Chassis.json │ │ │ ├── 2951_Motherboard.json │ │ │ ├── PWR-1941-2901-AC.json │ │ │ ├── PWR-2911-AC.json │ │ │ └── PWR-2921-51-AC.json │ │ ├── 3800 │ │ │ ├── 3825_Chassis.json │ │ │ ├── 3825_Motherboard.json │ │ │ ├── 3845_Chassis.json │ │ │ ├── 3845_Motherboard.json │ │ │ └── NM-1GE.json │ │ ├── 3900 │ │ │ ├── 3925_Chassis.json │ │ │ ├── 3945_Chassis.json │ │ │ ├── C3900-SPE100_K9.json │ │ │ ├── C3900-SPE150_K9.json │ │ │ ├── C3900-SPE250_K9.json │ │ │ ├── PWR-3900-AC.json │ │ │ └── PWR-3900-POE.json │ │ ├── 4500 │ │ │ ├── ME-4924-10GE.json │ │ │ └── WS-C4948-10GE.json │ │ ├── 6500 │ │ │ ├── FAN-MOD-09.json │ │ │ ├── VS-F6K-MSFC3.json │ │ │ ├── VS-F6K-MSFC5.json │ │ │ ├── VS-F6K-PFC3C.json │ │ │ ├── VS-F6K-PFC3CXL.json │ │ │ ├── VS-F6K-PFC4.json │ │ │ ├── VS-F6K-PFC4XL.json │ │ │ ├── VS-S720-10G.json │ │ │ ├── WS-C6000-CL.json │ │ │ ├── WS-C6503-E-FAN.json │ │ │ ├── WS-C6503-E.json │ │ │ ├── WS-C6504-E.json │ │ │ ├── WS-C6506-E-FAN.json │ │ │ ├── WS-C6506-E.json │ │ │ ├── WS-C6506.json │ │ │ ├── WS-C6509-E-FAN.json │ │ │ ├── WS-C6509-E.json │ │ │ ├── WS-C6509-V-E-FAN.json │ │ │ ├── WS-C6509-V-E.json │ │ │ ├── WS-C6509.json │ │ │ ├── WS-C6513-E-FAN.json │ │ │ ├── WS-C6513-E.json │ │ │ ├── WS-C6513.json │ │ │ ├── WS-C6K-13SLT-FAN2.json │ │ │ ├── WS-C6K-9SLOT-FAN2.json │ │ │ ├── WS-C6K-VTT-E.json │ │ │ ├── WS-C6K-VTT.json │ │ │ ├── WS-CAC-1000W.json │ │ │ ├── WS-CAC-1300W.json │ │ │ ├── WS-CAC-2500W.json │ │ │ ├── WS-CAC-3000W.json │ │ │ ├── WS-CAC-6000W.json │ │ │ ├── WS-CDC-2500W.json │ │ │ ├── WS-F6K-MSFC2.json │ │ │ ├── WS-F6K-PFC2.json │ │ │ ├── WS-F6K-PFC3B.json │ │ │ ├── WS-F6K-PFC3BXL.json │ │ │ ├── WS-SVC-IDS1.json │ │ │ ├── WS-X6K-S2U-MSFC2.json │ │ │ └── WS-X6K-SUP2-2GE.json │ │ ├── 7100 │ │ │ ├── 7100_Chassis.json │ │ │ ├── 7100_Motherboard.json │ │ │ └── 7114_Linecard.json │ │ ├── 7200 │ │ │ ├── 7201_Chassis.json │ │ │ ├── 7201_NPE.json │ │ │ ├── 7204VXR_Chassis.json │ │ │ ├── 7206VXR_Chassis.json │ │ │ ├── MEM-7201-FLD256.json │ │ │ ├── MEM-NPE-G1-FLD256.json │ │ │ ├── MEM-NPE-G2-FLD256.json │ │ │ ├── NPE-G1.json │ │ │ ├── NPE-G2.json │ │ │ ├── PA-4E1G_120.json │ │ │ ├── PA-4T+.json │ │ │ ├── PA-A3-OC3SMI.json │ │ │ ├── PA-A6-OC3SMI.json │ │ │ ├── PA-MC-8TE1.json │ │ │ ├── PA-MCX-4TE1.json │ │ │ ├── PA-MCX-8TE1.json │ │ │ ├── PA-POS-OC3SMI.json │ │ │ ├── PWR-7200-AC.json │ │ │ ├── PWR-7200-DC.json │ │ │ ├── PWR-7201-AC.json │ │ │ ├── PWR-7201-DC.json │ │ │ ├── uBR7200-NPE-G1.json │ │ │ ├── uBR7200-NPE-G2.json │ │ │ └── uBR7246VXR_Chassis.json │ │ ├── 7300 │ │ │ └── 7301_Chassis.json │ │ ├── 7600 │ │ │ ├── 76-ES+T-4TGQ.json │ │ │ ├── 76-ES+XT-4TG3CXL.json │ │ │ ├── 7600-ES+20G3C.json │ │ │ ├── 7600-ES+2TG.json │ │ │ ├── 7600-ES+2TG3C.json │ │ │ ├── 7600-ES+2TG3CXL.json │ │ │ ├── 7600-ES+3C-DFC-LITE.json │ │ │ ├── 7600-ES+3CXL-DFC.json │ │ │ ├── 7600-ES+40C.json │ │ │ ├── 7600-ES+4TG.json │ │ │ ├── 7600-ES+4TG3C.json │ │ │ ├── 7600-ES20-10G3C.json │ │ │ ├── 7600-ES20-10G3CXL.json │ │ │ ├── 7600-ES20-20GE.json │ │ │ ├── 7600-ES20-2X10G.json │ │ │ ├── 7600-ES20-D3CXL.json │ │ │ ├── 7600-ES20-GE3C.json │ │ │ ├── 7600-MSFC4.json │ │ │ ├── 7600-PFC3C.json │ │ │ ├── 7600-PFC3CXL.json │ │ │ ├── 7604.json │ │ │ ├── 7606-S.json │ │ │ ├── 7606.json │ │ │ ├── 7609.json │ │ │ ├── CLK-7600.json │ │ │ ├── FAN-MOD-4HS.json │ │ │ ├── FAN-MOD-6HS.json │ │ │ ├── FAN-MOD-6SHS.json │ │ │ ├── PWR-1900-AC-6.json │ │ │ ├── PWR-1900-DC.json │ │ │ ├── PWR-2700-AC.json │ │ │ ├── PWR-2700-DC.json │ │ │ ├── PWR-4000-DC.json │ │ │ ├── PWR-6000-DC.json │ │ │ ├── PWR-950-DC.json │ │ │ ├── RSP720-3C-GE.json │ │ │ ├── RSP720-3CXL-GE.json │ │ │ ├── VS-F6K-MSFC5.json │ │ │ ├── WS-CAC-4000W-INT.json │ │ │ ├── WS-F6700-CFC.json │ │ │ ├── WS-F6700-DFC3B.json │ │ │ ├── WS-F6700-DFC3BXL.json │ │ │ ├── WS-F6700-DFC3C.json │ │ │ ├── WS-F6700-DFC3CXL.json │ │ │ ├── WS-F6K-48-AF.json │ │ │ ├── WS-F6K-DFC4-A.json │ │ │ ├── WS-F6K-DFC4-AXL.json │ │ │ ├── WS-F6K-DFC4-E.json │ │ │ ├── WS-F6K-MSFC2A.json │ │ │ ├── WS-SUP32-GE-3B.json │ │ │ ├── WS-SUP720-3B.json │ │ │ ├── WS-SUP720-BASE.json │ │ │ ├── WS-SUP720.json │ │ │ ├── WS-X6148-GE-TX.json │ │ │ ├── WS-X6148A-GE-45AF.json │ │ │ ├── WS-X6148A-GE-TX.json │ │ │ ├── WS-X6182-2PA.json │ │ │ ├── WS-X6348-RJ-45.json │ │ │ ├── WS-X6416-GBIC.json │ │ │ ├── WS-X6516-GE-TX.json │ │ │ ├── WS-X6516A-GBIC.json │ │ │ ├── WS-X6548-RJ-21.json │ │ │ ├── WS-X6704-10GE.json │ │ │ ├── WS-X6708-10GE.json │ │ │ ├── WS-X6724-SFP.json │ │ │ ├── WS-X6748-GE-TX.json │ │ │ ├── WS-X6748-SFP.json │ │ │ ├── WS-X6848-SFP.json │ │ │ └── WS-X6908-10G.json │ │ ├── 7604 │ │ │ ├── PWR-2700-AC_4.json │ │ │ └── PWR-2700-DC_4.json │ │ ├── 4500X │ │ │ ├── C4KX-NM-8SFP+.json │ │ │ ├── C4KX-PWR-750AC-F.json │ │ │ ├── C4KX-PWR-750AC-R.json │ │ │ ├── WS-C4500X-16.json │ │ │ └── WS-C4500X-32.json │ │ ├── ASA │ │ │ ├── ASA-180W-PWR-AC.json │ │ │ ├── ASA5520.json │ │ │ └── ASA5540.json │ │ ├── ASR1000 │ │ │ ├── ASR1001-ESP.json │ │ │ ├── ASR1001-PWR-AC.json │ │ │ ├── ASR1001-SIP.json │ │ │ ├── ASR1001-SPA.json │ │ │ ├── ASR1001-X-PWR-AC.json │ │ │ ├── ASR1001-X-RP.json │ │ │ ├── ASR1001-X.json │ │ │ ├── ASR1001.json │ │ │ ├── ASR1004-PWR-AC.json │ │ │ ├── ASR1004-PWR-DC.json │ │ │ ├── ASR1004.json │ │ │ ├── ASR1006-PWR-AC.json │ │ │ ├── ASR1006-PWR-DC.json │ │ │ ├── ASR1006.json │ │ │ ├── ESP10.json │ │ │ ├── ESP40.json │ │ │ ├── RP1.json │ │ │ ├── RP2.json │ │ │ ├── SIP10.json │ │ │ └── SIP40.json │ │ ├── ASR9001 │ │ │ ├── A9K-750W-AC.json │ │ │ ├── A9K-750W-DC.json │ │ │ ├── ASR-9001-FAN-V2.json │ │ │ ├── ASR-9001-FAN.json │ │ │ └── ASR9001-RP.json │ │ ├── ASR901 │ │ │ └── A901-6CZ-FT-D.json │ │ ├── ASR9010 │ │ │ ├── ASR-9010-FAN-V2.json │ │ │ ├── ASR-9010-FAN.json │ │ │ ├── PWR-2KW-DC-V2.json │ │ │ ├── PWR-2KW-DC.json │ │ │ └── PWR-3KW-AC.json │ │ ├── ASR9k │ │ │ ├── A9K-2T20GE-L.json │ │ │ ├── A9K-4T-L.json │ │ │ ├── A9K-8T-L.json │ │ │ ├── A9K-MOD80-SE.json │ │ │ ├── A9K-MOD80-TR.json │ │ │ ├── A9K-MODULEv.json │ │ │ ├── A9K-MPA-20X1GE.json │ │ │ ├── A9K-MPA-4X10GE.json │ │ │ ├── A9K-RSP-4G.json │ │ │ ├── A9K-RSP-8G.json │ │ │ ├── A9K-RSP440-SE.json │ │ │ ├── ASR-9001.json │ │ │ ├── ASR-9010-AC.json │ │ │ ├── ASR-9010-DC-V2.json │ │ │ └── ASR-9010-DC.json │ │ ├── C2900XL │ │ │ └── WS-C2924-XL.json │ │ ├── C2940 │ │ │ └── WS-C2940-8TT-S.json │ │ ├── C2950 │ │ │ ├── WS-C2950-12.json │ │ │ ├── WS-C2950-24.json │ │ │ ├── WS-C2950G-24-EI-DC.json │ │ │ ├── WS-C2950G-24-EI.json │ │ │ ├── WS-C2950G-48.json │ │ │ ├── WS-C2950SX-48-SI.json │ │ │ └── WS-C2950T-24.json │ │ ├── C2960 │ │ │ ├── WS-C2960-24-S.json │ │ │ ├── WS-C2960-24LC-S.json │ │ │ ├── WS-C2960-24PC-L.json │ │ │ ├── WS-C2960-24TC-L.json │ │ │ ├── WS-C2960-24TT.json │ │ │ ├── WS-C2960-48PST-L.json │ │ │ ├── WS-C2960-48PST-S.json │ │ │ ├── WS-C2960-48TC-L.json │ │ │ ├── WS-C2960-48TC-S.json │ │ │ ├── WS-C2960-48TT-L.json │ │ │ ├── WS-C2960-8TC-L.json │ │ │ ├── WS-C2960C-8TC-L.json │ │ │ ├── WS-C2960C-8TC-S.json │ │ │ ├── WS-C2960CG-8TC-L.json │ │ │ ├── WS-C2960G-24TC-L.json │ │ │ ├── WS-C2960G-48TC-L.json │ │ │ ├── WS-C2960G-8TC-L.json │ │ │ ├── WS-C2960R+24PC-S.json │ │ │ ├── WS-C2960RX-24TS-L.json │ │ │ ├── WS-C2960RX-48FPD-L.json │ │ │ ├── WS-C2960RX-48LPD-L.json │ │ │ ├── WS-C2960RX-48LPS-L.json │ │ │ ├── WS-C2960S-24PD-L.json │ │ │ ├── WS-C2960S-24TD-L.json │ │ │ ├── WS-C2960S-24TS-L.json │ │ │ ├── WS-C2960S-24TS-S.json │ │ │ ├── WS-C2960S-48FPS-L.json │ │ │ ├── WS-C2960S-48LPS-L.json │ │ │ ├── WS-C2960S-48TD-L.json │ │ │ ├── WS-C2960S-48TS-L.json │ │ │ ├── WS-C2960X-24PD-L.json │ │ │ ├── WS-C2960X-24TS-L.json │ │ │ ├── WS-C2960X-24TS-LL.json │ │ │ ├── WS-C2960X-48FPD-L.json │ │ │ └── WS-C2960XR-48LPS-I.json │ │ ├── C3500 │ │ │ ├── WS-C3550-12G.json │ │ │ ├── WS-C3550-12T.json │ │ │ ├── WS-C3550-24-DC.json │ │ │ ├── WS-C3550-24.json │ │ │ ├── WS-C3550-24PWR.json │ │ │ └── WS-C3550-48.json │ │ ├── C3500XL │ │ │ └── WS-C3548-XL.json │ │ ├── C3560 │ │ │ ├── WS-C3560-12PS.json │ │ │ ├── WS-C3560-24PS.json │ │ │ ├── WS-C3560-24TS-S.json │ │ │ ├── WS-C3560-48PS-S.json │ │ │ ├── WS-C3560-48TS.json │ │ │ ├── WS-C3560-8PS.json │ │ │ ├── WS-C3560G-24PS.json │ │ │ ├── WS-C3560G-24TS-S.json │ │ │ ├── WS-C3560G-24TS.json │ │ │ └── WS-C3560G-48TS-S.json │ │ ├── C3560E │ │ │ ├── WS-C3560E-24TD.json │ │ │ └── WS-C3560E-48TD.json │ │ ├── C3750 │ │ │ ├── WS-C3750-24PS-S.json │ │ │ ├── WS-C3750-24PS.json │ │ │ ├── WS-C3750-24TS.json │ │ │ ├── WS-C3750-48PS-S.json │ │ │ ├── WS-C3750-48TS.json │ │ │ ├── WS-C3750G-12S-SD.json │ │ │ ├── WS-C3750G-12S.json │ │ │ ├── WS-C3750G-24T.json │ │ │ ├── WS-C3750G-24TS-1U.json │ │ │ ├── WS-C3750G-24TS.json │ │ │ ├── WS-C3750G-48TS.json │ │ │ ├── WS-C3750V2-24PS-S.json │ │ │ ├── WS-C3750V2-24TS-S.json │ │ │ ├── WS-C3750V2-48PS-S.json │ │ │ └── WS-C3750V2-48TS-S.json │ │ ├── C3750E │ │ │ ├── C3K-PWR-265WAC.json │ │ │ └── WS-C3750E-48TD.json │ │ ├── C3750ME │ │ │ ├── ME-C3750-24TE-M.json │ │ │ ├── PWR-ME3750-AC.json │ │ │ └── PWR-ME3750-DC.json │ │ ├── C3750X │ │ │ ├── C3KX-NM-10G.json │ │ │ ├── C3KX-NM-1G.json │ │ │ ├── C3KX-SM-10G.json │ │ │ ├── WS-C3750X-24P-L.json │ │ │ ├── WS-C3750X-24P-S.json │ │ │ ├── WS-C3750X-24T-E.json │ │ │ ├── WS-C3750X-24T-L.json │ │ │ ├── WS-C3750X-24T-S.json │ │ │ ├── WS-C3750X-48P-L.json │ │ │ ├── WS-C3750X-48P-S.json │ │ │ ├── WS-C3750X-48PF-L.json │ │ │ ├── WS-C3750X-48PF-S.json │ │ │ ├── WS-C3750X-48T-L.json │ │ │ └── WS-C3750X-48T-S.json │ │ ├── C3850 │ │ │ ├── C3850-NM-2-10G.json │ │ │ ├── C3850-NM-2-40G.json │ │ │ ├── STACK-T1-50CM.json │ │ │ ├── WS-C3850-24T.json │ │ │ └── WS-C3850-24XS-S.json │ │ ├── C4900 │ │ │ ├── PWR-C49M-1000DC.json │ │ │ ├── WS-C4900M-LC.json │ │ │ ├── WS-C4900M.json │ │ │ ├── WS-C4948.json │ │ │ ├── WS-X4904-10GE.json │ │ │ ├── WS-X4920-GB-RJ45.json │ │ │ └── WS-X4992.json │ │ ├── C6500ME │ │ │ ├── FAN-C6524.json │ │ │ ├── ME-C6524-MSFC2A.json │ │ │ ├── ME-C6524-PFC3C.json │ │ │ ├── ME-C6524GS-8S.json │ │ │ └── ME-C6524GT-8S.json │ │ ├── C6800 │ │ │ └── C6800-DFC.json │ │ ├── ISR │ │ │ └── Module │ │ │ │ ├── AIM-COMPR4.json │ │ │ │ ├── AIM-VPN_EPII-PLUS.json │ │ │ │ ├── AIM-VPN_SSL-2.json │ │ │ │ ├── EHWIC-1GE-SFP-CU.json │ │ │ │ ├── EHWIC-4ESG.json │ │ │ │ ├── EM-HDA-4FXO.json │ │ │ │ ├── EM-HDA-8FXS.json │ │ │ │ ├── HWIC-1FE.json │ │ │ │ ├── HWIC-1GE-SFP.json │ │ │ │ ├── HWIC-1T.json │ │ │ │ ├── HWIC-2FE.json │ │ │ │ ├── HWIC-2T.json │ │ │ │ ├── HWIC-4A-S.json │ │ │ │ ├── HWIC-4ESW.json │ │ │ │ ├── HWIC-4T.json │ │ │ │ ├── HWIC-D-9ESW.json │ │ │ │ ├── ISM-SRE-300-K9.json │ │ │ │ ├── NM-16A.json │ │ │ │ ├── NM-16AM-V2.json │ │ │ │ ├── NM-1CE1B.json │ │ │ │ ├── NM-1CE1T1-PRI.json │ │ │ │ ├── NM-2CE1T1-PRI.json │ │ │ │ ├── NM-30DM.json │ │ │ │ ├── NM-4A-S.json │ │ │ │ ├── NM-8A-S.json │ │ │ │ ├── NM-8AM-V2.json │ │ │ │ ├── NM-HD-2V.json │ │ │ │ ├── NM-HD-2VE.json │ │ │ │ ├── NME-RVPN-SEC1-G2.json │ │ │ │ ├── PVDM2-16.json │ │ │ │ ├── PVDM2-32.json │ │ │ │ ├── PVDM2-48.json │ │ │ │ ├── PVDM2-64.json │ │ │ │ ├── PVDM2-8.json │ │ │ │ ├── PVDM3-128.json │ │ │ │ ├── PVDM3-16.json │ │ │ │ ├── PVDM3-32.json │ │ │ │ ├── PVDM3-64.json │ │ │ │ ├── SM-NM-ADPTR.json │ │ │ │ ├── VIC-4FXS_DID.json │ │ │ │ ├── VIC2-2E-M.json │ │ │ │ ├── VIC2-2FXO.json │ │ │ │ ├── VIC2-2FXS.json │ │ │ │ ├── VIC2-4FXO.json │ │ │ │ ├── VIC3-2E_M.json │ │ │ │ ├── VIC3-4FXS_DID.json │ │ │ │ ├── VWIC-1MFT-E1.json │ │ │ │ ├── VWIC-1MFT-G703.json │ │ │ │ ├── VWIC-2MFT-E1-DI.json │ │ │ │ ├── VWIC-2MFT-E1.json │ │ │ │ ├── VWIC2-1MFT-G703.json │ │ │ │ ├── VWIC2-1MFT-T1-E1.json │ │ │ │ ├── VWIC2-2MFT-G703.json │ │ │ │ ├── VWIC2-2MFT-T1-E1.json │ │ │ │ ├── VWIC3-1MFT-T1-E1.json │ │ │ │ ├── VWIC3-2MFT-T1-E1.json │ │ │ │ ├── VWIC3-4MFT-T1-E1.json │ │ │ │ ├── WIC-1AM.json │ │ │ │ ├── WIC-1SHDSL-V3.json │ │ │ │ ├── WIC-1T.json │ │ │ │ ├── WIC-2A-S.json │ │ │ │ ├── WIC-2AM-V2.json │ │ │ │ ├── WIC-2AM.json │ │ │ │ └── WIC-2T.json │ │ ├── ME3400 │ │ │ ├── ME-3400-24TS-A.json │ │ │ ├── ME-3400-24TS-D.json │ │ │ ├── ME-3400G-12CS-A.json │ │ │ ├── ME-3400G-12CS-D.json │ │ │ └── ME-3400G-2CS-A.json │ │ ├── ME3400E │ │ │ ├── ME-3400E-24TS-M.json │ │ │ ├── ME-3400EG-12CS-M.json │ │ │ └── ME-3400EG-2CS-A.json │ │ ├── ME3600 │ │ │ ├── ME-3600X-24FS-M.json │ │ │ ├── PWR-ME3KX-AC.json │ │ │ └── PWR-ME3KX-DC.json │ │ ├── ME3800X │ │ │ └── ME-3800X-24FS-M.json │ │ ├── NEXUS │ │ │ ├── N2200-PAC-400W-B.json │ │ │ ├── N2200-PAC-400W.json │ │ │ ├── N2200-PDC-400W-B.json │ │ │ ├── N2200-PDC-400W.json │ │ │ ├── N2K-C2232-FAN-B.json │ │ │ ├── N2K-C2232-FAN.json │ │ │ ├── N2K-C2232PP-10GE-SUP.json │ │ │ ├── N2K-C2232PP-10GE.json │ │ │ ├── N3K-C3064-FAN-B.json │ │ │ ├── N3K-C3064-FAN-F.json │ │ │ ├── N3K-C3064PQ-10GE-SUP.json │ │ │ ├── N3K-C3064PQ-10GE.json │ │ │ ├── N3K-C3064PQ-10GX-SUP.json │ │ │ ├── N3K-C3064PQ-10GX.json │ │ │ ├── N55-M160L3-V2.json │ │ │ ├── N55-M160L3.json │ │ │ ├── N55-PAC-1100W-B.json │ │ │ ├── N55-PAC-1100W.json │ │ │ ├── N55-PAC-750W-B.json │ │ │ ├── N55-PAC-750W.json │ │ │ ├── N55-PDC-1100W.json │ │ │ ├── N55-PDC-750W.json │ │ │ ├── N5548P-FAN-B.json │ │ │ ├── N5548P-FAN.json │ │ │ ├── N5596UP-FAN-B.json │ │ │ ├── N5596UP-FAN.json │ │ │ ├── N5K-C5596UP-SUP.json │ │ │ ├── N5K-C5596UP.json │ │ │ ├── N6K-C6001-64P-SUP.json │ │ │ ├── N6K-C6001-64P.json │ │ │ ├── N6K-C6001-FAN-B.json │ │ │ ├── N6K-C6001-FAN-F.json │ │ │ ├── N6K-C6001-M4Q.json │ │ │ ├── N9K-C93180YC-EX.json │ │ │ ├── NXA-FAN-30CFM-B.json │ │ │ ├── NXA-PAC-1100W-B.json │ │ │ ├── NXA-PAC-1100W.json │ │ │ └── NXA-PAC-650W-PI.json │ │ ├── PWR │ │ │ ├── C3K-PWR-265WDC.json │ │ │ ├── C3KX-PWR-1100WAC.json │ │ │ ├── C3KX-PWR-350WAC.json │ │ │ ├── C3KX-PWR-715WAC.json │ │ │ ├── ME34X-PWR-AC.json │ │ │ ├── ME34X-PWR-DC.json │ │ │ ├── PWR-400W-DC.json │ │ │ ├── PWR-C1-350WAC.json │ │ │ ├── PWR-C1-715WAC.json │ │ │ ├── PWR-C49-300AC.json │ │ │ └── PWR-C49-300DC.json │ │ ├── SCE │ │ │ ├── SCE2020-4XGBE-MM.json │ │ │ ├── SCE8000-FAN.json │ │ │ ├── SCE8000-SCM-E.json │ │ │ ├── SCE8000-SIP.json │ │ │ └── SCE8000_Chassis.json │ │ ├── SPA │ │ │ ├── SPA-1X10GE-L-V2.json │ │ │ └── SPA-5X1GE-V2.json │ │ └── Transceiver │ │ │ ├── 100G │ │ │ └── QSFP+_100G-CU3M.json │ │ │ ├── 100M │ │ │ └── GLC-FE-100LX.json │ │ │ ├── 10G │ │ │ ├── SFP-10G-ER.json │ │ │ ├── SFP-10G-LR.json │ │ │ ├── SFP-10G-SR.json │ │ │ ├── SFP-10G-ZR.json │ │ │ ├── X2-10GB-ER.json │ │ │ ├── X2-10GB-LR.json │ │ │ ├── X2-10GB-LRM.json │ │ │ ├── X2-10GB-SR.json │ │ │ ├── XENPAK-10GB-CX4.json │ │ │ ├── XENPAK-10GB-ER.json │ │ │ ├── XENPAK-10GB-LR+.json │ │ │ ├── XENPAK-10GB-LX4.json │ │ │ ├── XENPAK-10GB-SR.json │ │ │ ├── XENPAK-10GB-ZR.json │ │ │ ├── XENPAK-SFP+.json │ │ │ ├── XFP-10G-MM-SR.json │ │ │ ├── XFP-10GER-192IR+.json │ │ │ ├── XFP-10GLR-OC192SR.json │ │ │ ├── XFP-10GZR-OC192LR.json │ │ │ ├── XFP10GER-192IR-L.json │ │ │ └── XFP10GLR-192SR-L.json │ │ │ └── 1G │ │ │ ├── GLC-2BX-D.json │ │ │ ├── GLC-BX-D.json │ │ │ ├── GLC-BX-U.json │ │ │ ├── GLC-EX-SMD.json │ │ │ ├── GLC-FE-100BX-D.json │ │ │ ├── GLC-LH-BX.json │ │ │ ├── GLC-LH-SM.json │ │ │ ├── GLC-LH-SMD.json │ │ │ ├── GLC-SX-MMD.json │ │ │ ├── GLC-T.json │ │ │ ├── GLC-ZX-SM.json │ │ │ ├── GLC-ZX-SMD.json │ │ │ ├── SFP-GE-L.json │ │ │ ├── SFP-GE-S.json │ │ │ ├── SFP-GE-Z.json │ │ │ ├── TRPUG1CLXECISE2G.json │ │ │ └── WS-G5483.json │ ├── City.json │ ├── Country.json │ ├── DCN │ │ └── AP │ │ │ ├── DCWL-7962OT.json │ │ │ ├── WL8200-I2.json │ │ │ └── WL8200-TL1.json │ ├── DLink │ │ ├── DAS │ │ │ ├── DAS-3224.json │ │ │ ├── DAS-3224DC.json │ │ │ ├── DAS-3224_E_C.json │ │ │ └── DAS-3248.json │ │ ├── DES │ │ │ ├── DES-1210-10_ME_B1.json │ │ │ ├── DES-1210-10_ME_B2.json │ │ │ ├── DES-1210-26_ME_B1.json │ │ │ ├── DES-1210-28_ME_A1.json │ │ │ ├── DES-1210-28_ME_B2.json │ │ │ ├── DES-1210-28_ME_B3.json │ │ │ ├── DES-1210-52_ME.json │ │ │ ├── DES-1210-52_ME_C1.json │ │ │ ├── DES-1228_ME.json │ │ │ ├── DES-2108.json │ │ │ ├── DES-2110.json │ │ │ ├── DES-3010F.json │ │ │ ├── DES-3010FL.json │ │ │ ├── DES-3010G.json │ │ │ ├── DES-3016.json │ │ │ ├── DES-3018.json │ │ │ ├── DES-3026.json │ │ │ ├── DES-3028.json │ │ │ ├── DES-3028G.json │ │ │ ├── DES-3028P.json │ │ │ ├── DES-3052.json │ │ │ ├── DES-3200-10.json │ │ │ ├── DES-3200-10_B1.json │ │ │ ├── DES-3200-10_C1.json │ │ │ ├── DES-3200-18.json │ │ │ ├── DES-3200-18_B1.json │ │ │ ├── DES-3200-18_C1.json │ │ │ ├── DES-3200-26.json │ │ │ ├── DES-3200-26_B1.json │ │ │ ├── DES-3200-26_C1.json │ │ │ ├── DES-3200-28.json │ │ │ ├── DES-3200-28F.json │ │ │ ├── DES-3200-28F_C1.json │ │ │ ├── DES-3200-28P_C1.json │ │ │ ├── DES-3200-28_B1.json │ │ │ ├── DES-3200-28_C1.json │ │ │ ├── DES-3200-52.json │ │ │ ├── DES-3200-52_C1.json │ │ │ ├── DES-3226.json │ │ │ ├── DES-3326.json │ │ │ ├── DES-3526.json │ │ │ ├── DES-3528.json │ │ │ ├── DES-3528P.json │ │ │ ├── DES-3550.json │ │ │ ├── DES-3552.json │ │ │ ├── DES-3810-28.json │ │ │ ├── DES-3810-52.json │ │ │ ├── DES-3828.json │ │ │ ├── DES-3828P.json │ │ │ └── DES-3852.json │ │ ├── DGS │ │ │ ├── DGS-1100-06_ME.json │ │ │ ├── DGS-1100-10_ME.json │ │ │ ├── DGS-1100-18_ME.json │ │ │ ├── DGS-1210-10P_ME.json │ │ │ ├── DGS-1210-10_ME.json │ │ │ ├── DGS-1210-12TS_ME.json │ │ │ ├── DGS-1210-20_ME.json │ │ │ ├── DGS-1210-28XS_ME.json │ │ │ ├── DGS-1210-28_ME.json │ │ │ ├── DGS-1510-28XS_ME.json │ │ │ ├── DGS-1510-28X_ME.json │ │ │ ├── DGS-1510-52X.json │ │ │ ├── DGS-1510-52X_ME.json │ │ │ ├── DGS-3000-10L.json │ │ │ ├── DGS-3000-10TC.json │ │ │ ├── DGS-3000-20L.json │ │ │ ├── DGS-3000-24TC.json │ │ │ ├── DGS-3000-26TC.json │ │ │ ├── DGS-3000-28L.json │ │ │ ├── DGS-3000-28SC.json │ │ │ ├── DGS-3000-28XS.json │ │ │ ├── DGS-3024.json │ │ │ ├── DGS-3100-24.json │ │ │ ├── DGS-3100-24TG.json │ │ │ ├── DGS-3120-24PC.json │ │ │ ├── DGS-3120-24SC.json │ │ │ ├── DGS-3120-24TC.json │ │ │ ├── DGS-3120-48PC.json │ │ │ ├── DGS-3120-48TC.json │ │ │ ├── DGS-3200-10.json │ │ │ ├── DGS-3200-16.json │ │ │ ├── DGS-3200-24.json │ │ │ ├── DGS-3212SR.json │ │ │ ├── DGS-3312SR.json │ │ │ ├── DGS-3420-26SC.json │ │ │ ├── DGS-3420-28SC.json │ │ │ ├── DGS-3420-28TC.json │ │ │ ├── DGS-3426.json │ │ │ ├── DGS-3426G.json │ │ │ ├── DGS-3426P.json │ │ │ ├── DGS-3427.json │ │ │ ├── DGS-3610-26G.json │ │ │ ├── DGS-3612.json │ │ │ ├── DGS-3612G.json │ │ │ ├── DGS-3620-28PC.json │ │ │ ├── DGS-3620-28SC.json │ │ │ ├── DGS-3620-28TC.json │ │ │ ├── DGS-3620-52P.json │ │ │ ├── DGS-3620-52T.json │ │ │ ├── DGS-3627.json │ │ │ ├── DGS-3627G.json │ │ │ ├── DGS-3650.json │ │ │ ├── DGS-3700-12.json │ │ │ ├── DGS-3700-12G.json │ │ │ └── DGS-3710-12C.json │ │ ├── Modules │ │ │ ├── DEM-301G.json │ │ │ ├── DEM-301T.json │ │ │ ├── DEM-320GH.json │ │ │ ├── DEM-340MG.json │ │ │ ├── DEM-410X.json │ │ │ ├── DEM-412CX.json │ │ │ ├── DEM-412X.json │ │ │ ├── DEM-420CX.json │ │ │ ├── DEM-420X.json │ │ │ ├── DEM-540.json │ │ │ ├── DES-132GB.json │ │ │ └── DES-132T.json │ │ └── Transceiver │ │ │ ├── 100M │ │ │ ├── DEM-210.json │ │ │ ├── DEM-220R.json │ │ │ └── DEM-220T.json │ │ │ ├── 10G │ │ │ └── DEM-432XT.json │ │ │ └── 1G │ │ │ ├── DEM-302S-BXD.json │ │ │ ├── DEM-302S-BXU.json │ │ │ ├── DEM-310GT.json │ │ │ ├── DEM-311GT.json │ │ │ ├── DEM-314GT.json │ │ │ ├── DEM-315GT.json │ │ │ ├── DEM-330R.json │ │ │ ├── DEM-330T.json │ │ │ ├── DEM-331R.json │ │ │ ├── DEM-331T.json │ │ │ └── DGS-712.json │ ├── Ducts │ │ ├── Cable_Entry.json │ │ ├── Conduits.json │ │ └── Manhole.json │ ├── Edge-Core │ │ └── ES │ │ │ ├── ECS3510-28T.json │ │ │ ├── ECS3510-52T.json │ │ │ ├── ECS4100-28T.json │ │ │ ├── ECS4100-52T.json │ │ │ ├── ECS4210-12T.json │ │ │ ├── ES3510.json │ │ │ ├── ES3510MA.json │ │ │ ├── ES3526XA-V2.json │ │ │ ├── ES3528M.json │ │ │ └── ES3552M.json │ ├── Electron │ │ └── KO-01M.json │ ├── Eltex │ │ ├── DSLAM │ │ │ ├── MXA24.json │ │ │ ├── MXA32.json │ │ │ └── MXA64.json │ │ ├── ESR │ │ │ ├── 10.json │ │ │ ├── 100.json │ │ │ ├── 1000.json │ │ │ ├── 1200.json │ │ │ ├── 12VF.json │ │ │ ├── 14VF.json │ │ │ ├── 1500.json │ │ │ ├── 1700.json │ │ │ ├── 20.json │ │ │ ├── 200.json │ │ │ └── 21.json │ │ ├── LTE │ │ │ └── LTE-8ST.json │ │ ├── LTP │ │ │ ├── LTP-16N.json │ │ │ ├── LTP-4X-rev_B.json │ │ │ ├── LTP-4X-rev_C.json │ │ │ ├── LTP-8N.json │ │ │ ├── LTP-8X-rev_B.json │ │ │ └── LTP-8X-rev_C.json │ │ ├── MA4000 │ │ │ ├── MA4000.json │ │ │ ├── PLC8.json │ │ │ └── PP4X.json │ │ ├── MES │ │ │ ├── 1024.json │ │ │ ├── 1124.json │ │ │ ├── 2124.json │ │ │ ├── 2124F.json │ │ │ ├── 2124P.json │ │ │ ├── 2208P.json │ │ │ ├── 2308.json │ │ │ ├── 2308P.json │ │ │ ├── 2308R.json │ │ │ ├── 2324.json │ │ │ ├── 2324FB.json │ │ │ ├── 2324P.json │ │ │ ├── 3108.json │ │ │ ├── 3108F.json │ │ │ ├── 3116.json │ │ │ ├── 3116F.json │ │ │ ├── 3124.json │ │ │ ├── 3124F.json │ │ │ ├── 3316F.json │ │ │ ├── 3324.json │ │ │ ├── 3324F.json │ │ │ ├── 3348F.json │ │ │ ├── 3508P.json │ │ │ ├── 5248.json │ │ │ ├── 5324.json │ │ │ ├── 5448.json │ │ │ ├── ESR-12V.json │ │ │ ├── MES-2324B.json │ │ │ ├── MES-3308F.json │ │ │ ├── MES-5316A.json │ │ │ └── MES-5324A.json │ │ ├── MES24xx │ │ │ ├── MES2408C.json │ │ │ ├── MES2408CP.json │ │ │ ├── MES2428.json │ │ │ ├── MES2428B.json │ │ │ └── MES2428P.json │ │ ├── PWR │ │ │ ├── PM100.json │ │ │ ├── PM160.json │ │ │ ├── PM350-220.json │ │ │ ├── PM350-48.json │ │ │ ├── PM75.json │ │ │ └── PM950.json │ │ └── RG │ │ │ ├── RG-1404GF-W.json │ │ │ └── RG-1412G-Wac.json │ ├── Eoptolink │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── EOLP-1396-02-I.json │ │ │ └── GPON │ │ │ ├── EOLS-GET-25-DEDM.json │ │ │ ├── EOLS-GT-37-D-DM.json │ │ │ └── EOLSGT35DZTE1DM.json │ ├── Ericsson │ │ └── SmartEdge │ │ │ ├── 10ge-4-port.json │ │ │ ├── ALARM_CARD.json │ │ │ ├── FANTRAY.json │ │ │ ├── SE600.json │ │ │ └── xcrp4-base.json │ ├── Extreme │ │ └── Summit │ │ │ ├── PWR-550W-AC.json │ │ │ ├── PWR-715W-AC.json │ │ │ ├── X460G2-48p-10G4.json │ │ │ ├── X460G2 │ │ │ └── FAN-FB.json │ │ │ ├── X480-24x.json │ │ │ ├── X650-24x.json │ │ │ ├── X650 │ │ │ └── FAN-FB.json │ │ │ ├── X670-48x.json │ │ │ ├── X670G2-48x-4q.json │ │ │ └── X670G2 │ │ │ └── FAN-FB.json │ ├── FANGHANG │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── FH-DP1T30SS02.json │ │ │ ├── FH-DP1T30SS03.json │ │ │ └── FH-SPB321TCDL20.json │ │ │ └── 1G │ │ │ ├── FH-SB3512CDL20.json │ │ │ ├── FH-SB3512CDS20.json │ │ │ └── FH-SB5312CDS20.json │ ├── FANG_HANG │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── FH-SPB231TCDL20.json │ ├── FiboTelecom │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── FT-S10-W2720LD.json │ │ │ └── FT-S10-W3320LD.json │ │ │ ├── 1G │ │ │ ├── FT-S1-W3120SD.json │ │ │ ├── FT-S1-W313SD.json │ │ │ └── FT-S1-W5520SD.json │ │ │ └── GPON │ │ │ └── FT-PX20++.json │ ├── Finisar │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── FTLX1412M3BCL.json │ │ │ ├── FTLX1413M3BCL.json │ │ │ ├── FTLX1471D3BCL.json │ │ │ ├── FTLX1475D3BCL.json │ │ │ ├── FTLX8511D3.json │ │ │ ├── FTLX8570D3BCL-C1.json │ │ │ ├── FTLX8571D3BCL-C2.json │ │ │ ├── FTLX8574D3BCL-C3.json │ │ │ └── FTRX-1411M3.json │ │ │ ├── 1G │ │ │ ├── FCLF852xP2BTL.json │ │ │ ├── FTLF1318P2BCL.json │ │ │ ├── FTLF1318P2BTL.json │ │ │ ├── FTLF1318P3BTL.json │ │ │ ├── FTLF8519P2BCL.json │ │ │ ├── FTLF8519PnxyL.json │ │ │ ├── FTR1319P5A.json │ │ │ ├── FTRJ13197D.json │ │ │ ├── FTRJ1319P1BTL.json │ │ │ ├── FTRJ1323P1BTR.json │ │ │ ├── FTRJ15197D.json │ │ │ ├── FTRJ1519P1BCL.json │ │ │ ├── FTRJ85197D.json │ │ │ ├── FTRJ8519P1BNL.json │ │ │ ├── FWDM16217D.json │ │ │ ├── GLC-EX-SMD.json │ │ │ ├── GPB-3524L-L2CD.json │ │ │ └── SFP_LH.json │ │ │ └── 40G │ │ │ ├── QSFP-H40G-AOC1M.json │ │ │ └── QSFP-H40G-AOC7M.json │ ├── Floor.json │ ├── Force10 │ │ └── S │ │ │ ├── S25N.json │ │ │ ├── S50-01-10GE-2C.json │ │ │ ├── S50-01-10GE-2P.json │ │ │ ├── S50-01-12G-2S.json │ │ │ ├── S50-01-24G-1S.json │ │ │ ├── S50-01-LSC-12G.json │ │ │ ├── S50-01-LSC-24G.json │ │ │ ├── S50-01-SSC-12G.json │ │ │ ├── S50-01-SSC-24G.json │ │ │ └── S50N.json │ ├── Gateray │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── GR-SP10-W2710L-D.json │ │ │ ├── GR-SP10-W2720L-D.json │ │ │ ├── GR-SP10-W2740L-D.json │ │ │ ├── GR-SP10-W3310L-D.json │ │ │ ├── GR-SP10-W3320L-D.json │ │ │ ├── GR-SP10-W3340L-D.json │ │ │ ├── GR-SP10-X3110L-D.json │ │ │ └── GR-XF-W2740L-D.json │ │ │ └── 1G │ │ │ ├── GR-S1-M312L-D.json │ │ │ ├── GR-S1-M8505L-D.json │ │ │ ├── GR-S1-RJ.json │ │ │ ├── GR-S1-W3110L-D.json │ │ │ ├── GR-S1-W3120L-D.json │ │ │ ├── GR-S1-W3120S-D.json │ │ │ ├── GR-S1-W313S-D.json │ │ │ ├── GR-S1-W3140L-D.json │ │ │ ├── GR-S1-W4980L-D.json │ │ │ ├── GR-S1-W5510L-D.json │ │ │ ├── GR-S1-W5520L-D.json │ │ │ ├── GR-S1-W5520S.json │ │ │ ├── GR-S1-W553S-D.json │ │ │ ├── GR-S1-W5540L-D.json │ │ │ ├── GR-S1-W5580L-D.json │ │ │ ├── GR-S1-X3110L-D.json │ │ │ └── GR-S1-X3120L-D.json │ ├── Generic │ │ ├── AP.json │ │ ├── CPE │ │ │ └── ONT.json │ │ ├── OTN │ │ │ ├── Alien_Lambda_Combined_C_.json │ │ │ └── Alien_Lambda_Split_C_.json │ │ └── Transceiver │ │ │ ├── CFP.json │ │ │ ├── CFP2.json │ │ │ ├── GBIC.json │ │ │ ├── QSFP+.json │ │ │ ├── QSFP28.json │ │ │ ├── SFP+.json │ │ │ ├── SFP.json │ │ │ └── XFP.json │ ├── GigaLink │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── GL-OT-ST05LC2-08.json │ │ │ └── 1G │ │ │ ├── GL-OT-SG14SC1-1550-D.json │ │ │ └── GL-OT-SGRJ45.json │ ├── Group.json │ ├── HG_Genuine │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── MTRS-02X13-G02X13-G.json │ │ │ └── 1G │ │ │ └── MXPD-243S.json │ ├── HiSilicon │ │ └── Transceiver │ │ │ └── GPON │ │ │ ├── SSX1T1LTB.json │ │ │ └── SSX1T1LTD.json │ ├── Hillton │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── SFP-03-1310WDM.json │ │ │ ├── SFP-03-1550WDM.json │ │ │ ├── SFP-20-1310WDM.json │ │ │ └── SFP-20-1550WDM.json │ ├── Hisense │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── LTF1303-BH+.json │ │ │ └── GPON │ │ │ ├── LTE3680M-BC+.json │ │ │ ├── LTE3680P-BC+1.json │ │ │ ├── LTE3680P-BC+1DM.json │ │ │ ├── LTE3680P-BC+2.json │ │ │ ├── LTE3680P-BC+2DM.json │ │ │ └── LTE4302M-BC+DM.json │ ├── Huawei │ │ ├── AR_1200 │ │ │ ├── AR1220.json │ │ │ ├── AR1220C.json │ │ │ ├── AR1220E.json │ │ │ ├── AR1220F.json │ │ │ ├── AR1220S.json │ │ │ ├── AR1220V.json │ │ │ ├── AR1220VW.json │ │ │ ├── AR1220W.json │ │ │ └── SAE220.json │ │ ├── AR_2240 │ │ │ ├── AR01PSAC35.json │ │ │ ├── AR2240-CHASSIS.json │ │ │ ├── AR2240-FAN.json │ │ │ ├── AR2240-SRU40.json │ │ │ ├── PAC-350WB-L.json │ │ │ └── SAE550.json │ │ ├── CX200-CX300 │ │ │ ├── CX200D.json │ │ │ ├── CX300A.json │ │ │ ├── CX31E2GFET.json │ │ │ ├── CX31SCUB.json │ │ │ └── CX31T8CE1B.json │ │ ├── CX600-X1-X2 │ │ │ ├── CR51L4XFD0.json │ │ │ ├── CX600-X1-M4_FAN.json │ │ │ ├── CX600-X1-M4_PSU.json │ │ │ ├── CX600-X2-M8_DC_PSU.json │ │ │ ├── CX600-X2-M8_FAN.json │ │ │ ├── CX67E8GFA0.json │ │ │ ├── MPUG.json │ │ │ ├── MPUK.json │ │ │ ├── NPU-120.json │ │ │ └── NPU-240.json │ │ ├── CX600 │ │ │ ├── CX600-X1-M4.json │ │ │ ├── CX600-X16.json │ │ │ ├── CX600-X2-M8.json │ │ │ ├── CX600-X3A.json │ │ │ └── CX600-X8.json │ │ ├── CX_NE │ │ │ ├── CX600-X3A_DC_PSU.json │ │ │ ├── CX600-X3A_FAN.json │ │ │ ├── CX600-X8_DC_PSU.json │ │ │ ├── CX600-X8_FAN.json │ │ │ ├── CX6D0MPUD470.json │ │ │ ├── LPUF-100.json │ │ │ ├── LPUF-120.json │ │ │ ├── LPUF-40-A.json │ │ │ ├── LPUF-40-B.json │ │ │ ├── LPUF-51-A.json │ │ │ ├── LPUI-120_12x10GBase_LAN_WAN-SFP+_-A.json │ │ │ ├── LPUI-51-B_5x10GBase_LAN_WAN-SFP+.json │ │ │ ├── LPUI-51-E_5x10GBase_LAN_WAN-SFP+_-E.json │ │ │ ├── LPUI-51_4x10GBase_LAN_WAN-SFP+_-E.json │ │ │ ├── MPUB4.json │ │ │ ├── P100-24xGE_FE-SFP.json │ │ │ ├── P100-5x10GBase_LAN_WAN-SFP+_-A.json │ │ │ ├── P101-6x10GBase_LAN_WAN-SFP+_-A.json │ │ │ ├── P120-6x10GBase_LAN_WAN-SFP+_-A.json │ │ │ ├── P40-20xGE_FE-SFP-A.json │ │ │ ├── P40-20xGE_FE-SFP.json │ │ │ ├── P40-2x10GBase LAN_WAN-XFP-A.json │ │ │ ├── P40-2x10GBase_LAN_WAN-XFP.json │ │ │ ├── P51-2x10GBase LAN_WAN-SFP-A.json │ │ │ ├── P51-5x10GBase LAN_WAN-SFP+ -A.json │ │ │ ├── SFUI-100-D.json │ │ │ ├── SFUI-200-B.json │ │ │ ├── SFUI-200-C.json │ │ │ ├── SFUI-40-B.json │ │ │ ├── SFUI-40-C.json │ │ │ ├── SRUA4.json │ │ │ ├── SRUA5.json │ │ │ └── SRUA7.json │ │ ├── CloudEngine │ │ │ ├── CE5850-48T4S2Q-HI.json │ │ │ ├── CE6850-48T6Q-HI.json │ │ │ ├── CE6851-48S6Q-HI.json │ │ │ ├── FAN-060A-B.json │ │ │ ├── FAN-40EA-B.json │ │ │ ├── PAC-600WA-B.json │ │ │ ├── PAC-600WB-B.json │ │ │ ├── PAC1000S56-CB.json │ │ │ ├── PAC1000S56-DB.json │ │ │ ├── PAC600S12-CB.json │ │ │ ├── PAC600S12-EB.json │ │ │ ├── PDC1000S12-DB.json │ │ │ ├── S5731-S24P4X.json │ │ │ ├── S5731-S48P4X.json │ │ │ ├── S6330-H24X6C.json │ │ │ ├── S6330-H48X6C.json │ │ │ ├── S6730-H24X6C.json │ │ │ └── S6730-H48X6C.json │ │ ├── Quidway │ │ │ └── Fan_Module.json │ │ ├── Quidway_S2300 │ │ │ ├── PSC500-A.json │ │ │ ├── S2309TP-EI-AC.json │ │ │ ├── S2309TP-EI-DC.json │ │ │ ├── S2309TP-PWR-EI.json │ │ │ ├── S2309TP-SI-AC.json │ │ │ ├── S2318TP-EI-AC.json │ │ │ ├── S2318TP-SI-AC.json │ │ │ ├── S2326TP-EI-AC.json │ │ │ ├── S2326TP-EI-DC.json │ │ │ ├── S2326TP-PWR-EI.json │ │ │ ├── S2326TP-SI-AC.json │ │ │ ├── S2328P-EI-AC.json │ │ │ ├── S2328TP-EI-AC.json │ │ │ ├── S2350-28TP-EI-AC.json │ │ │ └── S2352P-EI-AC.json │ │ ├── Quidway_S3300 │ │ │ ├── S3328TP-EI-24S-AC.json │ │ │ ├── S3328TP-EI-24S-DC.json │ │ │ ├── S3328TP-EI-AC.json │ │ │ ├── S3328TP-EI-DC.json │ │ │ ├── S3328TP-SI-AC.json │ │ │ └── S3352P-SI-AC.json │ │ ├── Quidway_S3700 │ │ │ └── S3700-52P-SI-AC.json │ │ ├── Quidway_S5300 │ │ │ ├── CX22ETPB.json │ │ │ ├── E2XX-2-Port_10GE_XFP_subcard.json │ │ │ ├── E2XY-2-Port_10GE_SFP+_subcard.json │ │ │ ├── E4GF-4-Port_GE_SFP_subcard.json │ │ │ ├── E4XY-4-Port_10GE_SFP+_subcard.json │ │ │ ├── ETPC-Stack_Rear_Subcard.json │ │ │ ├── PSU_AC.json │ │ │ ├── PSU_DC_100W.json │ │ │ ├── PSU_DC_170W.json │ │ │ ├── S5300-10P-LI-AC.json │ │ │ ├── S5300-28P-LI-AC.json │ │ │ ├── S5300-28X-LI-24S-AC.json │ │ │ ├── S5300-28X-LI-24S-DC.json │ │ │ ├── S5320-28X-LI-24S-DC.json │ │ │ ├── S5320-32C-HI-24S.json │ │ │ ├── S5320-36C-EI-28S-DC.json │ │ │ ├── S5320-36C-EI-DC.json │ │ │ ├── S5328C-EI-24S.json │ │ │ ├── S5328C-EI.json │ │ │ ├── S5328C-HI-24S.json │ │ │ ├── S5328C-HI.json │ │ │ ├── S5328C-SI.json │ │ │ ├── S5352C-EI.json │ │ │ ├── S5624P.json │ │ │ ├── Stack_cable.json │ │ │ ├── X2S-2-Port_10GE_SFP+_subcard.json │ │ │ ├── X4S-4-Port_10GE_SFP+_subcard.json │ │ │ └── X4SA-4-Port_10GE_SFP+_subcard.json │ │ ├── Quidway_S5700 │ │ │ ├── E4GF-4-Port_GE_SFP_subcard.json │ │ │ ├── ETPC-Stack_Rear_Subcard.json │ │ │ ├── Fan_Module.json │ │ │ ├── PSU_AC.json │ │ │ ├── PSU_DC.json │ │ │ └── S5700-28C-EI-24S.json │ │ ├── S12700 │ │ │ ├── CMU.json │ │ │ ├── FAN-770A-B.json │ │ │ ├── LST7C24HX6E0.json │ │ │ ├── LST7G48TX5E1.json │ │ │ ├── LST7X48SX6E0.json │ │ │ ├── MPU.json │ │ │ ├── S12700E-4.json │ │ │ └── SFU.json │ │ ├── S8500 │ │ │ ├── LSB1GP12CA0.json │ │ │ ├── LSB1GP24CA0.json │ │ │ ├── LSB1GT24CA0.json │ │ │ ├── LSB1GT8PCA0.json │ │ │ ├── LSB1SRP1M0.json │ │ │ ├── LSB1SRP1N2.json │ │ │ ├── LSB1VPNB.json │ │ │ ├── LSB1XK1CA0.json │ │ │ ├── LSB1XP2CA0.json │ │ │ ├── LSBSRP1N1.json │ │ │ ├── S8505.json │ │ │ └── S8508.json │ │ ├── S9300 │ │ │ ├── 1600W_DC_PSU.json │ │ │ ├── CMU.json │ │ │ ├── LE02G24SC.json │ │ │ ├── LE02G24SD.json │ │ │ ├── LE02G24TFA.json │ │ │ ├── LE02G48CEAT.json │ │ │ ├── LE02G48SA.json │ │ │ ├── LE02G48SC.json │ │ │ ├── LE02G48SD.json │ │ │ ├── LE02G48TA.json │ │ │ ├── LE02G48TC.json │ │ │ ├── LE02S24XA.json │ │ │ ├── LE02S24XC.json │ │ │ ├── LE02T24XA.json │ │ │ ├── LE02X12SA.json │ │ │ ├── LE02X16SFC.json │ │ │ ├── LE02X2UXA.json │ │ │ ├── LE02X2UXC.json │ │ │ ├── LE02X4UXC.json │ │ │ ├── LE0DMCUA.json │ │ │ ├── LE0MFSUA.json │ │ │ ├── LE0MX4UXA.json │ │ │ ├── MCUA.json │ │ │ ├── S9300_FAN.json │ │ │ ├── S9300_FAN_(WV).json │ │ │ ├── S9303-POE.json │ │ │ ├── S9303.json │ │ │ ├── S9306-POE.json │ │ │ ├── S9306.json │ │ │ ├── S9312.json │ │ │ ├── SRUA.json │ │ │ └── SRUB.json │ │ ├── SmartAX │ │ │ ├── MA5105.json │ │ │ ├── MA5600.json │ │ │ ├── MA5600 │ │ │ │ ├── H531E2GA.json │ │ │ │ ├── H531O2GS.json │ │ │ │ ├── H531O4GS.json │ │ │ │ ├── H561ADBF.json │ │ │ │ ├── H561E4GFA.json │ │ │ │ ├── H561SCUB.json │ │ │ │ ├── H561SCUK.json │ │ │ │ ├── H561SHEA.json │ │ │ │ ├── H563ADEF.json │ │ │ │ ├── H563ADGE.json │ │ │ │ ├── H565ADBF.json │ │ │ │ ├── H565ADEE.json │ │ │ │ ├── H565ADEF.json │ │ │ │ ├── H565VDEA.json │ │ │ │ ├── H568ADGE.json │ │ │ │ ├── H569ADEE.json │ │ │ │ └── H569SHEB.json │ │ │ ├── MA5600T-ETSI.json │ │ │ ├── MA5600T-IEC.json │ │ │ ├── MA5603.json │ │ │ ├── MA5603T.json │ │ │ ├── MA5605.json │ │ │ ├── MA5605 │ │ │ │ ├── H521MFCE.json │ │ │ │ ├── H521MFEA.json │ │ │ │ ├── H521MFEB.json │ │ │ │ ├── H521MGOA.json │ │ │ │ ├── H522MFCE.json │ │ │ │ └── H523ADCE.json │ │ │ ├── MA5608T.json │ │ │ ├── MA560xT │ │ │ │ ├── H801ASPB.json │ │ │ │ ├── H801FCBB.json │ │ │ │ ├── H801FLBA.json │ │ │ │ ├── H801FMCA.json │ │ │ │ ├── H801GICE.json │ │ │ │ ├── H801GPBC.json │ │ │ │ ├── H801MCUD1.json │ │ │ │ ├── H801MPWC.json │ │ │ │ ├── H801SCUB.json │ │ │ │ ├── H801SCUH.json │ │ │ │ ├── H801SCUK.json │ │ │ │ ├── H801SCUL.json │ │ │ │ ├── H801SCUN.json │ │ │ │ ├── H801SCUV.json │ │ │ │ ├── H802ADQD.json │ │ │ │ ├── H802GPBD.json │ │ │ │ ├── H802GPFD.json │ │ │ │ ├── H802SCUB.json │ │ │ │ ├── H802SCUN.json │ │ │ │ ├── H802X2CS.json │ │ │ │ ├── H805ADPD.json │ │ │ │ ├── H805GPBD.json │ │ │ │ ├── H805GPFD.json │ │ │ │ ├── H805VDMF.json │ │ │ │ ├── H806GPBH.json │ │ │ │ ├── H806GPFD.json │ │ │ │ ├── H807GPBH.json │ │ │ │ ├── H808ASPB.json │ │ │ │ ├── H831FCBB0.json │ │ │ │ ├── Universal_interface_board │ │ │ │ │ └── H801CITD.json │ │ │ │ └── Upstream_interface_board │ │ │ │ │ ├── H801GICD.json │ │ │ │ │ ├── H801GICF.json │ │ │ │ │ ├── H801GICG.json │ │ │ │ │ ├── H801X2CA.json │ │ │ │ │ ├── H801X2CS.json │ │ │ │ │ └── H803X2CK.json │ │ │ ├── MA5616.json │ │ │ ├── MA5616 │ │ │ │ ├── H831CCUB.json │ │ │ │ ├── H831CCUC.json │ │ │ │ ├── H831CCUE.json │ │ │ │ ├── H831GE1A.json │ │ │ │ ├── H831PAIB.json │ │ │ │ ├── H831PDIA.json │ │ │ │ ├── H832PDVAA.json │ │ │ │ ├── H835ADLE.json │ │ │ │ ├── H835VDSE.json │ │ │ │ ├── H836ADLE.json │ │ │ │ ├── H836ADPE.json │ │ │ │ ├── H836ASDA.json │ │ │ │ ├── H836ASDC.json │ │ │ │ ├── H836CCME.json │ │ │ │ ├── H836VPBA.json │ │ │ │ ├── H837ASPB.json │ │ │ │ ├── H838ASPB.json │ │ │ │ ├── H838ASRB.json │ │ │ │ ├── H839ASPB.json │ │ │ │ ├── H83BCVLC.json │ │ │ │ ├── H83BVCLE.json │ │ │ │ ├── H83BVDLE.json │ │ │ │ ├── H83DCCME.json │ │ │ │ ├── H83E1FCBA.json │ │ │ │ └── H83E1FCBB.json │ │ │ ├── MA5616_H831MABA.json │ │ │ ├── MA5626G.json │ │ │ ├── MA5800-X2.json │ │ │ ├── MA5800 │ │ │ │ ├── H901MPSA-G.json │ │ │ │ ├── H901PISA.json │ │ │ │ ├── H902GPHF.json │ │ │ │ ├── H90F1FMSA.json │ │ │ │ └── H921PICA.json │ │ │ ├── MA5801-GP16.json │ │ │ └── MA5801-GP8.json │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── CAB-10G-CU5M.json │ ├── IRE-Polus │ │ └── Horizon │ │ │ ├── Amplifier │ │ │ ├── FRA-H4.json │ │ │ ├── HRA2-H8.json │ │ │ ├── HRA2B-H8.json │ │ │ ├── RA1-H4.json │ │ │ └── RA2-H4.json │ │ │ ├── BS-1-1-H4.json │ │ │ ├── CU-H5.json │ │ │ ├── EAU │ │ │ ├── EAU-2x_40V_18+100_12_-OSC-H8.json │ │ │ ├── EAU-P-100V_18-OSC_1511_-C4-H4.json │ │ │ └── EAU-_40V_24+350V_18_-OSC-H8.json │ │ │ ├── FANC-LOGIC_9067-1000-0030.json │ │ │ ├── FB-K4.json │ │ │ ├── HS-H8.json │ │ │ ├── K10-H8.json │ │ │ ├── K4-H8.json │ │ │ ├── Mux_Demux │ │ │ ├── FS-2-1_12-1550-H4.json │ │ │ ├── IL-2-50_100-C-M-H4.json │ │ │ ├── IL-2-50_100-C-M-OSC_1511_-H8.json │ │ │ ├── OADM-16V_16-100-M-S21-OSC_1511_VP-H8.json │ │ │ ├── OADM-4V_4-100-M-S21-OSC_1511_VP-H4.json │ │ │ ├── OADM-8V_8-100-M-S21-OSC_1511_VP-H4.json │ │ │ ├── OD-40-100-C21-OSC_1511_-H8.json │ │ │ ├── OD-40-100-H21-OSC_1511_-H8.json │ │ │ ├── OD-96-50-H13-OSC_1511_-H8.json │ │ │ ├── OM-40V-100-C21-OSC_1511_-H8.json │ │ │ ├── OM-40V-100-H21-OSC_1511_-H8.json │ │ │ ├── OM-96-50-H13-OSC_1511_VP-H8.json │ │ │ ├── ROADM-2-100-C-50-H8.json │ │ │ ├── ROADM-2x9-S-F-OCM-H8.json │ │ │ └── ROADM-9-C-F-OCM-OSC_1511_-B_50_14_-P_175_18_-H8.json │ │ │ ├── OPM-2-C-H4.json │ │ │ ├── OPM-4-C-H4.json │ │ │ ├── PEM-H3.json │ │ │ ├── PEM_9067-1000-0011.json │ │ │ ├── RLM-EXT-H4.json │ │ │ ├── RLM-H4.json │ │ │ └── Transponders │ │ │ ├── ADM-10.json │ │ │ ├── ADM-200.json │ │ │ ├── ATP-2x200.json │ │ │ └── ATP-2x600.json │ ├── Intel │ │ └── Transceiver │ │ │ └── 10G │ │ │ ├── SFP-10G-LR.json │ │ │ └── SFP-10G-SR.json │ ├── Iskratel │ │ ├── SI2000 │ │ │ └── SGN.json │ │ └── SI3000 │ │ │ ├── SAK_SBB1043DA.json │ │ │ ├── SGN_SBB1049AD.json │ │ │ ├── SGR_SBB1908AA.json │ │ │ ├── SGT-32.json │ │ │ └── SGT_SBB1908BA.json │ ├── Juniper │ │ ├── EX │ │ │ ├── 2x-10GE-XFP.json │ │ │ ├── ACX1000.json │ │ │ ├── EX-PWR-190-DC.json │ │ │ ├── EX-PWR-320-AC.json │ │ │ ├── EX-UM-2X4SFP.json │ │ │ ├── EX-UM-4SFP.json │ │ │ ├── EX-UM-4X4SFP.json │ │ │ ├── EX2200-24P-4G.json │ │ │ ├── EX2200-24T-4G.json │ │ │ ├── EX2200-48P-4G.json │ │ │ ├── EX2200-48T-4G.json │ │ │ ├── EX2200-C-12P-2G.json │ │ │ ├── EX2200-C-12T-2G.json │ │ │ ├── EX3200-24T.json │ │ │ ├── EX3300-24P.json │ │ │ ├── EX3300-24T-DC.json │ │ │ ├── EX3300-24T.json │ │ │ ├── EX3300-48P.json │ │ │ ├── EX3300-48T.json │ │ │ ├── EX3400-48P.json │ │ │ ├── EX4200-24F.json │ │ │ ├── EX4200-24T.json │ │ │ ├── EX4200-48T.json │ │ │ ├── EX4300-24T.json │ │ │ ├── EX4300-32F.json │ │ │ ├── EX4300-48T.json │ │ │ ├── EX4500-40F.json │ │ │ ├── EX4500-LB.json │ │ │ ├── EX4500-PWR1-AC-FB.json │ │ │ ├── EX4500-PWR1-DC.json │ │ │ ├── EX4500-UM-4XSFP.json │ │ │ ├── EX4500-VC1-128G.json │ │ │ ├── EX4550-32F.json │ │ │ ├── EX4550-VC1-128G.json │ │ │ ├── EX4600-40F.json │ │ │ ├── EX8200-2XS-40T.json │ │ │ ├── EX8200-40XS.json │ │ │ ├── EX8200-48F.json │ │ │ ├── EX8200-48T.json │ │ │ ├── EX8200-8XS.json │ │ │ ├── EX8200-PWR-AC2K.json │ │ │ ├── EX8200-PWR-AC3K.json │ │ │ ├── EX8200-PWR-DC2KR.json │ │ │ ├── EX8200-PWR-DC3KR.json │ │ │ ├── EX8208-FAN.json │ │ │ ├── EX8208-FPM.json │ │ │ ├── EX8208-SF320.json │ │ │ ├── EX8208-SRE320.json │ │ │ ├── EX8208_Chassis.json │ │ │ ├── EX8216-FAN.json │ │ │ ├── EX8216-RE320.json │ │ │ ├── EX8216-SF320.json │ │ │ ├── EX8216_Chassis.json │ │ │ ├── EX9200-32XS.json │ │ │ ├── EX9200-40F-PIC-20GE-SFP.json │ │ │ ├── EX9200-40F.json │ │ │ ├── EX9200-40XS.json │ │ │ ├── EX9200-RE.json │ │ │ ├── EX9200-RE2.json │ │ │ ├── EX9200-SCBE.json │ │ │ ├── EX9200-SF.json │ │ │ ├── EX9200-SF2.json │ │ │ ├── EX9204-FPM.json │ │ │ ├── EX9204_Chassis.json │ │ │ ├── EX9208_Chassis.json │ │ │ ├── EX9214_Chassis.json │ │ │ ├── JPSU-350-AC-AFO-A.json │ │ │ ├── JPSU-650W-AC-AFI.json │ │ │ ├── JPSU-650W-AC-AFO.json │ │ │ ├── JPSU-650W-DC-AFI.json │ │ │ ├── JPSU-650W-DC-AFO.json │ │ │ ├── JPSU-920W-AC-AFO.json │ │ │ └── RE-S-EX9200-1800X4.json │ │ ├── J │ │ │ ├── J2320.json │ │ │ └── J4350.json │ │ ├── MX │ │ │ ├── CPU.json │ │ │ ├── CRAFT-MX240-S.json │ │ │ ├── CRAFT-MX480-S.json │ │ │ ├── CRAFT-MX960-S.json │ │ │ ├── DPCE-R-20GE-2XGE.json │ │ │ ├── DPCE-R-40GE-SFP.json │ │ │ ├── DPCE-R-40GE-TX.json │ │ │ ├── DPCE-R-4XGE-XFP.json │ │ │ ├── DPCE-R-Q-40GE-SFP.json │ │ │ ├── DPCE-X-40GE-SFP.json │ │ │ ├── DPCE-X-Q-40GE-SFP.json │ │ │ ├── FANTRAY-MX104-S.json │ │ │ ├── FFANTRAY-MX240-HC-S.json │ │ │ ├── FFANTRAY-MX240.json │ │ │ ├── FFANTRAY-MX480-HC-S.json │ │ │ ├── FFANTRAY-MX960-HC.json │ │ │ ├── MIC-3D-20GE-SFP-E.json │ │ │ ├── MIC-3D-20GE-SFP.json │ │ │ ├── MIC-3D-2XGE-XFP.json │ │ │ ├── MIC-3D-4COC3-1COC12-CE.json │ │ │ ├── MIC-3D-4XGE-XFP.json │ │ │ ├── MIC3-3D-10XGE-SFPP.json │ │ │ ├── MIC3-3D-2X40GE-QSFPP.json │ │ │ ├── MPC-3D-16XGE-SFPP.json │ │ │ ├── MPC3E-3D-NG.json │ │ │ ├── MPC4E-3D-2CGE-8XGE.json │ │ │ ├── MPC4E-3D-32XGE-SFPP.json │ │ │ ├── MS-DPC.json │ │ │ ├── MS-MIC-16G.json │ │ │ ├── MX-MPC-QXM.json │ │ │ ├── MX-MPC1-3D.json │ │ │ ├── MX-MPC1E-3D.json │ │ │ ├── MX-MPC2-3D-EQ.json │ │ │ ├── MX-MPC2-3D.json │ │ │ ├── MX-MPC2E-3D-EQ.json │ │ │ ├── MX-MPC2E-3D-P.json │ │ │ ├── MX-MPC2E-3D-Q.json │ │ │ ├── MX-MPC2E-3D.json │ │ │ ├── MX104.json │ │ │ ├── MX204.json │ │ │ ├── MX240_Chassis.json │ │ │ ├── MX480_Chassis.json │ │ │ ├── MX80-P.json │ │ │ ├── MX80-T.json │ │ │ ├── MX80.json │ │ │ ├── MX960_Chassis.json │ │ │ ├── PWR-MX104-AC-S.json │ │ │ ├── PWR-MX104-DC-S.json │ │ │ ├── PWR-MX480-1200-AC.json │ │ │ ├── PWR-MX480-1600-DC-S.json │ │ │ ├── PWR-MX480-2400-DC-S.json │ │ │ ├── PWR-MX480-2520-AC-S.json │ │ │ ├── PWR-MX80-AC-S.json │ │ │ ├── PWR-MX80-DC-S.json │ │ │ ├── PWR-MX960-4100-AC.json │ │ │ ├── PWR-MX960-4100-DC-S.json │ │ │ ├── PWR-MX960-DC-S.json │ │ │ ├── RE-S-1300-2048.json │ │ │ ├── RE-S-1800X4-16G-S.json │ │ │ ├── RE-S-1800X4-32G-S.json │ │ │ ├── RE-S-1800X4-8G-S.json │ │ │ ├── RE-S-2000-4096-S.json │ │ │ ├── RE-S-MX104-S.json │ │ │ ├── RE-S-X6-64G.json │ │ │ ├── SCB-MX204.json │ │ │ ├── SCB-MX960.json │ │ │ ├── SCBE-MX-S.json │ │ │ ├── SCBE2-MX-S.json │ │ │ └── SCBE3-MX-S.json │ │ ├── QFX │ │ │ └── QFX5100-48S-6Q.json │ │ ├── SRX │ │ │ ├── SRX210B.json │ │ │ ├── SRX210HE.json │ │ │ ├── SRX240H.json │ │ │ └── SRX240H2.json │ │ └── Transceiver │ │ │ ├── 100G │ │ │ └── CFP-GEN2-100GBASE-LR4.json │ │ │ ├── 10G │ │ │ ├── EX-SFP-10GE-DAC-1M.json │ │ │ ├── SFP+-10G-ER.json │ │ │ ├── SFP+-10G-LR.json │ │ │ ├── SFP+-10G-SR.json │ │ │ ├── SFP+-10G-USR.json │ │ │ ├── XFP-10G-ER.json │ │ │ ├── XFP-10G-LR.json │ │ │ ├── XFP-10G-SR.json │ │ │ └── XFP-10G-ZR.json │ │ │ ├── 1G │ │ │ ├── SFP_BX10D.json │ │ │ ├── SFP_BX10U.json │ │ │ ├── SFP_BXD.json │ │ │ ├── SFP_BXU.json │ │ │ ├── SFP_EX.json │ │ │ ├── SFP_LH.json │ │ │ ├── SFP_LX10.json │ │ │ ├── SFP_SX.json │ │ │ └── SFP_T.json │ │ │ ├── 40G │ │ │ ├── QSFP+-40G-CU1M.json │ │ │ └── QSFP+-40G-CU50CM.json │ │ │ └── SFP_OC3_IR.json │ ├── Linksys │ │ └── SPS2xx │ │ │ └── SPS-224G4.json │ ├── Lost_Found.json │ ├── Luxshare-ICT │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── L99SF014-SD-H.json │ ├── MELLANOX │ │ └── Transceiver │ │ │ └── 10G │ │ │ ├── MC3309130-002.json │ │ │ └── MC3309130-003.json │ ├── Maipu │ │ ├── NSS3530 │ │ │ ├── NSS3530-30TXF.json │ │ │ └── NSS3530-54TXP.json │ │ ├── NSS4330 │ │ │ └── NSS4330-32TXP.json │ │ └── NSS5930 │ │ │ └── NSS5930-56SQFP.json │ ├── MergeOptics │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── 10119467-3030LF.json │ ├── Methode │ │ └── Transceiver │ │ │ └── 1G │ │ │ └── SFP_T.json │ ├── MikroTik │ │ ├── RouterBoard │ │ │ ├── CCR1009-7G-1C-1S+.json │ │ │ ├── CCR1036-8G-2S+.json │ │ │ ├── CCR1072-1G-8S+.json │ │ │ ├── CRS125-24G-1S.json │ │ │ ├── CRS326-24G-2S+.json │ │ │ ├── RB2011UiAS-2HnD.json │ │ │ └── RB2011UiAS.json │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── S+RJ10.json │ │ │ └── 1G │ │ │ └── S-RJ01.json │ ├── MlaxLink │ │ └── Transceiver │ │ │ ├── 100M │ │ │ └── ML-09R.json │ │ │ └── 1G │ │ │ ├── ML-10R.json │ │ │ ├── ML-30RLC.json │ │ │ ├── ML-30T.json │ │ │ ├── ML-30TLC.json │ │ │ └── ML-712G.json │ ├── ModulTech │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── SFPpWDM2320LRCD.json │ │ │ └── 1G │ │ │ ├── MT-E-GB-P1RC.json │ │ │ ├── MT-PB-3524S-03C.json │ │ │ └── MT-PB-3524S-L4C.json │ ├── Moxa │ │ ├── Switch │ │ │ └── EDS-P510A-8PoE-2GTXSFP-T.json │ │ └── UC-8112-LX-STK.json │ ├── NAG │ │ ├── DCS │ │ │ ├── DCS-3950-10C.json │ │ │ ├── DCS-3950-26C.json │ │ │ ├── DCS-3950-28C.json │ │ │ └── DCS-4500-24F.json │ │ └── SNR │ │ │ ├── SNR-S2940-8G-v2.json │ │ │ ├── SNR-S2940-8G.json │ │ │ ├── SNR-S2950-24G.json │ │ │ ├── SNR-S2960-24G.json │ │ │ ├── SNR-S2962-24T.json │ │ │ ├── SNR-S2965-24T.json │ │ │ ├── SNR-S2965-48T.json │ │ │ ├── SNR-S2965-8T.json │ │ │ ├── SNR-S2980G-24F.json │ │ │ ├── SNR-S2980G-8T.json │ │ │ ├── SNR-S2982G-24TE.json │ │ │ ├── SNR-S2985G-24T-POE-E.json │ │ │ ├── SNR-S2985G-24T-POE.json │ │ │ ├── SNR-S2985G-24T-UPS.json │ │ │ ├── SNR-S2985G-24TC.json │ │ │ ├── SNR-S2985G-8T.json │ │ │ ├── SNR-S2989G-24TX.json │ │ │ ├── SNR-S2989G-8TX.json │ │ │ ├── SNR-S2990-16X.json │ │ │ ├── SNR-S2990G-24FX.json │ │ │ ├── SNR-S2990G-24T.json │ │ │ ├── SNR-S2990G-48T.json │ │ │ ├── SNR-S2990G-48TX.json │ │ │ ├── SNR-S2990X-24FQ.json │ │ │ ├── SNR-S2995G-24FX.json │ │ │ ├── SNR-S2995G-48FX.json │ │ │ ├── SNR-S2995G-48TX-POE.json │ │ │ ├── SNR-S2995G-48TX.json │ │ │ ├── SNR-S300X-24FQ.json │ │ │ ├── SNR-S4550-24XQ-AC.json │ │ │ ├── SNR-S5210G-24TX.json │ │ │ └── SNR-S5210X-8F.json │ ├── Nateks │ │ ├── NetXpert │ │ │ ├── 3408-DC.json │ │ │ ├── 3408.json │ │ │ ├── NX-3424.json │ │ │ ├── NX-3424_V1c.json │ │ │ ├── NetXpert_NX-3408_V1.json │ │ │ └── NetXpert_NX-3424_V2.json │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── SFP-GE-RJ45-100.json │ │ │ ├── SFP-GE-SM-10KM.json │ │ │ ├── SFP-GE-SM-20KM-1315.json │ │ │ ├── SFP-GE-SM-20KM-1513.json │ │ │ ├── SFP-GE-SM-40KM-1315.json │ │ │ ├── SFP-GE-SM-40KM-1513.json │ │ │ ├── SFP-GE-SM-60KM-1315.json │ │ │ ├── SFP-GE-SM-60KM-1513.json │ │ │ ├── SFP-GE-SM-80KM-5157.json │ │ │ └── SFP-GE-SM-80KM-5751.json │ ├── Neophotonics │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── PT7420-82-1D-HW+.json │ │ │ ├── PT745F-81-1D.json │ │ │ ├── PT7620-81-1D-HW+.json │ │ │ ├── PT765F-81-2TD+.json │ │ │ └── PT765F-81-2TD.json │ │ │ ├── 1G │ │ │ ├── PT7320-51-1W-KHW.json │ │ │ ├── PT7320-52-1W+.json │ │ │ ├── PT7420-51-EW.json │ │ │ ├── PT7620-52-EW.json │ │ │ └── PTB3370-553CW-LC.json │ │ │ └── GPON │ │ │ └── PTB38J0-6538E-SC.json │ ├── Newstar │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── X2_LR.json │ ├── NoName │ │ ├── Patch │ │ │ ├── E2000-E2000_SMF_Simplex_Patch_Cord.json │ │ │ ├── LC-LC_SMF_Duplex_Patch_Cord.json │ │ │ ├── LC-LC_SMF_Simplex_Patch_Cord.json │ │ │ ├── Naked_Cable_5m.json │ │ │ └── RJ45-RJ45_Patch_Cord_5m.json │ │ ├── Rack │ │ │ ├── 19_18U_Wall-Mount_Cabinet.json │ │ │ ├── 19_24U_1000mm_Shelf.json │ │ │ ├── 19_42U_1000mm_Shelf.json │ │ │ ├── 19_44U_1000mm_Shelf.json │ │ │ ├── 19_48U_1000mm_Shelf.json │ │ │ └── 19_4U_Wall-Mount_Shelf.json │ │ └── Transceiver │ │ │ ├── 100G │ │ │ └── QSFP+_100G-CU3M.json │ │ │ ├── 100M │ │ │ ├── SFP_BX100D.json │ │ │ ├── SFP_BX100U.json │ │ │ └── SFP_FX.json │ │ │ ├── 10G │ │ │ ├── SFP+-10G-CU3M.json │ │ │ ├── SFP+SR.json │ │ │ ├── SFP+_ER.json │ │ │ ├── SFP+_LR.json │ │ │ ├── SFP+_SR.json │ │ │ ├── SFP+_Twinax.json │ │ │ ├── SFP+_USR.json │ │ │ ├── SFP+_ZR.json │ │ │ ├── SFP-H10GB-CU1M.json │ │ │ ├── XFP.json │ │ │ ├── XFP_ER.json │ │ │ ├── XFP_LR.json │ │ │ ├── XFP_SR.json │ │ │ └── XFP_ZR.json │ │ │ ├── 1G │ │ │ ├── GBIC_LH.json │ │ │ ├── GBIC_LX.json │ │ │ ├── GBIC_SX.json │ │ │ ├── GBIC_ZX.json │ │ │ ├── SFP.json │ │ │ ├── SFP_BX10D.json │ │ │ ├── SFP_BX10U.json │ │ │ ├── SFP_BXD.json │ │ │ ├── SFP_BXU.json │ │ │ ├── SFP_EX.json │ │ │ ├── SFP_LH.json │ │ │ ├── SFP_LX.json │ │ │ ├── SFP_SX.json │ │ │ ├── SFP_T.json │ │ │ ├── SFP_TX.json │ │ │ └── SFP_ZX.json │ │ │ ├── 40G │ │ │ └── QSFP+.json │ │ │ ├── QSFP+.json │ │ │ ├── SFP+.json │ │ │ ├── SFP.json │ │ │ ├── Unknown_SFP.json │ │ │ ├── Unknown_SFP │ │ │ └── Cisco.json │ │ │ └── XFP.json │ ├── Opticin │ │ └── Transceiver │ │ │ ├── 100M │ │ │ ├── SFP-155-WDM3_20.json │ │ │ └── SFP-155-WDM5_20.json │ │ │ └── 1G │ │ │ ├── SFP-BiDi-DDM3_03.json │ │ │ ├── SFP-BiDi-DDM3_20.json │ │ │ ├── SFP-BiDi-DDM3_60.json │ │ │ ├── SFP-BiDi-DDM5_03.json │ │ │ ├── SFP-BiDi-DDM5_20.json │ │ │ ├── SFP-BiDi-DDM5_60.json │ │ │ ├── SFP-BiDi3_03.json │ │ │ ├── SFP-BiDi3_20.json │ │ │ ├── SFP-BiDi5_03.json │ │ │ ├── SFP-BiDi5_20.json │ │ │ ├── SFP-CWDM31_60.json │ │ │ ├── SFP-CWDM33_60.json │ │ │ ├── SFP-CWDM35_60.json │ │ │ ├── SFP-CWDM37_60.json │ │ │ ├── SFP-CWDM39_60.json │ │ │ ├── SFP-CWDM41_60.json │ │ │ ├── SFP-CWDM43_60.json │ │ │ ├── SFP-CWDM45_60.json │ │ │ ├── SFP-CWDM47_60.json │ │ │ ├── SFP-CWDM49_60.json │ │ │ ├── SFP-CWDM51_60.json │ │ │ ├── SFP-CWDM53_60.json │ │ │ ├── SFP-CWDM55_60.json │ │ │ ├── SFP-CWDM57_60.json │ │ │ ├── SFP-CWDM59_60.json │ │ │ ├── SFP-CWDM61_60.json │ │ │ ├── SFP-LX_LC_20.json │ │ │ ├── SFP-RJ45.json │ │ │ ├── SFP-SX_LC_05.json │ │ │ ├── SFP-WDM1490_80.json │ │ │ ├── SFP-WDM1550_80.json │ │ │ ├── SFP-WDM37_36.json │ │ │ ├── SFP-WDM3_03.json │ │ │ ├── SFP-WDM3_10.json │ │ │ ├── SFP-WDM3_20.json │ │ │ ├── SFP-WDM3_40.json │ │ │ ├── SFP-WDM4_40.json │ │ │ ├── SFP-WDM4_60.json │ │ │ ├── SFP-WDM4_80.json │ │ │ ├── SFP-WDM51_36.json │ │ │ ├── SFP-WDM57_36.json │ │ │ ├── SFP-WDM5_03.json │ │ │ ├── SFP-WDM5_10.json │ │ │ ├── SFP-WDM5_20.json │ │ │ ├── SFP-WDM5_40.json │ │ │ ├── SFP-WDM5_60.json │ │ │ └── SFP-WDM5_80.json │ ├── Optostar │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── OP-MP413L1SN-10.json │ │ │ └── OP-MP413L1SN-20.json │ ├── Optronic │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── TBSF-13d-20-12gSC-3c.json │ │ │ ├── TBSF-13d-40-12gSC-3c.json │ │ │ ├── TBSF-15d-20-12gSC-3c.json │ │ │ ├── TBSF-15d-40-12gSC-3c.json │ │ │ └── TBSF15-3-12GSC-3I.json │ ├── Orion │ │ └── IOS │ │ │ └── Alpha-A10E.json │ ├── Owen │ │ └── InputModule │ │ │ ├── ME110-224.1M.json │ │ │ ├── MV110-16DN.json │ │ │ ├── MV110-224_8A.json │ │ │ └── MV210-101.json │ ├── Planet │ │ └── WGSD │ │ │ └── WGSD-1022.json │ ├── PoP │ │ ├── Access.json │ │ ├── Aggregation.json │ │ ├── Core.json │ │ ├── International.json │ │ ├── National.json │ │ └── Regional.json │ ├── Prolabs │ │ └── Transceiver │ │ │ └── 1G │ │ │ └── SFP-GE-L-C.json │ ├── Qtech │ │ ├── QFC │ │ │ ├── QFC-PBIC-LIGHT_V_2.json │ │ │ └── QFC-PBIC-LITE_V_3.json │ │ ├── QSW │ │ │ ├── QSW-2500E-10.json │ │ │ ├── QSW-2700-28.json │ │ │ ├── QSW-2800-10T-AC-RPS.json │ │ │ ├── QSW-2800-10T-AC.json │ │ │ ├── QSW-2800-10T-DC.json │ │ │ ├── QSW-2800-26T-AC.json │ │ │ ├── QSW-2800-28T-AC.json │ │ │ ├── QSW-2800-28T-M-AC.json │ │ │ ├── QSW-2850-10T-AC.json │ │ │ ├── QSW-2850-18T-AC.json │ │ │ ├── QSW-2850-28T-AC.json │ │ │ ├── QSW-2850-28T-DC.json │ │ │ ├── QSW-2900-24T.json │ │ │ ├── QSW-2910-10T-POE.json │ │ │ ├── QSW-2910-26T-POE.json │ │ │ ├── QSW-2910-28F.json │ │ │ ├── QSW-2910-28T-AC.json │ │ │ ├── QSW-2910-28T-POE.json │ │ │ ├── QSW-3200-28T.json │ │ │ ├── QSW-3400-10T-AC.json │ │ │ ├── QSW-3400-28T-AC.json │ │ │ ├── QSW-3400-28T-DC.json │ │ │ ├── QSW-3450-28T-AC.json │ │ │ ├── QSW-3450-28T-POE-AC.json │ │ │ ├── QSW-3450-28TX-AC.json │ │ │ ├── QSW-3450-28TX-POE-AC.json │ │ │ ├── QSW-3470-10T-AC.json │ │ │ ├── QSW-3470-10T-POE-AC.json │ │ │ ├── QSW-3470-28T-AC-POE.json │ │ │ ├── QSW-3470-28T-AC.json │ │ │ ├── QSW-3470-28T-DC.json │ │ │ ├── QSW-3470-28T-POE-AC.json │ │ │ ├── QSW-3470-52T-AC.json │ │ │ ├── QSW-3500-10T-AC.json │ │ │ ├── QSW-3500-28T-AC.json │ │ │ ├── QSW-3750-10T-AC.json │ │ │ ├── QSW-3750-10T-POE-AC.json │ │ │ ├── QSW-3750-18T-AC.json │ │ │ ├── QSW-3750-28T-AC.json │ │ │ ├── QSW-3750-28T-DC.json │ │ │ ├── QSW-3750-28T-POE-AC.json │ │ │ ├── QSW-3750-52T-AC.json │ │ │ ├── QSW-3900-24-SFP-DC.json │ │ │ ├── QSW-4610-10T-AC.json │ │ │ ├── QSW-4610-18T-AC.json │ │ │ ├── QSW-4610-28T-AC.json │ │ │ ├── QSW-4610-28T-DC.json │ │ │ ├── QSW-4610-28T-POE-AC.json │ │ │ ├── QSW-4610-52T-AC.json │ │ │ ├── QSW-8200-28F-AC-DC.json │ │ │ └── QSW-8200-28F-DC-DC.json │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── QSC-SFP10GE-1310.json │ │ │ ├── QSC-SFP10GEW-1550.json │ │ │ ├── QSC-SFP20GEW.json │ │ │ ├── QSC-SFP40GEW-1310.json │ │ │ ├── QSC-SFP40GEW-1550.json │ │ │ └── QSC-SFPGEA.json │ ├── Rack_Row.json │ ├── Raisecom │ │ ├── ROS │ │ │ ├── ISCOM2110EA-MA-PWR-AC.json │ │ │ ├── ISCOM2110EA-MA-PWR-DC.json │ │ │ ├── ISCOM2110EA-MA-WP.json │ │ │ ├── ISCOM2118EA-MA-AC.json │ │ │ ├── ISCOM2128EA-MA-AC.json │ │ │ ├── ISCOM2128EA-MA-DC.json │ │ │ ├── ISCOM2608G-2GE-AC.json │ │ │ ├── ISCOM2608G-2GE-PWR-AC.json │ │ │ ├── ISCOM2624G-4GE-AC.json │ │ │ ├── ISCOM2624G-4GE-PWR-AC.json │ │ │ ├── ISCOM2924GF-4C-ACD.json │ │ │ ├── ISCOM2924GF-4C-AC_DC.json │ │ │ ├── ISCOM2924GF-4C-DCD.json │ │ │ ├── ISCOM2924GF-4GE-ACD.json │ │ │ ├── ISCOM2924GF-4GE-AC_DC.json │ │ │ └── ISCOM2924GF-4GE-DCD.json │ │ └── Transceiver │ │ │ ├── 100M │ │ │ ├── USFP-03_S3-D-R.json │ │ │ ├── USFP-03_SS135-D-R.json │ │ │ ├── USFP-03_SS153-D-R.json │ │ │ ├── USFP-03_SS235-D-R.json │ │ │ ├── USFP-03_SS253-D-R.json │ │ │ ├── USFP-03_SS345-D-R.json │ │ │ └── USFP-03_SS354-D-R.json │ │ │ └── 1G │ │ │ ├── USFP-Gb_S2-D-R.json │ │ │ ├── USFP-Gb_SS13-D-R.json │ │ │ ├── USFP-Gb_SS135-D-R.json │ │ │ ├── USFP-Gb_SS15-D-R.json │ │ │ ├── USFP-Gb_SS153-D-R.json │ │ │ ├── USFP-Gb_SS235-D-R.json │ │ │ ├── USFP-Gb_SS24-D-R.json │ │ │ ├── USFP-Gb_SS25-D-R.json │ │ │ └── USFP-Gb_SS253-D-R.json │ ├── Room.json │ ├── Root.json │ ├── Rotek │ │ ├── AP │ │ │ └── RT-BS24-WFN2E.json │ │ ├── BT6037.json │ │ ├── RT-PWR-220-U_4250L.json │ │ └── RT-PWR-220-U_4250LSR.json │ ├── Rubytech │ │ └── l2ms │ │ │ └── ES-2310Q.json │ ├── SKS │ │ └── SKS │ │ │ ├── SKS-16E1-IP-ES-L.json │ │ │ ├── SKS-16E1-IP-I-16P.json │ │ │ ├── SKS-16E1-IP-I-24P.json │ │ │ ├── SKS-16E1-IP-I-4P.json │ │ │ └── SKS-16E1-IP-I-8P.json │ ├── Sandbox.json │ ├── Siemon │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── SFPP30-01.json │ │ │ └── 40G │ │ │ ├── QSFP26-05.json │ │ │ └── QSFP30-01.json │ ├── Siklu │ │ └── EH │ │ │ ├── EH-1200F-H.json │ │ │ ├── EH-1200F-L.json │ │ │ ├── EH-1200L-v700.json │ │ │ ├── EH-1200L.json │ │ │ ├── EH-1200TL-F0.json │ │ │ └── EH-1200TL.json │ ├── Skeo │ │ └── Transceiver │ │ │ ├── 10G │ │ │ ├── SK-DA-SP10-1M.json │ │ │ ├── SKSP10W102720LD.json │ │ │ ├── SKSP10W102740L-D.json │ │ │ ├── SKSP10W103320LD.json │ │ │ └── SKSP10W103340L-D.json │ │ │ └── 1G │ │ │ ├── SK-SFP-W1-31-3SD.json │ │ │ ├── SKSFP-W1-3120SD.json │ │ │ ├── SKSFP-W1-55-3S-D.json │ │ │ └── SKSFP-W1-5520SD.json │ ├── Sopto │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── SPT-XFP-LR.json │ │ │ └── 1G │ │ │ ├── SPT-PB351G-L20.json │ │ │ └── SPT-PB531G-L20.json │ ├── Sumitomo │ │ └── Transceiver │ │ │ ├── 100M │ │ │ └── SFP_LX.json │ │ │ └── 1G │ │ │ └── SCP6894-C1-BNE.json │ ├── Supertel │ │ └── K2X │ │ │ ├── K21-1.json │ │ │ ├── K21.json │ │ │ ├── K23-1.json │ │ │ └── K23.json │ ├── Superxon │ │ └── Transceiver │ │ │ └── GPON │ │ │ ├── SOEB4366-PSGB-DM.json │ │ │ ├── SOGP4321-PSGA.json │ │ │ ├── SOGQ4321-PSGB-DM.json │ │ │ ├── SOGQ4321-PSGC-DM.json │ │ │ └── SOGQ4321-PSGC.json │ ├── TFortis │ │ ├── PSW │ │ │ ├── PSW-2G+.json │ │ │ ├── PSW-2G4F.json │ │ │ └── PSW-2G6F+.json │ │ └── Transceiver │ │ │ └── 1G │ │ │ ├── TBSF-13-10-12gSC-3i.json │ │ │ ├── TBSF-13-20-12gSC-3i.json │ │ │ ├── TBSF-13-3-12gSC-3i.json │ │ │ ├── TBSF-15-10-12gSC-3i.json │ │ │ ├── TBSF-15-20-12gSC-3i.json │ │ │ └── TBSF-15-3-12gSC-3i.json │ ├── TPLink │ │ └── T2600G │ │ │ ├── TL-SG3428X.json │ │ │ ├── TL-SX3008F.json │ │ │ └── TL-SX3016F.json │ ├── Time_Interconnect │ │ └── Transceiver │ │ │ └── 40G │ │ │ └── DAC_1m.json │ ├── Tsuhan │ │ └── Transceiver │ │ │ └── GPON │ │ │ ├── THMPRS4343GDA-DM.json │ │ │ └── THMPRS4343GQA-DM.json │ ├── Ttronics │ │ ├── KUB-Femto.json │ │ └── KUB-Nano_48.json │ ├── Tyco │ │ └── Transceiver │ │ │ └── 10G │ │ │ ├── SFP-H10GB-ACU10M.json │ │ │ └── SFP-H10GB-CU3M.json │ ├── UPNET │ │ └── Transceiver │ │ │ └── 10G │ │ │ └── SFP+_10G-DA-2.json │ ├── Ubiquiti │ │ └── AP │ │ │ ├── Bullet_M2.json │ │ │ ├── NanoStation_M2.json │ │ │ ├── NanoStation_loco_M2.json │ │ │ ├── PowerBeam_5AC_400.json │ │ │ ├── PowerBeam_5AC_400_ISO.json │ │ │ ├── PowerBeam_M2.json │ │ │ ├── PowerBeam_M5.json │ │ │ ├── Rocket_M2.json │ │ │ ├── Rocket_M2_Titanium.json │ │ │ ├── Rocket_M5.json │ │ │ └── Rocket_M5_Titanium.json │ ├── Upvel │ │ └── UP │ │ │ ├── UP-204MGEC.json │ │ │ ├── UP-309GEW.json │ │ │ ├── UP-309MGEC.json │ │ │ └── UP-319MGEC.json │ ├── VMWare │ │ └── VMX19.json │ ├── Vapel │ │ └── PAC-150WA.json │ ├── Vimcom │ │ └── Transceiver │ │ │ └── 1G │ │ │ └── SFP-LX-LC-10.json │ ├── WTD │ │ └── Transceiver │ │ │ ├── 10G │ │ │ └── RTXM228-401.json │ │ │ ├── 1G │ │ │ ├── RTXM191-400.json │ │ │ ├── RTXM191-500.json │ │ │ └── RTXM191-502.json │ │ │ └── GPON │ │ │ ├── RTXM167-522.json │ │ │ ├── RTXM167-527.json │ │ │ └── RTXM168-418-C46.json │ ├── ZTE │ │ └── ZXA10 │ │ │ ├── C320.json │ │ │ └── C3xx │ │ │ ├── ETGHG.json │ │ │ ├── ETGHK.json │ │ │ ├── ETGOD.json │ │ │ ├── GTGHG.json │ │ │ ├── GTGHK.json │ │ │ ├── GTGOE.json │ │ │ ├── GTGOG.json │ │ │ ├── PRAM.json │ │ │ └── SMXA.json │ ├── Zhone │ │ └── DSLAM │ │ │ ├── 4219-A1-520.json │ │ │ ├── 4229-A2-520.json │ │ │ ├── 4229-A2-531.json │ │ │ ├── 8429-B2-000.json │ │ │ ├── 8620-A1-xxx.json │ │ │ ├── 8820-A2-xxx.json │ │ │ ├── 8955-B1-000.json │ │ │ ├── 8965-B1-000.json │ │ │ ├── 8968-B1-000.json │ │ │ ├── 8975-B1-000.json │ │ │ └── 8985-B2-000.json │ └── Zyxel │ │ ├── ES-2024A.json │ │ ├── ES-2108-G.json │ │ ├── ES-2108-LC.json │ │ ├── ES-2108.json │ │ ├── ES-2108PWR.json │ │ ├── ES-2226.json │ │ ├── ES-3124-4F.json │ │ ├── ES-3124.json │ │ ├── ES-3148.json │ │ ├── ES-4124.json │ │ ├── ES3500-8PD.json │ │ ├── GS-3012F.json │ │ ├── GS-4012F.json │ │ ├── GS-4024.json │ │ ├── MES-3528.json │ │ ├── MES-3728.json │ │ ├── MES3500-10.json │ │ ├── MES3500-24.json │ │ ├── MES3500-24F.json │ │ ├── MGS-3712.json │ │ ├── MGS-3712F.json │ │ ├── MSAN │ │ ├── AAM1008-61.json │ │ ├── AAM1212-51.json │ │ ├── AAM1212-53.json │ │ ├── AAM1212.json │ │ ├── ALC1024.json │ │ ├── ALC1224.json │ │ ├── ALC1248G-51.json │ │ ├── ALC1272G-51.json │ │ ├── IES-1000.json │ │ ├── IES-1248.json │ │ ├── IES-2000.json │ │ ├── IES-3000.json │ │ ├── IES-5000.json │ │ ├── IES-5005.json │ │ ├── IES-6000.json │ │ ├── IES-612.json │ │ ├── MSC1000.json │ │ ├── MSC1000G.json │ │ ├── MSC1024G.json │ │ ├── MSC1224G.json │ │ ├── SAM1008.json │ │ ├── SLC1024.json │ │ ├── VLC1348G-51.json │ │ └── VLC1348G-53.json │ │ └── Transceiver │ │ └── 1G │ │ ├── SFP-BX1310-10.json │ │ ├── SFP-BX1490-10.json │ │ └── SFP_LX.json ├── inv.platforms │ ├── CISCO │ │ ├── C9300-24P.json │ │ ├── C9300-24T.json │ │ ├── C9300-24U.json │ │ ├── C9300-24UX.json │ │ ├── C9300-48P.json │ │ ├── C9300-48T.json │ │ ├── C9300-48U.json │ │ ├── C9300-48UXM.json │ │ ├── C9500-12Q.json │ │ ├── C9500-24Q.json │ │ ├── C9500-40X.json │ │ ├── CISCO1921.json │ │ ├── CISCO2801.json │ │ ├── CISCO2811.json │ │ ├── CISCO2821.json │ │ ├── CISCO2901.json │ │ ├── CISCO2911.json │ │ ├── CISCO3825.json │ │ ├── CISCO7606-S.json │ │ ├── CISCO7606.json │ │ ├── CISCO7609.json │ │ ├── ME-3400-24TS-A.json │ │ ├── ME-3400-24TS-D.json │ │ ├── ME-3400EG-12CS-M.json │ │ ├── ME-3400EG-2CS-A.json │ │ ├── ME-3400G-12CS-D.json │ │ ├── ME-3400G-2CS-A.json │ │ ├── ME-3600X-24FS-M.json │ │ ├── ME-3800X-24FS-M.json │ │ ├── ME-4924-10GE.json │ │ ├── N3K-C3064PQ-10GE.json │ │ ├── N3K-C3064PQ-10GX.json │ │ ├── WS-C2924-XL.json │ │ ├── WS-C2940-8TT-S.json │ │ ├── WS-C2950-12.json │ │ ├── WS-C2950-24.json │ │ ├── WS-C2950G-24-EI-DC.json │ │ ├── WS-C2950G-24-EI.json │ │ ├── WS-C2950T-24.json │ │ ├── WS-C2960-24-S.json │ │ ├── WS-C2960-24TC-L.json │ │ ├── WS-C2960-24TC-S.json │ │ ├── WS-C2960-24TT-L.json │ │ ├── WS-C2960-48PST-L.json │ │ ├── WS-C2960-48TC-L.json │ │ ├── WS-C2960-48TT-L.json │ │ ├── WS-C2960-8TC-L.json │ │ ├── WS-C2960-8TC-S.json │ │ ├── WS-C2960G-24TC-L.json │ │ ├── WS-C2960G-48TC-L.json │ │ ├── WS-C2960G-8TC-L.json │ │ ├── WS-C2960S-24PD-L.json │ │ ├── WS-C2960S-24TS-S.json │ │ ├── WS-C3548-XL.json │ │ ├── WS-C3550-12T.json │ │ ├── WS-C3550-24-DC-SMI.json │ │ ├── WS-C3550-24.json │ │ ├── WS-C3550-48.json │ │ ├── WS-C3560-24PS.json │ │ ├── WS-C3560-24TS.json │ │ ├── WS-C3560-48PS.json │ │ ├── WS-C3560-48TS.json │ │ ├── WS-C3560E-24TD.json │ │ ├── WS-C3560E-48TD.json │ │ ├── WS-C3560G-24TS.json │ │ ├── WS-C3560G-48TS.json │ │ ├── WS-C3750-24TS.json │ │ ├── WS-C3750-48TS.json │ │ ├── WS-C3750E-48TD.json │ │ ├── WS-C3750G-12S-D.json │ │ ├── WS-C3750G-12S.json │ │ ├── WS-C3750G-24T.json │ │ ├── WS-C3750G-24TS-1U.json │ │ ├── WS-C3750G-24TS.json │ │ ├── WS-C3750G-48TS.json │ │ ├── WS-C3750X-24.json │ │ ├── WS-C4948.json │ │ ├── WS-C6503-E.json │ │ ├── WS-C6504-E.json │ │ ├── WS-C6506-E.json │ │ ├── WS-C6509-E.json │ │ ├── WS-C6509-V-E.json │ │ └── WS-C6513-E.json │ ├── DCN │ │ ├── DCWL-7962OT(R5).json │ │ └── DCWL-7962OT(R6).json │ ├── DLINK │ │ ├── DAS-3224.json │ │ ├── DAS-3224DC.json │ │ ├── DAS-3224_E.json │ │ ├── DAS-3248.json │ │ ├── DAS-3248DC.json │ │ ├── DAS-3248_E.json │ │ ├── DAS-32xx.json │ │ ├── DES-1210-08P.json │ │ ├── DES-1210-10_ME.json │ │ ├── DES-1210-10_ME_B1.json │ │ ├── DES-1210-10_ME_B2.json │ │ ├── DES-1210-28.json │ │ ├── DES-1210-28P.json │ │ ├── DES-1210-28_ME_B2.json │ │ ├── DES-1210-28_ME_B3.json │ │ ├── DES-1210-52_ME_C1.json │ │ ├── DES-1228_ME_A1.json │ │ ├── DES-1228_ME_A2.json │ │ ├── DES-1228_ME_B1.json │ │ ├── DES-2108.json │ │ ├── DES-3010FL.json │ │ ├── DES-3010G.json │ │ ├── DES-3016.json │ │ ├── DES-3018.json │ │ ├── DES-3026.json │ │ ├── DES-3028.json │ │ ├── DES-3028G.json │ │ ├── DES-3028P.json │ │ ├── DES-3052.json │ │ ├── DES-3200-10_A1.json │ │ ├── DES-3200-10_B1.json │ │ ├── DES-3200-10_C1.json │ │ ├── DES-3200-18_A1.json │ │ ├── DES-3200-18_B1.json │ │ ├── DES-3200-18_C1.json │ │ ├── DES-3200-26_A1.json │ │ ├── DES-3200-26_C1.json │ │ ├── DES-3200-28.json │ │ ├── DES-3200-28F.json │ │ ├── DES-3200-28F_A1.json │ │ ├── DES-3200-28F_C1.json │ │ ├── DES-3200-28P_C1.json │ │ ├── DES-3200-28_A1.json │ │ ├── DES-3200-28_B1.json │ │ ├── DES-3200-28_C1.json │ │ ├── DES-3200-28_ME_C1.json │ │ ├── DES-3200-52_C1.json │ │ ├── DES-3226S.json │ │ ├── DES-3526.json │ │ ├── DES-3528.json │ │ ├── DES-3550.json │ │ ├── DES-3552.json │ │ ├── DES-3810-28.json │ │ ├── DES-3828.json │ │ ├── DES-3828P.json │ │ ├── DGS-1100-06_ME.json │ │ ├── DGS-1210-10_ME_A1.json │ │ ├── DGS-1210-20_ME_A1.json │ │ ├── DGS-1210-28_ME_A1.json │ │ ├── DGS-1210-28_ME_A2.json │ │ ├── DGS-3000-10TC.json │ │ ├── DGS-3000-26TC.json │ │ ├── DGS-3024.json │ │ ├── DGS-3100-24.json │ │ ├── DGS-3100-24TG.json │ │ ├── DGS-3100.json │ │ ├── DGS-3120-24SC_A1.json │ │ ├── DGS-3120-24SC_A2.json │ │ ├── DGS-3120-24SC_B1.json │ │ ├── DGS-3120-24TC.json │ │ ├── DGS-3120-24TC_A1.json │ │ ├── DGS-3200-10.json │ │ ├── DGS-3420-26SC_A2.json │ │ ├── DGS-3420-28SC_A2.json │ │ ├── DGS-3420-28SC_B1.json │ │ ├── DGS-3420-28TC.json │ │ ├── DGS-3426.json │ │ ├── DGS-3426G.json │ │ ├── DGS-3610-26G.json │ │ ├── DGS-3612G.json │ │ ├── DGS-3620-28SC_A1.json │ │ ├── DGS-3627G.json │ │ ├── DGS-3700-12.json │ │ └── DVG-N5402G.json │ ├── EDGECORE │ │ ├── ECS4100-28T.json │ │ ├── ECS4100-52T.json │ │ ├── ECS4100-52T0.json │ │ ├── ES3510.json │ │ ├── ES3526XA-V2.json │ │ ├── ES3528M.json │ │ └── ES3552M.json │ ├── ELTEX │ │ ├── ESR-100.json │ │ ├── LTP-4X-rev.C.json │ │ ├── LTP-8X-rev.B.json │ │ ├── LTP-8X-rev.C.json │ │ ├── LTP-8X.json │ │ ├── MA4000.json │ │ ├── MES-1024.json │ │ ├── MES-1124.json │ │ ├── MES-2124.json │ │ ├── MES-2124P.json │ │ ├── MES-2308.json │ │ ├── MES-2308P.json │ │ ├── MES-2324B.json │ │ ├── MES-2324FB.json │ │ ├── MES-3108.json │ │ ├── MES-3108F.json │ │ ├── MES-3116.json │ │ ├── MES-3116F.json │ │ ├── MES-3124.json │ │ ├── MES-3124F.json │ │ ├── MES-3324.json │ │ ├── MES-3324F.json │ │ ├── MES-5248.json │ │ ├── MES-5324.json │ │ ├── MES5448.json │ │ ├── MXA24.json │ │ ├── MXA32.json │ │ ├── MXA64.json │ │ └── RG-1404GF-W.json │ ├── GWD │ │ └── GFA6900S.json │ ├── HUAWEI │ │ ├── CE6870.json │ │ ├── MA5105.json │ │ ├── MA5300.json │ │ ├── MA5600.json │ │ ├── MA5600T.json │ │ ├── MA5603T.json │ │ ├── MA5605.json │ │ ├── MA5608T.json │ │ ├── MA5612.json │ │ ├── MA5616.json │ │ ├── MA5626G.json │ │ ├── MA5680T.json │ │ ├── ME60-X8.json │ │ ├── NE40E-X1-M4.json │ │ ├── NE40E-X8.json │ │ ├── NE40E-X8A.json │ │ ├── S2309TP-EI.json │ │ ├── S2309TP-PWR-EI.json │ │ ├── S2309TP-SI.json │ │ ├── S2318TP-EI.json │ │ ├── S2318TP-SI.json │ │ ├── S2326TP-EI.json │ │ ├── S2326TP-PWR-EI.json │ │ ├── S2326TP-SI.json │ │ ├── S2328P-EI-AC.json │ │ ├── S2350-28TP-EI-AC.json │ │ ├── S2352P-EI.json │ │ ├── S2403TP-EA.json │ │ ├── S2700-26TP-EI-AC.json │ │ ├── S2700-52P-EI-AC.json │ │ ├── S3328TP-EI-24S.json │ │ ├── S3328TP-EI.json │ │ ├── S3328TP-SI.json │ │ ├── S3352P-SI.json │ │ ├── S3700-28TP-EI-AC.json │ │ ├── S3928P.json │ │ ├── S3928TP.json │ │ ├── S5300-10P-LI-AC.json │ │ ├── S5300-28P-LI-AC.json │ │ ├── S5300-28X-LI-24S-AC.json │ │ ├── S5300-28X-LI-24S-DC.json │ │ ├── S5320-28X-LI-24S-DC.json │ │ ├── S5320-32C-HI-24S-DC.json │ │ ├── S5320-36C-EI-DC.json │ │ ├── S5324TP-SI-AC.json │ │ ├── S5328C-EI-24S.json │ │ ├── S5328C-EI.json │ │ ├── S5328C-HI-24S.json │ │ ├── S5328C-HI.json │ │ ├── S5328C-SI.json │ │ ├── S5352C-EI.json │ │ ├── S5624F.json │ │ ├── S5624P.json │ │ ├── S5628F-HI.json │ │ ├── S5628F.json │ │ ├── S6320-30C-EI-24S-DC.json │ │ ├── S6320-54C-EI-48S-AC.json │ │ ├── S6330-H24X6C.json │ │ ├── S6330-H48X6C.json │ │ ├── S6502.json │ │ ├── S6730-H24X6C.json │ │ ├── S6730-H48X6C.json │ │ ├── S8502.json │ │ ├── S8505.json │ │ ├── S8508.json │ │ ├── UA5000.json │ │ └── UA5000IPMB.json │ ├── JUNIPER │ │ ├── E120.json │ │ ├── ERX-310.json │ │ ├── ex3200-48t.json │ │ ├── ex4200-24f.json │ │ ├── ex4200-24t.json │ │ ├── ex4200-48t.json │ │ ├── ex4550-32f.json │ │ ├── mx10-t.json │ │ ├── mx104.json │ │ ├── mx480.json │ │ ├── mx80-p.json │ │ ├── mx80.json │ │ └── mx960.json │ ├── QTECH │ │ ├── QSW-2500E-10.json │ │ ├── QSW-2700-28.json │ │ ├── QSW-2800-10T-AC-RPS.json │ │ ├── QSW-2800-10T-AC.json │ │ ├── QSW-2800-10T-DC.json │ │ ├── QSW-2800-26T-AC.json │ │ ├── QSW-2800-28T-AC.json │ │ ├── QSW-2850-18T-AC.json │ │ ├── QSW-2850-28T-AC(R2).json │ │ ├── QSW-2850-28T-AC.json │ │ ├── QSW-2850-28T-DC.json │ │ ├── QSW-2850-28T-POE-AC.json │ │ ├── QSW-2855-10T-AC.json │ │ ├── QSW-2855-28T-AC.json │ │ ├── QSW-2900-24T.json │ │ ├── QSW-2900-24T4.json │ │ ├── QSW-2910-10T-POE.json │ │ ├── QSW-2910-28F.json │ │ ├── QSW-3400-10T-AC.json │ │ ├── QSW-3450-28T-AC.json │ │ ├── QSW-3470-10T-AC-POE.json │ │ ├── QSW-3470-28T-AC-POE.json │ │ ├── QSW-3470-28T-AC.json │ │ ├── QSW-3470-28T-DC.json │ │ ├── QSW-3470-52T-AC.json │ │ ├── QSW-3580-28T-AC.json │ │ ├── QSW-3900.json │ │ ├── QSW-4610-10T-AC.json │ │ ├── QSW-4610-18T-AC.json │ │ ├── QSW-4610-28T-AC.json │ │ ├── QSW-4610-28T-DC.json │ │ ├── QSW-4610-52T-AC.json │ │ ├── QSW-8200-28F-AC-DC.json │ │ ├── QSW-8200-28F-AC.json │ │ ├── QSW-8200-28F-DC-DC.json │ │ └── QSW-8200-28F.json │ ├── RAISECOM │ │ ├── ISCOM2110EA-MA-PWR-DC.json │ │ ├── ISCOM2128EA-MA-AC.json │ │ ├── ISCOM2128EA-MA-DC.json │ │ ├── ISCOM2608G-2GE-PWR-AC.json │ │ ├── ISCOM2624G-4GE-AC.json │ │ └── RS-I-2308FE-PoE.json │ ├── SKS │ │ ├── SKS-16E1-IP-1U.json │ │ └── SKS-16E1-IP-ES-L.json │ ├── TFORTIS │ │ ├── PSW-2G4F.json │ │ └── PSW-2G6F+.json │ ├── ZHONE │ │ ├── 4219-A1-520.json │ │ ├── 4229-A1-520.json │ │ ├── 4229-A2-520.json │ │ ├── 4229-A3-531.json │ │ ├── 8620-A1-402.json │ │ └── 8620-A1-530.json │ └── ZYXEL │ │ ├── AAM1212-51.json │ │ ├── ES-2024A.json │ │ ├── ES-2108-G.json │ │ ├── ES-2108-LC.json │ │ ├── ES-2108.json │ │ ├── ES-2108PWR.json │ │ ├── ES-2226.json │ │ ├── ES-3124-4F.json │ │ ├── ES-3124.json │ │ ├── ES-3148.json │ │ ├── ES3500-24HP.json │ │ ├── ES3500-8PD.json │ │ ├── GS-3012F.json │ │ ├── GS-4012F.json │ │ ├── GS-4024.json │ │ ├── IES-1000.json │ │ ├── IES-1248.json │ │ ├── IES-2000.json │ │ ├── IES-3000.json │ │ ├── IES-5005.json │ │ ├── IES-6000.json │ │ ├── IES-612.json │ │ ├── MES-3528.json │ │ ├── MES-3728.json │ │ ├── MES3500-24.json │ │ ├── MES3500-24F.json │ │ ├── MGS-3712.json │ │ └── MGS-3712F.json ├── inv.protocols │ ├── +24_VDC.json │ ├── -48_VDC.json │ ├── 1000BASE-EX.json │ ├── 1000BASE-LX.json │ ├── 1000BASE-SX.json │ ├── 1000BASE-T.json │ ├── 1000BASE-TX.json │ ├── 1000BASE-ZX.json │ ├── 1000BASE_CWDM.json │ ├── 1000BASE_LX10.json │ ├── 100BASE-FX.json │ ├── 100BASE-LX10.json │ ├── 100BASE-TX.json │ ├── 10BASE-T.json │ ├── 10GBASE-ER.json │ ├── 10GBASE-LR.json │ ├── 10GBASE-SR.json │ ├── 10GBASE-T.json │ ├── 10GBASE-ZR.json │ ├── 10GBASECX4.json │ ├── 110_VAC.json │ ├── 12_VDC.json │ ├── 16GFC.json │ ├── 16QAM.json │ ├── 220_VAC.json │ ├── 2_5GBASE-T.json │ ├── 50GPON.json │ ├── 5GBASE-T.json │ ├── 802_11a.json │ ├── 8GFC.json │ ├── 8QAM.json │ ├── ADSL.json │ ├── ADSL2+.json │ ├── ADSL2.json │ ├── CWDM.json │ ├── Cisco_EHWIC.json │ ├── Cisco_HWIC.json │ ├── Cisco_VIC.json │ ├── Cisco_VIC3.json │ ├── Cisco_VWIC.json │ ├── Cisco_VWIC3.json │ ├── Cisco_WIC.json │ ├── DVB-C.json │ ├── DWDM.json │ ├── Dry_contact.json │ ├── E1.json │ ├── EIA-530.json │ ├── EPON.json │ ├── E_M.json │ ├── FXO.json │ ├── FXS.json │ ├── GEPON.json │ ├── GPON.json │ ├── G_703.json │ ├── IEEE1588.json │ ├── NGPON2.json │ ├── ODU2.json │ ├── ODU2e.json │ ├── ODU4.json │ ├── ODUflex.json │ ├── OSC.json │ ├── OTU1.json │ ├── OTU2.json │ ├── OTU2e.json │ ├── OTU3.json │ ├── OTU4.json │ ├── OTUC2.json │ ├── OTUC3.json │ ├── OTUC4.json │ ├── OTUC5.json │ ├── OTUC6.json │ ├── POE.json │ ├── PSTN.json │ ├── PVDM2.json │ ├── QPSK.json │ ├── RS-232.json │ ├── RS-449.json │ ├── RS_485.json │ ├── SHDSL.json │ ├── STM1.json │ ├── STM16.json │ ├── STM4.json │ ├── STM64.json │ ├── T1.json │ ├── TL1.json │ ├── Time-of-Day_Measurement.json │ ├── TransEth100G.json │ ├── TransEth100M.json │ ├── TransEth10G.json │ ├── TransEth1G.json │ ├── TransEth200G.json │ ├── TransEth25G.json │ ├── TransEth400G.json │ ├── TransEth40G.json │ ├── TransEth50G.json │ ├── TransSTM1.json │ ├── USB_1_0.json │ ├── USB_1_1.json │ ├── USB_2_0.json │ ├── VDSL.json │ ├── VDSL2.json │ ├── V_34.json │ ├── V_35.json │ ├── V_42.json │ ├── V_42bis.json │ ├── V_44.json │ ├── V_90.json │ ├── V_92.json │ ├── XGPON.json │ └── XGSPON.json ├── inv.techdomains │ ├── group.json │ ├── internet.json │ ├── optical_mm.json │ ├── optical_sm.json │ ├── otn_odu.json │ ├── otn_oms.json │ ├── otn_osc.json │ ├── otn_otu.json │ └── vlan.json ├── inv.technologies │ ├── Cisco │ │ └── Interface_Card.json │ ├── DVB.json │ ├── Energetics.json │ ├── Ethernet.json │ ├── Group.json │ ├── IEEE_802_11.json │ ├── Management.json │ ├── Modulation.json │ ├── Modulator-Demodulator.json │ ├── Network │ │ ├── CGNAT_Termination.json │ │ ├── Controller.json │ │ ├── DPI_Termination.json │ │ ├── IPoE_Termination.json │ │ ├── PPPoE_Termination.json │ │ ├── PPTP_Termination.json │ │ └── Traffic_Group.json │ ├── OTN.json │ ├── Object_Group.json │ ├── PSTN.json │ ├── SDH.json │ ├── Serial.json │ ├── Time_Syncrinization.json │ ├── Trasceiver.json │ ├── USB.json │ ├── VMWare │ │ └── Port_Group.json │ ├── Voice │ │ ├── H_248_Termination.json │ │ ├── H_323_Termination.json │ │ ├── MGCP_Termination.json │ │ └── SIP_Termination.json │ ├── WDM.json │ ├── XDSL.json │ └── XPON.json ├── inv.vendors │ ├── 3COM.json │ ├── ADDPAC.json │ ├── AGEAR.json │ ├── AGILENTAVAGO.json │ ├── ALENTIS.json │ ├── ALISTAR.json │ ├── ALLIED.json │ ├── ALSTEC.json │ ├── ALTLINUXTEAM.json │ ├── ALU.json │ ├── ANGTEL.json │ ├── APC.json │ ├── APPLIEDOPTOELECTRONICS.json │ ├── ARISTA.json │ ├── ARUBA.json │ ├── AUDIOCODES.json │ ├── AVAGO.json │ ├── AVAYA.json │ ├── AXIOMTEK.json │ ├── AXIS.json │ ├── AcmePacket.json │ ├── BAZIS.json │ ├── BDCOM.json │ ├── BEWARD.json │ ├── BRADBURY.json │ ├── BROCADE.json │ ├── CAMBIUM.json │ ├── CARELINK.json │ ├── CDATA.json │ ├── CISCO.json │ ├── DAHUA.json │ ├── DCN.json │ ├── DELL.json │ ├── DLINK.json │ ├── ECI.json │ ├── EDGECORE.json │ ├── ELECTRONR.json │ ├── ELTEX.json │ ├── ENTERASYS.json │ ├── EOPTOLINK.json │ ├── ERICSSON.json │ ├── EXTREME.json │ ├── F5.json │ ├── FANGHANG.json │ ├── FIBOTELECOM.json │ ├── FINISAR.json │ ├── FORCE10.json │ ├── FORTINET.json │ ├── FREEBSD.json │ ├── GATERAY.json │ ├── GENERIC.json │ ├── GIGALINK.json │ ├── GWD.json │ ├── H3C.json │ ├── HARMONIC.json │ ├── HG_Genuine.json │ ├── HIKVISION.json │ ├── HILLTON.json │ ├── HISENSE.json │ ├── HISILICON.json │ ├── HP.json │ ├── HUAWEI.json │ ├── IBM.json │ ├── INFINET.json │ ├── INTEL.json │ ├── INTRACOM.json │ ├── IRE-POLUS.json │ ├── ISKRATEL.json │ ├── JSCNPRUSBITECH.json │ ├── JUNIPER.json │ ├── LENOVO.json │ ├── LINKSYS.json │ ├── LINUX.json │ ├── LUCENT.json │ ├── LUXSHARE-ICT.json │ ├── MAIPU.json │ ├── MEINBERG.json │ ├── MELLANOX.json │ ├── MERGEOPTICS.json │ ├── METHODE.json │ ├── MIKROTIK.json │ ├── MLAXLINK.json │ ├── MODULTECH.json │ ├── MOXA.json │ ├── MRV.json │ ├── NAG.json │ ├── NATEKS.json │ ├── NEOPHOTONICS.json │ ├── NEXTIO.json │ ├── NOC.json │ ├── NONAME.json │ ├── NORTEL.json │ ├── NSCCOMM.json │ ├── NSGATE.json │ ├── NSN.json │ ├── Newstar.json │ ├── ONEACCESS.json │ ├── OPENWRTTEAM.json │ ├── OPTICIN.json │ ├── OPTOSTAR.json │ ├── OPTOWAY.json │ ├── OPTRONIC.json │ ├── ORION.json │ ├── OWEN.json │ ├── PLANAR.json │ ├── PLANET.json │ ├── POLYGON.json │ ├── PROINTECH.json │ ├── PROLABS.json │ ├── PROSCEND.json │ ├── PROTEI.json │ ├── QTECH.json │ ├── RAISECOM.json │ ├── RARITAN.json │ ├── ROTEK.json │ ├── RUBYTECH.json │ ├── RUCKUS.json │ ├── SECURITYCODE.json │ ├── SENCORE.json │ ├── SIEMON.json │ ├── SIKLU.json │ ├── SKEO.json │ ├── SKS.json │ ├── SOPTO.json │ ├── STERRA.json │ ├── SUMAVISION.json │ ├── SUMITOMO.json │ ├── SUN.json │ ├── SUPERTEL.json │ ├── SUPERXON.json │ ├── SYMBOL.json │ ├── TANGRAM.json │ ├── TELECOM.json │ ├── TELINDUS.json │ ├── TERAYON.json │ ├── TFORTIS.json │ ├── TIMEINTERCONNECT.json │ ├── TPLINK.json │ ├── TSUHAN.json │ ├── TTRONICS.json │ ├── TYCO.json │ ├── UBIQUITI.json │ ├── UTST.json │ ├── Upvel.json │ ├── VAPEL.json │ ├── VECTOR.json │ ├── VIMCOM.json │ ├── VITESSE.json │ ├── VMWARE.json │ ├── VYATTA.json │ ├── WTD.json │ ├── ZEBRA.json │ ├── ZHONE.json │ ├── ZTE.json │ └── ZYXEL.json ├── main.fonts │ └── FontAwesome.json ├── main.glyphs │ └── FontAwesome │ │ ├── 500px.json │ │ ├── adjust.json │ │ ├── adn.json │ │ ├── align-center.json │ │ ├── align-justify.json │ │ ├── align-left.json │ │ ├── align-right.json │ │ ├── amazon.json │ │ ├── ambulance.json │ │ ├── anchor.json │ │ ├── android.json │ │ ├── angellist.json │ │ ├── angle-double-down.json │ │ ├── angle-double-left.json │ │ ├── angle-double-right.json │ │ ├── angle-double-up.json │ │ ├── angle-down.json │ │ ├── angle-left.json │ │ ├── angle-right.json │ │ ├── angle-up.json │ │ ├── apple.json │ │ ├── archive.json │ │ ├── area-chart.json │ │ ├── arrow-circle-down.json │ │ ├── arrow-circle-left.json │ │ ├── arrow-circle-o-down.json │ │ ├── arrow-circle-o-left.json │ │ ├── arrow-circle-o-right.json │ │ ├── arrow-circle-o-up.json │ │ ├── arrow-circle-right.json │ │ ├── arrow-circle-up.json │ │ ├── arrow-down.json │ │ ├── arrow-left.json │ │ ├── arrow-right.json │ │ ├── arrow-up.json │ │ ├── arrows-alt.json │ │ ├── arrows-h.json │ │ ├── arrows-v.json │ │ ├── arrows.json │ │ ├── asterisk.json │ │ ├── at.json │ │ ├── automobile.json │ │ ├── backward.json │ │ ├── balance-scale.json │ │ ├── ban.json │ │ ├── bank.json │ │ ├── bar-chart.json │ │ ├── barcode.json │ │ ├── bars.json │ │ ├── battery-0.json │ │ ├── battery-1.json │ │ ├── battery-2.json │ │ ├── battery-3.json │ │ ├── battery-4.json │ │ ├── bed.json │ │ ├── beer.json │ │ ├── behance-square.json │ │ ├── behance.json │ │ ├── bell-o.json │ │ ├── bell-slash-o.json │ │ ├── bell-slash.json │ │ ├── bell.json │ │ ├── bicycle.json │ │ ├── binoculars.json │ │ ├── birthday-cake.json │ │ ├── bitbucket-square.json │ │ ├── bitbucket.json │ │ ├── bitcoin.json │ │ ├── black-tie.json │ │ ├── bluetooth-b.json │ │ ├── bluetooth.json │ │ ├── bold.json │ │ ├── bolt.json │ │ ├── bomb.json │ │ ├── book.json │ │ ├── bookmark-o.json │ │ ├── bookmark.json │ │ ├── briefcase.json │ │ ├── bug.json │ │ ├── building-o.json │ │ ├── building.json │ │ ├── bullhorn.json │ │ ├── bullseye.json │ │ ├── bus.json │ │ ├── buysellads.json │ │ ├── cab.json │ │ ├── calculator.json │ │ ├── calendar-check-o.json │ │ ├── calendar-minus-o.json │ │ ├── calendar-o.json │ │ ├── calendar-plus-o.json │ │ ├── calendar-times-o.json │ │ ├── calendar.json │ │ ├── camera-retro.json │ │ ├── camera.json │ │ ├── caret-down.json │ │ ├── caret-left.json │ │ ├── caret-right.json │ │ ├── caret-square-o-down.json │ │ ├── caret-square-o-left.json │ │ ├── caret-square-o-right.json │ │ ├── caret-square-o-up.json │ │ ├── caret-up.json │ │ ├── cart-arrow-down.json │ │ ├── cart-plus.json │ │ ├── cc-amex.json │ │ ├── cc-diners-club.json │ │ ├── cc-discover.json │ │ ├── cc-jcb.json │ │ ├── cc-mastercard.json │ │ ├── cc-paypal.json │ │ ├── cc-stripe.json │ │ ├── cc-visa.json │ │ ├── cc.json │ │ ├── certificate.json │ │ ├── chain-broken.json │ │ ├── chain.json │ │ ├── check-circle-o.json │ │ ├── check-circle.json │ │ ├── check-square-o.json │ │ ├── check-square.json │ │ ├── check.json │ │ ├── chevron-circle-down.json │ │ ├── chevron-circle-left.json │ │ ├── chevron-circle-right.json │ │ ├── chevron-circle-up.json │ │ ├── chevron-down.json │ │ ├── chevron-left.json │ │ ├── chevron-right.json │ │ ├── chevron-up.json │ │ ├── child.json │ │ ├── chrome.json │ │ ├── circle-o-notch.json │ │ ├── circle-o.json │ │ ├── circle-thin.json │ │ ├── circle.json │ │ ├── clipboard.json │ │ ├── clock-o.json │ │ ├── clone.json │ │ ├── close.json │ │ ├── cloud-download.json │ │ ├── cloud-upload.json │ │ ├── cloud.json │ │ ├── cny.json │ │ ├── code-fork.json │ │ ├── code.json │ │ ├── codepen.json │ │ ├── codiepie.json │ │ ├── coffee.json │ │ ├── cog.json │ │ ├── cogs.json │ │ ├── columns.json │ │ ├── comment-o.json │ │ ├── comment.json │ │ ├── commenting-o.json │ │ ├── commenting.json │ │ ├── comments-o.json │ │ ├── comments.json │ │ ├── compass.json │ │ ├── compress.json │ │ ├── connectdevelop.json │ │ ├── contao.json │ │ ├── copy.json │ │ ├── copyright.json │ │ ├── creative-commons.json │ │ ├── credit-card-alt.json │ │ ├── credit-card.json │ │ ├── crop.json │ │ ├── crosshairs.json │ │ ├── css3.json │ │ ├── cube.json │ │ ├── cubes.json │ │ ├── cut.json │ │ ├── cutlery.json │ │ ├── dashboard.json │ │ ├── dashcube.json │ │ ├── database.json │ │ ├── dedent.json │ │ ├── delicious.json │ │ ├── desktop.json │ │ ├── deviantart.json │ │ ├── diamond.json │ │ ├── digg.json │ │ ├── dollar.json │ │ ├── dot-circle-o.json │ │ ├── download.json │ │ ├── dribbble.json │ │ ├── dropbox.json │ │ ├── drupal.json │ │ ├── edge.json │ │ ├── edit.json │ │ ├── eject.json │ │ ├── ellipsis-h.json │ │ ├── ellipsis-v.json │ │ ├── empire.json │ │ ├── envelope-o.json │ │ ├── envelope-square.json │ │ ├── envelope.json │ │ ├── eraser.json │ │ ├── eur.json │ │ ├── exchange.json │ │ ├── exclamation-circle.json │ │ ├── exclamation-triangle.json │ │ ├── exclamation.json │ │ ├── expand.json │ │ ├── expeditedssl.json │ │ ├── external-link-square.json │ │ ├── external-link.json │ │ ├── eye-slash.json │ │ ├── eye.json │ │ ├── eyedropper.json │ │ ├── facebook-official.json │ │ ├── facebook-square.json │ │ ├── facebook.json │ │ ├── fast-backward.json │ │ ├── fast-forward.json │ │ ├── fax.json │ │ ├── feed.json │ │ ├── female.json │ │ ├── fighter-jet.json │ │ ├── file-archive-o.json │ │ ├── file-audio-o.json │ │ ├── file-code-o.json │ │ ├── file-excel-o.json │ │ ├── file-image-o.json │ │ ├── file-movie-o.json │ │ ├── file-o.json │ │ ├── file-pdf-o.json │ │ ├── file-powerpoint-o.json │ │ ├── file-text-o.json │ │ ├── file-text.json │ │ ├── file-word-o.json │ │ ├── file.json │ │ ├── film.json │ │ ├── filter.json │ │ ├── fire-extinguisher.json │ │ ├── fire.json │ │ ├── firefox.json │ │ ├── flag-checkered.json │ │ ├── flag-o.json │ │ ├── flag.json │ │ ├── flask.json │ │ ├── flickr.json │ │ ├── floppy-o.json │ │ ├── folder-o.json │ │ ├── folder-open-o.json │ │ ├── folder-open.json │ │ ├── folder.json │ │ ├── font.json │ │ ├── fonticons.json │ │ ├── fort-awesome.json │ │ ├── forumbee.json │ │ ├── forward.json │ │ ├── foursquare.json │ │ ├── frown-o.json │ │ ├── futbol-o.json │ │ ├── gamepad.json │ │ ├── gavel.json │ │ ├── gbp.json │ │ ├── genderless.json │ │ ├── get-pocket.json │ │ ├── gg-circle.json │ │ ├── gg.json │ │ ├── gift.json │ │ ├── git-square.json │ │ ├── git.json │ │ ├── github-alt.json │ │ ├── github-square.json │ │ ├── github.json │ │ ├── gittip.json │ │ ├── glass.json │ │ ├── globe.json │ │ ├── google-plus-square.json │ │ ├── google-plus.json │ │ ├── google-wallet.json │ │ ├── google.json │ │ ├── graduation-cap.json │ │ ├── group.json │ │ ├── h-square.json │ │ ├── hacker-news.json │ │ ├── hand-grab-o.json │ │ ├── hand-lizard-o.json │ │ ├── hand-o-down.json │ │ ├── hand-o-left.json │ │ ├── hand-o-right.json │ │ ├── hand-o-up.json │ │ ├── hand-paper-o.json │ │ ├── hand-peace-o.json │ │ ├── hand-pointer-o.json │ │ ├── hand-scissors-o.json │ │ ├── hand-spock-o.json │ │ ├── hashtag.json │ │ ├── hdd-o.json │ │ ├── header.json │ │ ├── headphones.json │ │ ├── heart-o.json │ │ ├── heart.json │ │ ├── heartbeat.json │ │ ├── history.json │ │ ├── home.json │ │ ├── hospital-o.json │ │ ├── hourglass-1.json │ │ ├── hourglass-2.json │ │ ├── hourglass-3.json │ │ ├── hourglass-o.json │ │ ├── hourglass.json │ │ ├── houzz.json │ │ ├── html5.json │ │ ├── i-cursor.json │ │ ├── ils.json │ │ ├── image.json │ │ ├── inbox.json │ │ ├── indent.json │ │ ├── industry.json │ │ ├── info-circle.json │ │ ├── info.json │ │ ├── inr.json │ │ ├── instagram.json │ │ ├── internet-explorer.json │ │ ├── intersex.json │ │ ├── ioxhost.json │ │ ├── italic.json │ │ ├── joomla.json │ │ ├── jsfiddle.json │ │ ├── key.json │ │ ├── keyboard-o.json │ │ ├── krw.json │ │ ├── language.json │ │ ├── laptop.json │ │ ├── lastfm-square.json │ │ ├── lastfm.json │ │ ├── leaf.json │ │ ├── leanpub.json │ │ ├── lemon-o.json │ │ ├── level-down.json │ │ ├── level-up.json │ │ ├── life-bouy.json │ │ ├── lightbulb-o.json │ │ ├── line-chart.json │ │ ├── linkedin-square.json │ │ ├── linkedin.json │ │ ├── linux.json │ │ ├── list-alt.json │ │ ├── list-ol.json │ │ ├── list-ul.json │ │ ├── list.json │ │ ├── location-arrow.json │ │ ├── lock.json │ │ ├── long-arrow-down.json │ │ ├── long-arrow-left.json │ │ ├── long-arrow-right.json │ │ ├── long-arrow-up.json │ │ ├── magic.json │ │ ├── magnet.json │ │ ├── mail-forward.json │ │ ├── mail-reply-all.json │ │ ├── mail-reply.json │ │ ├── male.json │ │ ├── map-marker.json │ │ ├── map-o.json │ │ ├── map-pin.json │ │ ├── map-signs.json │ │ ├── map.json │ │ ├── mars-double.json │ │ ├── mars-stroke-h.json │ │ ├── mars-stroke-v.json │ │ ├── mars-stroke.json │ │ ├── mars.json │ │ ├── maxcdn.json │ │ ├── meanpath.json │ │ ├── medium.json │ │ ├── medkit.json │ │ ├── meh-o.json │ │ ├── mercury.json │ │ ├── microphone-slash.json │ │ ├── microphone.json │ │ ├── minus-circle.json │ │ ├── minus-square-o.json │ │ ├── minus-square.json │ │ ├── minus.json │ │ ├── mixcloud.json │ │ ├── mobile.json │ │ ├── modx.json │ │ ├── money.json │ │ ├── moon-o.json │ │ ├── motorcycle.json │ │ ├── mouse-pointer.json │ │ ├── music.json │ │ ├── neuter.json │ │ ├── newspaper-o.json │ │ ├── object-group.json │ │ ├── object-ungroup.json │ │ ├── odnoklassniki-square.json │ │ ├── odnoklassniki.json │ │ ├── opencart.json │ │ ├── openid.json │ │ ├── opera.json │ │ ├── optin-monster.json │ │ ├── pagelines.json │ │ ├── paint-brush.json │ │ ├── paper-plane-o.json │ │ ├── paper-plane.json │ │ ├── paperclip.json │ │ ├── paragraph.json │ │ ├── pause-circle-o.json │ │ ├── pause-circle.json │ │ ├── pause.json │ │ ├── paw.json │ │ ├── paypal.json │ │ ├── pencil-square.json │ │ ├── pencil.json │ │ ├── percent.json │ │ ├── phone-square.json │ │ ├── phone.json │ │ ├── pie-chart.json │ │ ├── pied-piper-alt.json │ │ ├── pied-piper.json │ │ ├── pinterest-p.json │ │ ├── pinterest-square.json │ │ ├── pinterest.json │ │ ├── plane.json │ │ ├── play-circle-o.json │ │ ├── play-circle.json │ │ ├── play.json │ │ ├── plug.json │ │ ├── plus-circle.json │ │ ├── plus-square-o.json │ │ ├── plus-square.json │ │ ├── plus.json │ │ ├── power-off.json │ │ ├── print.json │ │ ├── product-hunt.json │ │ ├── puzzle-piece.json │ │ ├── qq.json │ │ ├── qrcode.json │ │ ├── question-circle.json │ │ ├── question.json │ │ ├── quote-left.json │ │ ├── quote-right.json │ │ ├── ra.json │ │ ├── random.json │ │ ├── recycle.json │ │ ├── reddit-alien.json │ │ ├── reddit-square.json │ │ ├── reddit.json │ │ ├── refresh.json │ │ ├── registered.json │ │ ├── renren.json │ │ ├── repeat.json │ │ ├── retweet.json │ │ ├── road.json │ │ ├── rocket.json │ │ ├── rotate-left.json │ │ ├── rouble.json │ │ ├── rss-square.json │ │ ├── safari.json │ │ ├── scribd.json │ │ ├── search-minus.json │ │ ├── search-plus.json │ │ ├── search.json │ │ ├── sellsy.json │ │ ├── server.json │ │ ├── share-alt-square.json │ │ ├── share-alt.json │ │ ├── share-square-o.json │ │ ├── share-square.json │ │ ├── shield.json │ │ ├── ship.json │ │ ├── shirtsinbulk.json │ │ ├── shopping-bag.json │ │ ├── shopping-basket.json │ │ ├── shopping-cart.json │ │ ├── sign-in.json │ │ ├── sign-out.json │ │ ├── signal.json │ │ ├── simplybuilt.json │ │ ├── sitemap.json │ │ ├── skyatlas.json │ │ ├── skype.json │ │ ├── slack.json │ │ ├── sliders.json │ │ ├── slideshare.json │ │ ├── smile-o.json │ │ ├── sort-alpha-asc.json │ │ ├── sort-alpha-desc.json │ │ ├── sort-amount-asc.json │ │ ├── sort-amount-desc.json │ │ ├── sort-asc.json │ │ ├── sort-desc.json │ │ ├── sort-numeric-asc.json │ │ ├── sort-numeric-desc.json │ │ ├── sort.json │ │ ├── soundcloud.json │ │ ├── space-shuttle.json │ │ ├── spinner.json │ │ ├── spoon.json │ │ ├── spotify.json │ │ ├── square-o.json │ │ ├── square.json │ │ ├── stack-exchange.json │ │ ├── stack-overflow.json │ │ ├── star-half-empty.json │ │ ├── star-half.json │ │ ├── star-o.json │ │ ├── star.json │ │ ├── steam-square.json │ │ ├── steam.json │ │ ├── step-backward.json │ │ ├── step-forward.json │ │ ├── stethoscope.json │ │ ├── sticky-note-o.json │ │ ├── sticky-note.json │ │ ├── stop-circle-o.json │ │ ├── stop-circle.json │ │ ├── stop.json │ │ ├── street-view.json │ │ ├── strikethrough.json │ │ ├── stumbleupon-circle.json │ │ ├── stumbleupon.json │ │ ├── subscript.json │ │ ├── subway.json │ │ ├── suitcase.json │ │ ├── sun-o.json │ │ ├── superscript.json │ │ ├── table.json │ │ ├── tablet.json │ │ ├── tag.json │ │ ├── tags.json │ │ ├── tasks.json │ │ ├── television.json │ │ ├── tencent-weibo.json │ │ ├── terminal.json │ │ ├── text-height.json │ │ ├── text-width.json │ │ ├── th-large.json │ │ ├── th-list.json │ │ ├── th.json │ │ ├── thumb-tack.json │ │ ├── thumbs-down.json │ │ ├── thumbs-o-down.json │ │ ├── thumbs-o-up.json │ │ ├── thumbs-up.json │ │ ├── ticket.json │ │ ├── times-circle-o.json │ │ ├── times-circle.json │ │ ├── tint.json │ │ ├── toggle-off.json │ │ ├── toggle-on.json │ │ ├── trademark.json │ │ ├── train.json │ │ ├── transgender-alt.json │ │ ├── trash-o.json │ │ ├── trash.json │ │ ├── tree.json │ │ ├── trello.json │ │ ├── tripadvisor.json │ │ ├── trophy.json │ │ ├── truck.json │ │ ├── try.json │ │ ├── tty.json │ │ ├── tumblr-square.json │ │ ├── tumblr.json │ │ ├── twitch.json │ │ ├── twitter-square.json │ │ ├── twitter.json │ │ ├── umbrella.json │ │ ├── underline.json │ │ ├── unlock-alt.json │ │ ├── unlock.json │ │ ├── upload.json │ │ ├── usb.json │ │ ├── user-md.json │ │ ├── user-plus.json │ │ ├── user-secret.json │ │ ├── user-times.json │ │ ├── user.json │ │ ├── venus-double.json │ │ ├── venus-mars.json │ │ ├── venus.json │ │ ├── viacoin.json │ │ ├── video-camera.json │ │ ├── vimeo-square.json │ │ ├── vimeo.json │ │ ├── vine.json │ │ ├── vk.json │ │ ├── volume-down.json │ │ ├── volume-off.json │ │ ├── volume-up.json │ │ ├── wechat.json │ │ ├── weibo.json │ │ ├── whatsapp.json │ │ ├── wheelchair.json │ │ ├── wifi.json │ │ ├── wikipedia-w.json │ │ ├── windows.json │ │ ├── wordpress.json │ │ ├── wrench.json │ │ ├── xing-square.json │ │ ├── xing.json │ │ ├── y-combinator.json │ │ ├── yahoo.json │ │ ├── yelp.json │ │ ├── youtube-play.json │ │ ├── youtube-square.json │ │ └── youtube.json ├── main.handlers │ ├── EmptyHandler.json │ └── Empty_Iter_Handler.json ├── main.labels │ ├── netbox_.json │ ├── netbox_role_.json │ ├── noc_.json │ ├── noc_adm_domain_.json │ ├── noc_agent_.json │ ├── noc_agent_auth_auth.json │ ├── noc_agent_auth_none.json │ ├── noc_agent_auth_pre.json │ ├── noc_escalation_.json │ ├── noc_escalation_always.json │ ├── noc_escalation_alwaysfirst.json │ ├── noc_escalation_never.json │ ├── noc_escalation_root.json │ ├── noc_escalation_rootfirst.json │ ├── noc_interface_afi_.json │ ├── noc_interface_port_group_.json │ ├── noc_interface_role_.json │ ├── noc_interface_role_uplink.json │ ├── noc_ipvrf_.json │ ├── noc_is_aggregate_interface_.json │ ├── noc_is_fatal_.json │ ├── noc_is_linked_.json │ ├── noc_is_managed_.json │ ├── noc_is_member_interface_.json │ ├── noc_managedobjectprofile_.json │ ├── noc_platform_.json │ ├── noc_pool_.json │ ├── noc_profile_.json │ ├── noc_resourcegroup_.json │ ├── noc_sensor_mode_.json │ ├── noc_sensor_placement_.json │ ├── noc_sensor_target_.json │ ├── noc_severity_.json │ ├── noc_severity_critical.json │ ├── noc_severity_ignore.json │ ├── noc_severity_info.json │ ├── noc_severity_major.json │ ├── noc_severity_minor.json │ ├── noc_severity_warning.json │ ├── noc_topology_direction_.json │ ├── noc_vendor_.json │ ├── technology_.json │ ├── vlanrole_.json │ └── zabbix_.json ├── main.modeltemplates │ └── default_discovery.json ├── main.reports │ ├── Alarm_Detail.json │ ├── Availability.json │ ├── Compare_Specs.json │ ├── Discovery_Caps.json │ ├── Discovery_ID_cache_poison.json │ ├── Discovery_Links_Summary.json │ ├── Discovery_Problem.json │ ├── Escalations.json │ ├── Event_Classification_Rule.json │ ├── Event_Summary.json │ ├── Inventory_Object_Summary.json │ ├── Link_Detail.json │ ├── Moved_MACs.json │ ├── Object_Detail.json │ ├── Object_Serial.json │ ├── Object_Summary.json │ ├── Part_Numbers.json │ ├── Pending_Links.json │ ├── Profile_Check_Detail.json │ ├── Profile_Check_Summary.json │ ├── TT_system_statistics.json │ ├── Topology_Problem.json │ ├── Unclassified_Trap_OIDs.json │ └── Unknown_Models_Summary.json ├── main.templates │ ├── alarm_deescalation.json │ ├── alarm_escalation.json │ ├── dns_zone_change.json │ ├── dns_zone_new.json │ ├── inv_discovery_address_collision_report.json │ ├── inv_discovery_interface_status_change.json │ ├── inv_discovery_new_addresses_report.json │ ├── inv_discovery_new_prefixes_report.json │ ├── inv_discovery_new_vlans_report.json │ ├── sa_mnaged_object_config_change.json │ ├── sa_mnaged_object_config_policy_violation.json │ ├── sa_mnaged_object_delete.json │ ├── sa_mnaged_object_new.json │ └── sa_mnaged_object_version_changed.json ├── package.json ├── pm.measurementunits │ ├── Ampere.json │ ├── Bel.json │ ├── Bel_watt.json │ ├── Bit.json │ ├── Bit_s.json │ ├── Byte.json │ ├── Celsius.json │ ├── Decibel.json │ ├── DuplexStatus.json │ ├── Farengheit.json │ ├── Hertz.json │ ├── InterfaceStatus.json │ ├── Joule.json │ ├── Kelvin.json │ ├── Meter.json │ ├── Packets.json │ ├── Packets_s.json │ ├── Percent.json │ ├── RPM.json │ ├── Rate.json │ ├── Scalar.json │ ├── Second.json │ ├── StatusEnum.json │ ├── Volt_AC.json │ ├── Volt_DC.json │ ├── Watt.json │ ├── Watt_hour.json │ └── dBel_watt.json ├── pm.metricactions │ ├── Average_CPU_Usage.json │ ├── Average_Memory_Usage.json │ ├── Interface_Bandwidth_more_than_N.json │ └── Interface_Errors_In.json ├── pm.metricscopes │ ├── CPU.json │ ├── Check.json │ ├── Disk.json │ ├── Environment.json │ ├── FileSystem.json │ ├── IPPool.json │ ├── Interface.json │ ├── MediaStream.json │ ├── Memory.json │ ├── Multicast.json │ ├── Neighbors.json │ ├── Object.json │ ├── PhonePeer.json │ ├── Ping.json │ ├── Radius.json │ ├── Routing.json │ ├── SLA.json │ ├── Sensor.json │ ├── Subscriber.json │ └── VPN.json ├── pm.metrictypes │ ├── CPU │ │ ├── Load │ │ │ ├── 1min.json │ │ │ └── 5min.json │ │ ├── Usage.json │ │ └── Usage │ │ │ └── 5sec.json │ ├── Check │ │ ├── Result.json │ │ └── Status.json │ ├── DHCP │ │ ├── Pool_Leases_Active.json │ │ ├── Pool_Leases_Active_Percent.json │ │ ├── Pool_Leases_Free.json │ │ └── Pool_Leases_Total.json │ ├── Disk │ │ ├── Usage.json │ │ └── Usage_Percent.json │ ├── Environment │ │ ├── Battery │ │ │ └── Capacity │ │ │ │ └── Level.json │ │ ├── Current.json │ │ ├── EnergyConsumption.json │ │ ├── PoE │ │ │ └── NominalPower.json │ │ ├── Power.json │ │ ├── Power │ │ │ └── Input │ │ │ │ └── Status.json │ │ ├── Pulse.json │ │ ├── Status.json │ │ ├── Temperature.json │ │ └── Voltage.json │ ├── Interface │ │ ├── Bandwidth │ │ │ ├── In.json │ │ │ └── Out.json │ │ ├── Broadcast │ │ │ ├── In.json │ │ │ └── Out.json │ │ ├── CBQOS │ │ │ ├── Drops │ │ │ │ ├── In_Delta.json │ │ │ │ └── Out_Delta.json │ │ │ ├── Octets │ │ │ │ ├── In_Delta.json │ │ │ │ └── Out_Delta.json │ │ │ └── Packets │ │ │ │ ├── In_Delta.json │ │ │ │ └── Out_Delta.json │ │ ├── DOM │ │ │ ├── BiasCurrent.json │ │ │ ├── Errors │ │ │ │ ├── BIP_Downstream.json │ │ │ │ ├── BIP_Downstream_Delta.json │ │ │ │ ├── BIP_Upstream.json │ │ │ │ ├── BIP_Upstream_Delta.json │ │ │ │ ├── HEC_Upstream.json │ │ │ │ └── HEC_Upstream_Delta.json │ │ │ ├── Laser_Status.json │ │ │ ├── RxPower.json │ │ │ ├── Temperature.json │ │ │ ├── TxPower.json │ │ │ └── Voltage.json │ │ ├── Discards │ │ │ ├── In.json │ │ │ └── Out.json │ │ ├── Errors │ │ │ ├── CRC.json │ │ │ ├── CRC_Delta.json │ │ │ ├── Collision_Delta.json │ │ │ ├── Collision_Rate.json │ │ │ ├── Frame.json │ │ │ ├── Frame_Delta.json │ │ │ ├── In.json │ │ │ ├── In_Delta.json │ │ │ ├── Out.json │ │ │ └── Out_Delta.json │ │ ├── Load │ │ │ ├── In.json │ │ │ └── Out.json │ │ ├── Multicast │ │ │ ├── In.json │ │ │ ├── In_Delta.json │ │ │ ├── Out.json │ │ │ └── Out_Delta.json │ │ ├── Octets │ │ │ ├── In.json │ │ │ ├── In_Delta.json │ │ │ ├── Out.json │ │ │ └── Out_Delta.json │ │ ├── Packets │ │ │ ├── In.json │ │ │ └── Out.json │ │ ├── PoE │ │ │ ├── Current.json │ │ │ ├── EntityClass.json │ │ │ ├── LineType.json │ │ │ ├── OperStatus.json │ │ │ ├── Power.json │ │ │ ├── Powerlimit.json │ │ │ └── Voltage.json │ │ ├── QOS │ │ │ ├── Discards │ │ │ │ ├── In_Delta.json │ │ │ │ └── Out_Delta.json │ │ │ ├── Octets │ │ │ │ ├── In.json │ │ │ │ └── Out.json │ │ │ └── Packets │ │ │ │ ├── In.json │ │ │ │ └── Out.json │ │ ├── RF │ │ │ └── TxPower.json │ │ ├── Speed.json │ │ ├── Status │ │ │ ├── Admin.json │ │ │ ├── Duplex.json │ │ │ └── Oper.json │ │ ├── lastchange.json │ │ └── xDSL │ │ │ └── Line │ │ │ ├── Attenuation_downstream.json │ │ │ ├── Attenuation_upstream.json │ │ │ ├── Errors │ │ │ ├── ES_Delta.json │ │ │ ├── LOF_Delta.json │ │ │ ├── LOLS_Delta.json │ │ │ ├── LOSS_Delta.json │ │ │ ├── LPRS_Delta.json │ │ │ ├── Retrain_Delta.json │ │ │ ├── SES_Errors.json │ │ │ └── UAS_Delta.json │ │ │ ├── Noise_margin_downstream.json │ │ │ ├── Noise_margin_upstream.json │ │ │ ├── SNR_downstream.json │ │ │ ├── SNR_upstream.json │ │ │ ├── TxPower_downstream.json │ │ │ └── TxPower_upstream.json │ ├── Memory │ │ ├── Heap.json │ │ ├── Load │ │ │ └── 1min.json │ │ ├── Total.json │ │ ├── Usage.json │ │ └── Usage │ │ │ ├── 5sec.json │ │ │ └── Bytes.json │ ├── Multicast │ │ ├── Channel │ │ │ ├── Bandwidth │ │ │ │ ├── Percent.json │ │ │ │ └── Used.json │ │ │ └── Group │ │ │ │ └── Count.json │ │ └── Group │ │ │ ├── Bitrate │ │ │ ├── In.json │ │ │ └── Out.json │ │ │ └── Status.json │ ├── Network │ │ └── STP │ │ │ ├── Topology_Changes.json │ │ │ ├── Topology_Changes_Delta.json │ │ │ └── Topology_Changes_Rate.json │ ├── Object │ │ ├── DoorphonePhoneVolume.json │ │ └── SysUptime.json │ ├── Ping │ │ ├── Attempts.json │ │ └── RTT.json │ ├── Radio │ │ ├── Bandwidth.json │ │ ├── CINR.json │ │ ├── Frequency.json │ │ ├── Level │ │ │ ├── Noise.json │ │ │ └── Signal.json │ │ ├── MCS.json │ │ ├── RSSI.json │ │ ├── RxPower.json │ │ └── TxPower.json │ ├── Radius │ │ └── Policy │ │ │ ├── Request_Count.json │ │ │ ├── Request_Delta.json │ │ │ ├── Response_Delta.json │ │ │ └── Resposnse_Count.json │ ├── SLA │ │ ├── ICMP_RTT.json │ │ ├── JITTER.json │ │ ├── Jitter │ │ │ ├── Jitter_Avg.json │ │ │ ├── Jitter_ICPIF.json │ │ │ ├── Jitter_In_Avg.json │ │ │ ├── Jitter_MOS.json │ │ │ └── Jitter_Out_Avg.json │ │ ├── LOSS.json │ │ ├── OWL │ │ │ ├── OWL_Out_Max.json │ │ │ └── OWL_Out_Min.json │ │ ├── Octets │ │ │ ├── Octets_In.json │ │ │ ├── Octets_Out.json │ │ │ ├── Octets_Rate_In.json │ │ │ └── Octets_Rate_Out.json │ │ ├── Packets │ │ │ ├── Packets.json │ │ │ ├── Packets_In.json │ │ │ ├── Packets_Loss_In.json │ │ │ ├── Packets_Loss_In_Ratio.json │ │ │ ├── Packets_Loss_Out.json │ │ │ ├── Packets_Loss_Out_Ratio.json │ │ │ ├── Packets_Loss_Ratio.json │ │ │ ├── Packets_Out.json │ │ │ ├── Packets_Rate_In.json │ │ │ └── Packets_Rate_Out.json │ │ ├── Packets_Disordered.json │ │ ├── Probes │ │ │ └── Error.json │ │ ├── RTT │ │ │ ├── RTT_Max.json │ │ │ └── RTT_Min.json │ │ ├── TWL │ │ │ ├── TWL_In_Avg.json │ │ │ ├── TWL_In_Max.json │ │ │ ├── TWL_In_Min.json │ │ │ ├── TWL_Out_Avg.json │ │ │ ├── TWL_Out_Max.json │ │ │ └── TWL_Out_Min.json │ │ ├── Test_Duration.json │ │ ├── Test_Status.json │ │ └── UDP_RTT.json │ ├── Sensor │ │ ├── Status.json │ │ ├── Value.json │ │ ├── Value_Delta.json │ │ └── Value_Raw.json │ ├── Subscribers │ │ ├── IPoE.json │ │ ├── L2TP.json │ │ ├── PPP.json │ │ ├── PPPoE.json │ │ ├── PPTP.json │ │ └── Summary.json │ └── Telephony │ │ └── SIP │ │ ├── Register_Contacts_Active.json │ │ ├── Sessions_Active.json │ │ └── sip_status.json ├── pm.scales │ ├── -.json │ ├── Deca.json │ ├── Exa.json │ ├── Exbi.json │ ├── Gibi.json │ ├── Giga.json │ ├── Hecto.json │ ├── Kibi.json │ ├── Kilo.json │ ├── Mebi.json │ ├── Mega.json │ ├── Pebi.json │ ├── Peta.json │ ├── Tebi.json │ ├── Tera.json │ ├── Yobi.json │ ├── Yotta.json │ ├── Zebi.json │ ├── Zetta.json │ ├── atto.json │ ├── centi.json │ ├── deci.json │ ├── femto.json │ ├── micro.json │ ├── milli.json │ ├── nano.json │ ├── pico.json │ ├── yocto.json │ └── zepto.json ├── sa.actioncommands │ ├── Cisco │ │ └── IOS │ │ │ ├── add_vlan.json │ │ │ ├── disable_cdp.json │ │ │ ├── enable_cdp.json │ │ │ ├── ping.json │ │ │ ├── reboot.json │ │ │ ├── set_description.json │ │ │ ├── set_interface_description.json │ │ │ └── set_sla_probe.json │ ├── Huawei │ │ └── VRP │ │ │ └── set_sla_probe.json │ ├── Juniper │ │ └── JUNOS │ │ │ ├── reboot.json │ │ │ ├── set_hostname.json │ │ │ └── set_sla_probe.json │ └── MikroTik │ │ └── RouterOS │ │ ├── ping.json │ │ ├── reboot.json │ │ └── set_description.json ├── sa.actions │ ├── add_vlan.json │ ├── disable_cdp.json │ ├── enable_cdp.json │ ├── ping.json │ ├── reboot.json │ ├── reset_interface.json │ ├── set_hostname.json │ ├── set_interface_description.json │ ├── set_sla_probe.json │ └── show_interface.json ├── sa.objectdiscoveryrules │ └── discovered_new_with_uptime.json ├── sa.profilecheckrules │ ├── 3Com │ │ └── SuperStack3 │ │ │ ├── 3226_sysObjectID.json │ │ │ ├── 3250_sysObjectID.json │ │ │ ├── 4400_sysObjectID.json │ │ │ └── 4500_sysObjectID.json │ ├── APC │ │ └── AOS │ │ │ └── sysDescr.json │ ├── AcmePacket │ │ └── NetNet │ │ │ └── 3820_sysObjectID.json │ ├── Alcatel │ │ ├── 7302 │ │ │ └── 7302_sysObjectID.json │ │ ├── 7324RU_sysObjectID.json │ │ ├── AOS │ │ │ ├── OS6850-U24X.json │ │ │ └── OS6850E-U24X.json │ │ ├── OS62xx │ │ │ └── OS-LS-6200.json │ │ ├── Stinger │ │ │ └── Stinger_sysObjectID.json │ │ └── TIMOS │ │ │ ├── 7450_ESS-7.json │ │ │ ├── 7750_SR-7-old_sysObjectID.json │ │ │ ├── 7750_SR-7.json │ │ │ └── 7950_XRS.json │ ├── AlliedTelesis │ │ └── ATI │ │ │ ├── AT-8000GS_sysObjectID.json │ │ │ ├── AT-8000S_sysObjectID.json │ │ │ ├── AT-8024_sysObjectID.json │ │ │ └── AT-9400_sysObjectID.json │ ├── Alstec │ │ ├── 7200 │ │ │ └── ALSTEC_MSPU_sysDescr.json │ │ ├── 24xx │ │ │ ├── ALS24300_sysObjectID.json │ │ │ └── ALS_ALS24100_sysDescr.json │ │ └── ALS │ │ │ └── ALS_62000_sysObjectID.json │ ├── Angtel │ │ └── Topaz │ │ │ └── Topaz_2O_16E.json │ ├── BDCOM │ │ ├── IOS │ │ │ ├── 2208P_sysObjectID.json │ │ │ ├── S2210PB_sysObjectID.json │ │ │ └── S5210C_sysObjectID.json │ │ └── xPON │ │ │ ├── GP3600-04_sysObjectID.json │ │ │ ├── GP3600_08B_sysObjectID.json │ │ │ ├── P3310B_sysObjectID.json │ │ │ ├── P3310C_sysObjectID.json │ │ │ ├── P3310D_sysObjectID.json │ │ │ ├── P3600-04_sysObjectID.json │ │ │ ├── P3600-08E_sysObjectID.json │ │ │ ├── P3600-08_sysObjectID.json │ │ │ ├── P3608-2TE_sysObjectID.json │ │ │ ├── P3608_sysObjectID.json │ │ │ └── P3616_2TE_sysObjectID.json │ ├── Beward │ │ └── Doorphone_sysObjectID.json │ ├── CData │ │ └── xPON │ │ │ └── sysObjectID.json │ ├── Carelink │ │ └── SWG │ │ │ └── SWG1002_sysObjectID.json │ ├── Cisco │ │ ├── ASA │ │ │ └── chassis.json │ │ ├── IOS │ │ │ ├── ALL.json │ │ │ └── sysDescr.json │ │ ├── IOSXR │ │ │ └── sysDescr.json │ │ ├── NXOS │ │ │ └── sysDescr.json │ │ ├── SMB │ │ │ ├── Cisco_SMB-SG200_sysObjectId.json │ │ │ └── sysDescrSG300.json │ │ └── WLC │ │ │ └── physDescr.json │ ├── DCN │ │ ├── DCWL │ │ │ ├── AP_HTTP.json │ │ │ └── DCWS-6028_sysObjectID.json │ │ └── DCWS │ │ │ ├── DCWS-6002_sysObjectID.json │ │ │ ├── DCWS-6028_R2_sysObjectID.json │ │ │ └── DCWS-6222_sysObjectID.json │ ├── DLink │ │ ├── DAS │ │ │ ├── DAS-322X_sysObjectID.json │ │ │ ├── DAS-32XX sysObjectID.json │ │ │ └── DAS-3XXX sysObjectID.json │ │ ├── DES-7206_sysObjectID.json │ │ ├── DES21xx │ │ │ ├── DES_2108.json │ │ │ ├── DES_2108_B1.json │ │ │ └── DES_2110.json │ │ ├── DGS3100 │ │ │ └── DGS_3100_24TG.json │ │ ├── DxS │ │ │ ├── ALL_sysObjectID.json │ │ │ └── DGS_1210_28_ME_sysObjectID.json │ │ ├── DxS_Cisco_CLI │ │ │ └── DGS_3610_26G_sysObjectID.json │ │ ├── DxS_Industrial_CLI │ │ │ ├── DGS_1510_sysObjectID.json │ │ │ ├── DGS_3130_sysObjectID.json │ │ │ ├── DGS_3630_sysObjectID.json │ │ │ ├── DIS_200G_sysObjectID.json │ │ │ └── DXS_3400_sysObjectID.json │ │ └── DxS_Smart │ │ │ ├── DES_1210_08P-CX.json │ │ │ ├── DES_1210_08P.json │ │ │ ├── DES_1210_28.json │ │ │ ├── DES_1210_28P.json │ │ │ ├── DES_1210_28P_V4.json │ │ │ ├── DES_1210_28_C1.json │ │ │ ├── DES_1210_52.json │ │ │ ├── DES_1210_52P.json │ │ │ ├── DES_1210_52_V4.json │ │ │ ├── DES_1210_52_c1.json │ │ │ ├── DGS-1210-10P_C1.json │ │ │ ├── DGS-1210-20_C1.json │ │ │ ├── DGS-1210-28P_C1.json │ │ │ ├── DGS-1210-52_C1.json │ │ │ ├── DGS_1210_10P.json │ │ │ ├── DGS_1210_16.json │ │ │ ├── DGS_1210_20.json │ │ │ ├── DGS_1210_24.json │ │ │ ├── DGS_1210_28.json │ │ │ ├── DGS_1210_28P.json │ │ │ ├── DGS_1210_48.json │ │ │ ├── DGS_1210_52.json │ │ │ ├── DGS_1210_F1_Series.json │ │ │ ├── DGS_1500_20.json │ │ │ └── DXS_1210_10TC.json │ ├── Dahua │ │ └── DH │ │ │ ├── DH_HTTP.json │ │ │ └── DH_HTTP_VTO.json │ ├── EdgeCore │ │ └── ES │ │ │ ├── ECS3510-28T_sysObjectID.json │ │ │ ├── ECS3510-52T_sysObjectID.json │ │ │ ├── ECS4510-28F_sysObjectID.json │ │ │ ├── ECS4660-28F_sysObjectID.json │ │ │ ├── ES3528MV2_sysObjectID.json │ │ │ ├── ES3528M_sysObjectID.json │ │ │ ├── ES3628EA_sysObjectID.json │ │ │ └── ES4624_sysObjectID.json │ ├── ElectronR │ │ └── KO01M │ │ │ ├── KO01M_sysObjectID.json │ │ │ └── KO01M_v1_sysObjectID.json │ ├── Eltex │ │ ├── DSLAM │ │ │ ├── MXA24_sysObjectID.json │ │ │ └── MXA32_sysObjectID.json │ │ ├── ESR │ │ │ ├── ESR1000_sysobjectid.json │ │ │ ├── ESR10_sysobjectid.json │ │ │ ├── ESR1200_sysobjectid.json │ │ │ ├── ESR12V_sysobjectid.json │ │ │ ├── ESR1700_sysobjectid.json │ │ │ ├── ESR200_sysDescr.json │ │ │ └── ESR_sysDescr.json │ │ ├── LTE │ │ │ └── LTE_sysObjectID.json │ │ ├── LTP │ │ │ ├── LTP-16N.json │ │ │ ├── LTP-4X_sysObjectID.json │ │ │ ├── LTP-8N.json │ │ │ └── LTP_sysObjectID.json │ │ ├── MA │ │ │ └── MA4000_sysObjectID.json │ │ ├── MES │ │ │ ├── MES24xx_sysDescr.json │ │ │ ├── MES5448_sysObjectID_0.json │ │ │ ├── MES_2408B_sysobjectid.json │ │ │ ├── MES_2408CP_sysobjectid.json │ │ │ ├── MES_2408C_sysobjectid.json │ │ │ ├── MES_2428B_sysobjectid.json │ │ │ ├── MES_2428P_sysobjectid.json │ │ │ ├── MES_2428_sysobjectid.json │ │ │ ├── MES_3124F_sysDescr.json │ │ │ └── MES_5448F_sysDescr.json │ │ ├── RG │ │ │ └── RG-1404GF-W_sysObjectID.json │ │ ├── SMG │ │ │ └── SMG500_sysObjectID.json │ │ ├── TAU │ │ │ ├── TAU16_sysObjectID.json │ │ │ ├── TAU24_sysObjectID.json │ │ │ ├── TAU32_sysObjectID.json │ │ │ ├── TAU36_sysObjectID.json │ │ │ ├── TAU72_sysObjectID.json │ │ │ ├── TAU8_sysObjectID.json │ │ │ ├── TAUxx2_sysObjectID.json │ │ │ └── TAUxx_sysObjectID.json │ │ ├── WOP │ │ │ └── WOP-2ac_sysObjectID.json │ │ └── WOPLR │ │ │ └── WOP-2ac-LR5_sysObjectID.json │ ├── Enterasys │ │ └── EOS │ │ │ └── sysDescr.json │ ├── Ericsson │ │ └── MINI-LINK │ │ │ └── CN510_sysObjectID.json │ ├── Extreme │ │ ├── .gitkeep │ │ ├── Summit200 │ │ │ └── sysDescr.json │ │ └── XOS │ │ │ ├── .gitkeep │ │ │ └── sysDescr.json │ ├── Fortinet │ │ └── FortiGate-600D.json │ ├── GWD │ │ └── GFA_sysObjectID.json │ ├── H3C │ │ └── VRP │ │ │ ├── S3600-28P-EI_sysObjectID.json │ │ │ ├── S3600-28TP-SI_sysObjectID.json │ │ │ ├── S3600-52P-SI_sysObjectID.json │ │ │ └── S3600-All_sysDescr.json │ ├── HP │ │ ├── Aruba │ │ │ ├── Switches_2_sysObjectID.json │ │ │ ├── Switches_HTTPS.json │ │ │ └── Switches_sysObjectID.json │ │ ├── Comware7 │ │ │ ├── .gitkeep │ │ │ ├── HPE5xxx_sysObjectID.json │ │ │ ├── HSR6602_sysObjectID.json │ │ │ └── MSR3044_sysObjectID.json │ │ ├── OfficeConnect │ │ │ ├── 1920_sysObjectID.json │ │ │ └── HTTP.json │ │ └── ProCurve │ │ │ ├── 2810-24G_sysObjectID.json │ │ │ ├── 5406zl_sysObjectID.json │ │ │ ├── HP_1905-24POE_sysObjectID.json │ │ │ ├── HP_1910-24-POE_sysobjectid.json │ │ │ ├── HP_2650-48G=sysObjectID.json │ │ │ ├── HP_ProCurve-2910al-48G-PoE_sysObjectID.json │ │ │ ├── HP_ProCurve-3400cl_sysObjectID.json │ │ │ ├── HP_ProCurve-5406Rzl_sysObjectID.json │ │ │ ├── HP_ProCurve-5406zl_sysObjectID.json │ │ │ ├── HP_ProCurve-5412zl_sysObjectID.json │ │ │ ├── HP_ProCurve-8206zl_sysObjectID.json │ │ │ ├── HP_ProCurve-8212zl_sysObjectID.json │ │ │ └── HP_ProCurve_ALL.json │ ├── Hikvision │ │ └── DS2CD │ │ │ └── DS2CD_HTTP.json │ ├── Huawei │ │ ├── HONET │ │ │ └── UA5000_sysObjectID.json │ │ ├── MA │ │ │ ├── MA5105_sysObjectID.json │ │ │ ├── MA5300_sysObjectID.json │ │ │ ├── MA5600_sysObjectID.json │ │ │ ├── MA5603T_sysObjectID.json │ │ │ ├── MA5605_sysObjectID.json │ │ │ ├── MA5608T_sysObjectID.json │ │ │ ├── MA5612_sysObjectID.json │ │ │ ├── MA5616_sysObjectID.json │ │ │ ├── MA5620_sysObjectID.json │ │ │ ├── MA5626G_sysObjectID.json │ │ │ ├── MA5680T_sysObjectID.json │ │ │ ├── MA5800-X17_sysObjectID.json │ │ │ ├── MA5800-X2_sysObjectID.json │ │ │ ├── MA5800-X7_sysObjectID.json │ │ │ └── MA5801_sysObjectID.json │ │ └── VRP │ │ │ ├── AR_sysDescr.json │ │ │ ├── CX_ALL_sysObjectID.json │ │ │ ├── ME_ALL_sysObjectID.json │ │ │ ├── S2326TP-EI_sysObjectID.json │ │ │ ├── S2403TP-EA_sysObjectID.json │ │ │ ├── S3928TP-SI_sysObjectID.json │ │ │ ├── S5300_sysObjectID.json │ │ │ ├── S5328C-EI-24S_sysObjectID.json │ │ │ ├── S5624P_sysObjectID.json │ │ │ ├── S5628F-HI_sysObjectID.json │ │ │ ├── S5700_sysDescr.json │ │ │ ├── S93XX_sysObjectID.json │ │ │ ├── S_ALL2_sysObjectID.json │ │ │ ├── S_ALL_sysObjectID.json │ │ │ └── VRP_ALL_sysDescr.json │ ├── IBM │ │ └── NOS │ │ │ └── NOS_ALL_sysDescr.json │ ├── IRE-Polus │ │ └── Taros │ │ │ ├── BS_sysObjectID.json │ │ │ └── EAU_sysObjectID.json │ ├── InfiNet │ │ └── R5000_sysObjectID.json │ ├── Intracom │ │ └── UltraLink │ │ │ └── sysObjectID.json │ ├── Iskratel │ │ ├── ESCOM │ │ │ └── SI3000_sysObjectID.json │ │ ├── MBAN │ │ │ ├── ISKRATEL_VDSL-1_sysObjectID.json │ │ │ └── ISKRATEL_VDSL-2_sysObjectID.json │ │ ├── MSAN │ │ │ ├── ISKRATEL_MSAN_sysObjectID.json │ │ │ ├── ISKRATEL_Switching_sysObjectID.json │ │ │ └── SI2000_sysObjectID.json │ │ └── VOIP │ │ │ └── ISKRATEL_VOIP-1_sysObjectID.json │ ├── Juniper │ │ ├── EX2500 │ │ │ └── EX2500.json │ │ ├── JUNOS │ │ │ └── ALL.json │ │ ├── JUNOSe │ │ │ ├── E120_sysObjectID.json │ │ │ └── E320_sysObjectID.json │ │ └── ScreenOS │ │ │ └── SSG.json │ ├── KeyMile │ │ └── MileGate │ │ │ └── 2510_sysObjectID.json │ ├── Linksys │ │ ├── SPS2xx │ │ │ ├── SPS224G4_sysObjectID.json │ │ │ ├── SPS224G4_v1_sysObjectID.json │ │ │ └── SPS224G4_v2_sysObjectID.json │ │ └── SRW │ │ │ └── SRW2016_sysObjectID.json │ ├── MRV │ │ └── FD │ │ │ └── EM316LNXNM_sysObjectID.json │ ├── Maipu │ │ └── OS │ │ │ └── Maipu_enterprises.json │ ├── Meinberg │ │ └── LANTIME │ │ │ └── LANTIME_sysObjectID.json │ ├── MikroTik │ │ └── RouterOS │ │ │ ├── HTTP.json │ │ │ ├── HTTPS.json │ │ │ ├── physDescr.json │ │ │ ├── sysDescr.json │ │ │ └── sysObjectID.json │ ├── NAG │ │ ├── NSN │ │ │ └── hiX5622G2002GE_sysObjectID.json │ │ └── SNR │ │ │ ├── ALL_sysObjectID_0.json │ │ │ ├── FoxGate-S6424-S2C2_sysObjectID.json │ │ │ ├── SNR-S2940_sysObjectID.json │ │ │ ├── SNR-S2950-24G.json │ │ │ └── SNR-S2964-24T_sysObjectID.json │ ├── NSGATE │ │ └── NIS │ │ │ └── NIS-3500-2216PGX_sysObjectID.json │ ├── NSN │ │ └── TIMOS │ │ │ ├── 7210_SAS_S.json │ │ │ ├── 7250_IXR_R6.json │ │ │ ├── 7450_ESS_7.json │ │ │ ├── 7705-SAR-X.json │ │ │ └── 7750_SR_2S.json │ ├── Nateks │ │ ├── FlexGain │ │ │ ├── FG-ACE120_sysObjectID.json │ │ │ └── FG-ACE24_sysObjectID.json │ │ └── NetXpert │ │ │ ├── NX-3408-DC_sysObjectID.json │ │ │ ├── NX-3408_sysObjectID.json │ │ │ ├── NX-3424_sysObjectID.json │ │ │ └── NX_3408_V1_sysObjectID.json │ ├── OS │ │ ├── BSD │ │ │ └── FreeBSD_sysObjectID.json │ │ └── Linux │ │ │ ├── Astra │ │ │ └── Astra_sysObjectID.json │ │ │ ├── Debian │ │ │ └── Debian_sysObjectID.json │ │ │ ├── Openwrt │ │ │ └── Openwrt_sysObjectID.json │ │ │ └── RHEL │ │ │ └── RHEL_sysObjectID.json │ ├── Orion │ │ └── NOS │ │ │ ├── Orion_NOS.json │ │ │ └── Orion_NOS2.json │ ├── Planar │ │ └── SDO3000 │ │ │ └── sysObjectID.json │ ├── Planet │ │ └── WGSD │ │ │ ├── WSGD2_sysObjectID.json │ │ │ ├── WSGD3_sysObjectID.json │ │ │ └── WSGD_sysObjectID.json │ ├── Qtech │ │ ├── BFC_PBIC_S │ │ │ └── BFC-PBIC-S_sysObjectID.json │ │ ├── QFC │ │ │ └── PBIC-LITE_V.3_name.json │ │ ├── QOS │ │ │ └── QSW-8200-28F-AC_sysObjectID.json │ │ └── QSW │ │ │ ├── ALL_sysObjectID.json │ │ │ ├── QSW-2500E-10_sysObjectID.json │ │ │ ├── QSW-2800-10T-AC_sysObjectID.json │ │ │ ├── QSW-2800-10T-DC_sysObjectID.json │ │ │ ├── QSW-2800-28T_sysObjectID.json │ │ │ ├── QSW-2800_sysObjectID_1_301.json │ │ │ ├── QSW-2800_sysObjectID_2_59.json │ │ │ ├── QSW-2850-18T-AC_sysObjectID │ │ │ ├── QSW-2850-28T-AC_sysObjectID │ │ │ ├── QSW-2850-28T-AC_sysObjectID_2 │ │ │ ├── QSW-2850-28T_sysObjectID.json │ │ │ ├── QSW-2900_sysObjectID.json │ │ │ ├── QSW-2910-10T-POE_sysObjectID.json │ │ │ ├── QSW-2910-28F_sysObjectID.json │ │ │ ├── QSW-3400-28T-AC_sysObjectID.json │ │ │ ├── QSW-3400-28T-AC_sysObjectID_2.json │ │ │ ├── QSW-3450-28T-AC_sysObjectID.json │ │ │ ├── QSW-3450-28T-AC_v2_sysObjectID.json │ │ │ ├── QSW-3470-28T-AC_sysObjectID.json │ │ │ ├── QSW-3470-28T-AC_v7_sysObjectID.json │ │ │ ├── QSW-4610-28T-AC_sysObjectID.json │ │ │ ├── QSW-8200-28F-AC-DC_sysObjectID.json │ │ │ ├── QSW-8200-28F_sysObjectID.json │ │ │ ├── QSW-8200-SwitchDevice_sysObjectID │ │ │ └── QSW-8300-52F-AC_sysObjectID.json │ ├── Raisecom │ │ ├── RCIOS │ │ │ └── Raisecom_RCIOS_ALL.json │ │ └── ROS │ │ │ ├── ALL.json │ │ │ ├── ISCOM2110EA-MA-WP.json │ │ │ └── ISCOM2128EA-MA-AC_sysObjectID.json │ ├── Rotek │ │ ├── BT │ │ │ └── RT-BT_sysObjectID.json │ │ ├── ROS │ │ │ └── RS-I-2308FE-PoE_sysObjectID.json │ │ ├── RTBS │ │ │ └── RT-BS24-WFN2E_sysObjectID.json │ │ └── RTBSv1 │ │ │ └── RT-BS24-WFN2E_v1_sysObjectID.json │ ├── Rubytech │ │ └── l2ms │ │ │ └── 2310C_sysObjectID.json │ ├── SKS │ │ └── SKS │ │ │ ├── SKS-16E1-IP-1U_sysObjectID.json │ │ │ ├── SKS-16E1-IP-ES-L_sysObjectID.json │ │ │ ├── SKS-16E1-IP-ES-L_sysObjectID3.json │ │ │ ├── SKS-16E1-IP-ES-L_sysObjectID_2.json │ │ │ └── SKS-16E1-IP-I-16P_sysObjectID.json │ ├── STerra │ │ └── Gate │ │ │ └── ALL_sysObjectID.json │ ├── SecurityCode │ │ └── Kontinent │ │ │ ├── ALL sysObjectID_2.json │ │ │ └── ALL_sysObjectID.json │ ├── Siklu │ │ └── EH │ │ │ └── EH-1200L_v700_sysObjectID.json │ ├── Sumavision │ │ └── IPQAM │ │ │ └── 10K511N_sysObjectID.json │ ├── Symbol │ │ └── AP │ │ │ └── AP71XX_sysObjectID.json │ ├── TFortis │ │ └── PSW │ │ │ ├── HTTP2 │ │ │ └── PSW-2G6F+.json │ │ │ └── PSW-2G6F+.json │ ├── TPLink │ │ ├── EAP.json │ │ ├── SL5428E.json │ │ └── T2600G.json │ ├── Telecom │ │ ├── CPE │ │ │ └── CPE-WIFI-2G.json │ │ └── FXS │ │ │ └── FXS.json │ ├── Telindus │ │ └── SHDSL │ │ │ └── Telindus_SHDSL_ALL.json │ ├── Terayon │ │ └── BW │ │ │ └── sysObjectID.json │ ├── Ttronics │ │ └── Ttronics_KUB_NANO_sysObjectID.json │ ├── Ubiquiti │ │ └── AirOS │ │ │ └── sysObjectID.json │ ├── Upvel │ │ └── Upvel_UP204MGEC_sysObjectID.json │ ├── Vector │ │ └── Lambda │ │ │ └── sysObjectID.json │ ├── Vitesse │ │ └── VSC │ │ │ ├── VSC7460_sysObjectID.json │ │ │ ├── VSC7460v2_sysObjectID.json │ │ │ └── Vitesse_VSC_sysObjectID.json │ ├── Vyatta │ │ └── Vyatta │ │ │ ├── sysDescr.json │ │ │ └── sysObjectID.json │ ├── ZTE │ │ ├── ZXA10 │ │ │ ├── C300M_sysObjectID.json │ │ │ ├── C300_sysObjectID.json │ │ │ ├── C320_sysObjectID.json │ │ │ ├── C350M_sysObjectID.json │ │ │ ├── C610_sysObjectID.json │ │ │ ├── C620_sysObjectID.json │ │ │ └── C650_sysObjectID.json │ │ ├── ZXDSL98xx │ │ │ ├── ZTE9806E_sysObjectID.json │ │ │ ├── ZTE9806H_sysObjectID.json │ │ │ └── ZXR10_sysObjectID.json │ │ └── ZXR10 │ │ │ └── C220_sysObjectID.json │ ├── Zhone │ │ ├── Bitstorm │ │ │ ├── 4229-A1-520_sysObjectID.json │ │ │ └── 8820-A2-xxx_sysObjectID.json │ │ └── MXK │ │ │ └── PonoXL.json │ └── Zyxel │ │ ├── DSLAM │ │ └── VES-1624FT-55A_sysObjectID.json │ │ ├── MSAN │ │ ├── IES-1000_AAM1008-61_sysObjectID.json │ │ ├── IES-1000_sysObjectID.json │ │ ├── IES-5005_sysObjectID.json │ │ ├── IES-5k_sysObjectID.json │ │ ├── IES-6000_sysObjectID.json │ │ ├── IES-612_sysObjectID.json │ │ ├── IES1248-51V_sysObjectID.json │ │ ├── IES1248-51_sysObjectID.json │ │ └── IES1248-71_sysObjectID.json │ │ └── ZyNOS │ │ ├── ALL_sysObjectID.json │ │ ├── ES-2024A_sysObjectID.json │ │ ├── ES-2226_sysObjectID.json │ │ ├── ES-3124-4F_sysObjectID.json │ │ └── ES-3124_sysObjectID.json ├── sa.profiles │ ├── 3Com │ │ ├── SuperStack.json │ │ ├── SuperStack3.json │ │ ├── SuperStack3_4400.json │ │ └── SuperStack3_4500.json │ ├── APC │ │ └── AOS.json │ ├── AcmePacket │ │ └── NetNet.json │ ├── AddPac │ │ └── APOS.json │ ├── Alcatel │ │ ├── 7302.json │ │ ├── 7324RU.json │ │ ├── AOS.json │ │ ├── OS62xx.json │ │ ├── Stinger.json │ │ └── TIMOS.json │ ├── Alentis │ │ └── NetPing.json │ ├── AlliedTelesis │ │ ├── AT8000.json │ │ ├── AT8000S.json │ │ ├── AT8500.json │ │ ├── AT8700.json │ │ ├── AT9400.json │ │ └── AT9900.json │ ├── Alstec │ │ ├── 24xx.json │ │ ├── 7200.json │ │ ├── ALS.json │ │ └── MSPU.json │ ├── Angtel │ │ └── Topaz.json │ ├── Arista │ │ └── EOS.json │ ├── Aruba │ │ └── ArubaOS.json │ ├── Audiocodes │ │ └── Mediant2000.json │ ├── BDCOM │ │ ├── IOS.json │ │ └── xPON.json │ ├── Beward │ │ ├── BD.json │ │ └── Doorphone.json │ ├── Bradbury │ │ └── HighVideo.json │ ├── Brocade │ │ ├── ADX.json │ │ ├── CER-ADV.json │ │ ├── CER.json │ │ ├── FabricOS.json │ │ └── IronWare.json │ ├── CData │ │ └── xPON.json │ ├── Cambium │ │ └── ePMP.json │ ├── Carelink │ │ └── SWG.json │ ├── Cisco │ │ ├── 1900.json │ │ ├── ASA.json │ │ ├── AireOS.json │ │ ├── CatOS.json │ │ ├── DCM.json │ │ ├── FWSM.json │ │ ├── IOS.json │ │ ├── IOSXR.json │ │ ├── NXOS.json │ │ ├── SANOS.json │ │ ├── SCOS.json │ │ ├── SMB.json │ │ └── WLC.json │ ├── DCN │ │ ├── DCWL.json │ │ └── DCWS.json │ ├── DLink │ │ ├── DAS.json │ │ ├── DES21xx.json │ │ ├── DFL.json │ │ ├── DGS3100.json │ │ ├── DIR.json │ │ ├── DVG.json │ │ ├── DxS.json │ │ ├── DxS_Cisco_CLI.json │ │ ├── DxS_Industrial_CLI.json │ │ └── DxS_Smart.json │ ├── Dahua │ │ └── DH.json │ ├── Dell │ │ ├── Powerconnect55xx.json │ │ └── Powerconnect62xx.json │ ├── ECI │ │ ├── SAM.json │ │ └── SANI.json │ ├── EdgeCore │ │ └── ES.json │ ├── ElectronR │ │ └── KO01M.json │ ├── Eltex │ │ ├── DSLAM.json │ │ ├── ESR.json │ │ ├── LTE.json │ │ ├── LTP.json │ │ ├── LTP16N.json │ │ ├── MA4000.json │ │ ├── MES.json │ │ ├── MES24xx.json │ │ ├── MES5448.json │ │ ├── PON.json │ │ ├── RG.json │ │ ├── SMG.json │ │ ├── TAU.json │ │ ├── WOP.json │ │ └── WOPLR.json │ ├── Enterasys │ │ └── EOS.json │ ├── Ericsson │ │ ├── MINI_LINK.json │ │ └── SEOS.json │ ├── Extreme │ │ ├── Summit200.json │ │ └── XOS.json │ ├── Force10 │ │ ├── FTOS.json │ │ └── SFTOS.json │ ├── Fortinet │ │ └── Fortigate.json │ ├── GWD │ │ └── GFA.json │ ├── Generic │ │ └── Host.json │ ├── H3C │ │ └── VRP.json │ ├── HP │ │ ├── 1905.json │ │ ├── 1910.json │ │ ├── Aruba.json │ │ ├── Comware.json │ │ ├── GbE2.json │ │ ├── OfficeConnect.json │ │ ├── ProCurve.json │ │ ├── ProCurve9xxx.json │ │ └── iLO2.json │ ├── Harmonic │ │ ├── BNSG9000.json │ │ ├── DiviComElectra.json │ │ └── ProStream1000.json │ ├── Hikvision │ │ ├── DS2CD.json │ │ └── DSKV8.json │ ├── Huawei │ │ ├── MA5300.json │ │ ├── MA5600T.json │ │ ├── UMG8900.json │ │ ├── VRP.json │ │ └── VRP3.json │ ├── IBM │ │ └── NOS │ │ │ └── NOS.json │ ├── IRE-Polus │ │ ├── Horizon.json │ │ └── Taros.json │ ├── InfiNet │ │ └── WANFlexX.json │ ├── Intracom │ │ └── UltraLink.json │ ├── Iskratel │ │ ├── ESCOM.json │ │ ├── MBAN.json │ │ ├── MSAN.json │ │ └── VOIP.json │ ├── Juniper │ │ ├── EX2500.json │ │ ├── JUNOS.json │ │ ├── JUNOSe.json │ │ ├── SRCPE.json │ │ └── ScreenOS.json │ ├── Linksys │ │ ├── SPS2xx.json │ │ ├── SRW.json │ │ └── VoIP.json │ ├── Linux │ │ ├── Alt.json │ │ ├── Astra.json │ │ ├── Debian.json │ │ ├── Openwrt.json │ │ └── RHEL.json │ ├── Lucent │ │ └── Stinger.json │ ├── MRV │ │ └── FD.json │ ├── Maipu │ │ └── OS.json │ ├── Meinberg │ │ └── LANTIME.json │ ├── Mellanox │ │ ├── Cumulus.json │ │ └── Onyx.json │ ├── MikroTik │ │ ├── RouterOS.json │ │ └── SwOS.json │ ├── NAG │ │ ├── SNR.json │ │ └── SNR_eNOS.json │ ├── NSCComm │ │ └── LPOS.json │ ├── NSGATE │ │ └── NIS.json │ ├── NSN │ │ ├── TIMOS.json │ │ └── hiX56xx.json │ ├── Nateks │ │ ├── FlexGain.json │ │ ├── FlexGainACE24.json │ │ └── NetXpert.json │ ├── NextIO │ │ └── vNet.json │ ├── Nortel │ │ └── BayStack425.json │ ├── OS │ │ ├── ESXi.json │ │ ├── FreeBSD.json │ │ └── Linux.json │ ├── OneAccess │ │ └── TDRE.json │ ├── Opticin │ │ └── OS.json │ ├── Orion │ │ └── NOS.json │ ├── Planar │ │ └── SDO3000.json │ ├── Planet │ │ └── WGSD.json │ ├── Polygon │ │ └── IOS.json │ ├── Proscend │ │ └── SHDSL.json │ ├── Protei │ │ └── MediaGateway.json │ ├── Qtech │ │ ├── BFC-PBIC-S.json │ │ ├── QFC.json │ │ ├── QOS.json │ │ ├── QSW.json │ │ ├── QSW2500.json │ │ ├── QSW2800.json │ │ └── QSW8200.json │ ├── Raisecom │ │ ├── RCIOS.json │ │ └── ROS.json │ ├── Raritan │ │ └── DominionSX.json │ ├── Rotek │ │ ├── BT.json │ │ ├── RTBS.json │ │ └── RTBSv1.json │ ├── Rubytech │ │ └── l2ms.json │ ├── Ruckus │ │ ├── SmartZone.json │ │ └── ZoneDirector.json │ ├── SKS │ │ └── SKS.json │ ├── STerra │ │ └── Gate.json │ ├── SecurityCode │ │ └── Kontinent.json │ ├── Sencore │ │ └── Probe.json │ ├── Siklu │ │ └── EH.json │ ├── Sumavision │ │ ├── EMR.json │ │ └── IPQAM.json │ ├── Sun │ │ └── iLOM3.json │ ├── Supertel │ │ └── K2X.json │ ├── Symbol │ │ └── AP.json │ ├── TFortis │ │ └── PSW.json │ ├── TPLink │ │ ├── EAP.json │ │ ├── SL5428E.json │ │ └── T2600G.json │ ├── Tangram │ │ └── GT21.json │ ├── Telecom │ │ ├── CPE.json │ │ └── FXS.json │ ├── Telindus │ │ └── SHDSL.json │ ├── Terayon │ │ └── BW.json │ ├── Ttronics │ │ └── KUB.json │ ├── Ubiquiti │ │ ├── AirOS.json │ │ └── Controller.json │ ├── Upvel │ │ └── UP.json │ ├── VMWare │ │ ├── vCenter.json │ │ ├── vHost.json │ │ └── vMachine.json │ ├── Vector │ │ └── Lambda.json │ ├── Vitesse │ │ └── VSC.json │ ├── Vyatta │ │ └── Vyatta.json │ ├── ZTE │ │ ├── ZXA10.json │ │ ├── ZXDSL531.json │ │ ├── ZXDSL98xx.json │ │ └── ZXR10.json │ ├── Zebra │ │ └── Zebra.json │ ├── Zhone │ │ ├── Bitstorm.json │ │ └── MXK.json │ ├── Zyxel │ │ ├── DSLAM.json │ │ ├── MSAN.json │ │ ├── ZyNOS.json │ │ ├── ZyNOS_EE.json │ │ └── ZyNOSv2.json │ └── f5 │ │ └── BIGIP.json ├── wf.states │ ├── Agent_Default_Approved.json │ ├── Agent_Default_New.json │ ├── Agent_Default_Ready.json │ ├── Agent_Default_Removing.json │ ├── Agent_Default_Suspended.json │ ├── BGP_Peer_Default_Active.json │ ├── BGP_Peer_Default_Missed.json │ ├── BGP_Peer_Default_Planned.json │ ├── BGP_Peer_Default_Provisioning.json │ ├── BGP_Peer_Default_Shutdown.json │ ├── Default_Ready.json │ ├── Default_Resource_Approved.json │ ├── Default_Resource_Cooldown.json │ ├── Default_Resource_Free.json │ ├── Default_Resource_Ready.json │ ├── Default_Resource_Reserved.json │ ├── Default_Resource_Suspended.json │ ├── Discovered_Object_Default_Approved.json │ ├── Discovered_Object_Default_Duplicated.json │ ├── Discovered_Object_Default_Ignored.json │ ├── Discovered_Object_Default_New.json │ ├── Discovered_Object_Default_Removing.json │ ├── ManagedObject_Default_Managed.json │ ├── ManagedObject_Default_Not_Managed.json │ ├── ManagedObject_Default_Removing.json │ ├── SLAProbe_Default_Missed.json │ ├── SLAProbe_Default_Non-operational.json │ ├── SLAProbe_Default_Ok.json │ ├── Sensor_Default_Missed.json │ ├── Sensor_Default_Non-operational.json │ ├── Sensor_Default_Ok.json │ ├── Service_Default_Closed.json │ ├── Service_Default_Planned.json │ ├── Service_Default_Provisioning.json │ ├── Service_Default_Provisioning_Failed.json │ ├── Service_Default_Ready.json │ ├── Service_Default_Removing.json │ ├── Service_Default_Removing_Failed.json │ ├── Service_Default_Suspended.json │ ├── Service_Default_Testing.json │ └── Service_Default_Unknown.json ├── wf.transitions │ ├── Agent_Default_Approved_Ready_Seen.json │ ├── Agent_Default_New_Approved_Approve.json │ ├── Agent_Default_Ready_Suspended_Suspend.json │ ├── Agent_Default_Suspended_Ready_Resume.json │ ├── Agent_Default_Suspended_Removing_Remove.json │ ├── BGP_Peer_Default_Active_Missed_Missed.json │ ├── BGP_Peer_Default_Active_Shutdown_Down.json │ ├── BGP_Peer_Default_Missed_Active_Seen.json │ ├── BGP_Peer_Default_Planned_Active_Up.json │ ├── BGP_Peer_Default_Planned_Provisioning_Deploy.json │ ├── BGP_Peer_Default_Provisioning_Active_Approve.json │ ├── BGP_Peer_Default_Shutdown_Active_Up.json │ ├── Default_Resource_Approved_Ready_Seen.json │ ├── Default_Resource_Cooldown_Free_Expired.json │ ├── Default_Resource_Cooldown_Ready_Seen.json │ ├── Default_Resource_Free_Ready_Seen.json │ ├── Default_Resource_Free_Reserved_Reserve.json │ ├── Default_Resource_Ready_Cooldown_Expired.json │ ├── Default_Resource_Ready_Suspended_Suspend.json │ ├── Default_Resource_Reserved_Approved_Approve.json │ ├── Default_Resource_Reserved_Free_Expired.json │ ├── Default_Resource_Suspended_Ready_Resume.json │ ├── Discovered_Object_Default_Approved_Removing_Remove.json │ ├── Discovered_Object_Default_Ignored_Removing_Remove.json │ ├── Discovered_Object_Default_New_Approved_Approve.json │ ├── Discovered_Object_Default_New_Duplicated_Duplicate.json │ ├── Discovered_Object_Default_New_Ignored_Ignore.json │ ├── Discovered_Object_Default_New_Removing_Expired.json │ ├── Discovered_Object_Default_Removing_New_Seen.json │ ├── ManagedObject_Default_Managed_Not_Managed_Unmanaged.json │ ├── ManagedObject_Default_Managed_Removing_Remove.json │ ├── ManagedObject_Default_Not_Managed_Managed_Managed.json │ ├── ManagedObject_Default_Not_Managed_Removing_Remove.json │ ├── ManagedObject_Default_Removing_Not_Managed_Restore.json │ ├── SLAProbe_Default_Missed_Ok_Seen.json │ ├── SLAProbe_Default_Non-operational_Missed_Missed.json │ ├── SLAProbe_Default_Non-operational_Ok_Up.json │ ├── SLAProbe_Default_Ok_Missed_Missed.json │ ├── SLAProbe_Default_Ok_Non-operational_Down.json │ ├── Sensor_Default_Missed_Ok_Seen.json │ ├── Sensor_Default_Non-operational_Ok_Fixed.json │ ├── Sensor_Default_Ok_Missed_missed.json │ ├── Sensor_Default_Ok_Non-operational_Non-operational.json │ ├── Service_Default_Planned_Provisioning_Deploy.json │ ├── Service_Default_Provisioning_Failed_Provisioning_Fix.json │ ├── Service_Default_Provisioning_Testing_Check.json │ ├── Service_Default_Ready_Suspended_Suspend.json │ ├── Service_Default_Removing_Closed_Close.json │ ├── Service_Default_Removing_Failed_Removing_Fix.json │ ├── Service_Default_Removing_Removing_Failed_Fail.json │ ├── Service_Default_Suspended_Ready_Resume.json │ ├── Service_Default_Suspended_Removing_Remove.json │ ├── Service_Default_Testing_Provisioning_Failed_Fail.json │ ├── Service_Default_Testing_Ready_Approve.json │ └── Service_Default_Unknown_Planned_Plan.json └── wf.workflows │ ├── Agent_Default.json │ ├── BGP_Peer_Default.json │ ├── Default.json │ ├── Default_Resource.json │ ├── Discovered_Object_Default.json │ ├── ManagedObject_Default.json │ ├── SLAProbe_Default.json │ ├── Sensor_Default.json │ └── Service_Default.json ├── commands ├── __init__.py ├── about.py ├── alarm.py ├── beef.py ├── bi.py ├── cdag.py ├── ch-policy.py ├── check-metric.py ├── classify.py ├── clean-asset.py ├── clean-label.py ├── collection.py ├── confdb.py ├── config.py ├── convert-moin.py ├── convert-xcvr-descr-to-data.py ├── crashinfo.py ├── csv-export.py ├── csv-import.py ├── ctl.sh ├── datastream.py ├── discovery.py ├── dnszone.py ├── dump-addr.py ├── dump-crashinfo.py ├── ensure-indexes.py ├── escalation.py ├── etl.py ├── events.py ├── fix.py ├── forensic.py ├── get-device-identity.py ├── get-device-sample.py ├── get-uuid.py ├── gridvcs.py ├── help.py ├── import-rancid.py ├── index.py ├── interface-profile.py ├── inventory.py ├── job.py ├── l3-topology.py ├── liftbridge.py ├── link.py ├── login.py ├── metrics.py ├── mib.py ├── migrate-ch.py ├── migrate-liftbridge.py ├── migrate-pools.py ├── migrate-repo.py ├── migrate-slots.py ├── migrate.py ├── mongo.sh ├── msgstream.py ├── net-scan.py ├── network-scan.py ├── newapp.py ├── notify.py ├── nri-link.py ├── nri.py ├── parse-events.py ├── ping.py ├── prefix-list.py ├── pretty.py ├── psql.sh ├── pythonpath.py ├── rca-debug.py ├── report.py ├── rpc.py ├── run.py ├── script.py ├── segment.py ├── service.py ├── shell.sh ├── snmp.py ├── stencil.py ├── sync-mibs.py ├── sync-perm.py ├── sync-refbooks.py ├── tech-report.py ├── todos.py ├── translation.py ├── user.py ├── verify-model.py ├── whois.py ├── wipe.py └── workflow.py ├── config.py ├── core ├── __init__.py ├── acl.py ├── bgp.py ├── bi │ ├── __init__.py │ ├── decorator.py │ ├── dictionaries │ │ ├── __init__.py │ │ ├── administrativedomain.py │ │ ├── alarmclass.py │ │ ├── container.py │ │ ├── cpe.py │ │ ├── eventclass.py │ │ ├── interfaceattributes.py │ │ ├── interfacedescription.py │ │ ├── interfaceprofile.py │ │ ├── loader.py │ │ ├── managedobject.py │ │ ├── networksegment.py │ │ ├── objectdiagnosticconfig.py │ │ ├── objectprofile.py │ │ ├── platform.py │ │ ├── pool.py │ │ ├── profile.py │ │ ├── project.py │ │ ├── remotesystem.py │ │ ├── service.py │ │ ├── serviceprofile.py │ │ ├── slaprobe.py │ │ ├── state.py │ │ ├── subscriberprofile.py │ │ ├── vendor.py │ │ ├── version.py │ │ └── workflow.py │ └── query.py ├── bioseg │ ├── __init__.py │ ├── moderator │ │ ├── __init__.py │ │ └── base.py │ └── policies │ │ ├── __init__.py │ │ ├── base.py │ │ ├── calcify.py │ │ ├── eat.py │ │ ├── feed.py │ │ ├── keep.py │ │ ├── loader.py │ │ └── merge.py ├── cache │ ├── __init__.py │ ├── base.py │ ├── decorator.py │ ├── mongo.py │ └── redis.py ├── caps │ ├── __init__.py │ ├── decorator.py │ └── types.py ├── cdag │ ├── __init__.py │ ├── factory │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── json.py │ │ ├── scope.py │ │ └── yaml.py │ ├── graph.py │ ├── node │ │ ├── __init__.py │ │ ├── abs.py │ │ ├── acos.py │ │ ├── add.py │ │ ├── alarm.py │ │ ├── asin.py │ │ ├── atan.py │ │ ├── base.py │ │ ├── composeprobe.py │ │ ├── cos.py │ │ ├── div.py │ │ ├── dump.py │ │ ├── eq.py │ │ ├── exp.py │ │ ├── expdecay.py │ │ ├── gauss.py │ │ ├── indicator.py │ │ ├── key.py │ │ ├── loader.py │ │ ├── logistic.py │ │ ├── mean.py │ │ ├── metrics.py │ │ ├── mul.py │ │ ├── ne.py │ │ ├── neg.py │ │ ├── none.py │ │ ├── nth.py │ │ ├── one.py │ │ ├── percentile.py │ │ ├── probe.py │ │ ├── relu.py │ │ ├── sin.py │ │ ├── softplus.py │ │ ├── sqrt.py │ │ ├── state.py │ │ ├── std.py │ │ ├── sub.py │ │ ├── subgraph.py │ │ ├── sumstep.py │ │ ├── tan.py │ │ ├── threshold.py │ │ ├── value.py │ │ └── window.py │ ├── tx.py │ └── typing.py ├── change │ ├── __init__.py │ ├── change.py │ ├── decorator.py │ ├── model.py │ └── policy.py ├── channel │ ├── __init__.py │ └── types.py ├── checkers │ ├── __init__.py │ ├── base.py │ ├── cli.py │ ├── fail.py │ ├── http.py │ ├── loader.py │ ├── nodata.py │ ├── snmp.py │ └── tcp.py ├── clickhouse │ ├── __init__.py │ ├── connect.py │ ├── dictionary.py │ ├── engines.py │ ├── ensure.py │ ├── error.py │ ├── fields.py │ ├── functions.py │ ├── loader.py │ └── model.py ├── collection │ ├── __init__.py │ └── base.py ├── colors.py ├── comp.py ├── compressor │ ├── __init__.py │ ├── base.py │ ├── bz2.py │ ├── gzip.py │ ├── loader.py │ ├── lzma.py │ ├── plain.py │ └── util.py ├── confdb │ ├── __init__.py │ ├── applicator │ │ ├── __init__.py │ │ ├── adminstatus.py │ │ ├── base.py │ │ ├── cdpstatus.py │ │ ├── collapsetagged.py │ │ ├── fitype.py │ │ ├── interfacediscovery.py │ │ ├── interfacetype.py │ │ ├── interfaceuntaggedvlan.py │ │ ├── lldpstatus.py │ │ ├── loopdetectstatus.py │ │ ├── meta.py │ │ ├── ntp.py │ │ ├── query.py │ │ ├── rebase.py │ │ ├── stppriority.py │ │ ├── stpstatus.py │ │ ├── systemaaaorder.py │ │ ├── systemaaaservicelocal.py │ │ ├── systemaaasourceaddresslookup.py │ │ └── systemuserclass.py │ ├── collator │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ifname.py │ │ ├── ifpath.py │ │ ├── profile.py │ │ └── typing.py │ ├── db │ │ ├── __init__.py │ │ ├── base.py │ │ ├── marshall │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── indent.py │ │ │ ├── json.py │ │ │ ├── loader.py │ │ │ ├── mongo.py │ │ │ └── tree.py │ │ └── node.py │ ├── engine │ │ ├── __init__.py │ │ ├── base.py │ │ ├── transformer.py │ │ └── var.py │ ├── normalizer │ │ ├── __init__.py │ │ └── base.py │ ├── syntax │ │ ├── __init__.py │ │ ├── base.py │ │ ├── defs.py │ │ ├── hints.py │ │ ├── interfaces │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── hints.py │ │ ├── media │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── sources │ │ │ │ ├── __init__.py │ │ │ │ ├── audio │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── base.py │ │ │ │ ├── base.py │ │ │ │ └── video │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── base.py │ │ │ └── streams │ │ │ │ ├── __init__.py │ │ │ │ ├── audio │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ │ ├── base.py │ │ │ │ ├── overlays │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ │ └── video │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ ├── meta │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── interfaces.py │ │ ├── patterns.py │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── cdp │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── hints.py │ │ │ ├── dns │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── hints.py │ │ │ ├── lacp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── lldp │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── hints.py │ │ │ ├── loopdetect │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── hints.py │ │ │ ├── ntp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── spanningtree │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── hints.py │ │ │ ├── syslog │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ └── udld │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ ├── system │ │ │ ├── __init__.py │ │ │ ├── aaa │ │ │ │ ├── base.py │ │ │ │ └── hints.py │ │ │ ├── base.py │ │ │ └── hints.py │ │ └── virtualrouter │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── hints.py │ │ │ ├── interfaces │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── hints.py │ │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bgp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── https │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── igmpsnooping │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── isis │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── ldp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── mpls │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── ospf │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── pim │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── rsvp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── snmp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── ssh │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── telnet │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ └── vrrp │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ └── route │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── inet │ │ │ ├── __init__.py │ │ │ └── base.py │ │ │ └── inet6 │ │ │ ├── __init__.py │ │ │ └── base.py │ └── tokenizer │ │ ├── __init__.py │ │ ├── base.py │ │ ├── context.py │ │ ├── curly.py │ │ ├── indent.py │ │ ├── ini.py │ │ ├── line.py │ │ ├── loader.py │ │ └── routeros.py ├── config │ ├── __init__.py │ ├── base.py │ ├── params.py │ └── proto │ │ ├── __init__.py │ │ ├── base.py │ │ ├── consul.py │ │ ├── env.py │ │ ├── legacy.py │ │ └── yaml.py ├── constraint │ ├── __init__.py │ ├── base.py │ ├── constraintset.py │ ├── protocol.py │ └── wave.py ├── consul.py ├── convert │ ├── __init__.py │ └── dbm.py ├── copy.py ├── crypto.py ├── csvutils.py ├── datasources │ ├── __init__.py │ ├── base.py │ ├── discoveryidcachepoisonds.py │ ├── discoveryproblemds.py │ ├── discoverysummary.py │ ├── escalationsds.py │ ├── interfacedetailds.py │ ├── interfacemacsstatds.py │ ├── interfaceprofilestatsds.py │ ├── interfacesstatusstatds.py │ ├── linkdetailds.py │ ├── linkedmethodstatds.py │ ├── loader.py │ ├── managedobjectavailabilityds.py │ ├── managedobjectcapsds.py │ ├── managedobjectconfigds.py │ ├── managedobjectdpds.py │ ├── managedobjectds.py │ ├── managedobjectlabelsstatds.py │ ├── managedobjectlocationds.py │ ├── movedmacsds.py │ ├── objectds.py │ ├── objectmodeldatads.py │ ├── partnumbersds.py │ ├── pendinglinksds.py │ ├── rebootsds.py │ ├── reportdsalarms.py │ ├── topologyproblemds.py │ ├── ttsystemstatds.py │ └── unknownsummaryds.py ├── datastream │ ├── __init__.py │ ├── base.py │ ├── client.py │ └── loader.py ├── dateutils.py ├── dcs │ ├── __init__.py │ ├── base.py │ ├── consul.py │ ├── error.py │ ├── loader.py │ └── util.py ├── debug.py ├── defer.py ├── deprecations.py ├── diagnostic │ ├── __init__.py │ ├── decorator.py │ ├── handler.py │ ├── hub.py │ └── types.py ├── discriminator.py ├── dns │ ├── __init__.py │ ├── encoding.py │ ├── rr.py │ └── zonefile.py ├── ecma48.py ├── error.py ├── escape.py ├── etl │ ├── __init__.py │ ├── bi │ │ ├── __init__.py │ │ ├── extractor │ │ │ ├── __init__.py │ │ │ ├── alarmlogs.py │ │ │ ├── alarms.py │ │ │ ├── archive.py │ │ │ ├── base.py │ │ │ ├── managedobject.py │ │ │ └── reboots.py │ │ └── stream.py │ ├── compression.py │ ├── extractor │ │ ├── __init__.py │ │ ├── base.py │ │ ├── fias.py │ │ ├── mysql.py │ │ ├── netbox.py │ │ ├── oracle.py │ │ ├── sql.py │ │ ├── vcenter.py │ │ └── zabbix.py │ ├── loader │ │ ├── __init__.py │ │ ├── address.py │ │ ├── admdiv.py │ │ ├── administrativedomain.py │ │ ├── authprofile.py │ │ ├── base.py │ │ ├── building.py │ │ ├── chain.py │ │ ├── container.py │ │ ├── fmevent.py │ │ ├── ipaddress.py │ │ ├── ipaddressprofile.py │ │ ├── ipprefix.py │ │ ├── ipprefixprofile.py │ │ ├── ipvrf.py │ │ ├── l2domain.py │ │ ├── label.py │ │ ├── link.py │ │ ├── loader.py │ │ ├── managedobject.py │ │ ├── managedobjectprofile.py │ │ ├── networksegment.py │ │ ├── networksegmentprofile.py │ │ ├── object.py │ │ ├── pmagent.py │ │ ├── project.py │ │ ├── resourcegroup.py │ │ ├── sensor.py │ │ ├── service.py │ │ ├── serviceprofile.py │ │ ├── street.py │ │ ├── subscriber.py │ │ ├── subscriberprofile.py │ │ └── ttsystem.py │ ├── models │ │ ├── __init__.py │ │ ├── address.py │ │ ├── admdiv.py │ │ ├── administrativedomain.py │ │ ├── authprofile.py │ │ ├── base.py │ │ ├── building.py │ │ ├── container.py │ │ ├── division.py │ │ ├── fmevent.py │ │ ├── ipaddress.py │ │ ├── ipaddressprofile.py │ │ ├── ipprefix.py │ │ ├── ipprefixprofile.py │ │ ├── ipvrf.py │ │ ├── l2domain.py │ │ ├── label.py │ │ ├── link.py │ │ ├── loader.py │ │ ├── managedobject.py │ │ ├── managedobjectprofile.py │ │ ├── networksegment.py │ │ ├── networksegmentprofile.py │ │ ├── object.py │ │ ├── pmagent.py │ │ ├── project.py │ │ ├── resourcegroup.py │ │ ├── sensor.py │ │ ├── service.py │ │ ├── serviceprofile.py │ │ ├── street.py │ │ ├── subscriber.py │ │ ├── subscriberprofile.py │ │ ├── ttsystem.py │ │ └── typing.py │ ├── portmapper │ │ ├── VCENTER.py │ │ ├── __init__.py │ │ ├── base.py │ │ └── loader.py │ ├── remotemappings.py │ └── remotesystem │ │ ├── __init__.py │ │ └── base.py ├── expr.py ├── facade │ ├── __init__.py │ ├── box.py │ ├── fallback.py │ ├── interaction.py │ ├── load.py │ ├── rack.py │ ├── response.py │ ├── template.py │ └── utils.py ├── feature.py ├── fileutils.py ├── fm │ ├── __init__.py │ ├── enum.py │ ├── event.py │ └── request.py ├── forms.py ├── geo.py ├── geocoder │ ├── __init__.py │ ├── base.py │ ├── errors.py │ ├── google.py │ ├── loader.py │ ├── osm.py │ └── yandex.py ├── glyph.py ├── graph │ ├── __init__.py │ └── nexthop.py ├── gridvcs │ ├── __init__.py │ ├── base.py │ ├── manager.py │ ├── revision.py │ └── utils.py ├── handler.py ├── hash.py ├── hist │ ├── __init__.py │ ├── base.py │ └── monitor.py ├── html.py ├── http │ ├── __init__.py │ ├── async_client.py │ ├── client.py │ ├── proxy.py │ ├── resolver.py │ └── sync_client.py ├── importer.py ├── interface │ ├── __init__.py │ ├── base.py │ ├── error.py │ ├── loader.py │ └── parameter.py ├── inv │ ├── __init__.py │ ├── attach │ │ ├── __init__.py │ │ ├── container.py │ │ ├── module.py │ │ └── rack.py │ ├── clone.py │ ├── codec.py │ ├── info.py │ ├── path.py │ ├── remove.py │ └── result.py ├── ioloop │ ├── __init__.py │ ├── snmp.py │ ├── timers.py │ ├── udp.py │ ├── udpserver.py │ ├── util.py │ └── whois.py ├── ip.py ├── jsonutils.py ├── lldp.py ├── loader │ ├── __init__.py │ └── base.py ├── lock │ ├── __init__.py │ ├── base.py │ ├── distributed.py │ └── process.py ├── log.py ├── mac.py ├── management │ ├── __init__.py │ └── base.py ├── matcher.py ├── mib.py ├── middleware │ ├── __init__.py │ ├── extformat.py │ ├── remoteuser.py │ └── tls.py ├── migration │ ├── __init__.py │ ├── base.py │ ├── db.py │ ├── loader.py │ └── runner.py ├── mime.py ├── model │ ├── __init__.py │ ├── base.py │ ├── databasestorage.py │ ├── db │ │ ├── __init__.py │ │ ├── base.py │ │ └── monitor.py │ ├── decorator.py │ ├── dynamicprofile.py │ ├── fields.py │ ├── sql.py │ └── util.py ├── models │ ├── __init__.py │ ├── cfgactions.py │ ├── cfginteractions.py │ ├── cfgmetrics.py │ ├── escalationpolicy.py │ ├── inputsources.py │ ├── problem.py │ ├── sensorprotos.py │ ├── serviceinstanceconfig.py │ ├── servicestatus.py │ └── valuetype.py ├── mongo │ ├── __init__.py │ ├── connection.py │ ├── connection_async.py │ ├── fields.py │ └── monitor.py ├── msgstream │ ├── __init__.py │ ├── client.py │ ├── config.py │ ├── error.py │ ├── liftbridge.py │ ├── message.py │ ├── metadata.py │ ├── queue.py │ ├── queuebuffer.py │ └── redpanda.py ├── mx.py ├── palette.py ├── password │ ├── __init__.py │ ├── check.py │ └── hasher.py ├── path.py ├── perf.py ├── pm │ ├── __init__.py │ └── utils.py ├── prefixlist.py ├── prettyjson.py ├── profile │ ├── __init__.py │ ├── base.py │ ├── checker.py │ ├── diagnostic.py │ ├── error.py │ └── loader.py ├── protocols │ ├── __init__.py │ └── to_json.py ├── protodcsources │ ├── __init__.py │ ├── base.py │ ├── loader.py │ ├── optical_cwdm.py │ ├── optical_dwdm.py │ └── protocol.py ├── purgatorium.py ├── quantile │ ├── __init__.py │ ├── base.py │ └── monitor.py ├── ratelimit │ ├── __init__.py │ ├── asyncio.py │ ├── base.py │ └── sync.py ├── reporter │ ├── __init__.py │ ├── base.py │ ├── formatter │ │ ├── __init__.py │ │ ├── base.py │ │ ├── loader.py │ │ ├── simplereport.py │ │ ├── simpletable.py │ │ └── utils.py │ ├── report.py │ ├── reportsource.py │ └── types.py ├── resource.py ├── resourcegroup │ ├── __init__.py │ └── decorator.py ├── router │ ├── __init__.py │ ├── action.py │ ├── base.py │ ├── datastream.py │ ├── messagebuffer.py │ └── route.py ├── rpsl.py ├── runner │ ├── __init__.py │ ├── actions │ │ ├── __init__.py │ │ ├── action_commands.py │ │ ├── assert_cmp.py │ │ ├── base.py │ │ ├── dump.py │ │ ├── echo.py │ │ ├── fail.py │ │ ├── loader.py │ │ ├── script.py │ │ ├── setenv.py │ │ └── success.py │ ├── env.py │ ├── job.py │ ├── lock.py │ ├── models │ │ ├── __init__.py │ │ └── jobreq.py │ └── runner.py ├── scheduler │ ├── __init__.py │ ├── calljob.py │ ├── error.py │ ├── job.py │ ├── periodicjob.py │ └── scheduler.py ├── script │ ├── __init__.py │ ├── base.py │ ├── beef.py │ ├── caller.py │ ├── cli │ │ ├── __init__.py │ │ ├── base.py │ │ ├── beef.py │ │ ├── cli.py │ │ ├── error.py │ │ ├── ssh.py │ │ ├── stream.py │ │ └── telnet.py │ ├── context.py │ ├── credentialchecker.py │ ├── diagnostic.py │ ├── error.py │ ├── http │ │ ├── __init__.py │ │ ├── base.py │ │ └── middleware │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── basicauth.py │ │ │ ├── digestauth.py │ │ │ ├── jsonrequestid.py │ │ │ ├── jsonsession.py │ │ │ ├── loader.py │ │ │ ├── urlrequestid.py │ │ │ └── urlsession.py │ ├── loader.py │ ├── metrics.py │ ├── mml │ │ ├── __init__.py │ │ ├── base.py │ │ ├── error.py │ │ └── telnet.py │ ├── oidrules │ │ ├── __init__.py │ │ ├── bool.py │ │ ├── capindex.py │ │ ├── caplist.py │ │ ├── caps.py │ │ ├── counter.py │ │ ├── hires.py │ │ ├── ifindex.py │ │ ├── loader.py │ │ ├── match.py │ │ ├── oid.py │ │ └── oids.py │ ├── rtsp │ │ ├── __init__.py │ │ ├── base.py │ │ └── error.py │ ├── scheme.py │ ├── sessionstore.py │ └── snmp │ │ ├── __init__.py │ │ ├── base.py │ │ └── beef.py ├── service │ ├── __init__.py │ ├── base.py │ ├── client.py │ ├── deps │ │ ├── __init__.py │ │ ├── service.py │ │ └── user.py │ ├── error.py │ ├── fastapi.py │ ├── jsonrpcapi.py │ ├── loader.py │ ├── middleware │ │ ├── __init__.py │ │ ├── logging.py │ │ └── span.py │ ├── models │ │ ├── __init__.py │ │ └── jsonrpc.py │ ├── nodatachecker.py │ ├── paths │ │ ├── __init__.py │ │ ├── ctl.py │ │ ├── health.py │ │ ├── loader.py │ │ ├── metrics.py │ │ └── mon.py │ ├── pub.py │ ├── rpc.py │ ├── stormprotection.py │ └── stub.py ├── snmp │ ├── __init__.py │ ├── ber.py │ ├── consts.py │ ├── error.py │ ├── get.py │ ├── render.py │ ├── set.py │ ├── trap.py │ ├── util.py │ └── version.py ├── span.py ├── stencil.py ├── svg.py ├── techdomain │ ├── __init__.py │ ├── controller │ │ ├── __init__.py │ │ ├── base.py │ │ ├── loader.py │ │ ├── otn_odu.py │ │ ├── otn_oms.py │ │ ├── otn_osc.py │ │ └── otn_otu.py │ ├── mapper │ │ ├── __init__.py │ │ ├── base.py │ │ ├── loader.py │ │ ├── otn_odu.py │ │ ├── otn_oms.py │ │ ├── otn_osc.py │ │ └── otn_otu.py │ └── profile │ │ ├── __init__.py │ │ ├── base.py │ │ ├── channel.py │ │ ├── otn_odu.py │ │ ├── otn_oms.py │ │ ├── otn_osc.py │ │ └── otn_otu.py ├── text.py ├── threadpool.py ├── timeout.py ├── timepattern.py ├── topology │ ├── __init__.py │ ├── base.py │ ├── constraint │ │ ├── __init__.py │ │ ├── any.py │ │ ├── base.py │ │ ├── upwards.py │ │ └── vlan.py │ ├── goal │ │ ├── __init__.py │ │ ├── base.py │ │ ├── level.py │ │ └── managedobject.py │ ├── layout │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ring.py │ │ ├── spring.py │ │ └── tree.py │ ├── loader.py │ ├── map │ │ ├── __init__.py │ │ ├── configured.py │ │ ├── l2domain.py │ │ ├── objectcontainer.py │ │ ├── objectgroup.py │ │ ├── objectlevelneighbor.py │ │ └── segment.py │ ├── path.py │ ├── types.py │ └── uplink.py ├── tos.py ├── translation.py ├── tt │ ├── __init__.py │ ├── base.py │ ├── error.py │ ├── group.py │ └── types.py ├── typing.py ├── tz.py ├── url.py ├── validators.py ├── version.py ├── video │ ├── __init__.py │ ├── codecs.py │ └── resolution.py ├── vlan.py ├── vlanmap.py ├── vlanroles.py ├── vpn.py ├── wf │ ├── __init__.py │ ├── decorator.py │ ├── interaction.py │ └── transition.py ├── whois.py └── window.py ├── crm ├── __init__.py ├── migrations │ ├── 0001_workflow.py │ ├── 0002_set_bi_id.py │ ├── 0003_labels.py │ └── __init__.py └── models │ ├── __init__.py │ ├── subscriber.py │ ├── subscriberprofile.py │ ├── supplier.py │ └── supplierprofile.py ├── dev ├── __init__.py └── models │ ├── __init__.py │ ├── quiz.py │ └── spec.py ├── dns ├── __init__.py ├── handlers │ ├── __init__.py │ └── expiration.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_dnsrecordtype_is_visible.py │ ├── 0003_dnszonerecordtype_initial_data.py │ ├── 0004_register_dns.py │ ├── 0005_dns_server_and_type.py │ ├── 0006_type_bindv9.py │ ├── 0007_migrate_ns_list.py │ ├── 0008_dnsserver_provisioning.py │ ├── 0009_unregister_dns.py │ ├── 0010_dns_server_generator_name.py │ ├── 0011_drop_dns_server_type.py │ ├── 0012_dnszoneprofile_masters_and_slaves.py │ ├── 0013_remove_dnszoneprofile_zone_transfer_acl.py │ ├── 0014_dnsserver_ip.py │ ├── 0015_dnszonerecordtype_validate.py │ ├── 0016_autozones_path.py │ ├── 0017_dnszone_paid_till.py │ ├── 0018_domain_expired.py │ ├── 0019_dnszoneprofile_description.py │ ├── 0020_tags.py │ ├── 0021_extend_dnszone_name.py │ ├── 0022_notifications.py │ ├── 0023_rename_rr_type_is_visible.py │ ├── 0024_dnsserver_sync_channel.py │ ├── 0025_dnszone_serial.py │ ├── 0026_dnszonerecord_prio_ttl.py │ ├── 0027_dnszonerecord_migrate_prio.py │ ├── 0028_dnszonerecord_change_fields.py │ ├── 0029_dnszonerecord_set_type.py │ ├── 0030_remove_dnszonerecordtype.py │ ├── 0031_zone_templates.py │ ├── 0032_migrate_repo.py │ ├── 0033_migrate_tags.py │ ├── 0034_finish_tag_migration.py │ ├── 0035_dnsserver_drop_old_provisioning.py │ ├── 0036_dnszone_project.py │ ├── 0037_extend_dnszonerecord_label.py │ ├── 0038_dnsserver_sync.py │ ├── 0039_set_zone_sync.py │ ├── 0040_dnszone_type.py │ ├── 0041_dnszonerecord_content.py │ ├── 0042_labels.py │ └── __init__.py └── models │ ├── __init__.py │ ├── dnsserver.py │ ├── dnszone.py │ ├── dnszoneprofile.py │ └── dnszonerecord.py ├── docker ├── .gitignore ├── Readme.develop.md ├── Readme.faq.md ├── Readme.infra.md ├── Readme.md ├── docker-compose-infra.yml ├── docker-compose-restoredb.yml ├── docker-compose-storedb.yml ├── docker-compose.yml ├── etc │ ├── alertmanager │ │ ├── Readme.md │ │ └── alertmanager.conf.bulk │ ├── clickhouse │ │ └── etc │ │ │ ├── config.xml │ │ │ └── users.xml │ ├── grafana │ │ ├── dashboards │ │ │ └── noc.js │ │ └── etc │ │ │ ├── grafana.ini │ │ │ └── provisioning │ │ │ └── datasources │ │ │ ├── CH.yml │ │ │ └── NocDS.yml │ ├── mongo │ │ ├── mongo-init.js │ │ ├── mongodb.key │ │ └── rs-init.sh │ ├── nginx │ │ └── nginx.conf │ ├── noc │ │ └── Readme.md │ ├── promgrafana │ │ └── etc │ │ │ └── grafana.ini │ └── vmagent │ │ └── etc │ │ ├── Readme.md │ │ └── prometheus.yml ├── noc-docker-backup.sh ├── noc-docker-restore.sh └── noc-docker-setup.sh ├── docs ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── add-from-network-scan-howto │ └── index.md ├── agent-reference │ ├── SUMMARY.md │ ├── collectors │ │ ├── SUMMARY.md │ │ ├── block_io.md │ │ ├── cpu.md │ │ ├── dns.md │ │ ├── fs.md │ │ ├── http.md │ │ ├── index.md │ │ ├── memory.md │ │ ├── modbus_rtu.md │ │ ├── modbus_tcp.md │ │ ├── network.md │ │ ├── test.md │ │ ├── twamp_reflector.md │ │ ├── twamp_sender.md │ │ └── uptime.md │ ├── compilation-features.md │ └── index.md ├── alarm-classes-reference │ ├── __SUMMARY__ │ ├── chassis.md │ ├── config.md │ ├── discovery.md │ ├── environment.md │ ├── group.md │ ├── index.md │ ├── multicast.md │ ├── network.md │ ├── noc.md │ ├── security.md │ ├── system.md │ └── vendor.md ├── alarm-escalation-reference │ ├── escalation_profile_alarm_rules_set_en.png │ ├── escalation_profile_warning_escalation_with_tt_en.png │ ├── escalation_profile_warning_scenario1_en.png │ ├── escalation_profile_warning_scenario_with_tg_bot_en.png │ ├── escalation_tt_system_tg_bot_en.png │ ├── index.md │ ├── index.ru.md │ └── user_profile_tg_contact_id.png ├── alarm-reference-format │ └── index.md ├── assets │ ├── extra.css │ ├── fixed-background.jpg │ ├── hero.css │ ├── hero.svg │ ├── horizon.svg │ └── logo.svg ├── backup-noc-howto │ ├── index.md │ └── index.ru.md ├── bi-dict-reference │ ├── SUMMARY.md │ ├── administrativedomain.md │ ├── alarmclass.md │ ├── container.md │ ├── interfacedescription.md │ ├── interfaceprofile.md │ ├── managedobject.md │ ├── networksegment.md │ ├── platform.md │ ├── pool.md │ ├── profile.md │ ├── vendor.md │ └── version.md ├── bi-models-reference │ ├── SUMMARY.md │ ├── alarms.md │ ├── events.md │ ├── index.md │ ├── mac.md │ ├── managedobjects.md │ ├── netflow.md │ ├── reboots.md │ ├── routingneighbors.md │ └── span.md ├── blog │ ├── .authors.yml │ ├── index.md │ └── posts │ │ ├── csr-proxy-concept │ │ └── index.md │ │ ├── licanse-updates.md │ │ ├── new-projects-logo │ │ ├── index.md │ │ ├── logo.svg │ │ ├── logo_64x64_black.png │ │ ├── logo_64x64_deep_azure.png │ │ ├── logo_64x64_gray.png │ │ └── logo_64x64_silver.png │ │ ├── new-release-policy │ │ ├── index.md │ │ └── noc-release-policy.png │ │ ├── nginx-serving-mkdocs-site │ │ ├── http.conf │ │ ├── https.conf │ │ ├── index.md │ │ ├── lighthouse.png │ │ └── robots.txt │ │ ├── noc-18-1-1.md │ │ ├── noc-18-1a1.md │ │ ├── noc-19-1-1.md │ │ ├── noc-19-1-2.md │ │ ├── noc-19-1-3.md │ │ ├── noc-19-1.md │ │ ├── noc-19-2-1.md │ │ ├── noc-19-2-2.md │ │ ├── noc-19-2.md │ │ ├── noc-19-3-1.md │ │ ├── noc-19-3.md │ │ ├── noc-20-1.md │ │ ├── noc-20-2-1.md │ │ ├── noc-20-2-2.md │ │ ├── noc-20-2.md │ │ ├── noc-20-3.md │ │ ├── noc-20-4-5.md │ │ ├── noc-20-4-6.md │ │ ├── noc-20-4.md │ │ ├── noc-22-1-1.md │ │ ├── noc-22-1-2.md │ │ ├── noc-22-1-3.md │ │ ├── noc-22-1-4.md │ │ ├── noc-22-1.md │ │ ├── noc-22-2-1.md │ │ ├── noc-22-2-2.md │ │ ├── noc-22-2-3.md │ │ ├── noc-22-2-4.md │ │ ├── noc-22-2.md │ │ ├── noc-23-1-1.md │ │ ├── noc-23-1-2.md │ │ ├── noc-23-1-3.md │ │ ├── noc-23-1-4.md │ │ ├── noc-23-1-5.md │ │ ├── noc-23-1-6.md │ │ ├── noc-23-1.md │ │ ├── noc-24-1-1.md │ │ ├── noc-24-1-2.md │ │ ├── noc-24-1-3.md │ │ ├── noc-24-1.md │ │ ├── noc-coc.md │ │ ├── noc-is-now-managed-by-gufo-labs.md │ │ ├── official-telegram-groups.md │ │ ├── project-augeas.md │ │ ├── project-augeas.ru.md │ │ └── welcome-to-new-site.md ├── caps-reference │ ├── __SUMMARY__ │ ├── bras.md │ ├── chassis.md │ ├── cisco.md │ ├── cpe.md │ ├── db.md │ ├── huawei.md │ ├── index.md │ ├── juniper.md │ ├── management.md │ ├── metrics.md │ ├── mikrotik.md │ ├── nag.md │ ├── network.md │ ├── oneaccess.md │ ├── radio.md │ ├── sensor.md │ ├── slot.md │ ├── snmp.md │ ├── software.md │ └── stack.md ├── card │ ├── index.md │ └── index.ru.md ├── cleaning-false-config-changes-howto │ ├── handler-custom-file.png │ ├── handler-pyrule.png │ ├── index.md │ ├── index.ru.md │ ├── pyrule-function.png │ ├── pyrule.png │ ├── regex101.png │ └── result.png ├── community-guide │ ├── index.md │ └── index.ru.md ├── concepts │ ├── SUMMARY.md │ ├── administrative-domain │ │ ├── index.md │ │ ├── regional2.mermad │ │ └── regional2.svg │ ├── alarm-class │ │ ├── index.md │ │ └── index.ru.md │ ├── alarm-severity │ │ ├── alarm-severity-warning-form.png │ │ ├── index.md │ │ └── index.ru.md │ ├── allocation-group │ │ └── index.md │ ├── apikey │ │ ├── edit_api.png │ │ ├── edit_api_acl.png │ │ └── index.md │ ├── container │ │ └── index.md │ ├── dialplan │ │ └── index.md │ ├── dns-zone │ │ └── index.md │ ├── dynamic-profile-classification │ │ ├── index.md │ │ ├── index.ru.md │ │ ├── interface-profile-form-dyn-class-rules-ex.png │ │ └── regex-label-create-form-iface-descr.png │ ├── event-class │ │ ├── index.md │ │ └── index.ru.md │ ├── event-classification-rule │ │ ├── index.md │ │ └── index.ru.md │ ├── external-storage │ │ ├── images │ │ │ ├── ext-storage-form-upload-config.ru.png │ │ │ └── ext-storage-list1.ru.png │ │ ├── index.md │ │ └── index.ru.md │ ├── firmware-policy │ │ ├── index.md │ │ └── index.ru.md │ ├── group │ │ └── index.md │ ├── handler │ │ ├── index.md │ │ └── index.ru.md │ ├── index.md │ ├── interface-profile │ │ ├── index.md │ │ ├── index.ru.md │ │ └── interface-profile-edit-form-wnav.png │ ├── interface │ │ ├── iface_classification_rule_exmpl1.png │ │ ├── index.md │ │ ├── index.ru.md │ │ └── interfaces-mo-physical-form.png │ ├── label │ │ ├── index.md │ │ └── index.ru.md │ ├── managed-object-profile │ │ ├── index.md │ │ ├── index.ru.md │ │ └── mop_form_config_tab_open.png │ ├── managed-object │ │ └── index.md │ ├── network-segment-profile │ │ ├── index.md │ │ └── index.ru.md │ ├── network-segment │ │ └── index.md │ ├── notification-group │ │ └── index.md │ ├── object-diagnostics │ │ ├── diagnostics_indicators_form1.png │ │ ├── index.md │ │ ├── index.ru.md │ │ └── object_diagnostic_config_create_web1.png │ ├── phone-number-profile │ │ └── index.md │ ├── phone-number │ │ └── index.md │ ├── phone-range-profile │ │ └── index.md │ ├── phone-range │ │ └── index.md │ ├── pool │ │ └── index.md │ ├── prefix-profile │ │ └── index.md │ ├── prefix │ │ └── index.md │ ├── remote-system │ │ ├── index.md │ │ └── index.ru.md │ ├── resource-group │ │ ├── index.md │ │ └── index.ru.md │ ├── sa-profile │ │ ├── index.md │ │ ├── index.ru.md │ │ └── sa-script.png │ ├── sensor-profile │ │ └── index.md │ ├── sensor │ │ └── index.md │ ├── service-profile │ │ └── index.md │ ├── service │ │ └── index.md │ ├── subscriber-profile │ │ └── index.md │ ├── subscriber │ │ └── index.md │ ├── technology │ │ ├── index.md │ │ └── index.ru.md │ ├── template │ │ ├── index.md │ │ └── index.ru.md │ ├── threshold-profile │ │ └── index.md │ ├── user │ │ └── index.md │ ├── vc-filter │ │ ├── index.md │ │ ├── index.ru.md │ │ └── vc-filter-any-vlan-form.png │ ├── vendor │ │ └── index.md │ ├── vlan-profile │ │ └── index.md │ ├── vlan │ │ └── index.md │ ├── vpn-profile │ │ └── index.md │ ├── vpn │ │ └── index.md │ └── workflow │ │ └── index.md ├── confdb-reference │ ├── SUMMARY.md │ ├── fetching.md │ ├── index.md │ ├── normalizer.md │ ├── query.md │ ├── storage.md │ └── tokenizer.md ├── config-reference │ ├── SUMMARY.md │ ├── activator.md │ ├── audit.md │ ├── backup.md │ ├── bi.md │ ├── biosegmentation.md │ ├── cache.md │ ├── card.md │ ├── chwriter.md │ ├── classifier.md │ ├── clickhouse.md │ ├── collections.md │ ├── consul.md │ ├── correlator.md │ ├── customization.md │ ├── datasource.md │ ├── datastream.md │ ├── dcs.md │ ├── discovery.md │ ├── dns.md │ ├── escalator.md │ ├── etl.md │ ├── features.md │ ├── fm.md │ ├── geocoding.md │ ├── gis.md │ ├── global.md │ ├── grafanads.md │ ├── help.md │ ├── home.md │ ├── http_client.md │ ├── index.md │ ├── initial.md │ ├── kafkasender.md │ ├── layout.md │ ├── liftbridge.md │ ├── logging.md │ ├── login.md │ ├── mailsender.md │ ├── memcached.md │ ├── message.md │ ├── metrics.md │ ├── metricscollector.md │ ├── mongo.md │ ├── mrt.md │ ├── nbi.md │ ├── params.yml │ ├── path.md │ ├── peer.md │ ├── performance.md │ ├── pg.md │ ├── ping.md │ ├── proxy.md │ ├── redis.md │ ├── redpanda.md │ ├── rpc.md │ ├── runner.md │ ├── sae.md │ ├── scheduler.md │ ├── script.md │ ├── selfmon.md │ ├── sentry.md │ ├── syslogcollector.md │ ├── tests.md │ ├── tgsender.md │ ├── threadpool.md │ ├── topo.md │ ├── traceback.md │ ├── trapcollector.md │ ├── ui.md │ └── web.md ├── configuration-management │ ├── confdb-mo-tree-query-collapsed-scr.png │ ├── confdb-mo-tree-query-expanded-scr.png │ ├── confdb-mo-tree-query-form-scr.png │ ├── confdb-mo-tree-query-raw-syslog-scr.png │ ├── confdb-query-edit-form-ntp-scr.png │ ├── confdb-validation-policy-edit-form-eltex-scr.png │ ├── index.md │ └── index.ru.md ├── connection-restrictions │ ├── direction-io.svg │ └── index.md ├── connection-type-restrictions │ └── index.md ├── connection-types-reference │ ├── __SUMMARY__ │ ├── alcatel.md │ ├── alstec.md │ ├── apc.md │ ├── arista.md │ ├── brocade.md │ ├── cables.md │ ├── cisco.md │ ├── combined.md │ ├── composed.md │ ├── conduits.md │ ├── dlink.md │ ├── ducts.md │ ├── electrical.md │ ├── eltex.md │ ├── ericsson.md │ ├── extreme.md │ ├── flash.md │ ├── force10.md │ ├── huawei.md │ ├── index.md │ ├── inter-pop-logical-links.md │ ├── iskratel.md │ ├── juniper.md │ ├── optical.md │ ├── power.md │ ├── radio.md │ ├── rubytech.md │ ├── sim.md │ ├── transceiver.md │ ├── zhone.md │ ├── zte.md │ └── zyxel.md ├── create-object-models-howto │ ├── connection-rule.md │ ├── connection-rule.ru.md │ ├── crossing-all.svg │ ├── crossing-group.svg │ ├── direction-io.svg │ ├── index.md │ ├── index.ru.md │ ├── inv_reports_par_no.png │ ├── inv_reports_unknown_models.png │ ├── inv_setup_connrule_cisco_nexus.png │ ├── inv_setup_connrule_gen_switch.png │ ├── inv_setup_conntype_N2K_fanToN3K_fan.png │ ├── inv_setup_conntype_N2K_fanToN3K_fan_after.png │ ├── inv_setup_conntype_N2K_psu_extend.png │ ├── inv_setup_conntype_N2K_supToN3K_psu.png │ ├── inv_setup_conntype_N2K_supToN3K_psu_after.png │ ├── inv_setup_conntype_N2K_supToN3K_sup.png │ ├── inv_setup_conntype_N2K_supToN3K_sup_after.png │ ├── inv_setup_conntype_trans_examples.png │ ├── inv_setup_obj_mo_N2K_chass.png │ ├── inv_setup_obj_mo_N2K_chassToN3K_chass.png │ ├── inv_setup_obj_mo_N2K_chassToN3K_chass_after.png │ ├── inv_setup_obj_mo_N2K_fanToN3K_fan.png │ ├── inv_setup_obj_mo_N2K_fanToN3K_fan_after.png │ ├── inv_setup_obj_mo_N2K_sup.png │ ├── inv_setup_obj_mo_N3K_chass_test.png │ ├── inv_setup_obj_mo_N3K_chass_wtest.png │ ├── inv_setup_obj_mo_N3K_sup_test.png │ ├── inv_setup_obj_mo_N3K_sup_test2.png │ ├── inv_setup_obj_mo_N5K_sup.png │ ├── inv_setup_obj_mo_N5K_supToN3K_sup.png │ ├── inv_setup_obj_mo_N5K_supToN3K_sup_after1.png │ ├── inv_setup_obj_mo_N5K_supToN3K_sup_after2.png │ ├── inv_setup_obj_mo_examples_Dlink.png │ ├── inv_setup_obj_mo_find_analog.png │ ├── inv_setup_obj_mo_list_examples_Dlink.png │ ├── inv_setup_obj_mo_me4600_connrule.png │ ├── inv_setup_obj_mo_sfpswitch_examples.png │ ├── inv_setup_obj_mo_trans_examples.png │ ├── sa_mo_Scripts.png │ └── sa_mo_Scripts_get_inventory.png ├── custom-dev-grafana-dashboard-howto │ ├── add-dashboard-scr.png │ ├── grafana-mo-id-scr.png │ ├── grafana-var-reference-scr.png │ ├── grafana-variable-example1-scr.png │ ├── grafanads-query1-scr.png │ ├── grafanads-uptime-query1-scr.png │ ├── index.md │ ├── index.ru.md │ └── query-clickhouse-scr.png ├── custom │ ├── index.md │ └── index.ru.md ├── datastream-api-reference │ ├── SUMMARY.md │ ├── address.md │ ├── administrativedomain.md │ ├── alarm.md │ ├── cfgmetrics.md │ ├── cfgping.md │ ├── cfgsyslog.md │ ├── cfgtrap.md │ ├── dnszone.md │ ├── index.md │ ├── managedobject.md │ ├── prefix.md │ ├── resourcegroup.md │ ├── service.md │ └── vrf.md ├── datetime-format │ └── index.md ├── deploy-noc-howto │ ├── index.md │ ├── index.ru.md │ ├── tower-add-node.png │ ├── tower-add-service.png │ ├── tower-create-dc.png │ ├── tower-create-env.png │ ├── tower-main-window.png │ ├── tower-pull-playbooks.png │ └── tower-run-deploy.png ├── dev │ ├── reference │ │ └── tools │ │ │ ├── howto-sharing-collection.ru.md │ │ │ └── image │ │ │ ├── apikey.ru.png │ │ │ ├── description.ru.png │ │ │ ├── json.ru.png │ │ │ ├── json2.ru.png │ │ │ └── mr.ru.png │ └── web │ │ ├── concept-ui-design-principes.ru.md │ │ └── index.ru.md ├── discovery-reference │ ├── SUMMARY.md │ ├── as │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── prefix.md │ ├── box │ │ ├── SUMMARY.md │ │ ├── asset.md │ │ ├── bfd.md │ │ ├── bfd.ru.md │ │ ├── caps.md │ │ ├── cdp.md │ │ ├── cdp.ru.md │ │ ├── config.md │ │ ├── cpe.md │ │ ├── fdp.md │ │ ├── fdp.ru.md │ │ ├── hk.md │ │ ├── hk.ru.md │ │ ├── huawei_ndp.md │ │ ├── huawei_ndp.ru.md │ │ ├── id.md │ │ ├── ifdesc.md │ │ ├── ifdesc.ru.md │ │ ├── index.md │ │ ├── interface.md │ │ ├── lacp.md │ │ ├── lacp.ru.md │ │ ├── lldp.md │ │ ├── lldp.ru.md │ │ ├── nri.md │ │ ├── nri.ru.md │ │ ├── oam.md │ │ ├── oam.ru.md │ │ ├── profile.md │ │ ├── rep.md │ │ ├── rep.ru.md │ │ ├── segmentation.md │ │ ├── sla.md │ │ ├── stp.md │ │ ├── stp.ru.md │ │ ├── suggestcli.md │ │ ├── suggestsnmp.md │ │ ├── udld.md │ │ ├── udld.ru.md │ │ ├── version.md │ │ ├── vlan.md │ │ ├── vrf.md │ │ ├── xmac.md │ │ └── xmac.ru.md │ ├── index.md │ ├── periodic │ │ ├── SUMMARY.md │ │ ├── alarms.md │ │ ├── cpestatus.md │ │ ├── index.md │ │ ├── interfacestatus.md │ │ ├── mac.md │ │ ├── metrics.md │ │ └── uptime.md │ └── segment │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── mac.md ├── docs-contributing-guide │ └── index.md ├── docs-style-guide │ ├── doc-structure.svg │ ├── explanations.md │ ├── howto.md │ ├── index.md │ ├── index.ru.md │ ├── references.md │ └── tutorials.md ├── docs-translation-guide │ ├── index.md │ └── index.ru.md ├── etl │ ├── index.md │ └── index.ru.md ├── event-classes-reference │ ├── __SUMMARY__ │ ├── chassis.md │ ├── config.md │ ├── environment.md │ ├── index.md │ ├── multicast.md │ ├── network.md │ ├── noc.md │ ├── phone.md │ ├── pm.md │ ├── security.md │ ├── system.md │ ├── unknown.md │ └── vendor.md ├── facades-howto │ ├── index.md │ └── index.ru.md ├── fault-management │ ├── event_class_rules_snmp_net_link_down_eltex.png │ ├── event_snmp_net_link_down_eltex.png │ ├── index.md │ └── index.ru.md ├── feature-gates-reference │ └── index.md ├── fias-loading-howto │ ├── SUMMARY.md │ ├── fias-region-codes.md │ ├── fias-region-codes.ru.md │ ├── fias-remote-system-scr.png │ ├── index.md │ ├── index.ru.md │ ├── oktmo-region-codes.md │ └── oktmo-region-codes.ru.md ├── glossary │ └── index.md ├── handlers-reference │ ├── SUMMARY.md │ ├── address-resolver.md │ ├── address-resolver.ru.md │ ├── config-diff-filter.md │ ├── config-diff-filter.ru.md │ ├── config-filter.md │ ├── config-filter.ru.md │ ├── ds-filter.md │ ├── ds-filter.ru.md │ ├── housekeeper.md │ ├── housekeeper.ru.md │ ├── ifacedescription.md │ ├── ifacedescription.ru.md │ ├── index.md │ ├── index.ru.md │ └── window-function.md ├── highlights │ ├── SUMMARY.md │ ├── big-data.md │ ├── big-data.ru.md │ ├── configuration-management.md │ ├── configuration-management.ru.md │ ├── discovery.md │ ├── discovery.ru.md │ ├── fault-management.md │ ├── fault-management.ru.md │ ├── index.md │ ├── index.ru.md │ ├── integration.md │ ├── integration.ru.md │ ├── inventory.md │ ├── inventory.ru.md │ ├── microservices.md │ ├── microservices.ru.md │ ├── network-automation.md │ ├── network-automation.ru.md │ ├── open-source.md │ ├── open-source.ru.md │ ├── performance-management.md │ ├── performance-management.ru.md │ ├── service-activation.md │ ├── service-activation.ru.md │ ├── services-overview.svg │ ├── vendor-agnostic.md │ ├── vendor-agnostic.ru.md │ ├── webscale.md │ └── webscale.ru.md ├── host-discovery-network │ ├── Model_Template_Form_Default.png │ ├── discovered_object_list_en.png │ ├── index.md │ ├── index.ru.md │ ├── ipam_prefix_profile_ip_discovery.png │ ├── object_discovery_rule_default_form.png │ ├── object_discovery_rule_form_ignore_initiator.png │ └── object_discovery_rule_form_uptime_gte.png ├── howto-add-vcenter-to-noc │ ├── index.md │ ├── index.ru.md │ └── remote_system_vcenter_add_form_en.png ├── howto-add-zabbix-rs-to-noc │ ├── index.md │ ├── index.ru.md │ └── remote_system_zabbix_add_form_en.png ├── import-mib-file-howto │ ├── index.md │ └── index.ru.md ├── index.md ├── index.ru.md ├── installation-guide │ ├── index.md │ ├── index.ru.md │ ├── install-using-gufo-thor.md │ └── install-using-gufo-thor.ru.md ├── internal-metrics-reference │ ├── index.md │ └── index.ru.md ├── inventory-protocols-reference │ └── index.md ├── language-translation-howto │ ├── compile_translation_phrases.png │ ├── compile_translation_phrases.ru.png │ ├── extract_translation_phrases.png │ ├── extract_translation_phrases.ru.png │ ├── index.md │ ├── index.ru.md │ ├── javascript_report_lang_prepare.png │ ├── javascript_report_lang_prepare.ru.png │ ├── python_report_lang.png │ ├── python_report_lang.ru.png │ ├── python_report_lang_prepare.png │ ├── python_report_lang_prepare.ru.png │ ├── tower_service_card_lang.png │ ├── tower_service_card_lang.ru.png │ ├── tower_service_web_lang.png │ ├── tower_service_web_lang.ru.png │ ├── translate_files.png │ ├── translate_files.ru.png │ ├── update_translation_phrases.png │ └── update_translation_phrases.ru.png ├── license.md ├── license.ru.md ├── liftbridge-to-kafka-howto │ ├── index.md │ └── index.ru.md ├── man │ ├── SUMMARY.md │ ├── about.md │ ├── beef.md │ ├── bi.md │ ├── clean-asset.md │ ├── collection.md │ ├── compile-mib.md │ ├── confdb.md │ ├── config.md │ ├── convert-moin.md │ ├── crashinfo.md │ ├── csv-export.md │ ├── csv-import.md │ ├── ctl.md │ ├── datastream.md │ ├── discovery.md │ ├── dump-addr.md │ ├── dump-crashinfo.md │ ├── ensure-indexes.md │ ├── escalation.md │ ├── etl.md │ ├── events.md │ ├── fix.md │ ├── get-device-identity.md │ ├── get-device-sample.md │ ├── get-uuid.md │ ├── gridvcs.md │ ├── import-mib.md │ ├── import-rancid.md │ ├── import-zone.md │ ├── index.md │ ├── inject-event.md │ ├── interface-profile.md │ ├── job.md │ ├── l3-topology.md │ ├── link.md │ ├── login.md │ ├── lookup-mib.md │ ├── make-cmib.md │ ├── metrics.md │ ├── migrate-ch.md │ ├── migrate.md │ ├── mongo.md │ ├── newapp.md │ ├── notify.md │ ├── nri-link.md │ ├── nri.md │ ├── parse-events.md │ ├── ping.md │ ├── prefix-list.md │ ├── pretty.md │ ├── psql.md │ ├── pythonpath.md │ ├── rca-debug.md │ ├── rpc.md │ ├── run.md │ ├── script.md │ ├── service.md │ ├── shell.md │ ├── snmp.md │ ├── stencil.md │ ├── sync-mibs.md │ ├── sync-perm.md │ ├── sync-refbooks.md │ ├── sync.md │ ├── todos.md │ ├── translation.md │ ├── user.md │ ├── verify-model.md │ ├── whois.md │ ├── wipe.md │ └── workflow.md ├── measurement-units-reference │ └── index.md ├── message-notification │ ├── index.md │ ├── index.ru.md │ ├── message_route_form_interface_status_change_en.png │ ├── notification_groups_form_config_changed_en.png │ └── templates_form_config_changed_en.png ├── metrics-reference │ ├── __SUMMARY__ │ ├── check.md │ ├── cpu.md │ ├── disk.md │ ├── environment.md │ ├── filesystem.md │ ├── index.md │ ├── interface.md │ ├── ippool.md │ ├── mediastream.md │ ├── memory.md │ ├── multicast.md │ ├── neighbors.md │ ├── object.md │ ├── phonepeer.md │ ├── ping.md │ ├── radius.md │ ├── routing.md │ ├── sensor.md │ ├── sla.md │ ├── subscriber.md │ └── vpn.md ├── model-interfaces-reference │ ├── __SUMMARY__ │ ├── address.md │ ├── agent.md │ ├── airflow.md │ ├── asset.md │ ├── caps.md │ ├── contacts.md │ ├── container.md │ ├── cpe.md │ ├── cpu.md │ ├── debug.md │ ├── dimensions.md │ ├── dwdm.md │ ├── geopoint.md │ ├── hwlimits.md │ ├── index.md │ ├── length.md │ ├── management.md │ ├── modbus.md │ ├── optical.md │ ├── plan.md │ ├── pop.md │ ├── power.md │ ├── rack.md │ ├── rackmount.md │ ├── sector.md │ ├── splitter.md │ ├── stack.md │ ├── twinax.md │ └── weight.md ├── mr-labels-reference │ └── index.md ├── mx-messages-reference │ ├── SUMMARY.md │ ├── alarm.md │ ├── config_changed.md │ ├── config_policy_violation.md │ ├── event.md │ ├── index.md │ ├── interface_status_change.md │ ├── managedobject.md │ ├── metrics.md │ ├── object_deleted.md │ ├── object_new.md │ ├── reboot.md │ ├── service_status_change.md │ ├── snmptrap.md │ ├── syslog.md │ └── version_changed.md ├── nbi-api-reference │ ├── SUMMARY.md │ ├── config.md │ ├── configrevisions.md │ ├── getmappings.md │ ├── index.md │ ├── index.ru.md │ ├── objectmetrics.md │ ├── objectstatus.md │ ├── path.md │ ├── servicestatus.md │ └── telemetry.md ├── noc-monitoring-howto │ ├── deploy-tower.png │ ├── index.md │ ├── index.ru.md │ ├── pull-enviroments.png │ └── selfmon-service.png ├── noc-shell-howto │ ├── index.md │ └── index.ru.md ├── object-models-reference │ ├── SUMMARY.md │ ├── index.md │ └── tags.md ├── operational-alerts-reference │ ├── SUMMARY.md │ ├── consul-services-count-decrease.md │ ├── consul-services-count-decrease.ru.md │ ├── index.md │ └── index.ru.md ├── overrides │ └── index.html ├── peering-management │ ├── index.md │ └── index.ru.md ├── performance-management │ ├── SUMMARY.md │ ├── calculate-metrics.md │ ├── calculate-metrics.ru.md │ ├── cpe-profile-metrics1.png │ ├── grafana-device-dash1.png │ ├── index.md │ ├── index.ru.md │ ├── interface-profile-metrics1.png │ ├── interval-collected-log1.png │ ├── managed-object-caps-for-metrics.png │ ├── managed-object-interface-ifindex-column.png │ ├── metric-actions-errors1.png │ ├── metric-rules-actions1.png │ ├── metric-rules-thresholds1.png │ ├── metric-type-form1.png │ ├── metric_action_form_compose_expression_ex1_ru.png │ ├── metric_action_form_compose_interface_bandwith_ru.png │ ├── metric_rule_form_select_metric_action_example_ru.png │ ├── metric_type_form_compose_expresson_ru1.png │ ├── metricaction-proccessed.png │ ├── metrics-processed.png │ ├── object-profile-metrics1.png │ ├── sensor-profile-metrics1.png │ └── sla-profile-metrics1.png ├── profiles-reference │ ├── 3Com │ │ ├── 4500.md │ │ ├── SUMMARY.md │ │ ├── SuperStack.md │ │ ├── SuperStack3.md │ │ ├── SuperStack3_4400.md │ │ ├── SuperStack3_4500.md │ │ └── index.md │ ├── APC │ │ ├── AOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── AcmePacket │ │ ├── NetNet.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── AddPac │ │ ├── APOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Alcatel │ │ ├── 7302.md │ │ ├── 7324RU.md │ │ ├── AOS.md │ │ ├── OS62xx.md │ │ ├── SUMMARY.md │ │ ├── Stinger.md │ │ ├── TIMOS.md │ │ └── index.md │ ├── Alentis │ │ ├── NetPing.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── AlliedTelesis │ │ ├── AT8000.md │ │ ├── AT8000S.md │ │ ├── AT8100.md │ │ ├── AT8500.md │ │ ├── AT8700.md │ │ ├── AT9400.md │ │ ├── AT9900.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Alstec │ │ ├── 24xx.md │ │ ├── 5440.md │ │ ├── 7200.md │ │ ├── ALS.md │ │ ├── MSPU.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Angtel │ │ ├── SUMMARY.md │ │ ├── Topaz.md │ │ └── index.md │ ├── Arista │ │ ├── EOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Aruba │ │ ├── ArubaOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Audiocodes │ │ ├── Mediant2000.md │ │ ├── Mediant2000.ru.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Axis │ │ ├── SUMMARY.md │ │ ├── VAPIX.md │ │ └── index.md │ ├── BDCOM │ │ ├── IOS.md │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── xPON.md │ ├── Beward │ │ ├── BD.md │ │ ├── Doorphone.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Bradbury │ │ ├── HighVideo.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Brocade │ │ ├── ADX.md │ │ ├── CER-ADV.md │ │ ├── CER.md │ │ ├── FabricOS.md │ │ ├── IronWare.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── CData │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── xPON.md │ ├── Cambium │ │ ├── SUMMARY.md │ │ ├── ePMP.md │ │ └── index.md │ ├── Carelink │ │ ├── SUMMARY.md │ │ ├── SWG.md │ │ └── index.md │ ├── Cisco │ │ ├── 1900.md │ │ ├── ASA.md │ │ ├── AireOS.md │ │ ├── CatOS.md │ │ ├── DCM.md │ │ ├── FWSM.md │ │ ├── IOS.md │ │ ├── IOSXR.md │ │ ├── NXOS.md │ │ ├── SANOS.md │ │ ├── SCOS.md │ │ ├── SMB.md │ │ ├── SUMMARY.md │ │ ├── WLC.md │ │ └── index.md │ ├── DCN │ │ ├── DCWL.md │ │ ├── DCWS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── DLink │ │ ├── DAS.md │ │ ├── DES21xx.md │ │ ├── DFL.md │ │ ├── DGS3100.md │ │ ├── DIR.md │ │ ├── DVG.md │ │ ├── DxS.md │ │ ├── DxS_Cisco_CLI.md │ │ ├── DxS_Industrial_CLI.md │ │ ├── DxS_Smart.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Dahua │ │ ├── DH.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Dell │ │ ├── Powerconnect55xx.md │ │ ├── Powerconnect62xx.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── ECI │ │ ├── HiFOCuS.md │ │ ├── SAM.md │ │ ├── SANI.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── EdgeCore │ │ ├── ES.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── ElectronR │ │ ├── KO01M.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Eltex │ │ ├── DSLAM.md │ │ ├── ESR.md │ │ ├── LTE.md │ │ ├── LTP.md │ │ ├── LTP16N.md │ │ ├── MA4000.md │ │ ├── MES.md │ │ ├── MES24xx.md │ │ ├── MES5448.md │ │ ├── PON.md │ │ ├── RG.md │ │ ├── SMG.md │ │ ├── SUMMARY.md │ │ ├── TAU.md │ │ ├── WOP.md │ │ ├── WOPLR.md │ │ └── index.md │ ├── Enterasys │ │ ├── EOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Ericsson │ │ ├── MINI_LINK.md │ │ ├── SEOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Extreme │ │ ├── ISW.md │ │ ├── SUMMARY.md │ │ ├── Summit200.md │ │ ├── XOS.md │ │ └── index.md │ ├── Force10 │ │ ├── FTOS.md │ │ ├── SFTOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Fortinet │ │ ├── Fortigate.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── GWD │ │ ├── GFA.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── H3C │ │ ├── SUMMARY.md │ │ ├── VRP.md │ │ └── index.md │ ├── HP │ │ ├── 1905.md │ │ ├── 1910.md │ │ ├── Aruba.md │ │ ├── Comware.md │ │ ├── GbE2.md │ │ ├── OfficeConnect.md │ │ ├── ProCurve.md │ │ ├── ProCurve9xxx.md │ │ ├── SUMMARY.md │ │ ├── iLO2.md │ │ └── index.md │ ├── Harmonic │ │ ├── DiviComElectra.md │ │ ├── ProStream1000.md │ │ ├── SUMMARY.md │ │ ├── bNSG9000.md │ │ └── index.md │ ├── Hikvision │ │ ├── DS2CD.md │ │ ├── DSKV8.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Huawei │ │ ├── MA5300.md │ │ ├── MA5600T.md │ │ ├── SUMMARY.md │ │ ├── UMG8900.md │ │ ├── VRP.md │ │ ├── VRP3.md │ │ └── index.md │ ├── IBM │ │ ├── NOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── IRE-Polus │ │ ├── Horizon.md │ │ ├── SUMMARY.md │ │ ├── Taros.md │ │ └── index.md │ ├── InfiNet │ │ ├── SUMMARY.md │ │ ├── WANFlexX.md │ │ └── index.md │ ├── Intracom │ │ ├── SUMMARY.md │ │ ├── UltraLink.md │ │ └── index.md │ ├── Iskratel │ │ ├── ESCOM.md │ │ ├── MBAN.md │ │ ├── MSAN.md │ │ ├── SUMMARY.md │ │ ├── VOIP.md │ │ └── index.md │ ├── Juniper │ │ ├── EX2500.md │ │ ├── JUNOS.md │ │ ├── JUNOSe.md │ │ ├── SRCPE.md │ │ ├── SUMMARY.md │ │ ├── ScreenOS.md │ │ └── index.md │ ├── Linksys │ │ ├── SPS2xx.md │ │ ├── SRW.md │ │ ├── SUMMARY.md │ │ ├── VoIP.md │ │ └── index.md │ ├── Lucent │ │ ├── SUMMARY.md │ │ ├── Stinger.md │ │ └── index.md │ ├── Maipu │ │ ├── OS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Meinberg │ │ ├── LANTIME.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Mellanox │ │ ├── Cumulus.md │ │ ├── Onyx.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── MikroTik │ │ ├── RouterOS.md │ │ ├── SUMMARY.md │ │ ├── SwOS.md │ │ └── index.md │ ├── NAG │ │ ├── SNR.md │ │ ├── SNR_eNOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── NOC │ │ ├── SAE.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── NSCComm │ │ ├── LPOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── NSGATE │ │ ├── NIS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── NSN │ │ ├── SUMMARY.md │ │ ├── TIMOS.md │ │ ├── hiX56xx.md │ │ └── index.md │ ├── Nateks │ │ ├── FlexGain.md │ │ ├── FlexGainACE16.md │ │ ├── FlexGainACE24.md │ │ ├── NetXpert.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── NextIO │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── vNet.md │ ├── Nortel │ │ ├── BayStack425.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── OS │ │ ├── ESXi.md │ │ ├── FreeBSD.md │ │ ├── Linux.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── OneAccess │ │ ├── SUMMARY.md │ │ ├── TDRE.md │ │ └── index.md │ ├── Opticin │ │ ├── OS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Orion │ │ ├── NOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Planar │ │ ├── SDO3000.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Planet │ │ ├── SUMMARY.md │ │ ├── WGSD.md │ │ └── index.md │ ├── Polygon │ │ ├── IOS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Proscend │ │ ├── SHDSL.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Protei │ │ ├── MediaGateway.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Qtech │ │ ├── BFC_PBIC_S.md │ │ ├── QFC.md │ │ ├── QOS.md │ │ ├── QSW.md │ │ ├── QSW2500.md │ │ ├── QSW2800.md │ │ ├── QSW8200.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Raisecom │ │ ├── RCIOS.md │ │ ├── ROS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Raritan │ │ ├── DominionSX.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Rotek │ │ ├── BT.md │ │ ├── RTBS.md │ │ ├── RTBSv1.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Rubytech │ │ ├── SUMMARY.md │ │ ├── index.md │ │ └── l2ms.md │ ├── Ruckus │ │ ├── SUMMARY.md │ │ ├── SmartZone.md │ │ ├── ZoneDirector.md │ │ └── index.md │ ├── SKS │ │ ├── SKS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── STerra │ │ ├── Gate.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── SUMMARY.md │ ├── SecurityCode │ │ ├── Kontinent.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Sencore │ │ ├── Probe.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Siklu │ │ ├── EH.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Sumavision │ │ ├── EMR.md │ │ ├── IPQAM.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Sun │ │ ├── SUMMARY.md │ │ ├── iLOM3.md │ │ └── index.md │ ├── Supertel │ │ ├── K2X.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Symbol │ │ ├── AP.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── TFortis │ │ ├── PSW.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── TPLink │ │ ├── EAP.md │ │ ├── SUMMARY.md │ │ ├── T2600G.md │ │ └── index.md │ ├── Tangram │ │ ├── GT21.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Telecom │ │ ├── CPE.md │ │ ├── FXS.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Telindus │ │ ├── SHDSL.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Terayon │ │ ├── BW.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Ttronics │ │ ├── KUB.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── UTST │ │ ├── ONU.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Ubiquiti │ │ ├── AirOS.md │ │ ├── Controller.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Upvel │ │ ├── SUMMARY.md │ │ ├── UP.md │ │ └── index.md │ ├── VMWare │ │ ├── SUMMARY.md │ │ ├── index.md │ │ ├── vCenter.md │ │ ├── vHost.md │ │ └── vMachine.md │ ├── Vector │ │ ├── Lambda.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Vitesse │ │ ├── SUMMARY.md │ │ ├── VSC.md │ │ └── index.md │ ├── Vyatta │ │ ├── SUMMARY.md │ │ ├── Vyatta.md │ │ └── index.md │ ├── ZTE │ │ ├── SUMMARY.md │ │ ├── ZXA10.md │ │ ├── ZXDSL531.md │ │ ├── ZXDSL98xx.md │ │ ├── ZXR10.md │ │ └── index.md │ ├── Zebra │ │ ├── SUMMARY.md │ │ ├── Zebra.md │ │ └── index.md │ ├── Zhone │ │ ├── Bitstorm.md │ │ ├── MXK.md │ │ ├── SUMMARY.md │ │ └── index.md │ ├── Zyxel │ │ ├── DSLAM.md │ │ ├── MSAN.md │ │ ├── SUMMARY.md │ │ ├── ZyNOS.md │ │ ├── ZyNOS_EE.md │ │ ├── ZyNOSv2.md │ │ └── index.md │ ├── f5 │ │ ├── BIGIP.md │ │ ├── SUMMARY.md │ │ └── index.md │ └── index.md ├── quickstart-guide │ ├── areas.png │ ├── index.md │ ├── index.ru.md │ ├── login.png │ ├── mo-form.png │ ├── mo-profile-form.png │ ├── mo-profile.png │ └── mo.png ├── reclaim-db-space-howto │ ├── index.md │ └── index.ru.md ├── reference-report-configuration │ ├── index.md │ ├── index.ru.md │ ├── report_config_alarm_detail_localization_en.png │ ├── report_config_alarm_detail_params_en.png │ ├── report_config_alarm_detail_template_en.png │ ├── report_config_discovery_poison_bands_en.png │ ├── report_config_discovery_poison_bands_format_en.png │ ├── reports_alarm_detail_form_common_en.png │ └── reports_list_en.png ├── release-policy │ └── index.md ├── releases │ ├── 0_1.md │ ├── 0_1_1.md │ ├── 0_1_2.md │ ├── 0_1_3.md │ ├── 0_1_4.md │ ├── 0_1_5.md │ ├── 0_1_6.md │ ├── 0_1_7.md │ ├── 0_1_8.md │ ├── 0_1_9.md │ ├── 0_1rc1.md │ ├── 0_1rc2.md │ ├── 0_2.md │ ├── 0_2_1.md │ ├── 0_2_2.md │ ├── 0_2_3.md │ ├── 0_2_4.md │ ├── 0_2_5.md │ ├── 0_2_6.md │ ├── 0_2_7.md │ ├── 0_3.md │ ├── 0_3_1.md │ ├── 0_3_2.md │ ├── 0_4.md │ ├── 0_5.md │ ├── 0_5_1.md │ ├── 0_6.md │ ├── 0_6_1.md │ ├── 0_6_2.md │ ├── 0_6_3.md │ ├── 0_6_4.md │ ├── 0_7_1.md │ ├── 0_7_2.md │ ├── 0_7_3.md │ ├── 0_7_4.md │ ├── 15_05.md │ ├── 15_05_1.md │ ├── 18_1A1.md │ ├── 18_1_1.md │ ├── 19_1.md │ ├── 19_1_1.md │ ├── 19_1_2.md │ ├── 19_1_3.md │ ├── 19_2.md │ ├── 19_2_1.md │ ├── 19_2_2.md │ ├── 19_2_3.md │ ├── 19_3.md │ ├── 19_3_1.md │ ├── 19_3_2.md │ ├── 19_4.md │ ├── 19_4_1.md │ ├── 19_4_2.md │ ├── 20_1.md │ ├── 20_1_1.md │ ├── 20_2.md │ ├── 20_2_1.md │ ├── 20_2_2.md │ ├── 20_2_3.md │ ├── 20_3.md │ ├── 20_3_1.md │ ├── 20_4.md │ ├── 20_4_1.md │ ├── 20_4_2.md │ ├── 20_4_3.md │ ├── 20_4_4.md │ ├── 20_4_5.md │ ├── 20_4_6.md │ ├── 22_1.md │ ├── 22_1_1.md │ ├── 22_1_2.md │ ├── 22_1_3.md │ ├── 22_1_4.md │ ├── 22_2.md │ ├── 22_2_1.md │ ├── 22_2_2.md │ ├── 22_2_3.md │ ├── 22_2_4.md │ ├── 23_1.md │ ├── 23_1_1.md │ ├── 23_1_2.md │ ├── 23_1_3.md │ ├── 23_1_4.md │ ├── 23_1_5.md │ ├── 23_1_6.md │ ├── 24_1.md │ ├── 24_1_1.md │ ├── 24_1_2.md │ ├── 24_1_3.md │ └── 25_1.md ├── robots.txt ├── scripts-reference │ ├── SUMMARY.md │ ├── add_vlan.md │ ├── commands.md │ ├── configure.md │ ├── get_alarms.md │ ├── get_arp.md │ ├── get_bfd_sessions.md │ ├── get_capabilities.md │ ├── get_cdp_neighbors.md │ ├── get_chassis_id.md │ ├── get_config.md │ ├── get_copper_tdr_diag.md │ ├── get_cpe.md │ ├── get_dhcp_binding.md │ ├── get_discovery_id.md │ ├── get_dom_status.md │ ├── get_dot11_associations.md │ ├── get_fdp_neighbors.md │ ├── get_fqdn.md │ ├── get_huawei_ndp_neighbors.md │ ├── get_ifindexes.md │ ├── get_interface_index.md │ ├── get_interface_status.md │ ├── get_interface_status_ex.md │ ├── get_interfaces.md │ ├── get_inventory.md │ ├── get_ip_discovery.md │ ├── get_ipv6_neighbor.md │ ├── get_lacp_neighbors.md │ ├── get_license.md │ ├── get_lldp_neighbors.md │ ├── get_local_users.md │ ├── get_mac_address_table.md │ ├── get_metrics.md │ ├── get_mpls_vpn.md │ ├── get_oam_status.md │ ├── get_portchannel.md │ ├── get_rep_topology.md │ ├── get_resolver_config.md │ ├── get_sla_probes.md │ ├── get_snmp_get.md │ ├── get_snmp_getnext.md │ ├── get_spanning_tree.md │ ├── get_switch.md │ ├── get_switchport.md │ ├── get_system.md │ ├── get_tech_support.md │ ├── get_udld_neighbors.md │ ├── get_uptime.md │ ├── get_version.md │ ├── get_vlans.md │ ├── has_vlan.md │ ├── index.md │ ├── index.ru.md │ ├── login.md │ ├── ping.md │ ├── reboot.md │ ├── remove_vlan.md │ ├── set_switchport.md │ ├── sync_prefix_lists.md │ └── sync_vlans.md ├── sections-overview │ ├── background.md │ ├── guides.md │ ├── howto.md │ └── references.md ├── service-status-monitoring │ ├── index.md │ └── index.ru.md ├── services-reference │ ├── SUMMARY.md │ ├── activator.md │ ├── bi.md │ ├── card.md │ ├── chwriter.md │ ├── classifier.md │ ├── correlator.md │ ├── datasource.md │ ├── datastream.md │ ├── discovery.md │ ├── escalator.md │ ├── grafanads.md │ ├── index.md │ ├── kafkasender.md │ ├── login.md │ ├── mailsender.md │ ├── metrics.md │ ├── metricscollector.md │ ├── mib.md │ ├── mrt.md │ ├── mx.md │ ├── nbi.md │ ├── ping.md │ ├── runner.md │ ├── sae.md │ ├── scheduler.md │ ├── selfmon.md │ ├── syslogcollector.md │ ├── tgsender.md │ ├── topo.md │ ├── trapcollector.md │ ├── ui.md │ ├── web.md │ └── worker.md ├── sharing-collections-howto │ ├── apikey.png │ ├── description.png │ ├── index.md │ ├── json.png │ ├── json2.png │ └── mr.png ├── src │ └── en │ │ └── dev │ │ ├── confdb-fetching.rst │ │ ├── confdb-normalizer.rst │ │ ├── confdb-overview.rst │ │ ├── confdb-query.rst │ │ ├── confdb-storage.rst │ │ ├── confdb-syntax-hints.rst │ │ ├── confdb-syntax-interfaces.rst │ │ ├── confdb-syntax-media.rst │ │ ├── confdb-syntax-meta.rst │ │ ├── confdb-syntax-protocols.rst │ │ ├── confdb-syntax-syntax.rst │ │ ├── confdb-syntax-system.rst │ │ ├── confdb-syntax-vr1.rst │ │ ├── confdb-syntax-vr2.rst │ │ ├── confdb-syntax-vr3.rst │ │ ├── confdb-syntax-vr4.rst │ │ ├── confdb-syntax.rst │ │ ├── confdb-tokenizer.rst │ │ └── confdb.rst ├── storm-protection │ ├── index.md │ └── index.ru.md ├── streams-reference │ ├── SUMMARY.md │ ├── ch.md │ ├── dispose.md │ ├── events.md │ ├── events.ru.md │ ├── index.md │ ├── jobs.md │ ├── kafkasender.md │ ├── metrics.md │ ├── mx.md │ └── submit.md ├── supported-standards │ └── index.md ├── technologies-reference │ └── index.md ├── thanks.md ├── tools │ ├── collection-to-md.py │ ├── mermaid-to-svg │ └── puppeteer.json ├── topology-processing-features │ ├── index.md │ └── index.ru.md ├── ui-guideline │ ├── index.md │ └── index.ru.md ├── upgrade-single-postgres-howto │ └── index.md ├── using-hk-to-collect-data-howto │ ├── index.md │ ├── index.ru.md │ ├── mx-new-send-scr.png │ ├── new-caps-scr.png │ ├── new-handler-scr.png │ └── setup-profile-scr.png └── writing-noc-command-howto │ ├── check-metrics.py │ ├── index.md │ ├── index.ru.md │ └── sample.py ├── examples └── handlers │ └── hk │ └── handler.py ├── features ├── setup-facades.feature └── show-equipment-view.feature ├── fixes ├── __init__.py ├── compact_schedules.py ├── convert_audittrails.py ├── convert_conduits_links.py ├── convert_fm_events.py ├── convert_fm_outages.py ├── convert_pm_schema.py ├── convert_pop_links.py ├── fix_adm200_cross.py ├── fix_alarm_managedobjectprofile.py ├── fix_bi_id.py ├── fix_discoveryid_macs.py ├── fix_discoveryid_object.py ├── fix_etl_files.py ├── fix_etl_jsonl.py ├── fix_etl_order.py ├── fix_firmware_full_name.py ├── fix_geocodercache_query.py ├── fix_gridfs_corrupt.py ├── fix_inv_tree.py ├── fix_jobs.py ├── fix_l2domain_profile.py ├── fix_link_all_objects.py ├── fix_link_objects.py ├── fix_maintenance.py ├── fix_object_coordinates.py ├── fix_object_uplinks.py ├── fix_phone_parents.py ├── fix_platform_full_name.py ├── fix_platform_sysobjectid.py ├── fix_pop_links.py ├── fix_rebuild_datastream.py ├── fix_scheduler_shard.py ├── fix_segment_access.py ├── fix_segment_redundancy.py ├── fix_segment_summary.py ├── fix_user_default_location.py └── set_snmp_v2c.py ├── fm ├── __init__.py ├── handlers │ ├── __init__.py │ ├── alarm │ │ ├── __init__.py │ │ ├── segment.py │ │ ├── status.py │ │ └── stub.py │ ├── event │ │ ├── __init__.py │ │ ├── audit.py │ │ ├── discovery.py │ │ ├── link.py │ │ └── oper.py │ └── thresholds │ │ ├── __init__.py │ │ └── iface.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_event.py │ ├── 0003_event_data.py │ ├── 0004_priority_color.py │ ├── 0005_default_colors.py │ ├── 0006_rule_drop_event.py │ ├── 0007_event_repeat.py │ ├── 0008_enlarge_event_data_key.py │ ├── 0009_mib_dependency.py │ ├── 0010_event_class_trigger.py │ ├── 0011_is_builtin.py │ ├── 0012_update_event_classification.py │ ├── 0013_event_lifecycle.py │ ├── 0014_update_event_classification.py │ ├── 0015_set_event_status.py │ ├── 0016_event_correlation_rule.py │ ├── 0017_event_log.py │ ├── 0018_update_event_classification.py │ ├── 0019_eventclassificationrule_action.py │ ├── 0020_drop_eventclassificationrule_drop_event.py │ ├── 0021_event_post_processing.py │ ├── 0022_drop_update_event_classification.py │ ├── 0023_eventclassificationre_expression.py │ ├── 0024_event_correlation_rule.py │ ├── 0025_eventarchivationrule.py │ ├── 0026_postprocessingrule_params.py │ ├── 0027_sp_delete_event.py │ ├── 0028_change_eventarchivationrule.py │ ├── 0029_sp_close_event.py │ ├── 0030_event_indexes.py │ ├── 0031_rule.py │ ├── 0032_ingnore_event_rules.py │ ├── 0033_classify_event.py │ ├── 0034_severity_styles.py │ ├── 0035_triggers.py │ ├── 0036_refresh_config.py │ ├── 0037_remove_old_tables.py │ ├── 0038_alarm_reference.py │ ├── 0039_event_start_repeat.py │ ├── 0040_no_refresh_config.py │ ├── 0041_i18n.py │ ├── 0042_upgrade_uptime.py │ ├── 0043_eventtrigger_handler.py │ ├── 0044_set_bi_id.py │ ├── 0045_drop_trigger_pyrule.py │ ├── 0046_event_class_suppression.py │ ├── 0047_labels.py │ ├── 0048_resource_group.py │ ├── 0049_remove_selector_field.py │ ├── 0050_alarm_class_name_descriminator.py │ ├── 0051_alarm_class_reference.py │ ├── 0052_eventclass_set_bi_id.py │ ├── 0053_escalation_document.py │ ├── 0054_escalation_policy_labels.py │ ├── 0055_ping_alarm_reference.py │ ├── 0056_severity_to_label.py │ ├── 0057_ararm_rule_severity_to_instance.py │ ├── 0058_eventclassificationrule_separate_settings.py │ ├── 0059_migrate_disposition_rules.py │ ├── 0060_cleanup_migrate_alarmrule_severity.py │ ├── 0060_rebuild_eventclass_datastream.py │ ├── 0061_migrate_escalation_tt_to_log.py │ ├── 0062_migrate_notification_group_watch.py │ ├── 0063_rebuild_eventclass_event_action_datastream.py │ ├── 0064_disposition_rule_vars_map.py │ └── __init__.py └── models │ ├── __init__.py │ ├── activealarm.py │ ├── activeevent.py │ ├── alarmclass.py │ ├── alarmclasscategory.py │ ├── alarmclassconfig.py │ ├── alarmdiagnostic.py │ ├── alarmdiagnosticconfig.py │ ├── alarmescalation.py │ ├── alarmjob.py │ ├── alarmlog.py │ ├── alarmplugin.py │ ├── alarmrootcausecondition.py │ ├── alarmrule.py │ ├── alarmseverity.py │ ├── alarmtrigger.py │ ├── alarmwatch.py │ ├── archivedalarm.py │ ├── archivedevent.py │ ├── cloneclassificationrule.py │ ├── datasource.py │ ├── dispositionrule.py │ ├── enumeration.py │ ├── error.py │ ├── escalation.py │ ├── escalationprofile.py │ ├── eventclass.py │ ├── eventclassificationrule.py │ ├── eventlog.py │ ├── eventtrigger.py │ ├── failedevent.py │ ├── ignoreeventrules.py │ ├── ignorepattern.py │ ├── mib.py │ ├── mibalias.py │ ├── mibdata.py │ ├── mibpreference.py │ ├── oidalias.py │ ├── outage.py │ ├── pathitem.py │ ├── reboot.py │ ├── syntaxalias.py │ ├── ttsystem.py │ ├── uptime.py │ └── utils.py ├── gis ├── __init__.py ├── geo.py ├── map.py ├── migrations │ ├── 0001_check_postgis.py │ ├── 0002_world_area.py │ ├── 0003_geodata.py │ ├── 0004_migrate_geodata.py │ ├── 0005_drop_geodata.py │ ├── 0006_labels.py │ ├── 0007_set_bi_id.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── address.py │ ├── area.py │ ├── building.py │ ├── change.py │ ├── division.py │ ├── entrance.py │ ├── geocodercache.py │ ├── layer.py │ ├── layerusersettings.py │ ├── normativedocument.py │ ├── overlay.py │ └── street.py ├── overlays │ ├── __init__.py │ ├── areas │ │ └── __init__.py │ ├── base.py │ └── points │ │ └── __init__.py ├── parsers │ ├── __init__.py │ └── geocoding │ │ ├── __init__.py │ │ ├── base.py │ │ └── osm.py └── utils │ ├── __init__.py │ ├── addr │ ├── __init__.py │ └── ru.py │ └── osm.py ├── inv ├── __init__.py ├── migrations │ ├── 0001_subinterface_managed_object.py │ ├── 0002_discovery_templates.py │ ├── 0003_default_interface_profile.py │ ├── 0004_networkchart.py │ ├── 0005_cleanup_sub_indexes.py │ ├── 0006_vlan_discovery_template.py │ ├── 0007_ranged_chassis_macs.py │ ├── 0008_create_root.py │ ├── 0009_merge_partno.py │ ├── 0010_default_segment.py │ ├── 0011_migrate_charts.py │ ├── 0012_fix_scheduler_indexes.py │ ├── 0013_interfaceprofile_mac_discovery_policy.py │ ├── 0014_networksegmentprofile.py │ ├── 0015_set_bi_id.py │ ├── 0016_cleanup_metric_is_active.py │ ├── 0017_initial_technologies.py │ ├── 0018_delete_root.py │ ├── 0019_thresholdprofiles.py │ ├── 0020_object_data_scope.py │ ├── 0021_labels.py │ ├── 0022_netsegment_remove_selector.py │ ├── 0023_interface_classification_rule_labels.py │ ├── 0024_interface_profile_status_discovery.py │ ├── 0025_interface_hints_labels.py │ ├── 0026_interface_change_template.py │ ├── 0027_status_change_notification_type.py │ ├── 0028_add_workflow_to_interfaces.py │ ├── 0029_interface_profile_match_label.py │ ├── 0030_mapsettins_add_generator_type.py │ ├── 0031_objectmodel_data_format.py │ ├── 0032_initial_protocols.py │ ├── 0033_objectmodel_protocols_structure.py │ ├── 0034_cpe_controller_to_many.py │ ├── 0035_cpe_global_id_mac_normalize.py │ ├── 0036_strip_platform_name_250.py │ ├── 0037_connectiontypes_data_format.py │ ├── 0038_cleanup_renamed_connections.py │ ├── 0039_object_container_to_parent.py │ ├── 0040_object_parent_connection.py │ ├── 0041_interface_profile_allow_subinterface_metrics.py │ ├── 0042_convert_cpe_capabilities.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── allocationgroup.py │ ├── biosegtrial.py │ ├── capability.py │ ├── capsitem.py │ ├── channel.py │ ├── configuredmap.py │ ├── connectionrule.py │ ├── connectiontype.py │ ├── coverage.py │ ├── coveredbuilding.py │ ├── coveredobject.py │ ├── cpe.py │ ├── cpeprofile.py │ ├── discovery.py │ ├── discoveryid.py │ ├── endpoint.py │ ├── error.py │ ├── extnrilink.py │ ├── facade.py │ ├── firmware.py │ ├── firmwarepolicy.py │ ├── forwardinginstance.py │ ├── ifdescpatterns.py │ ├── interface.py │ ├── interfaceprofile.py │ ├── l3link.py │ ├── link.py │ ├── macblacklist.py │ ├── macdb.py │ ├── maclog.py │ ├── macvendor.py │ ├── mapsettings.py │ ├── modelinterface.py │ ├── modelmapping.py │ ├── networksegment.py │ ├── networksegmentprofile.py │ ├── object.py │ ├── objectconfigurationrule.py │ ├── objectconnection.py │ ├── objectfile.py │ ├── objectlog.py │ ├── objectmodel.py │ ├── platform.py │ ├── protocol.py │ ├── resourcegroup.py │ ├── resourcepool.py │ ├── sensor.py │ ├── sensorprofile.py │ ├── subinterface.py │ ├── techdomain.py │ ├── technology.py │ ├── unknownmodel.py │ └── vendor.py └── util │ ├── __init__.py │ └── pop_links.py ├── ip ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_plpgsql_triggers_and_functions.py │ ├── 0003_nocidr.py │ ├── 0004_default_vrf.py │ ├── 0005_free_ip.py │ ├── 0006_vrf_description.py │ ├── 0007_ipv4addressrange.py │ ├── 0008_ipv4block_vc.py │ ├── 0009_no_last_modified.py │ ├── 0010_tags.py │ ├── 0011_bookmarks.py │ ├── 0012_address_mac.py │ ├── 0013_ipv6_schema.py │ ├── 0014_ipv6_data.py │ ├── 0015_ipv6_cleanup.py │ ├── 0016_resource_state.py │ ├── 0017_default_state.py │ ├── 0018_state_not_null.py │ ├── 0019_drop_vrf_is_active.py │ ├── 0020_ipv6_transition.py │ ├── 0021_project.py │ ├── 0022_drop_project.py │ ├── 0023_migrate_tags.py │ ├── 0024_finish_tag_migration.py │ ├── 0025_project.py │ ├── 0026_prefix_ip_discovery.py │ ├── 0027_ip_address_index_address.py │ ├── 0028_ippool.py │ ├── 0029_ippool_name.py │ ├── 0030_ippool_technologies.py │ ├── 0031_prefixprofile.py │ ├── 0032_addressprofile.py │ ├── 0033_vrf_profile.py │ ├── 0034_set_bi_id.py │ ├── 0035_address_state.py │ ├── 0036_prefix_state.py │ ├── 0037_prefix_nullable_as.py │ ├── 0038_address_name.py │ ├── 0039_address_source.py │ ├── 0040_prefix_name.py │ ├── 0041_vrf_source.py │ ├── 0042_vrf_state.py │ ├── 0043_vrf_nullable_group.py │ ├── 0044_discovery_policy.py │ ├── 0045_vrf_vpnid.py │ ├── 0046_vrf_null_rd.py │ ├── 0047_labels.py │ ├── 0048_add_state_ttl_fields.py │ ├── 0048_prefix_vc_vlan.py │ ├── 0049_ip_remote_system_integration.py │ ├── 0050_add_resource_pool_settings.py │ └── __init__.py └── models │ ├── __init__.py │ ├── address.py │ ├── addressprofile.py │ ├── addressrange.py │ ├── afi.py │ ├── prefix.py │ ├── prefixaccess.py │ ├── prefixbookmark.py │ ├── prefixprofile.py │ ├── vrf.py │ └── vrfgroup.py ├── kb ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_kbentrypreviewlog.py │ ├── 0003_kb_entry_attachment.py │ ├── 0004_bookmarks.py │ ├── 0005_kb_entry_template.py │ ├── 0006_tags.py │ ├── 0007_no_category.py │ ├── 0008_kb_entry_tags.py │ ├── 0009_bookmarks_to_favorites.py │ ├── 0010_labels.py │ └── __init__.py └── models │ ├── __init__.py │ ├── kbentry.py │ ├── kbentryattachment.py │ ├── kbentryhistory.py │ ├── kbentrypreviewlog.py │ ├── kbentrytemplate.py │ ├── kbglobalbookmark.py │ └── kbuserbookmark.py ├── macros.py ├── main ├── __init__.py ├── handlers │ ├── __init__.py │ ├── emptyhandler.py │ ├── emptyiterhandler.py │ └── rebuild_datastream.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_no_task_schedule.py │ ├── 0003_pg_dump.py │ ├── 0004_language.py │ ├── 0005_init_languages.py │ ├── 0006_database_storage.py │ ├── 0007_mimetype.py │ ├── 0008_default_mime_types.py │ ├── 0009_refbook.py │ ├── 0010_refbook_data_array.py │ ├── 0011_audit_trail.py │ ├── 0012_time_pattern.py │ ├── 0013_notifications.py │ ├── 0014_default_time_patterns.py │ ├── 0015_notification_link.py │ ├── 0016_user_profile.py │ ├── 0017_initial_userprofilecontacts.py │ ├── 0018_systemnotification.py │ ├── 0019_unhandled_exception.py │ ├── 0020_pyrule.py │ ├── 0021_permission.py │ ├── 0022_pyrule_is_builtin.py │ ├── 0023_cleanup.py │ ├── 0024_changes_quarantine.py │ ├── 0025_mac_sync_notification.py │ ├── 0026_enlarge_username.py │ ├── 0027_style.py │ ├── 0028_dbtrigger.py │ ├── 0029_version_inventory_notification.py │ ├── 0030_set_user_is_staff.py │ ├── 0031_schedule.py │ ├── 0032_schedule_migrate.py │ ├── 0033_shard.py │ ├── 0034_default_shard.py │ ├── 0035_prefix_table.py │ ├── 0036_profile_language.py │ ├── 0037_template.py │ ├── 0038_checkpoint.py │ ├── 0039_implied_permissions.py │ ├── 0040_profile_theme.py │ ├── 0041_inv_prefix_discovery_notification.py │ ├── 0042_resource_state.py │ ├── 0043_default_resourcestates.py │ ├── 0044_custom_field.py │ ├── 0045_customfield_is_hidden.py │ ├── 0046_customfield_enum.py │ ├── 0047_default_stompaccess.py │ ├── 0048_drop_django_tagging.py │ ├── 0049_update_tags.py │ ├── 0050_notification_tag.py │ ├── 0051_profile_preview_theme.py │ ├── 0052_audit_data.py │ ├── 0053_pyrule_handler.py │ ├── 0054_migrate_pyrule.py │ ├── 0055_default_pool.py │ ├── 0056_userprofile_heatmap.py │ ├── 0057_ordermap.py │ ├── 0058_set_bi_id.py │ ├── 0059_extstorage_type.py │ ├── 0060_create_default_labels.py │ ├── 0061_add_mr_senders.py │ ├── 0062_create_utility_labels.py │ ├── 0063_migrate_filter_labels.py │ ├── 0064_migrate_is_matching_labels.py │ ├── 0065_message_route_settings.py │ ├── 0066_default_mx_senders.py │ ├── 0067_create_interface_member_labels.py │ ├── 0068_create_technology_labels.py │ ├── 0069_labels_allowed_models.py │ ├── 0070_add_labels_collection.py │ ├── 0071_del_PXXXX_is_null.py │ ├── 0072_add_uuid_in_handler_collection.py │ ├── 0073_add_uuid_in_template_collection.py │ ├── 0074_add_template_message_type_fields.py │ ├── 0075_remote_system_bi_id.py │ ├── 0076_notification_group_add_subscription.py │ ├── 0077_add_notification_group_user_settings.py │ ├── 0078_add_notification_group_watch_settings.py │ ├── 0079_rebuild_cfgmxrouter_datastream.py │ ├── 0080_template_add_language.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── apitoken.py │ ├── audittrail.py │ ├── authldapdomain.py │ ├── avatar.py │ ├── checkpoint.py │ ├── chpolicy.py │ ├── crontab.py │ ├── customfield.py │ ├── customfieldenumgroup.py │ ├── customfieldenumvalue.py │ ├── databasestorage.py │ ├── datastreamconfig.py │ ├── doccategory.py │ ├── extstorage.py │ ├── favorites.py │ ├── font.py │ ├── glyph.py │ ├── handler.py │ ├── imagestore.py │ ├── label.py │ ├── language.py │ ├── messageroute.py │ ├── metricstream.py │ ├── mimetype.py │ ├── modeltemplate.py │ ├── notificationgroup.py │ ├── pool.py │ ├── prefixtable.py │ ├── pyrule.py │ ├── refbook.py │ ├── refbookdata.py │ ├── refbookfield.py │ ├── remotemappingsitem.py │ ├── remotesystem.py │ ├── report.py │ ├── reportsubscription.py │ ├── resourcestate.py │ ├── slowop.py │ ├── style.py │ ├── systemnotification.py │ ├── systemtemplate.py │ ├── tag.py │ ├── template.py │ ├── textindex.py │ ├── timepattern.py │ ├── timepatternterm.py │ └── userstate.py ├── refbooks │ ├── __init__.py │ ├── downloaders │ │ ├── __init__.py │ │ ├── base.py │ │ ├── loader.py │ │ └── url_csv.py │ └── refbooks │ │ ├── __init__.py │ │ ├── e164.py │ │ ├── enterprise_numbers.py │ │ ├── ieee.py │ │ ├── iso3166.py │ │ ├── q931.py │ │ ├── russian_number_plan.py │ │ └── russian_number_registry.py ├── reportsources │ ├── __init__.py │ ├── loader.py │ ├── reportclassificationrule.py │ ├── reportdiscoverylinks.py │ ├── reporteventsummary.py │ ├── reportprofilechecksummary.py │ └── reportunclassifiedoids.py └── templatetags │ ├── __init__.py │ ├── noctags.py │ ├── paginator.html │ ├── paginator.py │ ├── python.py │ └── tags.py ├── maintenance ├── __init__.py ├── migrations │ ├── 0001_drop_old_maintenance.py │ ├── 0002_auto_confirm.py │ ├── 0003_affected_objects_migrate.py │ ├── 0004_affected_objects_remove.py │ └── __init__.py └── models │ ├── __init__.py │ ├── maintenance.py │ └── maintenancetype.py ├── mkdocs.yml ├── models.py ├── noc ├── peer ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_register_rconfig.py │ ├── 0003_default_peeringpointtype.py │ ├── 0004_lg_query.py │ ├── 0005_lg_query_default_data.py │ ├── 0007_peering_point_lg_url.py │ ├── 0008_peering_point_location.py │ ├── 0009_filter_name.py │ ├── 0010_unregister_rconfig.py │ ├── 0011_remove_peering_point_type.py │ ├── 0012_community.py │ ├── 0013_community_types.py │ ├── 0014_inet_rtr.py │ ├── 0015_maintainer.py │ ├── 0016_no_lir.py │ ├── 0017_default_maintainer.py │ ├── 0018_no_lg.py │ ├── 0019_no_rcmd.py │ ├── 0020_no_masklen.py │ ├── 0021_whois.py │ ├── 0022_default_ripe_lookups.py │ ├── 0023_peer_status.py │ ├── 0024_as_name_and_routes_maintainer.py │ ├── 0025_as_fields.py │ ├── 0026_peer_remark.py │ ├── 0027_maintainer_password.py │ ├── 0028_prefix_list_cache.py │ ├── 0029_peering_point_enable_provisioning.py │ ├── 0030_peer_backup_ip.py │ ├── 0031_compact_backup_peers.py │ ├── 0032_med.py │ ├── 0033_tags.py │ ├── 0034_drop_cache_tables.py │ ├── 0035_person_type.py │ ├── 0036_migrate_tags.py │ ├── 0037_finish_tag_migration.py │ ├── 0038_project.py │ ├── 0039_project_asset.py │ ├── 0040_peeringpoint_profile.py │ ├── 0041_asprofile.py │ ├── 0042_asn_bigint.py │ ├── 0043_labels.py │ ├── 0044_extend_description.py │ ├── 0045_add_peerprofile.py │ ├── 0046_migrate_peer_for_discovery.py │ ├── 0047_asn_optional_rir.py │ ├── 0048_peer_remote_asn_bigint.py │ └── __init__.py └── models │ ├── __init__.py │ ├── asn.py │ ├── asprofile.py │ ├── asset.py │ ├── community.py │ ├── communitytype.py │ ├── maintainer.py │ ├── organisation.py │ ├── peer.py │ ├── peergroup.py │ ├── peeringpoint.py │ ├── peerprofile.py │ ├── person.py │ ├── prefixlistcache.py │ ├── rir.py │ ├── whoisassetmembers.py │ ├── whoiscache.py │ └── whoisoriginroute.py ├── phone ├── __init__.py ├── migrations │ ├── 0001_e164.py │ ├── 0002_migrate_termination_groups.py │ ├── 0003_workflow.py │ └── __init__.py └── models │ ├── __init__.py │ ├── dialplan.py │ ├── numbercategory.py │ ├── phonenumber.py │ ├── phonenumberprofile.py │ ├── phonerange.py │ └── phonerangeprofile.py ├── pm ├── __init__.py ├── handlers │ ├── __init__.py │ └── value.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_default_storage.py │ ├── 0003_fix_ts_indexes.py │ ├── 0004_clean_pg.py │ ├── 0005_migrate_default_storage.py │ ├── 0006_migrate_local.py │ ├── 0007_set_has_children.py │ ├── 0008_set_probe_credentials.py │ ├── 0009_set_bi_id.py │ ├── 0010_set_uuid_thresholdprofile.py │ ├── 0011_migrate_handlers.py │ ├── 0012_migrate_threshold_profile_metic_rules.py │ ├── 0013_cleanup_cfgmetricsources.py │ ├── 0014_cleanup_changelog.py │ └── __init__.py └── models │ ├── __init__.py │ ├── agent.py │ ├── agentprofile.py │ ├── measurementunits.py │ ├── metricaction.py │ ├── metricrule.py │ ├── metricscope.py │ ├── metrictype.py │ ├── scale.py │ └── thresholdprofile.py ├── project ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_shape_overlay.py │ ├── 0003_project_integration.py │ ├── 0004_set_bi_id.py │ └── __init__.py └── models │ ├── __init__.py │ └── project.py ├── pyproject.toml ├── requirements ├── bi.json ├── card.json ├── mib.json ├── theme-noc.json └── web.json ├── rust ├── Cargo.toml ├── agent │ ├── Cargo.toml │ ├── benches │ │ ├── pktmodel_benchmark.rs │ │ └── twamp_benchmark.rs │ └── src │ │ ├── agent.rs │ │ ├── cli.rs │ │ ├── collectors │ │ ├── base.rs │ │ ├── block_io │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── cpu │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ ├── out.rs │ │ │ └── platform │ │ │ │ ├── default.rs │ │ │ │ ├── linux.rs │ │ │ │ └── mod.rs │ │ ├── dns │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── fs │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── http │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── memory │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ ├── out.rs │ │ │ └── platform │ │ │ │ ├── default.rs │ │ │ │ ├── freebsd.rs │ │ │ │ ├── linux.rs │ │ │ │ ├── macos.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── openbsd.rs │ │ │ │ └── windows.rs │ │ ├── mod.rs │ │ ├── modbus_rtu │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── modbus_tcp │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── network │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── registry.rs │ │ ├── test │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── twamp_reflector │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── twamp_sender │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ └── uptime │ │ │ ├── collector.rs │ │ │ ├── config.rs │ │ │ ├── mod.rs │ │ │ └── out.rs │ │ ├── config │ │ ├── cfg.rs │ │ ├── mod.rs │ │ ├── parser │ │ │ ├── base.rs │ │ │ ├── json │ │ │ │ ├── base.rs │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── yaml │ │ │ │ ├── base.rs │ │ │ │ └── mod.rs │ │ ├── reader │ │ │ ├── base.rs │ │ │ ├── file │ │ │ │ ├── base.rs │ │ │ │ └── mod.rs │ │ │ ├── http │ │ │ │ ├── base.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ └── resolver │ │ │ ├── base.rs │ │ │ ├── mod.rs │ │ │ ├── static │ │ │ ├── base.rs │ │ │ └── mod.rs │ │ │ └── zk │ │ │ ├── base.rs │ │ │ └── mod.rs │ │ ├── error.rs │ │ ├── feature.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── meta.rs │ │ ├── proto │ │ ├── connection.rs │ │ ├── frame.rs │ │ ├── mod.rs │ │ ├── modbus.rs │ │ ├── pktmodel │ │ │ ├── base.rs │ │ │ ├── cbr.rs │ │ │ ├── g711.rs │ │ │ ├── g729.rs │ │ │ ├── imix.rs │ │ │ ├── mod.rs │ │ │ └── registry.rs │ │ ├── tos.rs │ │ ├── twamp │ │ │ ├── accept_session.rs │ │ │ ├── mod.rs │ │ │ ├── ntp.rs │ │ │ ├── request_tw_session.rs │ │ │ ├── server_greeting.rs │ │ │ ├── server_start.rs │ │ │ ├── setup_response.rs │ │ │ ├── start_ack.rs │ │ │ ├── start_sessions.rs │ │ │ ├── stop_sessions.rs │ │ │ ├── test_request.rs │ │ │ └── test_response.rs │ │ └── udp.rs │ │ ├── sender.rs │ │ ├── state.rs │ │ ├── sysid │ │ ├── default.rs │ │ ├── linux.rs │ │ ├── mod.rs │ │ └── util.rs │ │ └── timing.rs ├── datastream │ ├── Cargo.toml │ └── src │ │ ├── change │ │ └── mod.rs │ │ ├── client │ │ ├── http.rs │ │ └── mod.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── state │ │ ├── memory.rs │ │ ├── mod.rs │ │ └── plain.rs │ │ └── sync │ │ └── mod.rs └── dnssync │ ├── Cargo.toml │ └── src │ ├── change │ ├── bind.rs │ └── mod.rs │ ├── cmd.rs │ ├── dnszone.rs │ ├── error.rs │ └── main.rs ├── sa ├── __init__.py ├── interfaces │ ├── __init__.py │ ├── base.py │ ├── iaddvlan.py │ ├── ialarmtrigger.py │ ├── iauthenticationbackend.py │ ├── iauthenticationform.py │ ├── icommands.py │ ├── iconfigdifffilter.py │ ├── iconfigfilter.py │ ├── iconfigvalidator.py │ ├── idbpostdelete.py │ ├── idbpostsave.py │ ├── idbpredelete.py │ ├── idbpresave.py │ ├── idiagnosticheck.py │ ├── idispositioncondition.py │ ├── ievent.py │ ├── ieventtrigger.py │ ├── igetactivatorinfo.py │ ├── igetalarms.py │ ├── igetarp.py │ ├── igetbeef.py │ ├── igetbfdsessions.py │ ├── igetbgppeer.py │ ├── igetbgppeerstatus.py │ ├── igetcapabilities.py │ ├── igetcdpneighbors.py │ ├── igetchassisid.py │ ├── igetconfig.py │ ├── igetconfigparam.py │ ├── igetcoppertdrdiag.py │ ├── igetcpe.py │ ├── igetcpestatus.py │ ├── igetdhcpbinding.py │ ├── igetdict.py │ ├── igetdictlist.py │ ├── igetdiscoverycustom.py │ ├── igetdiscoveryid.py │ ├── igetdomstatus.py │ ├── igetdot11associations.py │ ├── igetfdpneighbors.py │ ├── igetfqdn.py │ ├── igethttpget.py │ ├── igethuaweindpneighbors.py │ ├── igetifindex.py │ ├── igetifindexes.py │ ├── igetinterfaceproperties.py │ ├── igetinterfaces.py │ ├── igetinterfacestatus.py │ ├── igetinterfacestatusex.py │ ├── igetinventory.py │ ├── igetipdiscovery.py │ ├── igetipv6neighbor.py │ ├── igetlacpneighbors.py │ ├── igetlicense.py │ ├── igetlist.py │ ├── igetlldpneighbors.py │ ├── igetlocalusers.py │ ├── igetmacaddresstable.py │ ├── igetmetrics.py │ ├── igetmplsvpn.py │ ├── igetntpstatus.py │ ├── igetoamstatus.py │ ├── igetobjectsstatus.py │ ├── igetobjectstatus.py │ ├── igetportchannel.py │ ├── igetreptopology.py │ ├── igetresolverconfig.py │ ├── igetroutingtable.py │ ├── igetslaprobes.py │ ├── igetsnmpget.py │ ├── igetsnmpgetnext.py │ ├── igetspanningtree.py │ ├── igetswitchport.py │ ├── igettechsupport.py │ ├── igetudldneighbors.py │ ├── igetuptime.py │ ├── igetversion.py │ ├── igetvlans.py │ ├── ihaslocaluser.py │ ├── ihasvlan.py │ ├── iinterfaceclassification.py │ ├── ilogin.py │ ├── inotifysae.py │ ├── iperiodictask.py │ ├── iping.py │ ├── ipingcheck.py │ ├── ireboot.py │ ├── ireducetask.py │ ├── iremovevlan.py │ ├── isetswitchport.py │ ├── isyncprefixlists.py │ └── isyncvlans.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_trigger.py │ ├── 0003_task_schedule.py │ ├── 0004_no_task.py │ ├── 0005_activator.py │ ├── 0006_default_activator.py │ ├── 0007_managed_object.py │ ├── 0008_copy_objects.py │ ├── 0009_snmp_community.py │ ├── 0010_root_object.py │ ├── 0011_managedobject_location.py │ ├── 0012_managed_object_description.py │ ├── 0013_rename_DES3xxx.py │ ├── 0014_activator_to_ip.py │ ├── 0015_managedobjectselector.py │ ├── 0016_mapreduce.py │ ├── 0017_object_selector_filter_activator.py │ ├── 0018_rename_Alcatel_AOS.py │ ├── 0019_rename_AddPac.py │ ├── 0020_save_useraccess.py │ ├── 0021_useraccess_selector.py │ ├── 0022_restore_useraccess.py │ ├── 0023_groupaccess.py │ ├── 0024_alter_useraccess.py │ ├── 0025_tags.py │ ├── 0026_no_objectgroup.py │ ├── 0027_reducetask_script.py │ ├── 0028_noc_sae_profile.py │ ├── 0029_managedobjectattribute.py │ ├── 0030_merge_EdgeCore.py │ ├── 0031_management_object_rules.py │ ├── 0032_merge_DLink.py │ ├── 0033_selector_by_attribute.py │ ├── 0034_management_object_diff_filter_rule.py │ ├── 0035_management_object_path_size.py │ ├── 0036_command_snippet.py │ ├── 0037_no_task_schedule.py │ ├── 0038_activator_shard.py │ ├── 0039_set_activator_shard.py │ ├── 0040_activator_shard_not_null.py │ ├── 0041_selector_shard_prefix.py │ ├── 0042_object_max_scripts.py │ ├── 0043_snippet_confirmation.py │ ├── 0044_snippet_permissions.py │ ├── 0045_snippet_ignore_errors.py │ ├── 0046_rename_DES2108.py │ ├── 0047_managedobject_vrf.py │ ├── 0048_sa_managedobjectprofile.py │ ├── 0049_default_managedobjectprofile.py │ ├── 0050_managedobject_profile.py │ ├── 0051_managedobject_set_profile.py │ ├── 0052_sa_managedobject_profile_not_null.py │ ├── 0053_managedobjectprofile_ipam_sync.py │ ├── 0054_object_profile_id_discovery.py │ ├── 0055_object_profile_topology_discovery.py │ ├── 0056_managedobjectselecter_filter_object_profile.py │ ├── 0057_managed_object_profile_rep.py │ ├── 0058_managed_object_profile_bfd.py │ ├── 0059_managed_object_profile_udld.py │ ├── 0060_managedobject_stencils.py │ ├── 0061_managedobjectprofile_ping_interval.py │ ├── 0062_migrate_tags.py │ ├── 0063_finish_tag_migration.py │ ├── 0064_managedobjectselector_migrate_tags.py │ ├── 0065_managedobjectselector_finish_tags_migration.py │ ├── 0066_map_task_reduce_null.py │ ├── 0067_activator_prefixtable.py │ ├── 0068_activator_drop_ip.py │ ├── 0069_managedobject_vcdomain.py │ ├── 0070_managed_object_profile_vlan.py │ ├── 0071_managedobjectselector_vcdomain.py │ ├── 0072_managedobject_set_vcdomain.py │ ├── 0073_objectnotification.py │ ├── 0074_migrate_notifications.py │ ├── 0075_managedobjectprofile_oam_discovery.py │ ├── 0076_migrate_repo.py │ ├── 0077_drop_repo_path.py │ ├── 0078_managedobjectprofile_asset_discovery.py │ ├── 0079_auth_profile.py │ ├── 0080_rename_Siemens.py │ ├── 0081_collector.py │ ├── 0082_termination_group.py │ ├── 0083_objectnotification_alarm_reopened.py │ ├── 0084_activator_caps.py │ ├── 0085_managedobjectprofile_check_link_interval.py │ ├── 0086_maptask_script_timeout.py │ ├── 0087_managedobjectselector_managed.py │ ├── 0088_fix_ttl_index.py │ ├── 0089_failed_log_expire.py │ ├── 0090_objectprofile_caps_discovery.py │ ├── 0091_managedobjectprofile_configdiscovery.py │ ├── 0092_managedobjecselector_drop_repo_path.py │ ├── 0093_objectprofile_level.py │ ├── 0094_objectprofile_uptime_discovery.py │ ├── 0095_managedobject_segment.py │ ├── 0096_managedobject_set_segment.py │ ├── 0097_objectprofile_interface_status_discovery.py │ ├── 0098_maptask_stop_time.py │ ├── 0099_managedobject_pool.py │ ├── 0100_managedobject_set_pool.py │ ├── 0101_managedobject_pool_not_null.py │ ├── 0102_managedobject_trap_source_type.py │ ├── 0103_objectmap_drop.py │ ├── 0104_managedobject_drop_activator.py │ ├── 0105_managed_object_profile_discovery.py │ ├── 0106_drop_activator.py │ ├── 0107_managed_object_profile_profile.py │ ├── 0108_managedobject_service.py │ ├── 0109_termination_group_tags.py │ ├── 0110_managedobjectprofile_tags.py │ ├── 0111_administrativedomain_tags.py │ ├── 0112_managedobject_container.py │ ├── 0113_managed_object_profile_metrics.py │ ├── 0114_managed_object_profile_card.py │ ├── 0115_managed_object_profile_card_title_template.py │ ├── 0116_managed_object_profile_nri.py │ ├── 0117_managed_object_profile_metrics.py │ ├── 0118_managed_object_profile_report_rtt.py │ ├── 0119_managed_object_profile_weight.py │ ├── 0120_managed_object_profile_clear_links.py │ ├── 0121_authprofile_suggest.py │ ├── 0122_administrativedomain_pool.py │ ├── 0123_managedobjectselector_pool.py │ ├── 0124_enlarge_administrative_domain.py │ ├── 0125_access_administrative_domain.py │ ├── 0126_managedobject_timepattern.py │ ├── 0127_managedobject_coordinates.py │ ├── 0128_managed_object_profile_sla.py │ ├── 0129_rename_ALS.py │ ├── 0130_convert_caps.py │ ├── 0131_managed_object_profile_ndp.py │ ├── 0132_managed_object_controller.py │ ├── 0133_managed_object_profile_cpe.py │ ├── 0134_managed_object_profile_cpe_profile.py │ ├── 0135_managed_object_cpe_id.py │ ├── 0136_managed_object_profile_hk.py │ ├── 0137_managed_object_profile_lacp.py │ ├── 0138_managedobject_address_index.py │ ├── 0139_object_data.py │ ├── 0140_move_object_path.py │ ├── 0141_managedobject_address_cust_index.py │ ├── 0142_sa_integration.py │ ├── 0143_managed_object_profile_report_attempts.py │ ├── 0144_managedobject_ttqueue.py │ ├── 0145_upload_extnrittmap.py │ ├── 0146_bi_id_decimal.py │ ├── 0147_bi_id_integer.py │ ├── 0148_managed_object_alarm_settings.py │ ├── 0149_managed_object_ping_settings.py │ ├── 0150_managed_object_profile.py │ ├── 0151_managed_object_vendor.py │ ├── 0152_managed_object_platform.py │ ├── 0153_managedobjectselector_profile.py │ ├── 0154_profilecheckrule_profile.py │ ├── 0155_actioncommands_profile.py │ ├── 0156_managed_object_profile_box_metrics.py │ ├── 0157_managed_object_cli_session.py │ ├── 0158_managed_object_telemetry.py │ ├── 0159_managed_object_cli_privelege.py │ ├── 0160_set_bi_id.py │ ├── 0161_fix_selector_fields.py │ ├── 0162_managedobjectprofile_mac_collect.py │ ├── 0163_managedobjectprofile_autosegmentation.py │ ├── 0164_managedobject_autosegmentation.py │ ├── 0165_managedobjectprofile_ip_discovery.py │ ├── 0166_managedobject_access_preference.py │ ├── 0167_managedobject_eventprocessingpolicy.py │ ├── 0168_managedobjectprofile_neighbor_cache.py │ ├── 0169_cleanup_metric_is_active.py │ ├── 0170_add_container_index.py │ ├── 0171_lowercase_stencil_filenames.py │ ├── 0172_managedobject_config_handlers.py │ ├── 0173_managedobject_handlers.py │ ├── 0174_managedobjectprofile_ipam.py │ ├── 0175_managedobjectprofile_prefix_ipam.py │ ├── 0176_managedobjectprofile_rename_ipam.py │ ├── 0177_managedobjectprofile_ipam_vpn.py │ ├── 0178_managedobjectprofile_nri.py │ ├── 0179_managedobjectprofile_config_mirror.py │ ├── 0180_managedobjectprofile_beef.py │ ├── 0181_managedobjectprofile_cpestatus.py │ ├── 0182_convert_terminationgroups.py │ ├── 0183_managedobject_resourcegroup.py │ ├── 0184_managedobject_migrate_termination_groups.py │ ├── 0185_managedobjectselector_resourcegroup.py │ ├── 0186_managedobjectselector_migrate_terminationgroup.py │ ├── 0187_cleanup_resourcegroup.py │ ├── 0188_managedobject_resolver.py │ ├── 0189_managedobject_fill_fqdn.py │ ├── 0190_managedobject_syslog_archive.py │ ├── 0191_capsprofile.py │ ├── 0192_thresholdprofiles.py │ ├── 0193_managedobjectprofile_denied_policy.py │ ├── 0194_managedobjectprofile_config_download.py │ ├── 0195_discovery_confdb.py │ ├── 0196_managedobjectprofile_config_fetch.py │ ├── 0197_managedobject_running_policy.py │ ├── 0198_migrate_handlers.py │ ├── 0199_managedobject_clear_fields.py │ ├── 0200_managedobjectprofile_confdb_raw_policy.py │ ├── 0201_managedobjectprofile_object_validation_policy.py │ ├── 0202_managedobjectprofile_xmac.py │ ├── 0203_managedobject_fm_pool.py │ ├── 0204_managedobjectprofile_ifdesc.py │ ├── 0205_managedobjectprofile_downlink_merge.py │ ├── 0206_managedobject_project.py │ ├── 0207_managedobject_shape_overlay.py │ ├── 0208_administrativedomain_bioseg.py │ ├── 0209_managedobjectprofile_periodic_alarms.py │ ├── 0210_managedobjectprofile_enable_interface_autocreation.py │ ├── 0211_managedobject_snmp_rate_limit.py │ ├── 0212_managedobjectprofile_cable_abduction.py │ ├── 0213_labels.py │ ├── 0214_managedobjectselector_filter_labels.py │ ├── 0215_service_workflow.py │ ├── 0216_managedobjectprofile_match_rules.py │ ├── 0217_managedobjectprofile_dynamic_classification_policy.py │ ├── 0218_command_snippet_obj_notification_resource_group.py │ ├── 0219_managed_object_selector_resource_group.py │ ├── 0220_remove_selector_field.py │ ├── 0221_managedobjectprofile_ping_time_expr_policy.py │ ├── 0222_managedobject_caps_field.py │ ├── 0223_managed_object_l2domain.py │ ├── 0224_vlan_discovery_policy.py │ ├── 0225_managedobject_object_data.py │ ├── 0226_managedobject_objectdata_migrate.py │ ├── 0227_managedobject_objectdata_links.py │ ├── 0228_managedobject_links_data.py │ ├── 0229_managedobjectprofile_metrics_jsonb.py │ ├── 0230_managedobjectprofile_mac_discovery_policy.py │ ├── 0231_managedobject_affected_maintenances.py │ ├── 0232_managedobjectprofile_trapcollector_storm.py │ ├── 0233_managedobject_diagnostics.py │ ├── 0234_auth_profile_suggests_rule.py │ ├── 0235_auth_profile_add_dynamic_classification.py │ ├── 0236_objectnotification_templates.py │ ├── 0237_objectnotification_routes.py │ ├── 0238_managedobjectattributes_to_caps.py │ ├── 0239_profile_os_linux.py │ ├── 0240_add_diagnostic_labels.py │ ├── 0241_add_metrics_interval.py │ ├── 0242_add_cpe_id_managedobject.py │ ├── 0243_cleanup_objectstatus_wo_object.py │ ├── 0244_managedobject_affected_index.py │ ├── 0245_discovery_interval_tasks.py │ ├── 0246_managedobjectprofile_add_workflow.py │ ├── 0247_managedobject_add_state.py │ ├── 0248_managedobjectprofile_remove_effective_labels.py │ ├── 0249_managedobject_uplinks_index.py │ ├── 0250_fix_object_status_migration_typo.py │ ├── 0251_managedobject_discovery_metric_interval.py │ ├── 0252_manageodobject_status_table.py │ ├── 0253_managedobjectprofile_paramdata_discovery.py │ ├── 0254_auth_profile_add_authentication_snmp3.py │ ├── 0254_managedobject_shape_title_template.py │ ├── 0255_ds_cfgtarget_datastream.py │ ├── 0256_add_separate_periodic_discovery_intervals.py │ ├── 0257_remove_interval_jobs.py │ ├── 0258_managedobject_add_mappings.py │ ├── 0259_managedobject_effective_groups_add_gin_index.py │ ├── 0260_migrate_service_instances.py │ ├── 0261_managedobjectprofile_add_discovery_bgpeer.py │ ├── 0262_managedobject_convert_address_to_inet.py │ ├── 0263_service_set_sla_probe.py │ ├── 0264_service_profile_instance_settings_to_list.py │ ├── 0265_migrate_caps_source_to_discovery.py │ ├── 0266_rebuild_cfgmetricstarget_datastream.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── action.py │ ├── actioncommands.py │ ├── administrativedomain.py │ ├── authprofile.py │ ├── capsprofile.py │ ├── commandsnippet.py │ ├── cpestatus.py │ ├── credentialcheckrule.py │ ├── diagnosticitem.py │ ├── discoveredobject.py │ ├── groupaccess.py │ ├── interactionlog.py │ ├── job.py │ ├── managedobject.py │ ├── managedobjectprofile.py │ ├── objectdiagnosticconfig.py │ ├── objectdiscoveryrule.py │ ├── objectnotification.py │ ├── objectstatus.py │ ├── profile.py │ ├── profilecheckrule.py │ ├── reactionrule.py │ ├── service.py │ ├── serviceinstance.py │ ├── serviceprofile.py │ ├── servicesummary.py │ └── useraccess.py ├── profiles │ ├── 3Com │ │ ├── 4500 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── SuperStack │ │ │ ├── __init__.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── SuperStack3 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── SuperStack3_4400 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── SuperStack3_4500 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── APC │ │ ├── AOS │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ └── environment_temperature.json │ │ └── __init__.py │ ├── AcmePacket │ │ ├── NetNet │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── telephony_sip_register_contacts_active.json │ │ │ │ └── telephony_sip_sessions_active_total.json │ │ └── __init__.py │ ├── AddPac │ │ ├── APOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Alcatel │ │ ├── 7302 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── slot.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_restart.json │ │ │ │ ├── environment_status.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_xdsl_line_attenuation_downstream.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_errors_es_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lof_delta.json │ │ │ │ ├── interface_xdsl_line_errors_loss_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lprs_delta.json │ │ │ │ ├── interface_xdsl_line_snr_margin_downstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_upstream.json │ │ │ │ ├── interface_xdsl_line_txpower_downstream.json │ │ │ │ ├── interface_xdsl_line_txpower_upstream.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ ├── 7324RU │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── interface_xdsl_line_attenuation_downstream.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_downstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ ├── interface_xdsl_line_txpower_downstream.json │ │ │ │ ├── interface_xdsl_line_txpower_upstream.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ ├── AOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── slot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── interface_errors_crc.json │ │ │ │ ├── interface_errors_frame.json │ │ │ │ ├── memory_load_1min.json │ │ │ │ └── memory_usage.json │ │ ├── OS62xx │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── Stinger │ │ │ ├── __init__.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── TIMOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ └── subscribers_ipoe.json │ │ └── __init__.py │ ├── Alentis │ │ ├── NetPing │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_local_users.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── AlliedTelesis │ │ ├── AT8000 │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── AT8000S │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── AT8100 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── AT8500 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── AT8700 │ │ │ ├── __init__.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── AT9400 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── AT9900 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Alstec │ │ ├── 5440 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── 7200 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── 24xx │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ └── environment_temperature.json │ │ ├── ALS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── MSPU │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Angtel │ │ ├── Topaz │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Arista │ │ ├── EOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── reboot.py │ │ └── __init__.py │ ├── Aruba │ │ ├── ArubaOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Audiocodes │ │ ├── Mediant2000 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Axis │ │ ├── VAPIX │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_local_users.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── BDCOM │ │ ├── IOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── __init__.py │ │ └── xPON │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_cpe_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ ├── memory_total.json │ │ │ └── memory_usage.json │ ├── Beward │ │ ├── BD │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_local_users.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── Doorphone │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── Interface_load_in.json │ │ │ │ ├── cpu_load_15min.json │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_load_out.json │ │ │ │ ├── interface_octets_in_delta.json │ │ │ │ ├── interface_octets_out_delta.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── Bradbury │ │ ├── HighVideo │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Brocade │ │ ├── ADX │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── CER-ADV │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fdp_neighbors.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── CER │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fdp_neighbors.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── FabricOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── IronWare │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fdp_neighbors.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ └── __init__.py │ ├── CData │ │ ├── __init__.py │ │ └── xPON │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ ├── memory_total.json │ │ │ ├── memory_usage.json │ │ │ └── memory_usage_bytes.json │ ├── Cambium │ │ ├── __init__.py │ │ └── ePMP │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Carelink │ │ ├── SWG │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Cisco │ │ ├── 1900 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── ASA │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── AireOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── CatOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── DCM │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── FWSM │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── IOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_bfd_sessions.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_dot11_associations.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_index.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_rep_topology.py │ │ │ ├── get_resolver_config.py │ │ │ ├── get_sla_probes.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_udld_neighbors.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ ├── set_switchport.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── cpu_usage_5min.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_errors_collision_delta.json │ │ │ │ ├── interface_errors_collision_rate.json │ │ │ │ ├── interface_errors_crc.json │ │ │ │ ├── interface_errors_crc_in_delta.json │ │ │ │ ├── interface_errors_frame.json │ │ │ │ ├── interface_errors_frame_in_delta.json │ │ │ │ ├── memory_total.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── subscribers_ipoe.json │ │ │ │ ├── subscribers_pppoe.json │ │ │ │ └── telephony_isdn_channels.json │ │ ├── IOSXR │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_udld_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── NXOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── SANOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── SCOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── SMB │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── WLC │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── DCN │ │ ├── DCWL │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── DCWS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── DLink │ │ ├── DAS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_errors_es_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lof_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lols_delta.json │ │ │ │ ├── interface_xdsl_line_errors_loss_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lprs_delta.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ └── interface_xdsl_line_snr_upstream.json │ │ ├── DES21xx │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── DFL │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── DGS3100 │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── DIR │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ ├── DVG │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── DxS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_license.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_resolver_config.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switch.py │ │ │ ├── get_switchport.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── DxS_Cisco_CLI │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── DxS_Industrial_CLI │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── DxS_Smart │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Dahua │ │ ├── DH │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_local_users.py │ │ │ ├── get_version.py │ │ │ ├── middleware │ │ │ │ ├── __init__.py │ │ │ │ └── dahuaauth.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Dell │ │ ├── Powerconnect55xx │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── Powerconnect62xx │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ └── __init__.py │ ├── ECI │ │ ├── HiFOCuS │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ └── interface_xdsl_line_snr_upstream.json │ │ ├── SAM │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── SANI │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── EdgeCore │ │ ├── ES │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── reboot.py │ │ │ ├── remove_vlan.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_errors_frame.json │ │ │ │ ├── interface_errors_frame_in_delta.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── ElectronR │ │ ├── KO01M │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Eltex │ │ ├── DSLAM │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_upstream.json │ │ │ │ └── memory_usage.json │ │ ├── ESR │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_system.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── environment_temperature.json │ │ │ │ └── memory_usage.json │ │ ├── LTE │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── snmp_metrics │ │ │ │ └── object_sysuptime.json │ │ ├── LTP │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_license.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── LTP16N │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_cpe_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ └── cpu_load_5min.json │ │ ├── MA4000 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_cpe_status.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── MES │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ ├── set_switchport.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_status.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_dom_bias_current.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ ├── interface_dom_temperature.json │ │ │ │ ├── interface_dom_txpower.json │ │ │ │ ├── interface_dom_voltage.json │ │ │ │ └── memory_usage.json │ │ ├── MES24xx │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ ├── MES5448 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ ├── PON │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_inventory.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── RG │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── SMG │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── TAU │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── WOP │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── WOPLR │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Enterasys │ │ ├── EOS │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Ericsson │ │ ├── MINI_LINK │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── SEOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── radio_rxpower.json │ │ │ │ └── radio_txpower.json │ │ └── __init__.py │ ├── Extreme │ │ ├── ISW │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── Summit200 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── XOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_index.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── Force10 │ │ ├── FTOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── set_switchport.py │ │ ├── SFTOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Fortinet │ │ ├── Fortigate │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── GWD │ │ ├── GFA │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Generic │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── configure.py │ │ ├── get_arp.py │ │ ├── get_beef.py │ │ ├── get_bgp_peer_status.py │ │ ├── get_capabilities.py │ │ ├── get_chassis_id.py │ │ ├── get_discovery_id.py │ │ ├── get_fqdn.py │ │ ├── get_ifindexes.py │ │ ├── get_interface_properties.py │ │ ├── get_interface_status_ex.py │ │ ├── get_interfaces.py │ │ ├── get_inventory.py │ │ ├── get_ip_discovery.py │ │ ├── get_lldp_neighbors.py │ │ ├── get_mac_address_table.py │ │ ├── get_metrics.py │ │ ├── get_mpls_vpn.py │ │ ├── get_ntp_status.py │ │ ├── get_portchannel.py │ │ ├── get_sla_probes.py │ │ ├── get_snmp_get.py │ │ ├── get_snmp_getnext.py │ │ ├── get_spanning_tree.py │ │ ├── get_switchport.py │ │ ├── get_uptime.py │ │ ├── get_vlans.py │ │ ├── has_vlan.py │ │ ├── login.py │ │ ├── profile.py │ │ ├── run_checks.py │ │ ├── snmp_metrics │ │ │ ├── interface_broadcast_packets_in.json │ │ │ ├── interface_broadcast_packets_out.json │ │ │ ├── interface_discards_in.json │ │ │ ├── interface_discards_out.json │ │ │ ├── interface_errors_in.json │ │ │ ├── interface_errors_in_delta.json │ │ │ ├── interface_errors_out.json │ │ │ ├── interface_errors_out_delta.json │ │ │ ├── interface_load_in.json │ │ │ ├── interface_load_out.json │ │ │ ├── interface_multicast_packets_in.json │ │ │ ├── interface_multicast_packets_in_delta.json │ │ │ ├── interface_multicast_packets_out.json │ │ │ ├── interface_multicast_packets_out_delta.json │ │ │ ├── interface_octets_in.json │ │ │ ├── interface_octets_in_delta.json │ │ │ ├── interface_octets_out.json │ │ │ ├── interface_octets_out_delta.json │ │ │ ├── interface_packets_in.json │ │ │ ├── interface_packets_out.json │ │ │ ├── interface_speed.json │ │ │ ├── interface_status_admin.json │ │ │ ├── interface_status_duplex.json │ │ │ ├── interface_status_oper.json │ │ │ ├── network_stp_topology_changes.json │ │ │ ├── network_stp_topology_changes_delta.json │ │ │ ├── network_stp_topology_changes_rate.json │ │ │ └── object_sysuptime.json │ │ └── sync_vlans.py │ ├── H3C │ │ ├── VRP │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── HP │ │ ├── 1905 │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── 1910 │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_index.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ ├── set_switchport.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ ├── Aruba │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── Comware │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_huawei_ndp_neighbors.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── GbE2 │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_config.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── OfficeConnect │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── ProCurve │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── ProCurve9xxx │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fdp_neighbors.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── __init__.py │ │ └── iLO2 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Harmonic │ │ ├── DiviComElectra │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── ProStream1000 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── __init__.py │ │ └── bNSG9000 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Hikvision │ │ ├── DS2CD │ │ │ ├── __init__.py │ │ │ └── profile.py │ │ ├── DSKV8 │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_local_users.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Huawei │ │ ├── MA5300 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── MA5600T │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_cpe_status.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ ├── gpon_ports.py │ │ │ │ └── hw_slots.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_errors_in.json │ │ │ │ ├── interface_errors_in_delta.json │ │ │ │ ├── interface_load_in.json │ │ │ │ ├── interface_load_out.json │ │ │ │ ├── interface_packets_in.json │ │ │ │ ├── interface_packets_out.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_errors_es_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lof_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lols_delta.json │ │ │ │ ├── interface_xdsl_line_errors_loss_delta.json │ │ │ │ ├── interface_xdsl_line_errors_lprs_delta.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ └── interface_xdsl_line_snr_upstream.json │ │ ├── UMG8900 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ └── profile.py │ │ ├── VRP │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ ├── collators.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_bfd_sessions.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_huawei_ndp_neighbors.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_sla_probes.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ ├── slot.py │ │ │ │ └── sslot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── cpu_usage_1min.json │ │ │ │ ├── cpu_usage_5min.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_errors_crc.json │ │ │ │ ├── interface_errors_frame.json │ │ │ │ └── memory_usage.json │ │ ├── VRP3 │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ └── __init__.py │ ├── IBM │ │ ├── NOS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── IRE-Polus │ │ ├── Horizon │ │ │ ├── __init__.py │ │ │ ├── controller │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── otn_odu.py │ │ │ │ ├── otn_oms.py │ │ │ │ ├── otn_osc.py │ │ │ │ └── otn_otu.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_params.py │ │ │ ├── get_uptime.py │ │ │ ├── get_version.py │ │ │ ├── middleware │ │ │ │ ├── __init__.py │ │ │ │ └── horizonauth.py │ │ │ ├── profile.py │ │ │ └── set_param.py │ │ ├── Taros │ │ │ ├── __init__.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ └── interface_dom_rxpower.json │ │ └── __init__.py │ ├── InfiNet │ │ ├── WANFlexX │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Intracom │ │ ├── UltraLink │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── radio_cinr.json │ │ │ │ └── radio_rssi.json │ │ └── __init__.py │ ├── Iskratel │ │ ├── ESCOM │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── MBAN │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── MSAN │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── interface_load_in.json │ │ │ │ ├── interface_load_out.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_errors_es_delta.json │ │ │ │ ├── interface_xdsl_line_errors_loss_delta.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ └── interface_xdsl_line_snr_upstream.json │ │ ├── VOIP │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Juniper │ │ ├── EX2500 │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── JUNOS │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ ├── applicator.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_bfd_sessions.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_license.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_mpls_vpn.py │ │ │ ├── get_ntp_status.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_sla_probes.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── slot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── reboot.py │ │ │ ├── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_dom_bias_current.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ ├── interface_dom_temperature.json │ │ │ │ ├── interface_dom_txpower.json │ │ │ │ ├── interface_dom_voltage.json │ │ │ │ ├── memory_heap.json │ │ │ │ ├── memory_total.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── subscribers_l2tp.json │ │ │ │ ├── subscribers_ppp.json │ │ │ │ ├── subscribers_pppoe.json │ │ │ │ └── subscribers_total.json │ │ │ └── sync_prefix_lists.py │ │ ├── JUNOSe │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_license.py │ │ │ ├── get_metrics.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── slot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── subscribers_ipoe.json │ │ │ │ ├── subscribers_l2tp.json │ │ │ │ └── subscribers_ppp.json │ │ ├── SRCPE │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── ScreenOS │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Linksys │ │ ├── SPS2xx │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── remove_vlan.py │ │ ├── SRW │ │ │ ├── __init__.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ ├── VoIP │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Lucent │ │ ├── Stinger │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Maipu │ │ ├── OS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Meinberg │ │ ├── LANTIME │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ └── cpu_load_5min.json │ │ └── __init__.py │ ├── Mellanox │ │ ├── Cumulus │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── Onyx │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── MikroTik │ │ ├── RouterOS │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_cdp_neighbors.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dhcp_binding.py │ │ │ ├── get_dot11_associations.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_license.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── reboot.py │ │ │ └── snmp_metrics │ │ │ │ └── cpu_usage.json │ │ ├── SwOS │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── NAG │ │ ├── SNR │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── SNR_eNOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── environment_temperature.json │ │ └── __init__.py │ ├── NOC │ │ ├── SAE │ │ │ ├── __init__.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── NSCComm │ │ ├── LPOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── NSGATE │ │ ├── NIS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── NSN │ │ ├── TIMOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── memory_usage.json │ │ │ │ └── subscribers_ipoe.json │ │ ├── __init__.py │ │ └── hiX56xx │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ ├── Nateks │ │ ├── FlexGain │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── FlexGainACE16 │ │ │ ├── __init__.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── FlexGainACE24 │ │ │ ├── __init__.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── NetXpert │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── NextIO │ │ ├── __init__.py │ │ └── vNet │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Nortel │ │ ├── BayStack425 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── OS │ │ ├── ESXi │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── FreeBSD │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_ntp_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_resolver_config.py │ │ │ ├── get_uptime.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── memory_usage.json │ │ │ │ └── memory_usage_bytes.json │ │ ├── Linux │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── memory_usage.json │ │ │ │ └── memory_usage_bytes.json │ │ └── __init__.py │ ├── OneAccess │ │ ├── TDRE │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_sla_probes.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Opticin │ │ ├── OS │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Orion │ │ ├── NOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Planar │ │ ├── SDO3000 │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── environment_voltage.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ └── interface_rf_txpower.json │ │ └── __init__.py │ ├── Planet │ │ ├── WGSD │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Polygon │ │ ├── IOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_config.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Proscend │ │ ├── SHDSL │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Protei │ │ ├── MediaGateway │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Qtech │ │ ├── BFC_PBIC_S │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ ├── QFC │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_uptime.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ └── object_sysuptime.json │ │ ├── QOS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── QSW │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ ├── QSW2500 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── QSW2800 │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lacp_neighbors.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ ├── enterprise.py │ │ │ │ └── slot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ ├── QSW8200 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Raisecom │ │ ├── RCIOS │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── ROS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── interface_dom_bias_current.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ ├── interface_dom_temperature.json │ │ │ │ ├── interface_dom_txpower.json │ │ │ │ ├── interface_dom_voltage.json │ │ │ │ ├── memory_total.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── Raritan │ │ ├── DominionSX │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Rotek │ │ ├── BT │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ ├── RTBS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── platform.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── memory_total.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── noise_level.json │ │ │ │ ├── radio_quality.json │ │ │ │ ├── signal_level.json │ │ │ │ └── tx_power.json │ │ ├── RTBSv1 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── oidrules │ │ │ │ └── platform.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── memory_usage.json │ │ │ │ ├── noise_level.json │ │ │ │ ├── signal_level.json │ │ │ │ └── tx_power.json │ │ └── __init__.py │ ├── Rubytech │ │ ├── __init__.py │ │ └── l2ms │ │ │ ├── __init__.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Ruckus │ │ ├── SmartZone │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── ZoneDirector │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_cpe.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── SKS │ │ ├── SKS │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── STerra │ │ ├── Gate │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_5min.json │ │ │ │ ├── memory_usage.json │ │ │ │ └── vpn_ipsec_auth_failed.json │ │ └── __init__.py │ ├── SecurityCode │ │ ├── Kontinent │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_5min.json │ │ │ │ └── memory_usage.json │ │ └── __init__.py │ ├── Sencore │ │ ├── Probe │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Siklu │ │ ├── EH │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── environment_voltage.json │ │ │ │ ├── radio_cinr.json │ │ │ │ └── radio_rssi.json │ │ └── __init__.py │ ├── Sumavision │ │ ├── EMR │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── IPQAM │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_metrics.py │ │ │ ├── get_uptime.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ └── object_sysuptime.json │ │ └── __init__.py │ ├── Sun │ │ ├── __init__.py │ │ └── iLOM3 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ ├── Supertel │ │ ├── K2X │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_dom_status.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_local_users.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_resolver_config.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── set_switchport.py │ │ └── __init__.py │ ├── Symbol │ │ ├── AP │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── TFortis │ │ ├── PSW │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── TPLink │ │ ├── EAP │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── T2600G │ │ │ ├── __init__.py │ │ │ ├── confdb │ │ │ │ ├── __init__.py │ │ │ │ └── normalizer.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_properties.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Tangram │ │ ├── GT21 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Telecom │ │ ├── CPE │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_load_1min.json │ │ │ │ ├── cpu_load_5min.json │ │ │ │ └── memory_usage.json │ │ ├── FXS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Telindus │ │ ├── SHDSL │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Terayon │ │ ├── BW │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Ttronics │ │ ├── KUB │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── login.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── UTST │ │ ├── ONU │ │ │ ├── __init__.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Ubiquiti │ │ ├── AirOS │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_metrics.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── Controller │ │ │ ├── get_capabilities.py │ │ │ ├── get_cpe.py │ │ │ ├── get_metrics.py │ │ │ ├── get_uptime.py │ │ │ ├── get_version.py │ │ │ ├── middleware │ │ │ │ └── ubiquityauth.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Upvel │ │ ├── UP │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── VMWare │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── vCenter │ │ │ ├── __init__.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── vHost │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── vMachine │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── vim.py │ ├── Vector │ │ ├── Lambda │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── environment_temperature.json │ │ │ │ ├── environment_voltage.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ └── interface_rf_txpower.json │ │ └── __init__.py │ ├── Vitesse │ │ ├── VSC │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_ipv6_neighbor.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_tech_support.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Vyatta │ │ ├── Vyatta │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_config.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ ├── profile.py │ │ │ └── reboot.py │ │ └── __init__.py │ ├── ZTE │ │ ├── ZXA10 │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_version.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── ZXDSL531 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_dot11_associations.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── ZXDSL98xx │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ └── profile.py │ │ ├── ZXR10 │ │ │ ├── __init__.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Zebra │ │ ├── Zebra │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Zhone │ │ ├── Bitstorm │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_ifindexes.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ ├── MXK │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── Zyxel │ │ ├── DSLAM │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── MSAN │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status_ex.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── oidrules │ │ │ │ ├── __init__.py │ │ │ │ └── slot.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ ├── interface_dom_bias_current.json │ │ │ │ ├── interface_dom_rxpower.json │ │ │ │ ├── interface_dom_temperature.json │ │ │ │ ├── interface_dom_txpower.json │ │ │ │ ├── interface_dom_voltage.json │ │ │ │ ├── interface_xdsl_line_attenuation_downstream.json │ │ │ │ ├── interface_xdsl_line_attenuation_upstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_downstream.json │ │ │ │ ├── interface_xdsl_line_snr_margin_upstream.json │ │ │ │ ├── interface_xdsl_line_txpower_downstream.json │ │ │ │ ├── interface_xdsl_line_txpower_upstream.json │ │ │ │ └── memory_usage.json │ │ ├── ZyNOS │ │ │ ├── __init__.py │ │ │ ├── add_vlan.py │ │ │ ├── get_arp.py │ │ │ ├── get_capabilities.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_config.py │ │ │ ├── get_copper_tdr_diag.py │ │ │ ├── get_fqdn.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_interfaces.py │ │ │ ├── get_inventory.py │ │ │ ├── get_lldp_neighbors.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_metrics.py │ │ │ ├── get_oam_status.py │ │ │ ├── get_portchannel.py │ │ │ ├── get_spanning_tree.py │ │ │ ├── get_switchport.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ ├── profile.py │ │ │ ├── remove_vlan.py │ │ │ └── snmp_metrics │ │ │ │ ├── cpu_usage.json │ │ │ │ └── memory_usage.json │ │ ├── ZyNOS_EE │ │ │ ├── __init__.py │ │ │ ├── get_arp.py │ │ │ ├── get_chassis_id.py │ │ │ ├── get_interface_status.py │ │ │ ├── get_mac_address_table.py │ │ │ ├── get_version.py │ │ │ ├── get_vlans.py │ │ │ ├── ping.py │ │ │ └── profile.py │ │ ├── ZyNOSv2 │ │ │ ├── __init__.py │ │ │ ├── get_config.py │ │ │ ├── get_version.py │ │ │ └── profile.py │ │ └── __init__.py │ ├── __init__.py │ └── f5 │ │ ├── BIGIP │ │ ├── __init__.py │ │ ├── get_arp.py │ │ ├── get_config.py │ │ ├── get_interfaces.py │ │ ├── get_license.py │ │ ├── get_lldp_neighbors.py │ │ ├── get_version.py │ │ ├── get_vlans.py │ │ ├── ping.py │ │ └── profile.py │ │ └── __init__.py ├── templates │ └── interfaces │ │ ├── igetbfdsessions.html │ │ ├── igetcdpneighbors.html │ │ ├── igetchassisid.html │ │ ├── igetdomstatus.html │ │ ├── igetinterfacestatus.html │ │ ├── igetlicense.html │ │ ├── igetlldpneighbors.html │ │ ├── igetobjectsstatus.html │ │ ├── igetsnmpget.html │ │ ├── igetsnmpgetnext.html │ │ ├── igetversion.html │ │ └── iping.html └── wipe │ ├── __init__.py │ └── managedobject.py ├── scripts ├── build-collections.py ├── build-models.py ├── build │ ├── build-ui │ └── compile-handlebars.py ├── check-db.py ├── check-labels.py ├── ci │ └── ruff-format-junit.py ├── colors-css ├── cptool ├── dbf2csv ├── deploy │ ├── README.rst │ ├── apply-pools │ ├── change-ip.py │ ├── cleanup-pyc │ ├── clickhouse-dict │ ├── compile-bytecode │ ├── fix-pip │ ├── install-packages │ ├── link-site-packages │ └── migrate.sh ├── docs │ ├── gen-alarm-classes-reference.py │ ├── gen-caps-reference.py │ ├── gen-connection-types-reference.py │ ├── gen-event-classes-reference.py │ ├── gen-measurement-units.py │ ├── gen-metrics-reference.py │ ├── gen-model-interfaces-reference.py │ ├── gen-technologies-reference.py │ ├── hooks │ │ └── blog.py │ └── minify.py ├── fa-index ├── fetch ├── migrate-ignored-interfaces.py ├── paste.py ├── profile-mongo └── switch-db ├── services ├── __init__.py ├── activator │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── controller.py │ │ └── streaming.py │ ├── paths │ │ ├── __init__.py │ │ └── activator.py │ └── service.py ├── bh │ ├── __init__.py │ ├── models │ │ ├── bulk_ping.py │ │ ├── bulk_snmp.py │ │ └── traceroute.py │ ├── paths │ │ ├── __init__.py │ │ └── bh.py │ └── service.py ├── bi │ ├── __init__.py │ ├── paths │ │ └── bi.py │ ├── service.py │ └── translations │ │ ├── messages.pot │ │ ├── messages_js.pot │ │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── messages.po │ │ │ └── messages_js.po │ │ └── ru │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ ├── messages.po │ │ └── messages_js.po ├── card │ ├── __init__.py │ ├── base.py │ ├── cards │ │ ├── __init__.py │ │ ├── address.py │ │ ├── alarm.py │ │ ├── alarmheat.py │ │ ├── base.py │ │ ├── cpe.py │ │ ├── dialplan.py │ │ ├── firmware.py │ │ ├── interfacepath.py │ │ ├── kb.py │ │ ├── maintenance.py │ │ ├── managedobject.py │ │ ├── monmap.py │ │ ├── object.py │ │ ├── outage.py │ │ ├── path.py │ │ ├── phonenumber.py │ │ ├── phonerange.py │ │ ├── platform.py │ │ ├── prefix.py │ │ ├── project.py │ │ ├── resourcegroup.py │ │ ├── resourcepool.py │ │ ├── segment.py │ │ ├── segmentalarm.py │ │ ├── service.py │ │ ├── span.py │ │ ├── subscribersession.py │ │ ├── technology.py │ │ ├── timepattern.py │ │ ├── totaloutage.py │ │ ├── tt.py │ │ ├── vlan.py │ │ └── vrf.py │ ├── paths │ │ └── card.py │ ├── service.py │ ├── templates │ │ ├── address.html.j2 │ │ ├── alarm.html.j2 │ │ ├── alarmheat.html.j2 │ │ ├── card.html.j2 │ │ ├── cpe.html.j2 │ │ ├── dialplan.html.j2 │ │ ├── firmware.html.j2 │ │ ├── interfacepath.html.j2 │ │ ├── kb.html.j2 │ │ ├── kbentry.html.j2 │ │ ├── maintenance.html.j2 │ │ ├── managedobject.html.j2 │ │ ├── monmap.html.j2 │ │ ├── object.html.j2 │ │ ├── outage.html.j2 │ │ ├── path.html.j2 │ │ ├── phonenumber.html.j2 │ │ ├── phonerange.html.j2 │ │ ├── platform.html.j2 │ │ ├── prefix.html.j2 │ │ ├── project.html.j2 │ │ ├── resourcegroup.html.j2 │ │ ├── resourcepool.html.j2 │ │ ├── segment.html.j2 │ │ ├── segmentalarm.html.j2 │ │ ├── sensor_controller.html.j2 │ │ ├── service.html.j2 │ │ ├── span.html.j2 │ │ ├── subscribersession.html.j2 │ │ ├── technology.html.j2 │ │ ├── timepattern.html.j2 │ │ ├── totaloutage.html.j2 │ │ ├── tt.html.j2 │ │ ├── vlan.html.j2 │ │ └── vrf.html.j2 │ └── translations │ │ ├── messages.pot │ │ ├── messages_js.pot │ │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ ├── messages.po │ │ │ └── messages_js.po │ │ └── ru │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ ├── messages.po │ │ └── messages_js.po ├── chwriter │ ├── __init__.py │ ├── channel.py │ └── service.py ├── classifier │ ├── __init__.py │ ├── abdetector.py │ ├── actionset.py │ ├── cloningrule.py │ ├── datastream.py │ ├── eventconfig.py │ ├── evfilter │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dedup.py │ │ └── suppress.py │ ├── exception.py │ ├── patternset.py │ ├── rule.py │ ├── rulelookup.py │ ├── ruleset.py │ ├── service.py │ ├── sourcelookup.py │ ├── trigger.py │ └── xrulelookup.py ├── correlator │ ├── __init__.py │ ├── actionlog.py │ ├── alarmaction.py │ ├── alarmjob.py │ ├── alarmrule.py │ ├── check.py │ ├── models │ │ ├── __init__.py │ │ ├── clearidreq.py │ │ ├── clearreq.py │ │ ├── disposereq.py │ │ ├── dispositionreq.py │ │ ├── ensuregroupreq.py │ │ ├── eventreq.py │ │ ├── raisereq.py │ │ └── setstatusreq.py │ ├── rcacondition.py │ ├── rcalock.py │ ├── rule.py │ ├── service.py │ ├── trigger.py │ └── utils.py ├── datastream │ ├── __init__.py │ ├── models │ │ ├── address.py │ │ ├── administrativedomain.py │ │ ├── alarm.py │ │ ├── cfgalarm.py │ │ ├── cfgevent.py │ │ ├── cfgeventrules.py │ │ ├── cfgmetrics.py │ │ ├── cfgmetricstarget.py │ │ ├── cfgtarget.py │ │ ├── dnszone.py │ │ ├── managedobject.py │ │ ├── prefix.py │ │ ├── resourcegroup.py │ │ ├── service.py │ │ ├── utils.py │ │ └── vrf.py │ ├── paths │ │ ├── __init__.py │ │ └── datastream.py │ ├── service.py │ └── streams │ │ ├── __init__.py │ │ ├── address.py │ │ ├── administrativedomain.py │ │ ├── alarm.py │ │ ├── cfgevent.py │ │ ├── cfgeventrules.py │ │ ├── cfgmetricrules.py │ │ ├── cfgmetrics.py │ │ ├── cfgmetricsources.py │ │ ├── cfgmetricstarget.py │ │ ├── cfgmxroute.py │ │ ├── cfgping.py │ │ ├── cfgsyslog.py │ │ ├── cfgtarget.py │ │ ├── cfgtrap.py │ │ ├── dnszone.py │ │ ├── managedobject.py │ │ ├── prefix.py │ │ ├── resourcegroup.py │ │ ├── service.py │ │ └── vrf.py ├── discovery │ ├── __init__.py │ ├── jobs │ │ ├── __init__.py │ │ ├── as │ │ │ ├── __init__.py │ │ │ ├── job.py │ │ │ └── prefix.py │ │ ├── base.py │ │ ├── box │ │ │ ├── __init__.py │ │ │ ├── address.py │ │ │ ├── asset.py │ │ │ ├── bfd.py │ │ │ ├── bgppeer.py │ │ │ ├── caps.py │ │ │ ├── cdp.py │ │ │ ├── config.py │ │ │ ├── configparam.py │ │ │ ├── configvalidation.py │ │ │ ├── cpe.py │ │ │ ├── fdp.py │ │ │ ├── hk.py │ │ │ ├── huawei_ndp.py │ │ │ ├── id.py │ │ │ ├── ifdesc.py │ │ │ ├── interface.py │ │ │ ├── job.py │ │ │ ├── lacp.py │ │ │ ├── lldp.py │ │ │ ├── nri.py │ │ │ ├── nri_portmap.py │ │ │ ├── nri_service.py │ │ │ ├── oam.py │ │ │ ├── prefix.py │ │ │ ├── profile.py │ │ │ ├── rep.py │ │ │ ├── resolver.py │ │ │ ├── segmentation.py │ │ │ ├── sla.py │ │ │ ├── stp.py │ │ │ ├── suggestcli.py │ │ │ ├── suggestsnmp.py │ │ │ ├── udld.py │ │ │ ├── version.py │ │ │ ├── vlan.py │ │ │ ├── vpn.py │ │ │ └── xmac.py │ │ ├── ipping │ │ │ ├── __init__.py │ │ │ ├── address.py │ │ │ └── job.py │ │ ├── periodic │ │ │ ├── __init__.py │ │ │ ├── alarms.py │ │ │ ├── cpestatus.py │ │ │ ├── diagnostic.py │ │ │ ├── interfacestatus.py │ │ │ ├── job.py │ │ │ ├── mac.py │ │ │ ├── metrics.py │ │ │ ├── peerstatus.py │ │ │ └── uptime.py │ │ └── segment │ │ │ ├── __init__.py │ │ │ ├── job.py │ │ │ └── mac.py │ └── service.py ├── escalator │ ├── __init__.py │ ├── escalation.py │ ├── jobs │ │ ├── __init__.py │ │ ├── base.py │ │ ├── check_tt.py │ │ └── escalation.py │ ├── maintenance.py │ ├── service.py │ ├── tt │ │ ├── __init__.py │ │ ├── stub.py │ │ └── tg_bot.py │ └── wait_tt.py ├── grafanads │ ├── __init__.py │ ├── jsonds.py │ ├── models │ │ ├── __init__.py │ │ ├── jsonds.py │ │ └── managedobject.py │ ├── paths │ │ ├── __init__.py │ │ ├── grafanads.py │ │ ├── grafanajsonds.py │ │ └── managedobject.py │ └── service.py ├── kafkasender │ ├── __init__.py │ └── service.py ├── login │ ├── __init__.py │ ├── auth.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── ldap.py │ │ ├── loader.py │ │ ├── local.py │ │ ├── pam.py │ │ ├── radius.dict │ │ └── radius.py │ ├── models │ │ ├── __init__.py │ │ ├── changecredentials.py │ │ ├── login.py │ │ ├── revoke.py │ │ ├── status.py │ │ └── token.py │ ├── paths │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── change_credentials.py │ │ ├── is_logged.py │ │ ├── login.py │ │ ├── logout.py │ │ ├── revoke.py │ │ └── token.py │ ├── service.py │ └── translations │ │ ├── messages.pot │ │ ├── messages_js.pot │ │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ ├── messages.po │ │ │ └── messages_js.po │ │ └── ru │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ ├── messages.po │ │ └── messages_js.po ├── mailsender │ ├── __init__.py │ └── service.py ├── metrics │ ├── __init__.py │ ├── changelog.py │ ├── datastream.py │ ├── models │ │ ├── card.py │ │ ├── rule.py │ │ └── source.py │ └── service.py ├── metricscollector │ ├── __init__.py │ ├── datastream.py │ ├── models │ │ ├── __init__.py │ │ ├── send.py │ │ └── sendmetric.py │ ├── paths │ │ ├── __init__.py │ │ ├── send.py │ │ └── zabbix.py │ ├── service.py │ └── sourceconfig.py ├── mib │ ├── __init__.py │ ├── paths │ │ └── mib.py │ └── service.py ├── mrt │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── mrt.py │ ├── paths │ │ └── mrt.py │ └── service.py ├── mx │ ├── __init__.py │ └── service.py ├── nbi │ ├── __init__.py │ ├── base.py │ ├── paths │ │ ├── __init__.py │ │ ├── config.py │ │ ├── configrevisions.py │ │ ├── getmappings.py │ │ ├── objectmetrics.py │ │ ├── objectstatus.py │ │ ├── path.py │ │ ├── servicestatus.py │ │ └── telemetry.py │ └── service.py ├── ping │ ├── __init__.py │ ├── datastream.py │ ├── probesetting.py │ └── service.py ├── runner │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── runnerreq.py │ └── service.py ├── sae │ ├── __init__.py │ ├── paths │ │ └── sae.py │ └── service.py ├── scheduler │ ├── __init__.py │ ├── jobs │ │ ├── __init__.py │ │ ├── cron.py │ │ ├── network_instance_service.py │ │ ├── remote_system.py │ │ ├── sync_purgatorium.py │ │ └── topology_uplinks.py │ └── service.py ├── selfmon │ ├── __init__.py │ ├── collectors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── fm.py │ │ ├── inventory.py │ │ ├── kafka.py │ │ ├── liftbridge.py │ │ ├── managedobject.py │ │ └── task.py │ ├── loader.py │ └── service.py ├── syslogcollector │ ├── __init__.py │ ├── datastream.py │ ├── service.py │ ├── sourceconfig.py │ └── syslogserver.py ├── tgsender │ ├── __init__.py │ └── service.py ├── topo │ ├── __init__.py │ ├── datastream.py │ ├── service.py │ ├── topo.py │ └── types.py ├── trapcollector │ ├── __init__.py │ ├── datastream.py │ ├── service.py │ ├── sourceconfig.py │ └── trapserver.py ├── ui │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── administrativedomain.py │ │ ├── label.py │ │ ├── me.py │ │ ├── object.py │ │ ├── platform.py │ │ ├── remotesystem.py │ │ ├── resourcegroup.py │ │ ├── service.py │ │ ├── status.py │ │ └── utils.py │ ├── paths │ │ ├── __init__.py │ │ ├── administrativedomain.py │ │ ├── avatar.py │ │ ├── label.py │ │ ├── me.py │ │ ├── object.py │ │ ├── platform.py │ │ ├── remotesystem.py │ │ ├── resourcegroup.py │ │ └── service.py │ ├── service.py │ └── utils │ │ ├── __init__.py │ │ ├── ref.py │ │ └── rest │ │ ├── __init__.py │ │ ├── base.py │ │ ├── document.py │ │ ├── model.py │ │ └── op.py ├── web │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── aaa │ │ │ ├── __init__.py │ │ │ ├── apikey │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── group │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── modelprotectionprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── bi │ │ │ ├── __init__.py │ │ │ ├── dashboard │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── dashboardlayout │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── cm │ │ │ ├── __init__.py │ │ │ ├── confdbquery │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── configurationparam │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── configurationscope │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── interfacevalidationpolicy │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectnotify │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectvalidationpolicy │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── reportlatestchanges │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── crm │ │ │ ├── __init__.py │ │ │ ├── subscriber │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── subscriberprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── supplier │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── supplierprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── dev │ │ │ ├── __init__.py │ │ │ ├── quiz │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── spec │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── dns │ │ │ ├── __init__.py │ │ │ ├── dnsserver │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── dnszone │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── dnszoneprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportduplicatedfqdns │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportexpiringdomains │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmissedp2p │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmissedreverse │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── reportnszonesummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── fm │ │ │ ├── __init__.py │ │ │ ├── alarm │ │ │ │ ├── __init__.py │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── diagnostic.py │ │ │ │ │ └── thresholds.py │ │ │ │ └── views.py │ │ │ ├── alarmclass │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmclassconfig │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmdiagnosticconfig │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmescalation │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmseverity │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── alarmtrigger │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── classificationrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── dispositionrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── escalationprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── event │ │ │ │ ├── __init__.py │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── traceback.py │ │ │ │ └── views.py │ │ │ ├── eventclass │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── eventtrigger │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── heatmap │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ignoreeventrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ignorepattern │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── mib │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── mibpreference │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── monmap │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── oidalias │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── outage │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportalarmcomments │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportalarmdetail │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportavailability │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportclassificationquality │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportclassificationrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportescalations │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reporthierarchy │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ └── data.html │ │ │ │ └── views.py │ │ │ ├── reportlocalrules │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmibs │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmissedmibs │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportoutages │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportoverlappedoids │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportreboots │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportrulesbyprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportrulesetsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportttsystemstat │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── totaloutage │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── ttsystem │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── gis │ │ │ ├── __init__.py │ │ │ ├── area │ │ │ │ ├── DISABLED │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── building │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── division │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── geocoder │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── layer │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── overlay │ │ │ │ ├── DISABLED │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── street │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── inv │ │ │ ├── __init__.py │ │ │ ├── allocationgroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── capability │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── card │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── channel │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── configuredmap │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── connectionrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── connectiontype │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── container │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── coverage │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── cpe │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── cpeprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── endpoint │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── facade │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── firmware │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── firmwarepolicy │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ifdescpatterns │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── interface │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── interfaceprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── inv │ │ │ │ ├── __init__.py │ │ │ │ ├── pbuilder.py │ │ │ │ ├── plugins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alarm.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── bom.py │ │ │ │ │ ├── channel.py │ │ │ │ │ ├── comment.py │ │ │ │ │ ├── commutation.py │ │ │ │ │ ├── conduits.py │ │ │ │ │ ├── contacts.py │ │ │ │ │ ├── crossing.py │ │ │ │ │ ├── data.py │ │ │ │ │ ├── facade.py │ │ │ │ │ ├── file.py │ │ │ │ │ ├── inventory.py │ │ │ │ │ ├── job.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── map.py │ │ │ │ │ ├── metric.py │ │ │ │ │ ├── opm.py │ │ │ │ │ ├── param.py │ │ │ │ │ ├── pconf.py │ │ │ │ │ ├── rack.py │ │ │ │ │ └── sensor.py │ │ │ │ └── views.py │ │ │ ├── macblacklist │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── macdb │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── map │ │ │ │ ├── __init__.py │ │ │ │ ├── layout.py │ │ │ │ ├── templates │ │ │ │ │ ├── InterfaceTooltip.html │ │ │ │ │ ├── LinkTooltip.html │ │ │ │ │ └── ManagedObjectTooltip.html │ │ │ │ └── views.py │ │ │ ├── modelinterface │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── modelmapping │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── networksegment │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── networksegmentprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectconfigurationrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectmodel │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── platform │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── protocol │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportcompare │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdiscovery │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdiscoverycaps │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdiscoverypoison │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdiscoveryproblem │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportifacestatus │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportlinkdetail │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmaxmetrics │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmetrics │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportmovedmac │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportobjectsserial │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportobjectsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportpartnumbers │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportpendinglinks │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportunknownsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── resourcegroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── resourcepool │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── sensor │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── sensorprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── techdomain │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── technology │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── unknownmodel │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── vendor │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── ip │ │ │ ├── __init__.py │ │ │ ├── address │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── addressprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── addressrange │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ipam │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── prefix │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── prefixaccess │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── prefixprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportaddressfilter │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportallocated │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportexpanded │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportfilter │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportfree │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reporthistory │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportipamsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportipusage │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportoverview │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportvpnstatus │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ └── index.html │ │ │ │ └── views.py │ │ │ ├── vrf │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── vrfgroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── kb │ │ │ ├── __init__.py │ │ │ ├── kb │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── kbentry │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── kbentrytemplate │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── macros │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── format.py │ │ │ │ ├── loader.py │ │ │ │ ├── now.py │ │ │ │ ├── rack.py │ │ │ │ └── search.py │ │ │ └── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── creole.py │ │ │ │ ├── csv.py │ │ │ │ ├── loader.py │ │ │ │ ├── mediawiki.py │ │ │ │ └── plain.py │ │ ├── main │ │ │ ├── __init__.py │ │ │ ├── apitoken │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── audittrail │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── authldapdomain │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── calculator │ │ │ │ ├── __init__.py │ │ │ │ ├── calculators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cir2cbr.py │ │ │ │ │ ├── dbm_to_mw.py │ │ │ │ │ ├── loader.py │ │ │ │ │ └── multicast.py │ │ │ │ ├── templates │ │ │ │ │ ├── calculator.html │ │ │ │ │ └── index.html │ │ │ │ └── views.py │ │ │ ├── checkpoint │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ └── create.html │ │ │ │ └── views.py │ │ │ ├── chpolicy │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── crontab │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── csv │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ ├── import.html │ │ │ │ │ └── index.html │ │ │ │ └── views.py │ │ │ ├── customfield │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── customfieldenumgroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── datastreamconfig │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── desktop │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ └── desktop.html │ │ │ │ └── views.py │ │ │ ├── extstorage │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── font │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── glyph │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── handler │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── home │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ ├── Community.html.j2 │ │ │ │ │ └── Welcome.html.j2 │ │ │ │ └── views.py │ │ │ ├── imagestore │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── jsonimport │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── label │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── language │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── messageroute │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── metricstream │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── mimetype │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── modeltemplate │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── notificationgroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── pool │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── prefixtable │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── pyrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ref │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── refbook │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── item.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── view.html │ │ │ │ └── views.py │ │ │ ├── refbookadmin │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── remotesystem │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportbackups │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportconfig │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdbsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportloc │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportsubscription │ │ │ │ ├── __init__.py │ │ │ │ ├── js │ │ │ │ │ ├── Application.js │ │ │ │ │ ├── LookupField.js │ │ │ │ │ └── Model.js │ │ │ │ └── views.py │ │ │ ├── reporttaggedmodels │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── resourcestate │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── search │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── style │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── systemnotification │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── systemtemplate │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── template │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── timepattern │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── userprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── maintenance │ │ │ ├── __init__.py │ │ │ ├── maintenance │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── maintenancetype │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── peer │ │ │ ├── __init__.py │ │ │ ├── as │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── asprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── asset │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── community │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── communitytype │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── maintainer │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── organisation │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── peer │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── peergroup │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── peeringpoint │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── peerprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── person │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── prefixlistbuilder │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ └── builder.html │ │ │ │ └── views.py │ │ │ ├── reportcone │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── rir │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── phone │ │ │ ├── __init__.py │ │ │ ├── dialplan │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── numbercategory │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── phonenumber │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── phonenumberprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── phonerange │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── phonerangeprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── pm │ │ │ ├── __init__.py │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── agentprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── ddash │ │ │ │ ├── __init__.py │ │ │ │ ├── dashboards │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── ipsla.py │ │ │ │ │ ├── jinja.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── loader.py │ │ │ │ │ ├── mo.py │ │ │ │ │ ├── mocard.py │ │ │ │ │ ├── modvbc.py │ │ │ │ │ └── sensor_controller.py │ │ │ │ └── views.py │ │ │ ├── measurementunits │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── metricaction │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── metricrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── metricscope │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── metrictype │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── scale │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── project │ │ │ ├── __init__.py │ │ │ └── project │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── sa │ │ │ ├── __init__.py │ │ │ ├── action │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── actioncommands │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── administrativedomain │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── authprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── capsprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── commandsnippet │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── credentialcheckrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── discoveredobject │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── getnow │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── groupaccess │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── job │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── managedobject │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── managedobjectprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── monitor │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectdiagnosticconfig │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectdiscoveryrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectlist │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── objectnotification │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── profile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── profilecheckrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reactionrule │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportdiscoveryproblem │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportobjectdetail │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportobjectsummary │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reportstalediscovery │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── runcommands │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── service │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── serviceprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── useraccess │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── sla │ │ │ ├── __init__.py │ │ │ ├── slaprobe │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── slaprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── support │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── crashinfo │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── vc │ │ │ ├── __init__.py │ │ │ ├── l2domain │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── l2domainprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── vlan │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── vlanfilter │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── vlanprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── vlantemplate │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── vpn │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── vpnprofile │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ └── wf │ │ │ ├── __init__.py │ │ │ ├── state │ │ │ ├── __init__.py │ │ │ └── views.py │ │ │ ├── transition │ │ │ ├── __init__.py │ │ │ └── views.py │ │ │ ├── wfmigration │ │ │ ├── __init__.py │ │ │ └── views.py │ │ │ └── workflow │ │ │ ├── __init__.py │ │ │ └── views.py │ ├── base │ │ ├── __init__.py │ │ ├── access.py │ │ ├── application.py │ │ ├── decorators │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── caps.py │ │ │ ├── state.py │ │ │ └── watch.py │ │ ├── docinline.py │ │ ├── extapplication.py │ │ ├── extdocapplication.py │ │ ├── extmodelapplication.py │ │ ├── interfaces.py │ │ ├── modelinline.py │ │ ├── repoinline.py │ │ ├── reportapplication.py │ │ ├── reportdatasources │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── loader.py │ │ │ ├── report_attreresolver.py │ │ │ ├── report_container.py │ │ │ ├── report_discoveryresult.py │ │ │ ├── report_metrics.py │ │ │ ├── report_objectattributes.py │ │ │ ├── report_objectcaps.py │ │ │ ├── report_objectconfig.py │ │ │ ├── report_objectdetaillinks.py │ │ │ ├── report_objecthostname.py │ │ │ ├── report_objectifacesstatusstat.py │ │ │ ├── report_objectifacestypestat.py │ │ │ ├── report_objectlinkcount.py │ │ │ ├── report_objectstat.py │ │ │ ├── reportavailability.py │ │ │ ├── reportdsalarms.py │ │ │ ├── reportinterfacemetrics.py │ │ │ └── reportobjectmetrics.py │ │ ├── simplereport.py │ │ └── site.py │ ├── service.py │ └── translations │ │ ├── messages.pot │ │ ├── messages_js.pot │ │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ ├── messages.po │ │ │ └── messages_js.po │ │ └── ru │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ ├── messages.po │ │ ├── messages_js.json │ │ ├── messages_js.mo │ │ └── messages_js.po ├── worker │ ├── __init__.py │ └── service.py └── zeroconf │ ├── __init__.py │ ├── models │ ├── __init__.py │ └── zk.py │ ├── paths │ ├── __init__.py │ └── config.py │ ├── service.py │ └── util.py ├── settings.py ├── sla ├── __init__.py ├── migrations │ ├── 0001_cleanup_metric_is_active.py │ ├── 0002_thresholdprofiles.py │ ├── 0003_labels.py │ ├── 0004_set_bi_id.py │ ├── 0005_slaprobe_workflow.py │ └── __init__.py └── models │ ├── __init__.py │ ├── slaprobe.py │ └── slaprofile.py ├── src ├── README.md └── noc │ ├── __init__.py │ ├── aaa │ ├── bi │ ├── cm │ ├── commands │ ├── config.py │ ├── core │ ├── crm │ ├── dns │ ├── fixes │ ├── fm │ ├── gis │ ├── inv │ ├── ip │ ├── kb │ ├── main │ ├── maintenance │ ├── models.py │ ├── peer │ ├── phone │ ├── pm │ ├── project │ ├── sa │ ├── services │ ├── settings.py │ ├── share │ ├── sla │ ├── support │ ├── templates │ ├── templatetags │ ├── urls.py │ ├── vc │ └── wf ├── support ├── __init__.py ├── cp.py ├── migrations │ └── __init__.py └── models │ ├── __init__.py │ └── crashinfo.py ├── templates ├── 404.html ├── 500.html ├── admin │ ├── base.html │ └── base_site.html ├── close_popup.html ├── ddash │ ├── dash_container.j2 │ ├── dash_ipsla.j2 │ ├── dash_link.j2 │ ├── dash_mo.j2 │ ├── dash_mo_card.j2 │ ├── dash_modvbc.j2 │ ├── dash_multicast.j2 │ ├── dash_sensor_controller.j2 │ ├── graph_check_ping.j2 │ ├── graph_check_result.j2 │ ├── graph_cpu_load_15min.j2 │ ├── graph_cpu_load_1min.j2 │ ├── graph_cpu_load_5min.j2 │ ├── graph_cpu_usage.j2 │ ├── graph_cpu_usage_5sec.j2 │ ├── graph_default.j2 │ ├── graph_dhcp_pool_leases_active.j2 │ ├── graph_dhcp_pool_leases_active_percent.j2 │ ├── graph_dhcp_pool_leases_free.j2 │ ├── graph_dhcp_pool_leases_total.j2 │ ├── graph_disk_errorcount.j2 │ ├── graph_disk_free.j2 │ ├── graph_disk_problem.j2 │ ├── graph_disk_total.j2 │ ├── graph_disk_usage.j2 │ ├── graph_disk_usagepercent.j2 │ ├── graph_dom_rxtxpower.j2 │ ├── graph_dom_temperature.j2 │ ├── graph_dom_voltagebias.j2 │ ├── graph_doorphone_phonevolume.j2 │ ├── graph_environment_electriccurrent.j2 │ ├── graph_environment_sensorstatus.j2 │ ├── graph_environment_temperature.j2 │ ├── graph_environment_voltage.j2 │ ├── graph_errors.j2 │ ├── graph_interface_card_broadcast.j2 │ ├── graph_interface_card_discards.j2 │ ├── graph_interface_card_dom_current.j2 │ ├── graph_interface_card_dom_temp.j2 │ ├── graph_interface_card_dom_txrx.j2 │ ├── graph_interface_card_dom_voltage.j2 │ ├── graph_interface_card_error.j2 │ ├── graph_interface_card_load.j2 │ ├── graph_interface_card_multicast.j2 │ ├── graph_interface_card_pps.j2 │ ├── graph_interface_card_radio_level.j2 │ ├── graph_interface_card_radio_power.j2 │ ├── graph_interface_card_radio_rssicinr.j2 │ ├── graph_interface_discards.j2 │ ├── graph_interface_errors.j2 │ ├── graph_interface_errors_crc.j2 │ ├── graph_interface_load.j2 │ ├── graph_interface_load_lag.j2 │ ├── graph_interface_load_simple.j2 │ ├── graph_interface_multi.j2 │ ├── graph_interface_poe_operstatus.j2 │ ├── graph_interface_poe_power.j2 │ ├── graph_interface_pps.j2 │ ├── graph_memory_heap.j2 │ ├── graph_memory_load_1min.j2 │ ├── graph_memory_usage.j2 │ ├── graph_memory_usage_5sec.j2 │ ├── graph_memory_usage_bytes.j2 │ ├── graph_multicast_channel.j2 │ ├── graph_multicast_group.j2 │ ├── graph_multicast_group_bitrate.j2 │ ├── graph_network_stp_topologychanges.j2 │ ├── graph_network_stp_topologychanges_delta.j2 │ ├── graph_object_sysuptime.j2 │ ├── graph_radio_cinr.j2 │ ├── graph_radio_cinr_rssi.j2 │ ├── graph_radio_mcs.j2 │ ├── graph_radio_rssi.j2 │ ├── graph_radio_rxtxpower.j2 │ ├── graph_radio_signal_noise_level.j2 │ ├── graph_radius_policy_request_count.j2 │ ├── graph_radius_policy_request_delta.j2 │ ├── graph_radius_policy_response_count.j2 │ ├── graph_radius_policy_response_delta.j2 │ ├── graph_rtt.j2 │ ├── graph_sensor_battery_capacity_level.j2 │ ├── graph_sensor_electric_current.j2 │ ├── graph_sensor_enum.j2 │ ├── graph_sensor_power.j2 │ ├── graph_sensor_pulse.j2 │ ├── graph_sensor_status.j2 │ ├── graph_sensor_temperature.j2 │ ├── graph_sensor_value.j2 │ ├── graph_sensor_voltage.j2 │ ├── graph_subinterface_load.j2 │ ├── graph_subscribers_l2tp.j2 │ ├── graph_subscribers_summary.j2 │ ├── graph_subscribers_summary_port.j2 │ ├── graph_subscribers_summary_slot.j2 │ ├── graph_subscribers_summary_total.j2 │ ├── graph_telephony_activeds0s.j2 │ ├── graph_telephony_isdnchannelsinuse.j2 │ ├── graph_telephony_sip_register_contacts_active.j2 │ ├── graph_telephony_sip_sessions_active.j2 │ ├── graph_vpn_ipsec_authfailed.j2 │ ├── panel_battery_capacity_level.j2 │ ├── panel_container.j2 │ ├── panel_controller.j2 │ ├── panel_device.j2 │ ├── panel_empty_container.j2 │ ├── panel_energy_consumption.j2 │ ├── panel_errors.j2 │ ├── panel_power_input_status.j2 │ ├── panel_pulse.j2 │ ├── panel_segment.j2 │ ├── panel_sensor_stat.j2 │ ├── panel_sfp.j2 │ ├── row_errors.j2 │ ├── template_bi_id.j2 │ ├── template_device.j2 │ ├── template_device_id.j2 │ ├── template_device_info.j2 │ ├── template_discovery_interval.j2 │ ├── template_firmware_version.j2 │ ├── template_ip_info.j2 │ ├── template_ping_interval.j2 │ ├── template_platform.j2 │ ├── template_port.j2 │ ├── template_probe.j2 │ ├── template_radio.j2 │ ├── template_resolved_bi_id.j2 │ ├── template_segment.j2 │ ├── template_subiface.j2 │ └── template_vendor.j2 ├── includes │ └── noc_fieldset.html ├── newapp │ ├── application │ │ ├── __init__.py.j2 │ │ ├── js │ │ │ └── Application.js.j2 │ │ ├── templates │ │ │ └── DELETE │ │ └── views.py.j2 │ ├── modelapplication │ │ ├── __init__.py.j2 │ │ ├── js │ │ │ ├── Application.js.j2 │ │ │ ├── LookupField.js.j2 │ │ │ └── Model.js.j2 │ │ └── views.py.j2 │ └── simplereport │ │ ├── __init__.py.j2 │ │ ├── templates │ │ └── DELETE │ │ └── views.py.j2 ├── object │ ├── alarm_cleared.html │ ├── alarm_reopened.html │ ├── alarm_risen.html │ ├── config_changed.html │ ├── config_policy_violation.html │ └── new.html ├── raw.html ├── raw.html.j2 ├── report.html ├── report_form.html ├── sa_app_form.html ├── sa_app_index.html ├── sa_app_result.html ├── sa_app_wait.html ├── stencil_index.html.j2 └── template.html ├── tests ├── __init__.py ├── bi │ ├── __init__.py │ ├── test_alarmclass.py │ ├── test_alarms.py │ ├── test_dictionaries.py │ └── test_reboots.py ├── cdag │ ├── __init__.py │ ├── factory │ │ ├── __init__.py │ │ ├── test_chain.py │ │ ├── test_config.py │ │ ├── test_json.py │ │ └── test_yaml.py │ ├── node │ │ ├── __init__.py │ │ ├── test_activation.py │ │ ├── test_base.py │ │ ├── test_categories.py │ │ ├── test_comp.py │ │ ├── test_loader.py │ │ ├── test_math.py │ │ ├── test_ml.py │ │ ├── test_op.py │ │ ├── test_probe.py │ │ ├── test_state.py │ │ ├── test_statistics.py │ │ ├── test_subgraph.py │ │ ├── test_util.py │ │ ├── test_window.py │ │ └── util.py │ ├── test_graph.py │ └── test_metrics_case.py ├── collections │ ├── __init__.py │ ├── test_collection.py │ ├── test_fm_eventclassificationrule.py │ ├── test_inv_connectiontypes.py │ ├── test_inv_objectmodels.py │ ├── test_sa_actioncommands.py │ ├── test_sa_profilecheckrules.py │ └── utils.py ├── commands │ └── test_dnszone.py ├── confdb │ ├── __init__.py │ ├── collator │ │ ├── __init__.py │ │ └── test_ifpath.py │ ├── engine │ │ ├── __init__.py │ │ ├── test_collapse.py │ │ ├── test_compile.py │ │ ├── test_del.py │ │ ├── test_dump.py │ │ ├── test_fact.py │ │ ├── test_false.py │ │ ├── test_filter.py │ │ ├── test_group.py │ │ ├── test_hasvlan.py │ │ ├── test_match.py │ │ ├── test_matchallvlan.py │ │ ├── test_matchanyvlan.py │ │ ├── test_matchexactvlan.py │ │ ├── test_matchprefix.py │ │ ├── test_not.py │ │ ├── test_not_match.py │ │ ├── test_or.py │ │ ├── test_re.py │ │ ├── test_set.py │ │ ├── test_sprintf.py │ │ ├── test_true.py │ │ └── utils.py │ ├── normalizer │ │ ├── __init__.py │ │ ├── test_normalizer.py │ │ └── test_syntax.py │ ├── profiles │ │ ├── DLink │ │ │ └── DxS │ │ │ │ ├── default_route1.yml │ │ │ │ ├── hostname1.yml │ │ │ │ ├── ports1.yml │ │ │ │ ├── sntp_primary1.yml │ │ │ │ ├── sntp_primary_secondary1.yml │ │ │ │ ├── syslog_host1.yml │ │ │ │ └── vlans1.yml │ │ ├── Eltex │ │ │ ├── MES │ │ │ │ ├── default_gateway1.yml │ │ │ │ ├── dns1.yml │ │ │ │ ├── hostname1.yml │ │ │ │ ├── interface-description.yml │ │ │ │ ├── interface_switchport_1.yml │ │ │ │ ├── sntp_invalid1.yml │ │ │ │ ├── sntp_valid1.yml │ │ │ │ ├── spanning_tree1.yml │ │ │ │ ├── spanning_tree2.yml │ │ │ │ ├── ssh1.yml │ │ │ │ ├── tacacs1.yml │ │ │ │ ├── user1.yml │ │ │ │ └── vlan1.yml │ │ │ └── MES24xx │ │ │ │ ├── clock_source1.yml │ │ │ │ ├── hostname1.yml │ │ │ │ ├── hostname2.yml │ │ │ │ ├── interface-description1.yml │ │ │ │ ├── interface-ip-address1.yml │ │ │ │ ├── interface-loopbback-detection1.yml │ │ │ │ ├── interface-no-shutdown1.yml │ │ │ │ ├── interface-storm-control-broadcast1.yml │ │ │ │ ├── interface-storm-control-multicast1.yml │ │ │ │ ├── interface1.yml │ │ │ │ ├── ip_route1.yml │ │ │ │ ├── sntp1.yml │ │ │ │ ├── spanning-tree1.yml │ │ │ │ └── username1.yml │ │ ├── Juniper │ │ │ └── JUNOS │ │ │ │ ├── bgp_peer1.yml │ │ │ │ ├── dns1.yml │ │ │ │ ├── syslog1.yml │ │ │ │ ├── tacacs1.yml │ │ │ │ └── vlans_none1.yml │ │ ├── MikroTik │ │ │ └── RouterOS │ │ │ │ ├── bgp_peer1.yml │ │ │ │ ├── hostname1.yml │ │ │ │ └── timezone1.yml │ │ ├── README.md │ │ ├── Raisecom │ │ │ └── RCIOS │ │ │ │ ├── hostname1.yml │ │ │ │ ├── interface1.yml │ │ │ │ └── user1.yml │ │ └── TPLink │ │ │ └── T2600G │ │ │ ├── hostname1.yml │ │ │ ├── interface-vlan1.yml │ │ │ ├── interface1.yml │ │ │ ├── iproute1.yml │ │ │ ├── ntp1.yml │ │ │ ├── span-tree1.yml │ │ │ ├── user1.yml │ │ │ └── vlan1.yml │ ├── syntax │ │ ├── __init__.py │ │ └── test_syntax.py │ ├── test_profiles.py │ └── tokenizer │ │ ├── __init__.py │ │ ├── test_context.py │ │ ├── test_curly.py │ │ ├── test_indent.py │ │ ├── test_ini.py │ │ ├── test_line.py │ │ ├── test_loader.py │ │ └── test_routeros.py ├── conftest.py ├── core │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── test_escalationpolicy.py │ ├── pm │ │ ├── __init__.py │ │ └── test_nan_check.py │ ├── test_channel.py │ ├── test_constraint.py │ ├── test_discriminator.py │ ├── test_lock.py │ ├── test_metric_proxy.py │ ├── test_password.py │ └── test_svg.py ├── data │ ├── 0000_user.json │ ├── 0010_ipam.json │ └── 0020_dns.json ├── datastreams │ ├── __init__.py │ ├── test_clean_meta.py │ └── test_dnszone.py ├── docs │ ├── __init__.py │ ├── conftest.py │ └── test_profile.py ├── etl │ ├── __init__.py │ └── models │ │ ├── __init__.py │ │ ├── test_administrativedomain.py │ │ └── test_base.py ├── fm │ ├── __init__.py │ ├── events │ │ └── mac_events.json │ ├── test_alarm_actions.py │ ├── test_alarm_job.py │ ├── test_alarm_watchers.py │ ├── test_calculate_severity.py │ ├── test_event_filters.py │ └── utils.py ├── infra │ └── docker │ │ ├── testdropbear │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── VERSION │ │ └── root │ │ │ ├── etc │ │ │ └── motd │ │ │ └── home │ │ │ └── test │ │ │ └── .ssh │ │ │ ├── id_dsa │ │ │ ├── id_dsa.pub │ │ │ ├── id_ecdsa │ │ │ ├── id_ecdsa.pub │ │ │ ├── id_ed25519 │ │ │ ├── id_ed25519.pub │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ ├── testsnmpd │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── VERSION │ │ └── root │ │ │ └── etc │ │ │ └── snmp │ │ │ └── snmpd.conf │ │ ├── testsshd │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── VERSION │ │ └── root │ │ │ ├── etc │ │ │ └── motd │ │ │ └── home │ │ │ └── test │ │ │ └── .ssh │ │ │ ├── id_dsa │ │ │ ├── id_dsa.pub │ │ │ ├── id_ecdsa │ │ │ ├── id_ecdsa.pub │ │ │ ├── id_ed25519 │ │ │ ├── id_ed25519.pub │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ └── testtelnetd │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── VERSION │ │ └── root │ │ └── etc │ │ └── motd ├── interface │ ├── __init__.py │ └── test_base.py ├── ioloop │ ├── __init__.py │ └── test_whois.py ├── middleware │ ├── __init__.py │ ├── test_basicauth.py │ ├── test_jsonrequestid.py │ ├── test_jsonsession.py │ ├── test_loader.py │ ├── test_urlrequestid.py │ └── test_urlsession.py ├── models │ ├── __init__.py │ ├── test_0001_meta.py │ ├── test_0002_reference.py │ ├── test_0003_table.py │ ├── test_0004_models.py │ ├── test_0005_str.py │ ├── test_0006_get_by_id.py │ ├── test_0007_get_by_bi_id.py │ ├── test_0008_to_json.py │ ├── test_aaa_apikey.py │ ├── test_capabilities.py │ ├── test_dns_dnszone.py │ ├── test_dns_dnszoneprofile.py │ ├── test_inv_discoveryid.py │ ├── test_inv_resourcegroup.py │ ├── test_main_label.py │ ├── test_main_language.py │ ├── test_remote_mappings.py │ ├── test_sa_diagnostics.py │ ├── test_sa_profile.py │ ├── test_signatures.py │ └── util.py ├── nbi │ ├── __init__.py │ └── test_getmappings.py ├── reporter │ ├── __init__.py │ ├── report_id_cache_poison.csv │ ├── report_id_cache_poison.yml │ ├── report_object_summary_profile.csv │ ├── report_object_summary_profile.yml │ ├── report_objectsummary.yml │ ├── report_simple_csv.csv │ ├── report_simple_csv.yml │ ├── report_source_classificationrule.yml │ ├── test_data_band.py │ ├── test_get_rows.py │ ├── test_report.py │ └── test_report_config.py ├── runner │ ├── __init__.py │ ├── test_env.py │ ├── test_job.py │ └── test_lock.py ├── sa │ ├── Juniper │ │ ├── JUNOS │ │ │ ├── __init__.py │ │ │ └── test_profile.py │ │ └── __init__.py │ └── __init__.py ├── scripts │ ├── __init__.py │ ├── test_cli.py │ ├── test_profile.py │ ├── test_script.py │ ├── test_snmp.py │ └── test_snmp_metrics.py ├── services │ ├── __init__.py │ ├── login │ │ ├── __init__.py │ │ └── test_login.py │ └── zeroconf │ │ ├── __init__.py │ │ └── test_zk.py ├── test_0000_init_db.py ├── test_0003_permissions.py ├── test_beef.py ├── test_ber.py ├── test_bioseg.py ├── test_change.py ├── test_clickhouse.py ├── test_colors.py ├── test_comp.py ├── test_compressor.py ├── test_config.py ├── test_core_geo.py ├── test_crypto.py ├── test_datastream.py ├── test_dateutils.py ├── test_dbm.py ├── test_debug.py ├── test_discovery.py ├── test_dns.py ├── test_ecma48.py ├── test_escape.py ├── test_expr.py ├── test_fileutils.py ├── test_forms.py ├── test_geo.py ├── test_geo_bbox.py ├── test_geocoder.py ├── test_graph.py ├── test_gridvcs.py ├── test_handler.py ├── test_hash.py ├── test_hist.py ├── test_ip.py ├── test_liftbridge.py ├── test_lldp.py ├── test_mac.py ├── test_matcher.py ├── test_mib.py ├── test_mime.py ├── test_palette.py ├── test_path.py ├── test_prefixlist.py ├── test_prettyjson.py ├── test_py_module.py ├── test_quantile.py ├── test_ratelimit.py ├── test_rpsl.py ├── test_script_metrics.py ├── test_site.py ├── test_snmp_render.py ├── test_snmp_tc.py ├── test_telnet.py ├── test_templatetags.py ├── test_text.py ├── test_time.py ├── test_timepattern.py ├── test_udpserver.py ├── test_url.py ├── test_validators.py ├── test_video.py ├── test_vlan.py ├── test_vlanmap.py └── utils.py ├── ui ├── build-bundle.ts ├── build.ts ├── card │ ├── css │ │ ├── alarmheat.css │ │ ├── card.css │ │ ├── monmap.css │ │ ├── outage.css │ │ └── path.css │ ├── index.html │ ├── js │ │ ├── alarmheat.js │ │ ├── monmap.js │ │ └── path.js │ └── translations │ │ ├── pt_BR.json │ │ └── ru.json ├── common │ ├── diff_match_patch.js │ ├── gettext.js │ ├── map_layer_creator.js │ └── settings_loader.js ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── scripts │ ├── DependencyGraph.ts │ ├── ExtJsParser.ts │ ├── __test__ │ │ ├── DependencyGraph.test.ts │ │ ├── ExtApplicationVisitor.test.ts │ │ ├── ExtDefineVisitor.test.ts │ │ └── RemoveMethodsPlugin.test.ts │ ├── app-dev.css │ ├── app-prod.css │ ├── assets │ │ └── empty.gif │ ├── builders │ │ ├── BaseBuilder.ts │ │ ├── DevBuilder.ts │ │ ├── ProdBuilder.ts │ │ └── VendorBuilder.ts │ ├── bundles │ │ ├── leaflet.ts │ │ ├── micromark.ts │ │ ├── monaco-workers.ts │ │ ├── monaco.ts │ │ └── src │ │ │ └── Yandex.js │ ├── create-archive.sh │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── index-template-prod.html │ ├── index-template.html │ ├── nginx.conf │ ├── nginx.conf.template │ ├── plugins │ │ ├── AliasPlugin.ts │ │ ├── CopyLibPlugin.ts │ │ ├── CssPlugin.ts │ │ ├── ExternalLibsPlugin.ts │ │ ├── HtmlPlugin.ts │ │ ├── ImageCheckPlugin.ts │ │ ├── LanguagePlugin.ts │ │ ├── LoggerPlugin.ts │ │ ├── NocLoaderPlugin.ts │ │ └── ReplaceMethodsPlugin.ts │ ├── readme.md │ ├── theme-gray.css │ ├── theme-noc.css │ └── visitors │ │ ├── BaseMethodVisitor.ts │ │ ├── ExtApplicationVisitor.ts │ │ ├── ExtDefineVisitor.ts │ │ └── MethodReplaceVisitor.ts ├── tests-playwright │ └── login.spec.ts ├── tsconfig.json ├── types │ └── espree.d.ts ├── vitest.config.js └── web │ ├── aaa │ ├── apikey │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── group │ │ ├── Application.js │ │ ├── ApplicationPermission.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── Permission.js │ ├── modelprotectionprofile │ │ ├── Application.js │ │ └── Model.js │ └── user │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── bi │ └── dashboardlayout │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── cm │ ├── confdbquery │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── configurationparam │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── configurationscope │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── interfacevalidationpolicy │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── objectnotify │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── objectvalidationpolicy │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── core │ ├── Application.js │ ├── ApplicationPanel.js │ ├── CodeViewer.js │ ├── ComboBox.js │ ├── Conduits.js │ ├── ConnectionGraph.js │ ├── FormPanel.js │ ├── InactivityLogout.js │ ├── InlineGrid.js │ ├── InlineModelStore.js │ ├── IntegrationField.js │ ├── JSONPreview.js │ ├── ListFormField.js │ ├── LogWindow.js │ ├── M2MField.js │ ├── MRT.js │ ├── MapLayersCreator.js │ ├── MarkdownEditor.js │ ├── ModelApplication.js │ ├── ModelStore.js │ ├── MonacoPanel.js │ ├── Observable.js │ ├── ObservableModel.js │ ├── PasswordField.js │ ├── PasswordGenerator.js │ ├── Rack.js │ ├── RemoteMappingForm.js │ ├── ReportControl.js │ ├── ResourceLoader.js │ ├── RestTemplatePreview.js │ ├── RevisionSlider.js │ ├── SVGField.js │ ├── ShareWizard.js │ ├── StateField.js │ ├── StateModel.js │ ├── StateProvider.js │ ├── StringListField.js │ ├── SubscriptionPanel.js │ ├── TagsField.js │ ├── TemplatePreview.js │ ├── TreeCombo.js │ ├── TreeFilterToolbar.js │ ├── TreeModel.js │ ├── TreePanel.js │ ├── combotree │ │ └── ComboTree.js │ ├── filter │ │ ├── CapabilityModel.js │ │ ├── Filter.js │ │ ├── FilterController.js │ │ └── ViewModel.js │ ├── label │ │ ├── LabelDisplay.js │ │ ├── LabelField.js │ │ ├── LabelFieldModel.js │ │ ├── TreePicker.js │ │ └── TreePickerController.js │ ├── layout │ │ └── Flex.js │ ├── mixins │ │ ├── Ballon.js │ │ └── Export.js │ ├── modelfilter │ │ ├── AFI.js │ │ ├── AbstractRadioButton.js │ │ ├── Base.js │ │ ├── Boolean.js │ │ ├── Choices.js │ │ ├── Favorites.js │ │ ├── GeoAddress.js │ │ ├── Label.js │ │ ├── List.js │ │ ├── Lookup.js │ │ ├── Tag.js │ │ ├── Tree.js │ │ ├── VC.js │ │ └── VCFilter.js │ ├── plugins │ │ ├── DynamicModalEditing.js │ │ └── SubscriptionModalEditing.js │ ├── status │ │ └── StatusField.js │ └── tagfield │ │ ├── Tagfield.js │ │ ├── TagfieldController.js │ │ ├── TreePicker.js │ │ └── TreePickerController.js │ ├── crm │ ├── subscriber │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── subscriberprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── supplier │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── supplierprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── css │ ├── colors.css │ ├── diff.css │ ├── django │ │ ├── forms.css │ │ └── main.css │ ├── extjs.css │ ├── highlight.css │ ├── images │ │ └── form │ │ │ ├── clear-trigger.gif │ │ │ └── trigger-tpl.gif │ ├── mediawiki │ │ ├── bullet.gif │ │ ├── main.css │ │ └── shared.css │ ├── print.css │ ├── pygments.css │ ├── rack.css │ ├── sa_wait.css │ ├── tablesorter.css │ ├── theme-patch-gray.css │ ├── theme-patch-noc.css │ └── ux.css │ ├── dev │ ├── quiz │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── spec │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── dns │ ├── dnsserver │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── M2MField.js │ │ └── Model.js │ ├── dnszone │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── RRTypeField.js │ │ └── RecordsModel.js │ └── dnszoneprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── fm │ ├── alarm │ │ ├── Application.js │ │ ├── ApplicationController.js │ │ ├── ApplicationModel.js │ │ ├── Model.js │ │ ├── model │ │ │ ├── Alarm.js │ │ │ └── Filter.js │ │ ├── plugins │ │ │ ├── Diagnostic.js │ │ │ ├── Thresholds.js │ │ │ └── Validation.js │ │ ├── store │ │ │ ├── Alarm.js │ │ │ └── Profile.js │ │ └── view │ │ │ ├── form │ │ │ ├── Alarm.js │ │ │ ├── AlarmController.js │ │ │ ├── AlarmModel.js │ │ │ └── ClearAlarms.js │ │ │ └── grids │ │ │ ├── Active.js │ │ │ ├── Container.js │ │ │ ├── ContainerController.js │ │ │ ├── ContainerModel.js │ │ │ ├── DisplayFilter.js │ │ │ ├── DisplayFilterController.js │ │ │ ├── DurationFilter.js │ │ │ ├── DurationFilterController.js │ │ │ ├── DurationFilterRow.js │ │ │ ├── DurationFilterRowController.js │ │ │ ├── FavoriteStatusGroup.js │ │ │ ├── Grid.js │ │ │ ├── GridController.js │ │ │ ├── GridViewTable.js │ │ │ ├── MultiPanel.js │ │ │ ├── MultiPanelController.js │ │ │ ├── MultiSelector.js │ │ │ ├── ProfileFilter.js │ │ │ ├── ProfileFilterController.js │ │ │ ├── Recent.js │ │ │ ├── Sidebar.js │ │ │ ├── SidebarController.js │ │ │ └── SidebarModel.js │ ├── alarmclass │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmclassconfig │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmdiagnosticconfig │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmescalation │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmseverity │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── alarmtrigger │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── classificationrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── TestForm.js │ │ └── templates │ │ │ ├── TestResult.hbs │ │ │ └── TestResult.js │ ├── dispositionrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── escalationprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── event │ │ ├── Application.js │ │ ├── ApplicationController.js │ │ ├── ApplicationModel.js │ │ ├── EventFilter.js │ │ ├── EventInspector.js │ │ └── Model.js │ ├── eventclass │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── eventtrigger │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ignoreeventrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ignorepattern │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── mib │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── MIBUpload.js │ │ └── Model.js │ ├── mibpreference │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── oidalias │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reportalarmcomments │ │ └── Application.js │ ├── reportalarmdetail │ │ └── Application.js │ └── ttsystem │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── gis │ ├── area │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── building │ │ ├── AddressesModel.js │ │ ├── Application.js │ │ ├── FillEntrancesForm.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── division │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── geocoder │ │ └── LookupField.js │ ├── layer │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── overlay │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── street │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── tms │ │ └── Application.js │ ├── img │ ├── blank_1x1.png │ ├── gis │ │ ├── nodata.png │ │ └── notready.png │ ├── logo_24x24_deep_azure.png │ ├── logo_black.svg │ ├── logo_white.svg │ ├── s.gif │ ├── tablesorter │ │ ├── asc.gif │ │ ├── bg.gif │ │ └── desc.gif │ └── ux │ │ ├── bottom2.gif │ │ ├── down2.gif │ │ ├── left2.gif │ │ ├── right2.gif │ │ ├── top2.gif │ │ └── up2.gif │ ├── inv │ ├── allocationgroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── capability │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── channel │ │ ├── Application.js │ │ ├── EndpointModel.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── configuredmap │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── connectionrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── connectiontype │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── templates │ │ │ ├── Test.hbs │ │ │ └── Test.js │ ├── coverage │ │ ├── Application.js │ │ ├── BuildingModel.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── ObjectModel.js │ ├── cpe │ │ ├── Application.js │ │ └── Model.js │ ├── cpeprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── endpoint │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── facade │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── firmware │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── firmwarepolicy │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ifdescpatterns │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── interface │ │ ├── Application.js │ │ ├── CapabilitiesModel.js │ │ ├── LinkForm.js │ │ ├── MACForm.js │ │ ├── MACStore.js │ │ ├── Model.js │ │ └── type │ │ │ └── LookupField.js │ ├── interfaceprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── inv │ │ ├── AddObjectForm.js │ │ ├── Application.js │ │ ├── CreateConnectionForm.js │ │ ├── MaskComponent.js │ │ ├── NavModel.js │ │ ├── NavSearch.js │ │ ├── plugins │ │ │ ├── DownloadButton.js │ │ │ ├── FileSchemeController.js │ │ │ ├── FileSchemePluginAbstract.js │ │ │ ├── Mixins.js │ │ │ ├── SideButton.js │ │ │ ├── VizSchemePluginAbstract.js │ │ │ ├── Zoom.js │ │ │ ├── alarm │ │ │ │ ├── AlarmModel.js │ │ │ │ └── AlarmPanel.js │ │ │ ├── bom │ │ │ │ ├── BoMController.js │ │ │ │ ├── BoMModel.js │ │ │ │ └── BoMPanel.js │ │ │ ├── channel │ │ │ │ ├── ChannelPanel.js │ │ │ │ ├── MagicPanel.js │ │ │ │ └── ParamsForm.js │ │ │ ├── comment │ │ │ │ └── CommentPanel.js │ │ │ ├── commutation │ │ │ │ └── CommutationPanel.js │ │ │ ├── conduits │ │ │ │ ├── AddConduitsForm.js │ │ │ │ ├── ConduitsForm.js │ │ │ │ ├── ConduitsLayoutPanel.js │ │ │ │ ├── ConduitsPanel.js │ │ │ │ └── CreateBlockForm.js │ │ │ ├── contacts │ │ │ │ └── ContactsPanel.js │ │ │ ├── cross │ │ │ │ └── CrossPanel.js │ │ │ ├── crossing │ │ │ │ └── CrossingPanel.js │ │ │ ├── data │ │ │ │ ├── DataModel.js │ │ │ │ └── DataPanel.js │ │ │ ├── facade │ │ │ │ └── FacadePanel.js │ │ │ ├── file │ │ │ │ ├── FileModel.js │ │ │ │ ├── FilePanel.js │ │ │ │ └── UploadForm.js │ │ │ ├── inventory │ │ │ │ ├── InventoryModel.js │ │ │ │ └── InventoryPanel.js │ │ │ ├── job │ │ │ │ ├── JobController.js │ │ │ │ ├── JobModel.js │ │ │ │ └── JobPanel.js │ │ │ ├── log │ │ │ │ ├── LogModel.js │ │ │ │ └── LogPanel.js │ │ │ ├── map │ │ │ │ ├── AddObjectForm.js │ │ │ │ └── MapPanel.js │ │ │ ├── metric │ │ │ │ ├── MetricModel.js │ │ │ │ └── MetricPanel.js │ │ │ ├── opm │ │ │ │ ├── OPMChannelSprite.js │ │ │ │ ├── OPMController.js │ │ │ │ ├── OPMDiagram.js │ │ │ │ ├── OPMLegendSprite.js │ │ │ │ ├── OPMPanel.js │ │ │ │ └── OPMRightPanel.js │ │ │ ├── param │ │ │ │ ├── ParamModel.js │ │ │ │ └── ParamPanel.js │ │ │ ├── pconf │ │ │ │ ├── PConfController.js │ │ │ │ ├── PConfEditPlugin.js │ │ │ │ ├── PConfModel.js │ │ │ │ └── PConfPanel.js │ │ │ ├── rack │ │ │ │ ├── RackController.js │ │ │ │ ├── RackLoadModel.js │ │ │ │ └── RackPanel.js │ │ │ └── sensor │ │ │ │ ├── SensorModel.js │ │ │ │ └── SensorPanel.js │ │ └── sprites │ │ │ ├── Body.js │ │ │ ├── Connection.js │ │ │ ├── External.js │ │ │ ├── Pin.js │ │ │ └── Pointer.js │ ├── macblacklist │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── macdb │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── MACLogForm.js │ │ ├── MACLogStore.js │ │ └── Model.js │ ├── map │ │ ├── Application.js │ │ ├── Basket.js │ │ ├── BasketController.js │ │ ├── BasketViewModel.js │ │ ├── Legend.js │ │ ├── Maintenance.js │ │ ├── MapPanel.js │ │ ├── MiniMap.js │ │ ├── SelectIconForm.js │ │ ├── ShapeRegistry.js │ │ └── inspectors │ │ │ ├── CPEInspector.js │ │ │ ├── CloudInspector.js │ │ │ ├── Inspector.js │ │ │ ├── LinkInspector.js │ │ │ ├── ManagedObjectInspector.js │ │ │ ├── ObjectGroupInspector.js │ │ │ ├── ObjectPortalInspector.js │ │ │ ├── ObjectSegmentInspector.js │ │ │ └── SegmentInspector.js │ ├── modelinterface │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── modelmapping │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── networksegment │ │ ├── Application.js │ │ ├── ComboTree.js │ │ ├── EffectiveSettingsPanel.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── TreeCombo.js │ ├── networksegmentprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── objectconfigurationrule │ │ ├── Application.js │ │ ├── ComboEditor.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── objectmodel │ │ ├── Application.js │ │ ├── ContainerLookupField.js │ │ ├── CrossDiagram.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── sprites │ │ │ ├── Connection.js │ │ │ ├── Label.js │ │ │ └── Pin.js │ │ └── templates │ │ │ ├── JSON.hbs │ │ │ ├── JSON.js │ │ │ ├── Test.hbs │ │ │ └── Test.js │ ├── platform │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── protocol │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reportifacestatus │ │ └── Application.js │ ├── reportlinkdetail │ │ └── Application.js │ ├── reportmaxmetrics │ │ └── Application.js │ ├── reportmetrics │ │ └── Application.js │ ├── reportmovedmac │ │ └── Application.js │ ├── resourcegroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── TreeCombo.js │ ├── resourcepool │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── sensorprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── techdomain │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── technology │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── unknownmodel │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── vendor │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ip │ ├── address │ │ └── LookupField.js │ ├── addressprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── addressrange │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ipam │ │ ├── Application.js │ │ ├── ApplicationController.js │ │ ├── ApplicationModel.js │ │ ├── model │ │ │ ├── Address.js │ │ │ ├── Prefix.js │ │ │ ├── Range.js │ │ │ └── VRF.js │ │ ├── store │ │ │ └── VRF.js │ │ └── view │ │ │ ├── Grid.js │ │ │ ├── GridController.js │ │ │ └── forms │ │ │ ├── Info.js │ │ │ ├── prefix │ │ │ ├── AddressPanel.js │ │ │ ├── Prefix.js │ │ │ ├── PrefixAddressLists.js │ │ │ ├── PrefixAddressListsController.js │ │ │ ├── PrefixController.js │ │ │ ├── PrefixDeletePanel.js │ │ │ ├── PrefixModel.js │ │ │ ├── PrefixPanel.js │ │ │ └── RebasePanel.js │ │ │ ├── tools │ │ │ ├── ToolsController.js │ │ │ ├── ToolsForm.js │ │ │ └── ToolsModel.js │ │ │ └── vrf │ │ │ ├── VRF.js │ │ │ ├── VRFController.js │ │ │ └── VRFModel.js │ ├── prefix │ │ └── LookupField.js │ ├── prefixaccess │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── prefixprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vrf │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── vrfgroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── js │ ├── boot.js │ ├── colors.js │ ├── glyph.js │ ├── jsloader.js │ ├── override.js │ └── util.js │ ├── kb │ └── kbentry │ │ ├── Application.js │ │ ├── HistoryPanel.js │ │ └── Model.js │ ├── locale │ ├── en │ │ └── ext-locale-en.js │ ├── gettext.js │ ├── pt_BR │ │ ├── ext-locale-pt_BR.js │ │ ├── form │ │ │ └── field │ │ │ │ ├── Base.js │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Date.js │ │ │ │ ├── HtmlEditor.js │ │ │ │ ├── Number.js │ │ │ │ ├── Text.js │ │ │ │ └── VTypes.js │ │ ├── grid │ │ │ ├── Component.js │ │ │ ├── PropertyColumnModel.js │ │ │ ├── feature │ │ │ │ └── Grouping.js │ │ │ ├── filters │ │ │ │ ├── Filters.js │ │ │ │ └── filter │ │ │ │ │ ├── Boolean.js │ │ │ │ │ ├── Date.js │ │ │ │ │ ├── List.js │ │ │ │ │ ├── Number.js │ │ │ │ │ └── String.js │ │ │ ├── header │ │ │ │ └── Container.js │ │ │ ├── locking │ │ │ │ └── Lockable.js │ │ │ ├── plugin │ │ │ │ └── DragDrop.js │ │ │ └── window │ │ │ │ └── MessageBox.js │ │ ├── picker │ │ │ ├── Date.js │ │ │ └── Month.js │ │ ├── tab │ │ │ └── Tab.js │ │ ├── toolbar │ │ │ └── Paging.js │ │ └── view │ │ │ ├── AbstractView.js │ │ │ └── View.js │ └── ru │ │ └── ext-locale-ru.js │ ├── main │ ├── audittrail │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── authldapdomain │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── chpolicy │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── config │ │ ├── Application.js │ │ └── ConfigModel.js │ ├── crontab │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── customfield │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── customfieldenumgroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── ValuesModel.js │ ├── datastreamconfig │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── desktop │ │ ├── About.js │ │ ├── Application.js │ │ ├── Breadcrumbs.js │ │ ├── ChangeCredentials.js │ │ ├── ChangePassword.js │ │ ├── Favorites.js │ │ ├── HeaderPanel.js │ │ ├── IFramePanel.js │ │ ├── LoginView.js │ │ ├── NavPanel.js │ │ ├── Report.js │ │ ├── ReportColSelect.js │ │ ├── WorkplacePanel.js │ │ └── app.js │ ├── extstorage │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── font │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── glyph │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── handler │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── home │ │ └── Application.js │ ├── imagestore │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── jsonimport │ │ └── Application.js │ ├── label │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── language │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── messageroute │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── metricstream │ │ ├── Application.js │ │ └── Model.js │ ├── mimetype │ │ ├── Application.js │ │ └── Model.js │ ├── modeltemplate │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── notificationgroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── UsersModel.js │ ├── pool │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── prefixtable │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── PrefixModel.js │ │ └── templates │ │ │ ├── TestResultTemplate.hbs │ │ │ └── TestResultTemplate.js │ ├── pyrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── ref │ │ ├── Application.js │ │ ├── check │ │ │ └── LookupField.js │ │ ├── containertype │ │ │ └── LookupField.js │ │ ├── country │ │ │ └── LookupField.js │ │ ├── datasource │ │ │ └── LookupField.js │ │ ├── glyph │ │ │ └── LookupField.js │ │ ├── interface │ │ │ └── LookupField.js │ │ ├── kbparser │ │ │ └── LookupField.js │ │ ├── messageheader │ │ │ └── LookupField.js │ │ ├── messagetype │ │ │ └── LookupField.js │ │ ├── modcol │ │ │ └── LookupField.js │ │ ├── model │ │ │ └── LookupField.js │ │ ├── modelid │ │ │ └── LookupField.js │ │ ├── protocoldiscriminatorsource │ │ │ └── LookupField.js │ │ ├── report │ │ │ └── LookupField.js │ │ ├── reportformatter │ │ │ └── LookupField.js │ │ ├── reportsource │ │ │ └── LookupField.js │ │ ├── script │ │ │ └── LookupField.js │ │ ├── soform │ │ │ └── LookupField.js │ │ ├── soposition │ │ │ └── LookupField.js │ │ ├── sound │ │ │ └── LookupField.js │ │ ├── stencil │ │ │ └── LookupField.js │ │ ├── topologygen │ │ │ └── LookupField.js │ │ ├── ulanguage │ │ │ └── LookupField.js │ │ ├── unotificationmethod │ │ │ └── LookupField.js │ │ ├── validator │ │ │ └── LookupField.js │ │ ├── vlanrole │ │ │ └── LookupField.js │ │ └── windowfunction │ │ │ └── LookupField.js │ ├── refbookadmin │ │ ├── Application.js │ │ ├── FieldsModel.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── regexplabel │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── remotesystem │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reportconfig │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reportsubscription │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── resourcestate │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── search │ │ ├── Application.js │ │ └── SearchStore.js │ ├── style │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── sync │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── systemnotification │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── systemtemplate │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── template │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── timepattern │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── TermModel.js │ │ └── templates │ │ │ ├── TestResultTemplate.hbs │ │ │ └── TestResultTemplate.js │ ├── userprofile │ │ ├── Application.js │ │ ├── UserProfileContacts.js │ │ └── UserProfileNotificationGroups.js │ └── welcome │ │ └── Application.js │ ├── maintenance │ ├── maintenance │ │ ├── Application.js │ │ ├── DirectObjectsModel.js │ │ ├── DirectSegmentsModel.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── ObjectsModel.js │ │ ├── ObjectsPanel.js │ │ └── ObjectsStore.js │ └── maintenancetype │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── peer │ ├── as │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── asprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── asset │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── community │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── communitytype │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── maintainer │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── M2MField.js │ │ └── Model.js │ ├── organisation │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── peer │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── peergroup │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── peeringpoint │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── peerprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── person │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── M2MField.js │ │ └── Model.js │ ├── prefixlistbuilder │ │ └── Application.js │ └── rir │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── phone │ ├── dialplan │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── numbercategory │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── phonenumber │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── phonenumberprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── phonerange │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── TreeCombo.js │ └── phonerangeprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── pm │ ├── agent │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── agentprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── measurementunits │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── metricaction │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── metricrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── metricscope │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── metrictype │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── scale │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── project │ └── project │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── ProjectResources.js │ │ └── templates │ │ ├── AllocatedResources.hbs │ │ └── AllocatedResources.js │ ├── sa │ ├── action │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── actioncommands │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── administrativedomain │ │ ├── Application.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ └── TreeCombo.js │ ├── authprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── capsprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── commandsnippet │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── credentialcheckrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── discoveredobject │ │ ├── Application.js │ │ ├── ApplicationController.js │ │ ├── ApplicationModel.js │ │ ├── Model.js │ │ ├── controller │ │ │ ├── Container.js │ │ │ ├── Grid.js │ │ │ └── Sidebar.js │ │ ├── model │ │ │ ├── Container.js │ │ │ └── DiscoveredObject.js │ │ ├── store │ │ │ └── DiscoveredObject.js │ │ ├── view │ │ │ ├── Container.js │ │ │ ├── Grid.js │ │ │ └── Sidebar.js │ │ └── widget │ │ │ ├── Check.js │ │ │ └── Source.js │ ├── getnow │ │ ├── Application.js │ │ ├── Controller.js │ │ ├── Model.js │ │ ├── SelectionGrid.js │ │ └── ViewModel.js │ ├── groupaccess │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── job │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── managedobject │ │ ├── AlarmPanel.js │ │ ├── Application.js │ │ ├── ApplicationModel.js │ │ ├── AttributesModel.js │ │ ├── CPEPanel.js │ │ ├── CapabilitiesModel.js │ │ ├── CapsForm.js │ │ ├── CapsPanel.js │ │ ├── ConfDBPanel.js │ │ ├── ConsolePanel.js │ │ ├── Controller.js │ │ ├── DiscoveryPanel.js │ │ ├── InteractionsPanel.js │ │ ├── InterfacePanel.js │ │ ├── InventoryModel.js │ │ ├── InventoryPanel.js │ │ ├── L1Panel.js │ │ ├── L1Store.js │ │ ├── L2Panel.js │ │ ├── L2Store.js │ │ ├── L3Panel.js │ │ ├── L3Store.js │ │ ├── LAGPanel.js │ │ ├── LAGStore.js │ │ ├── LinkForm.js │ │ ├── LinksPanel.js │ │ ├── LinksStore.js │ │ ├── LookupField.js │ │ ├── Model.js │ │ ├── Proxy.js │ │ ├── RepoPreview.js │ │ ├── SchemeLookupField.js │ │ ├── ScriptPanel.js │ │ ├── ScriptStore.js │ │ ├── SensorsPanel.js │ │ ├── SensorsStore.js │ │ ├── ViewModel.js │ │ ├── form │ │ │ ├── FormController.js │ │ │ └── View.js │ │ └── scripts │ │ │ ├── ErrorPreview.js │ │ │ ├── JSONPreview.js │ │ │ ├── ResultPreview.js │ │ │ ├── ShowARP.js │ │ │ ├── ShowChassisID.js │ │ │ ├── ShowDHCPBinding.js │ │ │ ├── ShowDomStatus.js │ │ │ ├── ShowInterfaceStatus.js │ │ │ ├── ShowInterfaceStatusEx.js │ │ │ ├── ShowInventory.js │ │ │ ├── ShowLocalUsers.js │ │ │ ├── ShowMAC.js │ │ │ ├── ShowMPLSVPN.js │ │ │ ├── ShowObjectStatus.js │ │ │ ├── ShowPortChannel.js │ │ │ ├── ShowVLANs.js │ │ │ ├── TablePreview.js │ │ │ └── TextPreview.js │ ├── managedobjectprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── monitor │ │ ├── Application.js │ │ ├── Controller.js │ │ ├── Filter.js │ │ ├── FilterController.js │ │ ├── JobLogPanel.js │ │ ├── Model.js │ │ ├── SelectionGrid.js │ │ └── ViewModel.js │ ├── mrt │ │ └── Application.js │ ├── objectdiagnosticconfig │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── objectdiscoveryrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── objectnotification │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── platform │ │ └── LookupField.js │ ├── profile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── profilecheckrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reactionrule │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── reportobjectdetail │ │ └── Application.js │ ├── runcommands │ │ ├── Application.js │ │ ├── ApplicationModel.js │ │ ├── Controller.js │ │ └── ViewModel.js │ ├── service │ │ ├── AddressesLinkForm.js │ │ ├── Application.js │ │ ├── CapabilitiesModel.js │ │ ├── InstanceModel.js │ │ ├── InstancesPanel.js │ │ ├── LookupField.js │ │ ├── ManagedObjectLinkForm.js │ │ ├── Model.js │ │ ├── RegisterForm.js │ │ ├── ResourceLinkForm.js │ │ └── TreeCombo.js │ ├── serviceprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── useraccess │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── vendor │ │ └── LookupField.js │ ├── sla │ ├── slaprobe │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── slaprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── support │ ├── account │ │ ├── AccountPanel.js │ │ ├── Application.js │ │ ├── AttachAccountPanel.js │ │ ├── ChangeCredentials.js │ │ └── SystemPanel.js │ └── crashinfo │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── translations │ ├── pt_BR.json │ └── ru.json │ ├── ux │ ├── form │ │ ├── ColorField.js │ │ ├── DictField.js │ │ ├── FormField.js │ │ ├── GeoField.js │ │ ├── GridField.js │ │ ├── ItemSelector.js │ │ ├── JSONField.js │ │ ├── ModelDataField.js │ │ ├── MultiIntervalField.js │ │ ├── MultiSelect.js │ │ ├── SearchField.js │ │ ├── StringsField.js │ │ └── UCField.js │ ├── grid │ │ ├── SubTable.js │ │ └── column │ │ │ └── GlyphAction.js │ └── layout │ │ └── component │ │ └── form │ │ ├── ItemSelector.js │ │ └── MultiSelect.js │ ├── vc │ ├── l2domain │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── l2domainprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vlan │ │ ├── AddVLANForm.js │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vlanfilter │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vlanprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vlantemplate │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ ├── vpn │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── vpnprofile │ │ ├── Application.js │ │ ├── LookupField.js │ │ └── Model.js │ └── wf │ ├── state │ ├── Application.js │ ├── LookupField.js │ └── Model.js │ ├── transition │ ├── Application.js │ ├── LookupField.js │ └── Model.js │ ├── wfmigration │ ├── Application.js │ ├── LookupField.js │ └── Model.js │ └── workflow │ ├── Application.js │ ├── LanesModel.js │ ├── LookupField.js │ ├── Model.js │ ├── VariablesModel.js │ ├── WFEditor.js │ ├── WFInspector.js │ └── js │ └── joint.element.Tools.js ├── urls.py ├── vc ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_default_vc_domain.py │ ├── 0003_vc_type.py │ ├── 0004_move_type.py │ ├── 0005_alter_type.py │ ├── 0006_vc_provisioning.py │ ├── 0007_new_vcdomainprovisioningconfig.py │ ├── 0008_vc_name.py │ ├── 0009_vc_filter.py │ ├── 0010_vcdomainprobvisioningconfig_vcfilter.py │ ├── 0011_vc_bind_filter.py │ ├── 0012_tags.py │ ├── 0013_vcbindfilter_afi.py │ ├── 0014_vc_domain_selector.py │ ├── 0015_vc_style.py │ ├── 0016_vc_project.py │ ├── 0017_drop_project.py │ ├── 0018_vc_state.py │ ├── 0019_vc_default_state.py │ ├── 0020_vc_state_not_null.py │ ├── 0021_migrate_tags.py │ ├── 0022_finish_tag_migration.py │ ├── 0023_vc_project.py │ ├── 0024_vcdomain_drop_selector.py │ ├── 0025_labels.py │ ├── 0026_vcdomainprovisioning_resource_group.py │ ├── 0027_remove_selector_field.py │ ├── 0028_create_default_vlan_profile.py │ ├── 0029_migrate_vc_vlan.py │ ├── 0030_migrate_vc_vlan_filter.py │ └── __init__.py └── models │ ├── __init__.py │ ├── error.py │ ├── l2domain.py │ ├── l2domainprofile.py │ ├── vlan.py │ ├── vlanfilter.py │ ├── vlanprofile.py │ ├── vlantemplate.py │ ├── vpn.py │ └── vpnprofile.py └── wf ├── __init__.py ├── migrations ├── 0001_default_wf.py ├── 0002_sensor_default.py ├── 0003_sensor_add_up_down_event.py ├── 0004_service_default.py ├── 0005_slaprobe_default.py ├── 0007_managedobject_default.py ├── 0008_add_allowed_models.py ├── 0009_add_allowed_models.py ├── 0012_agent_default.py ├── 0013_add_uuid.py ├── 0014_add_peer_default_workflow.py └── __init__.py └── models ├── __init__.py ├── state.py ├── transition.py ├── wfmigration.py └── workflow.py /.dockerignore.tests: -------------------------------------------------------------------------------- 1 | .git/ 2 | .docker/ 3 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 25.1 -------------------------------------------------------------------------------- /aaa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aaa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aaa/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/lookup_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/molecule/debian10/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/debian11/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/default/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/freebsd/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/oel7/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/redos/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/ubuntu20/tests/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/molecule/ubuntu22/test/test_dummy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/activator/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bh/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/bi/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/card/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/chwriter/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/chwriter/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/classifier/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/correlator/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/datastream/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/datastream/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/discovery/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/escalator/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/grafanads/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/kafkasender/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/kafkasender/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/login/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/login/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/login/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/login/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mailsender/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/metrics/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/metrics/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/metrics/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mib/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mib/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mib/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/migrate/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mrt/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/mx/task/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/nbi/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/noc/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ping/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/post/meta/tower.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/pre/meta/tower.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/runner/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/runner/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/sae/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/scheduler/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/noc_roles/selfmon/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/selfmon/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/syslogcollector/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/tgsender/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/tgsender/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/trapcollector/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/ui/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/CentOS_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/Debian_10/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/Debian_11/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/FreeBSD_12/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/RedHat_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/Ubuntu_20/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/web/tasks/os/Ubuntu_22/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/worker/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/worker/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/noc_roles/worker/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/clickhouse/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/goss/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/goss/tasks/os/RED_7/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/grafana/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/mongod/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/nginx/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /ansible/system_roles/postgres/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /bi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bi/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/sa.profilecheckrules/Extreme/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/sa.profilecheckrules/Extreme/XOS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/sa.profilecheckrules/HP/Comware7/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bi/dictionaries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bioseg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bioseg/moderator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bioseg/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/caps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cdag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cdag/factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cdag/node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/change/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/checkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/compressor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/applicator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/collator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/db/marshall/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/normalizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/sources/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/sources/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/streams/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/streams/overlays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/media/streams/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/meta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/cdp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/dns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/lacp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/lldp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/loopdetect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/ntp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/spanningtree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/syslog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/protocols/udld/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/protocols/bgp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/protocols/ldp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/protocols/pim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/protocols/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/route/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/route/inet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/syntax/virtualrouter/route/inet6/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/confdb/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/config/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/constraint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/convert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/datasources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/datastream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/dcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/diagnostic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/dns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/bi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/bi/extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/portmapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/etl/remotesystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/facade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/fm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/geocoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/gridvcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/hist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/inv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/inv/attach/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/ioloop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/lock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/model/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/mongo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/msgstream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/password/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/pm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/protodcsources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/quantile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/ratelimit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/reporter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/reporter/formatter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/resourcegroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/router/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/runner/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/runner/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/http/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/mml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/rtsp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/script/snmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/service/deps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/service/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/service/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/service/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/snmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/techdomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/techdomain/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/techdomain/mapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/techdomain/profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/topology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/topology/constraint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/topology/goal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/topology/layout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/topology/map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/wf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | var/ -------------------------------------------------------------------------------- /docker/etc/noc/Readme.md: -------------------------------------------------------------------------------- 1 | Readme 2 | --- 3 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | getnoc.com 2 | -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ../CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/agent-reference/index.md: -------------------------------------------------------------------------------- 1 | # noc-agent overview 2 | -------------------------------------------------------------------------------- /docs/bi-models-reference/index.md: -------------------------------------------------------------------------------- 1 | # BI Models Reference -------------------------------------------------------------------------------- /docs/blog/index.md: -------------------------------------------------------------------------------- 1 | # Blog 2 | -------------------------------------------------------------------------------- /docs/caps-reference/index.md: -------------------------------------------------------------------------------- 1 | # Capabilities 2 | -------------------------------------------------------------------------------- /docs/concepts/dialplan/index.md: -------------------------------------------------------------------------------- 1 | # Dialplan -------------------------------------------------------------------------------- /docs/concepts/dns-zone/index.md: -------------------------------------------------------------------------------- 1 | # DNS Zone 2 | -------------------------------------------------------------------------------- /docs/concepts/group/index.md: -------------------------------------------------------------------------------- 1 | # Group 2 | -------------------------------------------------------------------------------- /docs/concepts/pool/index.md: -------------------------------------------------------------------------------- 1 | # Pool 2 | -------------------------------------------------------------------------------- /docs/concepts/prefix-profile/index.md: -------------------------------------------------------------------------------- 1 | # Prefix Profile 2 | -------------------------------------------------------------------------------- /docs/concepts/template/index.md: -------------------------------------------------------------------------------- 1 | # Template 2 | -------------------------------------------------------------------------------- /docs/concepts/user/index.md: -------------------------------------------------------------------------------- 1 | # User 2 | -------------------------------------------------------------------------------- /docs/concepts/vendor/index.md: -------------------------------------------------------------------------------- 1 | # Vendor 2 | -------------------------------------------------------------------------------- /docs/concepts/vlan-profile/index.md: -------------------------------------------------------------------------------- 1 | # VLAN Profile 2 | -------------------------------------------------------------------------------- /docs/concepts/vpn-profile/index.md: -------------------------------------------------------------------------------- 1 | # VPN Profile 2 | -------------------------------------------------------------------------------- /docs/discovery-reference/as/index.md: -------------------------------------------------------------------------------- 1 | # AS Discovery -------------------------------------------------------------------------------- /docs/discovery-reference/box/index.md: -------------------------------------------------------------------------------- 1 | # Box Discovery -------------------------------------------------------------------------------- /docs/event-classes-reference/index.md: -------------------------------------------------------------------------------- 1 | # Event Classes -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- 1 | ../LICENSE.md -------------------------------------------------------------------------------- /docs/metrics-reference/index.md: -------------------------------------------------------------------------------- 1 | # Metrics Reference 2 | -------------------------------------------------------------------------------- /docs/services-reference/bi.md: -------------------------------------------------------------------------------- 1 | # bi service 2 | -------------------------------------------------------------------------------- /docs/services-reference/card.md: -------------------------------------------------------------------------------- 1 | # card service 2 | -------------------------------------------------------------------------------- /docs/services-reference/index.md: -------------------------------------------------------------------------------- 1 | # NOC Services Reference -------------------------------------------------------------------------------- /docs/services-reference/login.md: -------------------------------------------------------------------------------- 1 | # login service 2 | -------------------------------------------------------------------------------- /docs/services-reference/mib.md: -------------------------------------------------------------------------------- 1 | # mib Service -------------------------------------------------------------------------------- /docs/services-reference/mrt.md: -------------------------------------------------------------------------------- 1 | # mrt service 2 | -------------------------------------------------------------------------------- /docs/services-reference/ping.md: -------------------------------------------------------------------------------- 1 | # ping service 2 | -------------------------------------------------------------------------------- /docs/services-reference/sae.md: -------------------------------------------------------------------------------- 1 | # sae service 2 | -------------------------------------------------------------------------------- /docs/services-reference/scheduler.md: -------------------------------------------------------------------------------- 1 | # scheduler 2 | -------------------------------------------------------------------------------- /docs/services-reference/ui.md: -------------------------------------------------------------------------------- 1 | # ui service 2 | -------------------------------------------------------------------------------- /docs/services-reference/web.md: -------------------------------------------------------------------------------- 1 | # web service 2 | -------------------------------------------------------------------------------- /fixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/handlers/alarm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/handlers/event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/handlers/thresholds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/overlays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/parsers/geocoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gis/utils/addr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inv/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inv/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inv/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ip/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/refbooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/refbooks/downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/reportsources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maintenance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maintenance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maintenance/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /peer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /peer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /peer/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phone/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phone/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pm/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/4500/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/SuperStack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/SuperStack3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/SuperStack3_4400/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/SuperStack3_4500/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/3Com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/APC/AOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/APC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AcmePacket/NetNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AcmePacket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AddPac/APOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AddPac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/7302/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/7302/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/7324RU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/AOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/AOS/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/OS62xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/Stinger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/TIMOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alcatel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alentis/NetPing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alentis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT8000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT8000S/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT8100/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT8500/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT8700/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT9400/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/AT9900/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/AlliedTelesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/24xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/5440/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/7200/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/ALS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/MSPU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Alstec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Angtel/Topaz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Angtel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Arista/EOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Arista/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Aruba/ArubaOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Aruba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Audiocodes/Mediant2000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Audiocodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Axis/VAPIX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Axis/VAPIX/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Axis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/BDCOM/IOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/BDCOM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/BDCOM/xPON/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Beward/BD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Beward/BD/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Beward/Doorphone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Beward/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Bradbury/HighVideo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/ADX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/CER-ADV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/CER/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/FabricOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/IronWare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Brocade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/CData/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/CData/xPON/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cambium/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cambium/ePMP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Carelink/SWG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Carelink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/1900/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/ASA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/AireOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/CatOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/DCM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/FWSM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/IOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/IOS/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/IOSXR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/NXOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/SANOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/SCOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/SMB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/WLC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Cisco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DCN/DCWL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DCN/DCWS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DCN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DAS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DES21xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DFL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DGS3100/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DIR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DVG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DxS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DxS/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DxS_Cisco_CLI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DxS_Industrial_CLI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/DxS_Smart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/DLink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dahua/DH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dahua/DH/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dahua/DH/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dahua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dell/Powerconnect55xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dell/Powerconnect62xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Dell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ECI/HiFOCuS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ECI/SAM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ECI/SANI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ECI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/EdgeCore/ES/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/EdgeCore/ES/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/EdgeCore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ElectronR/KO01M/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ElectronR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/DSLAM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/ESR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/LTE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/LTP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/LTP16N/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MA4000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MES/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MES/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MES24xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MES24xx/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/MES5448/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/PON/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/RG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/SMG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/TAU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/WOP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/WOPLR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Eltex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Enterasys/EOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Enterasys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ericsson/MINI_LINK/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ericsson/SEOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ericsson/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Extreme/ISW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Extreme/Summit200/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Extreme/XOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Extreme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Force10/FTOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Force10/SFTOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Force10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Fortinet/Fortigate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Fortinet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/GWD/GFA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/GWD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/H3C/VRP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/H3C/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/1905/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/1910/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/Aruba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/Aruba/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/Comware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/GbE2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/OfficeConnect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/ProCurve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/ProCurve9xxx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/HP/iLO2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Harmonic/DiviComElectra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Harmonic/ProStream1000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Harmonic/bNSG9000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Hikvision/DS2CD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Hikvision/DSKV8/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Hikvision/DSKV8/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Hikvision/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/MA5300/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/MA5600T/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/MA5600T/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/UMG8900/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/VRP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/VRP/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/VRP/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/VRP3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Huawei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IBM/NOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IBM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IRE-Polus/Horizon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IRE-Polus/Horizon/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IRE-Polus/Horizon/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IRE-Polus/Taros/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/IRE-Polus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/InfiNet/WANFlexX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/InfiNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Intracom/UltraLink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Intracom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Iskratel/ESCOM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Iskratel/MBAN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Iskratel/MSAN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Iskratel/VOIP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Iskratel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/EX2500/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/JUNOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/JUNOS/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/JUNOS/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/JUNOSe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/JUNOSe/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/SRCPE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/ScreenOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Juniper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Linksys/SPS2xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Linksys/SRW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Linksys/VoIP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Linksys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Lucent/Stinger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Lucent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Maipu/OS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Maipu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Meinberg/LANTIME/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Meinberg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Mellanox/Cumulus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Mellanox/Onyx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Mellanox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/MikroTik/RouterOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/MikroTik/RouterOS/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/MikroTik/SwOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/MikroTik/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NAG/SNR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NAG/SNR_eNOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NAG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NOC/SAE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NOC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSCComm/LPOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSCComm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSGATE/NIS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSGATE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSN/TIMOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NSN/hiX56xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nateks/FlexGain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nateks/FlexGainACE16/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nateks/FlexGainACE24/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nateks/NetXpert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nateks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NextIO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/NextIO/vNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nortel/BayStack425/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Nortel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OS/ESXi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OS/FreeBSD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OS/Linux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OneAccess/TDRE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/OneAccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Opticin/OS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Opticin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Orion/NOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Orion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Planar/SDO3000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Planar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Planet/WGSD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Planet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Polygon/IOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Polygon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Proscend/SHDSL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Proscend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Protei/MediaGateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Protei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/BFC_PBIC_S/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QFC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW2500/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW2800/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW2800/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW2800/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/QSW8200/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Qtech/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raisecom/RCIOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raisecom/RCIOS/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raisecom/ROS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raisecom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raritan/DominionSX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Raritan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rotek/BT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rotek/RTBS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rotek/RTBS/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rotek/RTBSv1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rotek/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rubytech/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Rubytech/l2ms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ruckus/SmartZone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ruckus/ZoneDirector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ruckus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/SKS/SKS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/SKS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/STerra/Gate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/STerra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/SecurityCode/Kontinent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/SecurityCode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Sencore/Probe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Siklu/EH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Siklu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Sumavision/EMR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Sumavision/IPQAM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Sun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Sun/iLOM3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Supertel/K2X/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Supertel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Symbol/AP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Symbol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TFortis/PSW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TFortis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TPLink/EAP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TPLink/T2600G/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TPLink/T2600G/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/TPLink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Tangram/GT21/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Telecom/CPE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Telecom/FXS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Telecom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Telindus/SHDSL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Telindus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Terayon/BW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Terayon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ttronics/KUB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ttronics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/UTST/ONU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/UTST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ubiquiti/AirOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Ubiquiti/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Upvel/UP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Upvel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/VMWare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/VMWare/vCenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/VMWare/vHost/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/VMWare/vMachine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vector/Lambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vitesse/VSC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vitesse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vyatta/Vyatta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Vyatta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ZTE/ZXA10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ZTE/ZXDSL531/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ZTE/ZXDSL98xx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ZTE/ZXR10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/ZTE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zebra/Zebra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zebra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zhone/Bitstorm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zhone/MXK/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zhone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/DSLAM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/MSAN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/MSAN/oidrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/ZyNOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/ZyNOS_EE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/ZyNOSv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/Zyxel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/f5/BIGIP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/profiles/f5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sa/wipe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/activator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/activator/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/activator/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bh/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/card/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/card/cards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/chwriter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/classifier/evfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/correlator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/correlator/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/datastream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/datastream/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/datastream/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/as/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/box/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/ipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/periodic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/discovery/jobs/segment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/escalator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/escalator/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/escalator/tt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/grafanads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/grafanads/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/grafanads/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/kafkasender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/login/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/login/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/login/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/mailsender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/metricscollector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/metricscollector/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/metricscollector/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/mib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/mrt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/mrt/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/nbi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/nbi/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/runner/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/sae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/scheduler/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/selfmon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/selfmon/collectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/syslogcollector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/tgsender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/topo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/trapcollector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ui/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ui/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ui/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ui/utils/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/aaa/apikey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/aaa/group/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/aaa/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/bi/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/bi/dashboardlayout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/cm/confdbquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/cm/configurationparam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/cm/configurationscope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/cm/objectnotify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/cm/reportlatestchanges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/crm/subscriber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/crm/subscriberprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/crm/supplier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/crm/supplierprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dev/quiz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dev/spec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/dnsserver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/dnszone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/dnszoneprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/reportmissedp2p/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/reportmissedreverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/dns/reportnszonesummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarm/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmclass/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmclassconfig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmescalation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmseverity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/alarmtrigger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/classificationrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/dispositionrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/escalationprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/event/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/eventclass/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/eventtrigger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/heatmap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/ignoreeventrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/ignorepattern/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/mib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/mibpreference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/monmap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/oidalias/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/outage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportalarmcomments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportalarmdetail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportavailability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportescalations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reporthierarchy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportlocalrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportmibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportmissedmibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportoutages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportoverlappedoids/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportreboots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportrulesbyprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportrulesetsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/reportttsystemstat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/totaloutage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/fm/ttsystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/area/DISABLED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/area/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/building/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/division/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/geocoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/overlay/DISABLED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/overlay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/gis/street/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/allocationgroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/capability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/card/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/configuredmap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/connectionrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/connectiontype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/coverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/cpe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/cpeprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/endpoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/facade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/firmware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/firmwarepolicy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/ifdescpatterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/interfaceprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/inv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/inv/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/macblacklist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/macdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/modelinterface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/modelmapping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/networksegment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/objectmodel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportcompare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportdiscovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportifacestatus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportlinkdetail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportmaxmetrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportmetrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportmovedmac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportobjectsserial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportobjectsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportpartnumbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/reportpendinglinks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/resourcegroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/resourcepool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/sensor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/sensorprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/techdomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/technology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/unknownmodel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/inv/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/address/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/addressprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/addressrange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/ipam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/prefix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/prefixaccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/prefixprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportaddressfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportallocated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportexpanded/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportfree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reporthistory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportipamsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportipusage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportoverview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/reportvpnstatus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/vrf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/ip/vrfgroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/kb/kb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/kb/kbentry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/kb/kbentrytemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/kb/macros/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/kb/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/apitoken/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/audittrail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/authldapdomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/calculator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/checkpoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/chpolicy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/crontab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/customfield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/datastreamconfig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/desktop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/extstorage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/font/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/glyph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/imagestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/jsonimport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/language/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/messageroute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/metricstream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/mimetype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/modeltemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/notificationgroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/pool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/prefixtable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/pyrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/refbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/refbookadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/remotesystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reportbackups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reportconfig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reportdbsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reportloc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reportsubscription/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/reporttaggedmodels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/resourcestate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/style/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/systemnotification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/systemtemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/timepattern/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/main/userprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/maintenance/maintenance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/as/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/asprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/asset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/community/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/communitytype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/maintainer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/organisation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/peer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/peergroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/peeringpoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/peerprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/person/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/prefixlistbuilder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/reportcone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/peer/rir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/phone/dialplan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/phone/numbercategory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/phone/phonenumber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/phone/phonerange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/phone/phonerangeprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/agentprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/ddash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/ddash/dashboards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/measurementunits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/metricaction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/metricrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/metricscope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/metrictype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/pm/scale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/actioncommands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/administrativedomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/authprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/capsprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/commandsnippet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/credentialcheckrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/discoveredobject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/groupaccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/job/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/managedobject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/managedobjectprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/monitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/objectdiscoveryrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/objectlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/objectnotification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/profilecheckrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/reactionrule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/reportobjectdetail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/reportobjectsummary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/reportstalediscovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/runcommands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/serviceprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sa/useraccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sla/slaprobe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/sla/slaprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/support/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/support/crashinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/l2domain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/l2domainprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vlan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vlanfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vlanprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vlantemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vpn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/vc/vpnprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/wf/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/wf/transition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/wf/wfmigration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/apps/wf/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/base/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/base/reportdatasources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/zeroconf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/zeroconf/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/zeroconf/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sla/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sla/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/noc/__init__.py: -------------------------------------------------------------------------------- 1 | ../../__init__.py -------------------------------------------------------------------------------- /src/noc/aaa: -------------------------------------------------------------------------------- 1 | ../../aaa -------------------------------------------------------------------------------- /src/noc/bi: -------------------------------------------------------------------------------- 1 | ../../bi -------------------------------------------------------------------------------- /src/noc/cm: -------------------------------------------------------------------------------- 1 | ../../cm -------------------------------------------------------------------------------- /src/noc/commands: -------------------------------------------------------------------------------- 1 | ../../commands -------------------------------------------------------------------------------- /src/noc/config.py: -------------------------------------------------------------------------------- 1 | ../../config.py -------------------------------------------------------------------------------- /src/noc/core: -------------------------------------------------------------------------------- 1 | ../../core -------------------------------------------------------------------------------- /src/noc/crm: -------------------------------------------------------------------------------- 1 | ../../crm -------------------------------------------------------------------------------- /src/noc/dns: -------------------------------------------------------------------------------- 1 | ../../dns -------------------------------------------------------------------------------- /src/noc/fixes: -------------------------------------------------------------------------------- 1 | ../../fixes -------------------------------------------------------------------------------- /src/noc/fm: -------------------------------------------------------------------------------- 1 | ../../fm -------------------------------------------------------------------------------- /src/noc/gis: -------------------------------------------------------------------------------- 1 | ../../gis -------------------------------------------------------------------------------- /src/noc/inv: -------------------------------------------------------------------------------- 1 | ../../inv -------------------------------------------------------------------------------- /src/noc/ip: -------------------------------------------------------------------------------- 1 | ../../ip -------------------------------------------------------------------------------- /src/noc/kb: -------------------------------------------------------------------------------- 1 | ../../kb -------------------------------------------------------------------------------- /src/noc/main: -------------------------------------------------------------------------------- 1 | ../../main -------------------------------------------------------------------------------- /src/noc/maintenance: -------------------------------------------------------------------------------- 1 | ../../maintenance -------------------------------------------------------------------------------- /src/noc/models.py: -------------------------------------------------------------------------------- 1 | ../../models.py -------------------------------------------------------------------------------- /src/noc/peer: -------------------------------------------------------------------------------- 1 | ../../peer -------------------------------------------------------------------------------- /src/noc/phone: -------------------------------------------------------------------------------- 1 | ../../phone -------------------------------------------------------------------------------- /src/noc/pm: -------------------------------------------------------------------------------- 1 | ../../pm -------------------------------------------------------------------------------- /src/noc/project: -------------------------------------------------------------------------------- 1 | ../../project -------------------------------------------------------------------------------- /src/noc/sa: -------------------------------------------------------------------------------- 1 | ../../sa -------------------------------------------------------------------------------- /src/noc/services: -------------------------------------------------------------------------------- 1 | ../../services -------------------------------------------------------------------------------- /src/noc/settings.py: -------------------------------------------------------------------------------- 1 | ../../settings.py -------------------------------------------------------------------------------- /src/noc/share: -------------------------------------------------------------------------------- 1 | ../../share -------------------------------------------------------------------------------- /src/noc/sla: -------------------------------------------------------------------------------- 1 | ../../sla -------------------------------------------------------------------------------- /src/noc/support: -------------------------------------------------------------------------------- 1 | ../../support -------------------------------------------------------------------------------- /src/noc/templates: -------------------------------------------------------------------------------- 1 | ../../templates -------------------------------------------------------------------------------- /src/noc/templatetags: -------------------------------------------------------------------------------- 1 | ../../templatetags -------------------------------------------------------------------------------- /src/noc/urls.py: -------------------------------------------------------------------------------- 1 | ../../urls.py -------------------------------------------------------------------------------- /src/noc/vc: -------------------------------------------------------------------------------- 1 | ../../vc -------------------------------------------------------------------------------- /src/noc/wf: -------------------------------------------------------------------------------- 1 | ../../wf -------------------------------------------------------------------------------- /support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/newapp/application/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/newapp/application/templates/DELETE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/newapp/modelapplication/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/newapp/simplereport/__init__.py.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/newapp/simplereport/templates/DELETE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cdag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cdag/factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cdag/node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/collections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/collator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/normalizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/syntax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/confdb/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/pm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/datastreams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/etl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/etl/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/infra/docker/testdropbear/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /tests/infra/docker/testsnmpd/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /tests/infra/docker/testsshd/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /tests/infra/docker/testtelnetd/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /tests/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ioloop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nbi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/reporter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sa/Juniper/JUNOS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sa/Juniper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/services/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/services/zeroconf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/web/css/theme-patch-noc.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vc/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wf/models/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------