├── .github └── workflows │ ├── api_build.yml │ ├── test_alcatel.yml │ ├── test_edgecore.yml │ ├── test_huawei.yml │ ├── test_keymile.yml │ ├── test_pbn.yml │ └── test_zhone.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api.py ├── cli.py ├── docs └── source │ ├── .static │ ├── favicon.ico │ └── logo.svg │ ├── arch.png │ ├── architecture.rst │ ├── development.rst │ ├── license.rst │ └── test_structure.rst ├── gunicorn-start.sh ├── nesi ├── __init__.py ├── bootup │ ├── __init__.py │ ├── conf │ │ ├── __init__.py │ │ ├── bootstraps │ │ │ ├── __init__.py │ │ │ ├── create-custom-benchmark-box.sh │ │ │ ├── create-vendors-and-models.sh │ │ │ ├── create_alcatel_7360.py │ │ │ ├── create_edgecore_xxxx.py │ │ │ ├── create_huawei_5623.py │ │ │ ├── create_keymile_MG2500.py │ │ │ ├── create_pbn_AOCM3924.py │ │ │ ├── create_zhone.py │ │ │ ├── function.py │ │ │ └── test-api-endpoints.sh │ │ ├── nesi.conf │ │ ├── ssh │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ └── systemd │ │ │ ├── nesi-gunicorn.service │ │ │ ├── reset.sh │ │ │ └── update.sh │ └── sockets │ │ ├── __init__.py │ │ ├── ssh.py │ │ └── telnet.py ├── devices │ ├── __init__.py │ ├── alcatel │ │ ├── __init__.py │ │ ├── alcatel_resources │ │ │ ├── __init__.py │ │ │ ├── alcatel_box.py │ │ │ ├── alcatel_card.py │ │ │ ├── alcatel_cpe.py │ │ │ ├── alcatel_cpe_port.py │ │ │ ├── alcatel_ont.py │ │ │ ├── alcatel_ont_port.py │ │ │ ├── alcatel_port.py │ │ │ ├── alcatel_port_profile.py │ │ │ ├── alcatel_qos_interface.py │ │ │ ├── alcatel_service_port.py │ │ │ ├── alcatel_service_vlan.py │ │ │ ├── alcatel_subrack.py │ │ │ └── alcatel_vlan.py │ │ └── api │ │ │ ├── __init__.py │ │ │ └── schemas │ │ │ ├── __init__.py │ │ │ ├── alcatel_box_schemas.py │ │ │ ├── alcatel_card_schemas.py │ │ │ ├── alcatel_ont_schemas.py │ │ │ ├── alcatel_ontport_schemas.py │ │ │ ├── alcatel_port_profile_schemas.py │ │ │ ├── alcatel_port_schemas.py │ │ │ ├── alcatel_qos_interface_schemas.py │ │ │ ├── alcatel_service_port_schemas.py │ │ │ ├── alcatel_service_vlan_schemas.py │ │ │ ├── alcatel_subrack_schemas.py │ │ │ └── alcatel_vlan_schemas.py │ ├── edgecore │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── edgecore_box_schemas.py │ │ │ │ ├── edgecore_card_schemas.py │ │ │ │ ├── edgecore_interface_schemas.py │ │ │ │ ├── edgecore_port_schemas.py │ │ │ │ ├── edgecore_user_schemas.py │ │ │ │ └── edgecore_vlan_schemas.py │ │ └── edgecore_resources │ │ │ ├── __init__.py │ │ │ ├── edgecore_box.py │ │ │ ├── edgecore_card.py │ │ │ ├── edgecore_interface.py │ │ │ ├── edgecore_port.py │ │ │ ├── edgecore_user.py │ │ │ └── edgecore_vlan.py │ ├── huawei │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── huawei_box_schemas.py │ │ │ │ ├── huawei_card_schemas.py │ │ │ │ ├── huawei_cpe_schemas.py │ │ │ │ ├── huawei_emu_schemas.py │ │ │ │ ├── huawei_ont_schemas.py │ │ │ │ ├── huawei_ontport_schemas.py │ │ │ │ ├── huawei_port_profile_schemas.py │ │ │ │ ├── huawei_port_schemas.py │ │ │ │ ├── huawei_route_schemas.py │ │ │ │ ├── huawei_service_port_schemas.py │ │ │ │ ├── huawei_service_vlan_schemas.py │ │ │ │ ├── huawei_subrack_schemas.py │ │ │ │ ├── huawei_user_schemas.py │ │ │ │ ├── huawei_vlan_interface_schemas.py │ │ │ │ └── huawei_vlan_schemas.py │ │ └── huawei_resources │ │ │ ├── __init__.py │ │ │ ├── huawei_box.py │ │ │ ├── huawei_card.py │ │ │ ├── huawei_cpe.py │ │ │ ├── huawei_cpe_port.py │ │ │ ├── huawei_emu.py │ │ │ ├── huawei_ont.py │ │ │ ├── huawei_ont_port.py │ │ │ ├── huawei_port.py │ │ │ ├── huawei_port_profile.py │ │ │ ├── huawei_route.py │ │ │ ├── huawei_service_port.py │ │ │ ├── huawei_service_vlan.py │ │ │ ├── huawei_subrack.py │ │ │ ├── huawei_user.py │ │ │ ├── huawei_vlan.py │ │ │ └── huawei_vlan_interface.py │ ├── keymile │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── keymile_box_schemas.py │ │ │ │ ├── keymile_card_schemas.py │ │ │ │ ├── keymile_channel_schemas.py │ │ │ │ ├── keymile_interface_schemas.py │ │ │ │ ├── keymile_logport_schemas.py │ │ │ │ ├── keymile_mgmt_card_schemas.py │ │ │ │ ├── keymile_mgmt_port_schemas.py │ │ │ │ └── keymile_port_schemas.py │ │ └── keymile_resources │ │ │ ├── __init__.py │ │ │ ├── keymile_box.py │ │ │ ├── keymile_card.py │ │ │ ├── keymile_channel.py │ │ │ ├── keymile_interface.py │ │ │ ├── keymile_logport.py │ │ │ ├── keymile_mgmt_card.py │ │ │ ├── keymile_mgmt_port.py │ │ │ ├── keymile_port.py │ │ │ ├── keymile_portgroupport.py │ │ │ ├── keymile_srvc.py │ │ │ ├── keymile_subrack.py │ │ │ └── keymile_subscriber.py │ ├── pbn │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── pbn_ont_port_schemas.py │ │ │ │ ├── pbn_ont_schemas.py │ │ │ │ ├── pbn_port_schemas.py │ │ │ │ ├── pbn_user_schemas.py │ │ │ │ └── pbn_vlan_schemas.py │ │ └── pbn_resources │ │ │ ├── __init__.py │ │ │ ├── pbn_box.py │ │ │ ├── pbn_card.py │ │ │ ├── pbn_ont.py │ │ │ ├── pbn_ont_port.py │ │ │ ├── pbn_port.py │ │ │ ├── pbn_service_port.py │ │ │ ├── pbn_service_vlan.py │ │ │ ├── pbn_subrack.py │ │ │ ├── pbn_user.py │ │ │ └── pbn_vlan.py │ ├── softbox │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── box_models.py │ │ │ │ ├── card_models.py │ │ │ │ ├── channel_models.py │ │ │ │ ├── cpe_models.py │ │ │ │ ├── cpeport_models.py │ │ │ │ ├── credential_models.py │ │ │ │ ├── emu_models.py │ │ │ │ ├── interface_models.py │ │ │ │ ├── logport_models.py │ │ │ │ ├── mgmt_card_models.py │ │ │ │ ├── mgmt_port_models.py │ │ │ │ ├── model_models.py │ │ │ │ ├── ont_models.py │ │ │ │ ├── ontport_models.py │ │ │ │ ├── port_models.py │ │ │ │ ├── portgroupport_models.py │ │ │ │ ├── portprofile_models.py │ │ │ │ ├── qos_interface_models.py │ │ │ │ ├── route_models.py │ │ │ │ ├── service_port_models.py │ │ │ │ ├── service_vlan_models.py │ │ │ │ ├── srvc_models.py │ │ │ │ ├── subrack_models.py │ │ │ │ ├── subscriber_models.py │ │ │ │ ├── user_models.py │ │ │ │ ├── vendor_models.py │ │ │ │ ├── version_models.py │ │ │ │ ├── vlan_interface_models.py │ │ │ │ └── vlan_models.py │ │ │ ├── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── box_schemas.py │ │ │ │ ├── card_schemas.py │ │ │ │ ├── channel_schemas.py │ │ │ │ ├── cpe_schemas.py │ │ │ │ ├── cpeport_schemas.py │ │ │ │ ├── credential_schemas.py │ │ │ │ ├── emu_schemas.py │ │ │ │ ├── interface_schemas.py │ │ │ │ ├── logport_schemas.py │ │ │ │ ├── mgmt_card_schemas.py │ │ │ │ ├── mgmt_port_schemas.py │ │ │ │ ├── model_schemas.py │ │ │ │ ├── ont_schemas.py │ │ │ │ ├── ontport_schemas.py │ │ │ │ ├── port_schemas.py │ │ │ │ ├── portgroupport_schemas.py │ │ │ │ ├── portprofile_schemas.py │ │ │ │ ├── qos_interface_schemas.py │ │ │ │ ├── route_schemas.py │ │ │ │ ├── service_port_schemas.py │ │ │ │ ├── service_vlan_schemas.py │ │ │ │ ├── srvc_schemas.py │ │ │ │ ├── subrack_schemas.py │ │ │ │ ├── subscriber_schemas.py │ │ │ │ ├── user_schemas.py │ │ │ │ ├── vendor_schemas.py │ │ │ │ ├── version_schemas.py │ │ │ │ ├── vlan_interface_schemas.py │ │ │ │ └── vlan_schemas.py │ │ │ └── views │ │ │ │ ├── __init__.py │ │ │ │ ├── base_views.py │ │ │ │ ├── box_views.py │ │ │ │ ├── card_views.py │ │ │ │ ├── channel_views.py │ │ │ │ ├── cpe_views.py │ │ │ │ ├── cpeport_views.py │ │ │ │ ├── credential_views.py │ │ │ │ ├── emu_views.py │ │ │ │ ├── interface_views.py │ │ │ │ ├── logport_views.py │ │ │ │ ├── mgmt_card_views.py │ │ │ │ ├── mgmt_port_views.py │ │ │ │ ├── model_views.py │ │ │ │ ├── ont_views.py │ │ │ │ ├── ontport_views.py │ │ │ │ ├── port_views.py │ │ │ │ ├── portgroupport_views.py │ │ │ │ ├── portprofile_views.py │ │ │ │ ├── qos_interface_views.py │ │ │ │ ├── route_views.py │ │ │ │ ├── service_port_views.py │ │ │ │ ├── service_vlan_views.py │ │ │ │ ├── srvc_views.py │ │ │ │ ├── subrack_views.py │ │ │ │ ├── subscriber_views.py │ │ │ │ ├── user_views.py │ │ │ │ ├── vendor_views.py │ │ │ │ ├── version_views.py │ │ │ │ ├── vlan_interface_views.py │ │ │ │ └── vlan_views.py │ │ ├── base_resources │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── box.py │ │ │ ├── card.py │ │ │ ├── cpe.py │ │ │ ├── cpe_port.py │ │ │ ├── credentials.py │ │ │ ├── interface.py │ │ │ ├── mgmt_card.py │ │ │ ├── mgmt_port.py │ │ │ ├── ont.py │ │ │ ├── ont_port.py │ │ │ ├── port.py │ │ │ ├── port_profile.py │ │ │ ├── qos_interface.py │ │ │ ├── root.py │ │ │ ├── route.py │ │ │ ├── service_port.py │ │ │ ├── service_vlan.py │ │ │ ├── subrack.py │ │ │ ├── user.py │ │ │ ├── vlan.py │ │ │ └── vlan_interface.py │ │ └── cli │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── rest_client.py │ └── zhone │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ └── schemas │ │ │ ├── __init__.py │ │ │ ├── zhone_box_schemas.py │ │ │ ├── zhone_card_schemas.py │ │ │ ├── zhone_port_schemas.py │ │ │ └── zhone_subrack_schemas.py │ │ └── zhone_resources │ │ ├── __init__.py │ │ ├── zhone_box.py │ │ ├── zhone_card.py │ │ ├── zhone_port.py │ │ └── zhone_subrack.py ├── exceptions.py ├── templates │ ├── Alcatel │ │ ├── login │ │ │ ├── mainloop │ │ │ │ ├── ?.j2 │ │ │ │ ├── admin │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ └── on_cycle.j2 │ │ │ │ ├── configure │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── alarm │ │ │ │ │ │ ├── ?.j2 │ │ │ │ │ │ ├── entry │ │ │ │ │ │ │ ├── board-hw-issue │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── board-init │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── board-instl-missing │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── board-missing │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ └── plugin-dc-b │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── bridge │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ └── port │ │ │ │ │ │ │ ├── nt-a:xfp:1 │ │ │ │ │ │ │ └── vlan-id │ │ │ │ │ │ │ │ └── vlan_identifier │ │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── ethernet │ │ │ │ │ │ └── line │ │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ ├── interface │ │ │ │ │ │ └── port │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── linetest │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ └── single │ │ │ │ │ │ │ ├── ltline │ │ │ │ │ │ │ └── session_id │ │ │ │ │ │ │ │ └── lineid │ │ │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── ltsession │ │ │ │ │ │ │ └── session_id │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ ├── qos │ │ │ │ │ │ ├── interface │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── service │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── software_mngt │ │ │ │ │ │ └── oswp │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── system │ │ │ │ │ │ ├── loop_id_syntax │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ ├── operator │ │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ │ └── user_name │ │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ └── sntp │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ └── server_table │ │ │ │ │ │ │ └── ip_address │ │ │ │ │ │ │ └── ip │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── vlan │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ └── shub │ │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ ├── info_body.j2 │ │ │ │ │ │ ├── info_bottom.j2 │ │ │ │ │ │ ├── info_head.j2 │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ └── shub │ │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ ├── EgressPort │ │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── xdsl │ │ │ │ │ │ ├── board │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ └── nt │ │ │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ │ └── line │ │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ └── xdsl_line_admin_up.j2 │ │ │ │ ├── configure_bridge_port_bottom.j2 │ │ │ │ ├── configure_bridge_port_identifier_detail.j2 │ │ │ │ ├── configure_bridge_port_identifier_detail_vlan.j2 │ │ │ │ ├── configure_bridge_port_middle_bottom.j2 │ │ │ │ ├── configure_bridge_port_middle_top.j2 │ │ │ │ ├── configure_bridge_port_top.j2 │ │ │ │ ├── configure_bridge_port_vlan.j2 │ │ │ │ ├── configure_bridge_port_vlan_detail.j2 │ │ │ │ ├── configure_ethernet_line_identifier_detail.j2 │ │ │ │ ├── configure_ethernet_line_identifier_mau_identifier_detail.j2 │ │ │ │ ├── configure_ethernet_ont_ontportidx_detail.j2 │ │ │ │ ├── configure_product_line_port.j2 │ │ │ │ ├── configure_product_line_port_detail.j2 │ │ │ │ ├── configure_qos_profiles_policer_middle.j2 │ │ │ │ ├── configure_qos_profiles_session_bottom.j2 │ │ │ │ ├── configure_qos_profiles_session_middle.j2 │ │ │ │ ├── configure_qos_profiles_session_top.j2 │ │ │ │ ├── configure_vlan_id_vlan_id.j2 │ │ │ │ ├── environment │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── inhibit_alarms_help.j2 │ │ │ │ │ ├── inhibit_alarms_mode_batch_help.j2 │ │ │ │ │ ├── inhibit_alarms_mode_batch_print_help.j2 │ │ │ │ │ ├── inhibit_alarms_mode_batch_print_no_more_help.j2 │ │ │ │ │ ├── inhibit_alarms_mode_help.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ └── on_error.j2 │ │ │ │ ├── info │ │ │ │ │ └── configure │ │ │ │ │ │ └── qos │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ ├── info_configure_vlan_body.j2 │ │ │ │ ├── info_configure_vlan_bottom.j2 │ │ │ │ ├── info_configure_vlan_head.j2 │ │ │ │ ├── info_configure_vlan_shub_top.j2 │ │ │ │ ├── info_configure_vlan_shub_vlan.j2 │ │ │ │ ├── info_configure_vlan_shub_vlan_egress_port.j2 │ │ │ │ ├── info_configure_vlan_shub_vlan_end.j2 │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ ├── on_cycle.j2 │ │ │ │ ├── on_enter.j2 │ │ │ │ ├── on_error.j2 │ │ │ │ └── show │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── alarm_current_table_bot.j2 │ │ │ │ │ ├── alarm_current_table_mid.j2 │ │ │ │ │ ├── alarm_current_table_top.j2 │ │ │ │ │ ├── equipment │ │ │ │ │ └── transceiver-inventory │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── equipment_diagnostics_sfp_sfpport_detail.j2 │ │ │ │ │ ├── equipment_ont_interface_ontportidx_detail.j2 │ │ │ │ │ ├── equipment_ont_operational-data_ontportidx_detail.j2 │ │ │ │ │ ├── equipment_ont_optics_ontportidx_detail.j2 │ │ │ │ │ ├── equipment_ont_slot_detail_bottom.j2 │ │ │ │ │ ├── equipment_ont_slot_detail_middle.j2 │ │ │ │ │ ├── equipment_ont_slot_detail_top.j2 │ │ │ │ │ ├── equipment_shelf_body.j2 │ │ │ │ │ ├── equipment_shelf_bottom.j2 │ │ │ │ │ ├── equipment_shelf_detail_body.j2 │ │ │ │ │ ├── equipment_shelf_detail_bottom.j2 │ │ │ │ │ ├── equipment_shelf_detail_head.j2 │ │ │ │ │ ├── equipment_shelf_shelfid_detail.j2 │ │ │ │ │ ├── equipment_shelf_top.j2 │ │ │ │ │ ├── equipment_slot_bottom.j2 │ │ │ │ │ ├── equipment_slot_detail_body.j2 │ │ │ │ │ ├── equipment_slot_detail_head.j2 │ │ │ │ │ ├── equipment_slot_middle.j2 │ │ │ │ │ ├── equipment_slot_slotid_detail.j2 │ │ │ │ │ ├── equipment_slot_top.j2 │ │ │ │ │ ├── equipment_temperature_bottom.j2 │ │ │ │ │ ├── equipment_temperature_middle.j2 │ │ │ │ │ ├── equipment_temperature_top.j2 │ │ │ │ │ ├── equipment_transceiver_inventory_identifier_bottom.j2 │ │ │ │ │ ├── equipment_transceiver_inventory_identifier_detail.j2 │ │ │ │ │ ├── equipment_transceiver_inventory_identifier_mid.j2 │ │ │ │ │ ├── equipment_transceiver_inventory_identifier_top.j2 │ │ │ │ │ ├── ethernet_mau_bottom.j2 │ │ │ │ │ ├── ethernet_mau_middle.j2 │ │ │ │ │ ├── ethernet_mau_port_detail.j2 │ │ │ │ │ ├── ethernet_mau_top.j2 │ │ │ │ │ ├── ethernet_ont_operational_data_ontportidx_detail.j2 │ │ │ │ │ ├── instance_does_not_exist.j2 │ │ │ │ │ ├── interface_port_bottom.j2 │ │ │ │ │ ├── interface_port_middle.j2 │ │ │ │ │ ├── interface_port_pipe_match_match_exact_port.j2 │ │ │ │ │ ├── interface_port_pipe_match_match_exact_product_line_port.j2 │ │ │ │ │ ├── interface_port_ponport_detail.j2 │ │ │ │ │ ├── interface_port_top.j2 │ │ │ │ │ ├── linetest_single_lineid_ext_rept_empty.j2 │ │ │ │ │ ├── linetest_single_lineid_ext_rept_filled.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ ├── pon_unprovision_onu_detail_bottom.j2 │ │ │ │ │ ├── pon_unprovision_onu_detail_middle.j2 │ │ │ │ │ ├── pon_unprovision_onu_detail_top.j2 │ │ │ │ │ ├── product_cpeinventory_port_detail.j2 │ │ │ │ │ ├── product_help.j2 │ │ │ │ │ ├── product_linkuprecord_port_detail.j2 │ │ │ │ │ ├── product_operational_data_help.j2 │ │ │ │ │ ├── product_operational_data_line_help.j2 │ │ │ │ │ ├── product_operational_data_line_port_detail.j2 │ │ │ │ │ ├── product_operational_data_line_port_detail_help.j2 │ │ │ │ │ ├── shdsl_span_status_port_detail.j2 │ │ │ │ │ ├── software_mngt_upload_download_detail.j2 │ │ │ │ │ ├── software_mngt_version_etsi_detail.j2 │ │ │ │ │ ├── transport │ │ │ │ │ └── ether_ifmault │ │ │ │ │ │ └── port_identifier │ │ │ │ │ │ └── on_cycle.j2 │ │ │ │ │ ├── vlan_bridge_port-fdb_ontportidx_detail_bottom.j2 │ │ │ │ │ ├── vlan_bridge_port-fdb_ontportidx_detail_mid.j2 │ │ │ │ │ ├── vlan_bridge_port-fdb_ontportidx_detail_top.j2 │ │ │ │ │ ├── vlan_bridge_port_fdb_bottom.j2 │ │ │ │ │ ├── vlan_bridge_port_fdb_middle.j2 │ │ │ │ │ ├── vlan_bridge_port_fdb_top.j2 │ │ │ │ │ ├── vlan_name_bottom.j2 │ │ │ │ │ ├── vlan_name_middle.j2 │ │ │ │ │ ├── vlan_name_name_detail.j2 │ │ │ │ │ └── vlan_name_top.j2 │ │ │ ├── on_cycle.j2 │ │ │ ├── on_enter.j2 │ │ │ ├── on_exit.j2 │ │ │ └── password.j2 │ │ ├── on_cycle.j2 │ │ ├── on_enter.j2 │ │ └── on_exit.j2 │ ├── EdgeCore │ │ ├── login │ │ │ ├── mainloop │ │ │ │ ├── ?.j2 │ │ │ │ ├── enable │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── config │ │ │ │ │ │ ├── interface │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ └── vlan │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ ├── copy_startup_config_ftp_failure.j2 │ │ │ │ │ ├── copy_startup_config_ftp_success.j2 │ │ │ │ │ ├── help.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ ├── show_?.j2 │ │ │ │ │ ├── show_interface_status.j2 │ │ │ │ │ ├── show_interface_switchport.j2 │ │ │ │ │ ├── show_interface_transceiver.j2 │ │ │ │ │ ├── show_mac_address_table.j2 │ │ │ │ │ ├── show_mac_address_table_entry.j2 │ │ │ │ │ ├── show_mac_address_table_unit.j2 │ │ │ │ │ ├── show_memory.j2 │ │ │ │ │ ├── show_process_cpu.j2 │ │ │ │ │ └── show_system.j2 │ │ │ │ ├── enable_password.j2 │ │ │ │ ├── help.j2 │ │ │ │ ├── on_cycle.j2 │ │ │ │ ├── on_enter.j2 │ │ │ │ ├── on_error.j2 │ │ │ │ └── show_?.j2 │ │ │ ├── on_cycle.j2 │ │ │ ├── on_enter.j2 │ │ │ └── password.j2 │ │ ├── on_cycle.j2 │ │ ├── on_enter.j2 │ │ └── on_exit.j2 │ ├── Huawei │ │ ├── login │ │ │ ├── mainloop │ │ │ │ ├── ?.j2 │ │ │ │ ├── display_board_0_bottom.j2 │ │ │ │ ├── display_board_0_empty.j2 │ │ │ │ ├── display_board_0_middle.j2 │ │ │ │ ├── display_board_0_top.j2 │ │ │ │ ├── display_board_dsl_product_bottom_bottom.j2 │ │ │ │ ├── display_board_dsl_product_bottom_middle.j2 │ │ │ │ ├── display_board_dsl_product_bottom_top.j2 │ │ │ │ ├── display_board_dsl_product_middle_bottom.j2 │ │ │ │ ├── display_board_dsl_product_middle_middle.j2 │ │ │ │ ├── display_board_dsl_product_middle_top.j2 │ │ │ │ ├── display_board_dsl_product_top_bottom.j2 │ │ │ │ ├── display_board_dsl_product_top_middle.j2 │ │ │ │ ├── display_board_dsl_product_top_top.j2 │ │ │ │ ├── display_board_ftth_failed_link_bottom.j2 │ │ │ │ ├── display_board_ftth_failed_link_middle.j2 │ │ │ │ ├── display_board_ftth_failed_link_top.j2 │ │ │ │ ├── display_board_ftth_normal_bottom_bottom.j2 │ │ │ │ ├── display_board_ftth_normal_bottom_middle.j2 │ │ │ │ ├── display_board_ftth_normal_bottom_top.j2 │ │ │ │ ├── display_board_ftth_normal_header.j2 │ │ │ │ ├── display_board_ftth_normal_top_bottom.j2 │ │ │ │ ├── display_board_ftth_normal_top_middle.j2 │ │ │ │ ├── display_board_ftth_normal_top_top.j2 │ │ │ │ ├── display_board_ftth_pon_bottom_bottom.j2 │ │ │ │ ├── display_board_ftth_pon_bottom_middle.j2 │ │ │ │ ├── display_board_ftth_pon_bottom_top.j2 │ │ │ │ ├── display_board_ftth_pon_middle_bottom.j2 │ │ │ │ ├── display_board_ftth_pon_middle_middle.j2 │ │ │ │ ├── display_board_ftth_pon_middle_top.j2 │ │ │ │ ├── display_board_ftth_pon_ont_summary.j2 │ │ │ │ ├── display_board_ftth_pon_top_bottom.j2 │ │ │ │ ├── display_board_ftth_pon_top_middle.j2 │ │ │ │ ├── display_board_ftth_pon_top_top.j2 │ │ │ │ ├── display_board_ftth_special_bottom_bottom.j2 │ │ │ │ ├── display_board_ftth_special_bottom_middle.j2 │ │ │ │ ├── display_board_ftth_special_bottom_top.j2 │ │ │ │ ├── display_board_ftth_special_header.j2 │ │ │ │ ├── display_board_ftth_special_middle_bottom.j2 │ │ │ │ ├── display_board_ftth_special_middle_middle.j2 │ │ │ │ ├── display_board_ftth_special_middle_top.j2 │ │ │ │ ├── display_board_ftth_special_top_bottom.j2 │ │ │ │ ├── display_board_ftth_special_top_middle.j2 │ │ │ │ ├── display_board_ftth_special_top_top.j2 │ │ │ │ ├── display_board_mgnt_bottom_bottom.j2 │ │ │ │ ├── display_board_mgnt_bottom_mid.j2 │ │ │ │ ├── display_board_mgnt_bottom_top.j2 │ │ │ │ ├── display_board_mgnt_failed_bottom.j2 │ │ │ │ ├── display_board_mgnt_failed_mid.j2 │ │ │ │ ├── display_board_mgnt_failed_top.j2 │ │ │ │ ├── display_board_mgnt_header.j2 │ │ │ │ ├── display_board_mgnt_top_bottom.j2 │ │ │ │ ├── display_board_mgnt_top_mid.j2 │ │ │ │ ├── display_board_mgnt_top_top.j2 │ │ │ │ ├── enable │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ?.j2 │ │ │ │ │ │ ├── backup_configuration_tftp.j2 │ │ │ │ │ │ ├── board_type_error.j2 │ │ │ │ │ │ ├── delete_vlan_if_first.j2 │ │ │ │ │ │ ├── display_alarm_active_alarmtype_environment_detail.j2 │ │ │ │ │ │ ├── display_board_0_bottom.j2 │ │ │ │ │ │ ├── display_board_0_empty.j2 │ │ │ │ │ │ ├── display_board_0_middle.j2 │ │ │ │ │ │ ├── display_board_0_top.j2 │ │ │ │ │ │ ├── display_board_dsl_product_bottom_bottom.j2 │ │ │ │ │ │ ├── display_board_dsl_product_bottom_middle.j2 │ │ │ │ │ │ ├── display_board_dsl_product_bottom_top.j2 │ │ │ │ │ │ ├── display_board_dsl_product_middle_bottom.j2 │ │ │ │ │ │ ├── display_board_dsl_product_middle_middle.j2 │ │ │ │ │ │ ├── display_board_dsl_product_middle_top.j2 │ │ │ │ │ │ ├── display_board_dsl_product_top_bottom.j2 │ │ │ │ │ │ ├── display_board_dsl_product_top_middle.j2 │ │ │ │ │ │ ├── display_board_dsl_product_top_top.j2 │ │ │ │ │ │ ├── display_board_ftth_failed_link_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_failed_link_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_failed_link_top.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_bottom_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_bottom_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_bottom_top.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_header.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_top_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_top_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_normal_top_top.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_bottom_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_bottom_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_bottom_top.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_middle_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_middle_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_middle_top.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_ont_summary.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_top_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_top_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_pon_top_top.j2 │ │ │ │ │ │ ├── display_board_ftth_special_bottom_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_special_bottom_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_special_bottom_top.j2 │ │ │ │ │ │ ├── display_board_ftth_special_header.j2 │ │ │ │ │ │ ├── display_board_ftth_special_middle_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_special_middle_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_special_middle_top.j2 │ │ │ │ │ │ ├── display_board_ftth_special_top_bottom.j2 │ │ │ │ │ │ ├── display_board_ftth_special_top_middle.j2 │ │ │ │ │ │ ├── display_board_ftth_special_top_top.j2 │ │ │ │ │ │ ├── display_board_mgnt_bottom_bottom.j2 │ │ │ │ │ │ ├── display_board_mgnt_bottom_mid.j2 │ │ │ │ │ │ ├── display_board_mgnt_bottom_top.j2 │ │ │ │ │ │ ├── display_board_mgnt_failed_bottom.j2 │ │ │ │ │ │ ├── display_board_mgnt_failed_mid.j2 │ │ │ │ │ │ ├── display_board_mgnt_failed_top.j2 │ │ │ │ │ │ ├── display_board_mgnt_header.j2 │ │ │ │ │ │ ├── display_board_mgnt_top_bottom.j2 │ │ │ │ │ │ ├── display_board_mgnt_top_mid.j2 │ │ │ │ │ │ ├── display_board_mgnt_top_top.j2 │ │ │ │ │ │ ├── display_board_num.j2 │ │ │ │ │ │ ├── display_board_num_0.j2 │ │ │ │ │ │ ├── display_board_num_1.j2 │ │ │ │ │ │ ├── display_current_configuration_section_vlan_srvprof_bot.j2 │ │ │ │ │ │ ├── display_current_configuration_section_vlan_srvprof_bot2.j2 │ │ │ │ │ │ ├── display_current_configuration_section_vlan_srvprof_mid.j2 │ │ │ │ │ │ ├── display_current_configuration_section_vlan_srvprof_top.j2 │ │ │ │ │ │ ├── display_emu.j2 │ │ │ │ │ │ ├── display_emu_id.j2 │ │ │ │ │ │ ├── display_interface_vlanif_num.j2 │ │ │ │ │ │ ├── display_mac_address_all_bottom.j2 │ │ │ │ │ │ ├── display_mac_address_all_middle.j2 │ │ │ │ │ │ ├── display_mac_address_all_top.j2 │ │ │ │ │ │ ├── display_ont_autofind_all_body.j2 │ │ │ │ │ │ ├── display_ont_autofind_all_failure.j2 │ │ │ │ │ │ ├── display_ont_autofind_all_footer.j2 │ │ │ │ │ │ ├── display_ont_info_summary_0_bottom.j2 │ │ │ │ │ │ ├── display_ont_info_summary_0_middle.j2 │ │ │ │ │ │ ├── display_ont_info_summary_0_middle2.j2 │ │ │ │ │ │ ├── display_ont_info_summary_0_top.j2 │ │ │ │ │ │ ├── display_ont_info_summary_0_top2.j2 │ │ │ │ │ │ ├── display_pitp_config.j2 │ │ │ │ │ │ ├── display_service_port.j2 │ │ │ │ │ │ ├── display_service_port_all_bottom.j2 │ │ │ │ │ │ ├── display_service_port_all_middle.j2 │ │ │ │ │ │ ├── display_service_port_all_top.j2 │ │ │ │ │ │ ├── display_terminal_user_all_bottom.j2 │ │ │ │ │ │ ├── display_terminal_user_all_middle.j2 │ │ │ │ │ │ ├── display_terminal_user_all_top.j2 │ │ │ │ │ │ ├── display_version.j2 │ │ │ │ │ │ ├── display_vlan_all_bottom.j2 │ │ │ │ │ │ ├── display_vlan_all_mid.j2 │ │ │ │ │ │ ├── display_vlan_all_top.j2 │ │ │ │ │ │ ├── interface │ │ │ │ │ │ │ ├── adsl_help.j2 │ │ │ │ │ │ │ ├── display_adsl_line-profile_num.j2 │ │ │ │ │ │ │ ├── display_inventory_cpe.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_header.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop1_loop2.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop1_middle.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop2_loop3.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop2_middle.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop3_middle.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop4_bottom.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop4_middle.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_loop4_top.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_vlan_bottom.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_vlan_middle.j2 │ │ │ │ │ │ │ ├── display_ont_info_port_ont_vlan_top.j2 │ │ │ │ │ │ │ ├── display_ont_optical-info_num_num.j2 │ │ │ │ │ │ │ ├── display_ont_port_state_num_num_eth-port_num.j2 │ │ │ │ │ │ │ ├── display_port_ddm-info.j2 │ │ │ │ │ │ │ ├── display_port_state.j2 │ │ │ │ │ │ │ ├── display_port_state_offline.j2 │ │ │ │ │ │ │ ├── display_power_run_info.j2 │ │ │ │ │ │ │ ├── display_traffic_table_ip_index.j2 │ │ │ │ │ │ │ ├── display_vdsl_line-profile_num.j2 │ │ │ │ │ │ │ ├── gpon_help.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ ├── ont_added.j2 │ │ │ │ │ │ │ ├── ont_already_exists.j2 │ │ │ │ │ │ │ ├── ont_not_online.j2 │ │ │ │ │ │ │ ├── operation_not_supported_by_port_failure.j2 │ │ │ │ │ │ │ ├── port_has_been_activated.j2 │ │ │ │ │ │ │ ├── port_has_been_deactivated.j2 │ │ │ │ │ │ │ ├── vdsl_help.j2 │ │ │ │ │ │ │ └── vlan_help.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ ├── operation_not_supported_by_board.j2 │ │ │ │ │ │ ├── operation_not_supported_by_board_failure.j2 │ │ │ │ │ │ ├── operation_not_supported_by_port_failure.j2 │ │ │ │ │ │ ├── pitp_enable_pmode.j2 │ │ │ │ │ │ ├── please_wait_commit.j2 │ │ │ │ │ │ ├── port_already_in_vlan.j2 │ │ │ │ │ │ ├── port_profile_already_exists.j2 │ │ │ │ │ │ ├── port_profile_does_not_exist.j2 │ │ │ │ │ │ ├── service-port_num_vlan_vlan-id_vdsl_mode_ptm_0_card_port_multi-service_user-vlan_untagged.j2 │ │ │ │ │ │ ├── service_port_does_already_exist.j2 │ │ │ │ │ │ ├── srvprof │ │ │ │ │ │ │ ├── ?.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ └── please_wait_commit.j2 │ │ │ │ │ │ ├── terminal_error_choice.j2 │ │ │ │ │ │ ├── terminal_level_error.j2 │ │ │ │ │ │ ├── terminal_name_short.j2 │ │ │ │ │ │ ├── terminal_profile_error.j2 │ │ │ │ │ │ ├── terminal_pw_error.j2 │ │ │ │ │ │ ├── terminal_pw_short.j2 │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── ?.j2 │ │ │ │ │ │ │ ├── melt_test.j2 │ │ │ │ │ │ │ ├── melt_test_wait.j2 │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ └── on_error.j2 │ │ │ │ │ │ ├── user_already_exists.j2 │ │ │ │ │ │ ├── user_already_unlocked.j2 │ │ │ │ │ │ ├── user_created.j2 │ │ │ │ │ │ ├── user_level.j2 │ │ │ │ │ │ ├── vlan_already_exists.j2 │ │ │ │ │ │ ├── vlan_bind_service-profile_vlan-id_profile-id_profile-id.j2 │ │ │ │ │ │ ├── vlan_does_not_exist.j2 │ │ │ │ │ │ └── vlan_service_profile_does_not_exist.j2 │ │ │ │ │ ├── diagnose │ │ │ │ │ │ ├── ?.j2 │ │ │ │ │ │ ├── display_system_status_collection.j2 │ │ │ │ │ │ ├── display_system_status_collection_1.j2 │ │ │ │ │ │ ├── display_system_status_collection_10.j2 │ │ │ │ │ │ ├── display_system_status_collection_2.j2 │ │ │ │ │ │ ├── display_system_status_collection_3.j2 │ │ │ │ │ │ ├── display_system_status_collection_4.j2 │ │ │ │ │ │ ├── display_system_status_collection_5.j2 │ │ │ │ │ │ ├── display_system_status_collection_6.j2 │ │ │ │ │ │ ├── display_system_status_collection_7.j2 │ │ │ │ │ │ ├── display_system_status_collection_8.j2 │ │ │ │ │ │ ├── display_system_status_collection_9.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ ├── saving_complete.j2 │ │ │ │ │ │ ├── saving_progress.j2 │ │ │ │ │ │ ├── switch_dsl_mode_failure.j2 │ │ │ │ │ │ ├── switch_dsl_mode_temp_1.j2 │ │ │ │ │ │ └── switch_dsl_mode_temp_2.j2 │ │ │ │ │ ├── display_adsl_line_operation_port_num_card_port.j2 │ │ │ │ │ ├── display_board_0_bottom.j2 │ │ │ │ │ ├── display_board_0_empty.j2 │ │ │ │ │ ├── display_board_0_middle.j2 │ │ │ │ │ ├── display_board_0_top.j2 │ │ │ │ │ ├── display_board_dsl_product_bottom_bottom.j2 │ │ │ │ │ ├── display_board_dsl_product_bottom_middle.j2 │ │ │ │ │ ├── display_board_dsl_product_bottom_top.j2 │ │ │ │ │ ├── display_board_dsl_product_middle_bottom.j2 │ │ │ │ │ ├── display_board_dsl_product_middle_middle.j2 │ │ │ │ │ ├── display_board_dsl_product_middle_top.j2 │ │ │ │ │ ├── display_board_dsl_product_top_bottom.j2 │ │ │ │ │ ├── display_board_dsl_product_top_middle.j2 │ │ │ │ │ ├── display_board_dsl_product_top_top.j2 │ │ │ │ │ ├── display_board_ftth_failed_link_bottom.j2 │ │ │ │ │ ├── display_board_ftth_failed_link_middle.j2 │ │ │ │ │ ├── display_board_ftth_failed_link_top.j2 │ │ │ │ │ ├── display_board_ftth_normal_bottom_bottom.j2 │ │ │ │ │ ├── display_board_ftth_normal_bottom_middle.j2 │ │ │ │ │ ├── display_board_ftth_normal_bottom_top.j2 │ │ │ │ │ ├── display_board_ftth_normal_header.j2 │ │ │ │ │ ├── display_board_ftth_normal_top_bottom.j2 │ │ │ │ │ ├── display_board_ftth_normal_top_middle.j2 │ │ │ │ │ ├── display_board_ftth_normal_top_top.j2 │ │ │ │ │ ├── display_board_ftth_pon_bottom_bottom.j2 │ │ │ │ │ ├── display_board_ftth_pon_bottom_middle.j2 │ │ │ │ │ ├── display_board_ftth_pon_bottom_top.j2 │ │ │ │ │ ├── display_board_ftth_pon_middle_bottom.j2 │ │ │ │ │ ├── display_board_ftth_pon_middle_middle.j2 │ │ │ │ │ ├── display_board_ftth_pon_middle_top.j2 │ │ │ │ │ ├── display_board_ftth_pon_ont_summary.j2 │ │ │ │ │ ├── display_board_ftth_pon_top_bottom.j2 │ │ │ │ │ ├── display_board_ftth_pon_top_middle.j2 │ │ │ │ │ ├── display_board_ftth_pon_top_top.j2 │ │ │ │ │ ├── display_board_ftth_special_bottom_bottom.j2 │ │ │ │ │ ├── display_board_ftth_special_bottom_middle.j2 │ │ │ │ │ ├── display_board_ftth_special_bottom_top.j2 │ │ │ │ │ ├── display_board_ftth_special_header.j2 │ │ │ │ │ ├── display_board_ftth_special_middle_bottom.j2 │ │ │ │ │ ├── display_board_ftth_special_middle_middle.j2 │ │ │ │ │ ├── display_board_ftth_special_middle_top.j2 │ │ │ │ │ ├── display_board_ftth_special_top_bottom.j2 │ │ │ │ │ ├── display_board_ftth_special_top_middle.j2 │ │ │ │ │ ├── display_board_ftth_special_top_top.j2 │ │ │ │ │ ├── display_board_mgnt_bottom_bottom.j2 │ │ │ │ │ ├── display_board_mgnt_bottom_mid.j2 │ │ │ │ │ ├── display_board_mgnt_bottom_top.j2 │ │ │ │ │ ├── display_board_mgnt_failed_bottom.j2 │ │ │ │ │ ├── display_board_mgnt_failed_mid.j2 │ │ │ │ │ ├── display_board_mgnt_failed_top.j2 │ │ │ │ │ ├── display_board_mgnt_header.j2 │ │ │ │ │ ├── display_board_mgnt_top_bottom.j2 │ │ │ │ │ ├── display_board_mgnt_top_mid.j2 │ │ │ │ │ ├── display_board_mgnt_top_top.j2 │ │ │ │ │ ├── display_interface_product_port.j2 │ │ │ │ │ ├── display_product_port_state_num_card_port_activated.j2 │ │ │ │ │ ├── display_product_port_state_num_card_port_deactivated.j2 │ │ │ │ │ ├── display_service_port.j2 │ │ │ │ │ ├── display_service_port_all_bottom.j2 │ │ │ │ │ ├── display_service_port_all_middle.j2 │ │ │ │ │ ├── display_service_port_all_top.j2 │ │ │ │ │ ├── display_temperature.j2 │ │ │ │ │ ├── display_terminal_user_all_bottom.j2 │ │ │ │ │ ├── display_terminal_user_all_middle.j2 │ │ │ │ │ ├── display_terminal_user_all_top.j2 │ │ │ │ │ ├── display_vdsl_line-profile_num.j2 │ │ │ │ │ ├── display_vdsl_line_operation_port_num_card_port.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ ├── on_enable_quit.j2 │ │ │ │ │ └── on_error.j2 │ │ │ │ ├── help.j2 │ │ │ │ ├── on_cycle.j2 │ │ │ │ ├── on_enter.j2 │ │ │ │ └── on_error.j2 │ │ │ ├── on_cycle.j2 │ │ │ ├── on_enter.j2 │ │ │ ├── password.j2 │ │ │ └── user_locked.j2 │ │ ├── on_cycle.j2 │ │ ├── on_enter.j2 │ │ └── on_exit.j2 │ ├── KeyMile │ │ ├── login │ │ │ ├── base │ │ │ │ ├── execution_errors │ │ │ │ │ ├── invalid_address_error.j2 │ │ │ │ │ ├── invalid_management_function_error.j2 │ │ │ │ │ ├── invalid_property.j2 │ │ │ │ │ └── unknown_service_fragment.j2 │ │ │ │ ├── get │ │ │ │ │ ├── actual_status.j2 │ │ │ │ │ ├── administrative_status.j2 │ │ │ │ │ ├── attainable_rate.j2 │ │ │ │ │ ├── chan_profile.j2 │ │ │ │ │ ├── configured_profiles.j2 │ │ │ │ │ ├── currTemperature.j2 │ │ │ │ │ ├── current_status.j2 │ │ │ │ │ ├── current_status_empty.j2 │ │ │ │ │ ├── ddm_status.j2 │ │ │ │ │ ├── equipment_inventory.j2 │ │ │ │ │ ├── equipment_inventory_empty.j2 │ │ │ │ │ ├── hardware_and_software.j2 │ │ │ │ │ ├── if_rate_limiting.j2 │ │ │ │ │ ├── ip.j2 │ │ │ │ │ ├── ip_address.j2 │ │ │ │ │ ├── isdnport_bottom.j2 │ │ │ │ │ ├── isdnport_middle.j2 │ │ │ │ │ ├── isdnport_top.j2 │ │ │ │ │ ├── labels.j2 │ │ │ │ │ ├── line_actual_state.j2 │ │ │ │ │ ├── line_operation_state.j2 │ │ │ │ │ ├── line_results_device.j2 │ │ │ │ │ ├── line_results_docu.j2 │ │ │ │ │ ├── melt_results_device.j2 │ │ │ │ │ ├── melt_results_docu.j2 │ │ │ │ │ ├── operational_status.j2 │ │ │ │ │ ├── operational_wire_state.j2 │ │ │ │ │ ├── port_general_status.j2 │ │ │ │ │ ├── port_mac_status.j2 │ │ │ │ │ ├── port_profile.j2 │ │ │ │ │ ├── port_profiles.j2 │ │ │ │ │ ├── proxy.j2 │ │ │ │ │ ├── pstnport_bottom.j2 │ │ │ │ │ ├── pstnport_middle.j2 │ │ │ │ │ ├── pstnport_top.j2 │ │ │ │ │ ├── quickloopbacktest.j2 │ │ │ │ │ ├── registrar.j2 │ │ │ │ │ ├── service_mcast.j2 │ │ │ │ │ ├── service_nto1.j2 │ │ │ │ │ ├── service_onetoonedoubletag.j2 │ │ │ │ │ ├── service_onetoonesingletag.j2 │ │ │ │ │ ├── service_pls.j2 │ │ │ │ │ ├── service_status.j2 │ │ │ │ │ ├── service_tls.j2 │ │ │ │ │ ├── sip.j2 │ │ │ │ │ ├── span_profiles.j2 │ │ │ │ │ ├── status.j2 │ │ │ │ │ ├── subscriberList_bottom.j2 │ │ │ │ │ ├── subscriberList_item.j2 │ │ │ │ │ ├── subscriberList_item2.j2 │ │ │ │ │ ├── subscriberList_top.j2 │ │ │ │ │ ├── unicast_list.j2 │ │ │ │ │ ├── unicast_list_empty.j2 │ │ │ │ │ ├── vendor_id.j2 │ │ │ │ │ ├── vlan_id.j2 │ │ │ │ │ └── vlan_profile.j2 │ │ │ │ ├── help │ │ │ │ │ ├── help.j2 │ │ │ │ │ ├── help_cd.j2 │ │ │ │ │ ├── help_download.j2 │ │ │ │ │ ├── help_exit.j2 │ │ │ │ │ ├── help_ftpserver.j2 │ │ │ │ │ ├── help_get.j2 │ │ │ │ │ ├── help_help.j2 │ │ │ │ │ ├── help_ls.j2 │ │ │ │ │ ├── help_mode.j2 │ │ │ │ │ ├── help_profile.j2 │ │ │ │ │ ├── help_pwd.j2 │ │ │ │ │ ├── help_set.j2 │ │ │ │ │ ├── help_show.j2 │ │ │ │ │ └── help_upload.j2 │ │ │ │ ├── login_message.j2 │ │ │ │ ├── ls │ │ │ │ │ ├── ls_ap_list.j2 │ │ │ │ │ ├── ls_header.j2 │ │ │ │ │ ├── ls_list_body.j2 │ │ │ │ │ ├── ls_mf_body.j2 │ │ │ │ │ ├── ls_mf_header.j2 │ │ │ │ │ └── ls_mf_list.j2 │ │ │ │ ├── on_cycle.j2 │ │ │ │ ├── on_error.j2 │ │ │ │ ├── pwd.j2 │ │ │ │ ├── set │ │ │ │ │ ├── interface_success.j2 │ │ │ │ │ └── vcc_success.j2 │ │ │ │ └── syntax_errors │ │ │ │ │ └── syntax_error.j2 │ │ │ ├── on_enter.j2 │ │ │ └── password.j2 │ │ ├── on_cycle.j2 │ │ └── on_exit.j2 │ ├── PBN │ │ ├── login │ │ │ ├── mainloop │ │ │ │ ├── ?.j2 │ │ │ │ ├── ena │ │ │ │ │ ├── ?.j2 │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── interface │ │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ │ └── parameter_error.j2 │ │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ │ └── parameter_error.j2 │ │ │ │ │ ├── on_cycle.j2 │ │ │ │ │ ├── on_error.j2 │ │ │ │ │ ├── parameter_error.j2 │ │ │ │ │ ├── show_epon_interface_epon_ont_onu_port_ontport_state.j2 │ │ │ │ │ ├── show_interface_product_port.j2 │ │ │ │ │ ├── show_mac_address_table_interface_product_port_bottom.j2 │ │ │ │ │ ├── show_mac_address_table_interface_product_port_top.j2 │ │ │ │ │ ├── show_running-config_interface_product_port_bottom.j2 │ │ │ │ │ ├── show_running-config_interface_product_port_mid.j2 │ │ │ │ │ ├── show_running-config_interface_product_port_top.j2 │ │ │ │ │ └── uni_port_error.j2 │ │ │ │ ├── ena_error.j2 │ │ │ │ ├── on_cycle.j2 │ │ │ │ ├── on_enter.j2 │ │ │ │ └── on_error.j2 │ │ │ ├── on_enter.j2 │ │ │ └── password.j2 │ │ ├── on_cycle.j2 │ │ └── on_enter.j2 │ └── Zhone │ │ ├── login │ │ ├── base │ │ │ ├── dslstatCyclePrompt.j2 │ │ │ ├── dslstatEmptyArg.j2 │ │ │ ├── dslstatInvalidArg.j2 │ │ │ ├── dslstatTemplate.j2 │ │ │ ├── on_cycle.j2 │ │ │ └── on_enter.j2 │ │ ├── on_enter.j2 │ │ └── password.j2 │ │ ├── on_cycle.j2 │ │ └── on_enter.j2 ├── test_cases │ ├── __init__.py │ ├── integration_tests │ │ ├── alcatel │ │ │ ├── activatePort.txt │ │ │ ├── backUp.txt │ │ │ ├── changeBoxName.txt │ │ │ ├── changeIpAddress.txt │ │ │ ├── changeProfileOnFtthPort.txt │ │ │ ├── configureAMSProfile.txt │ │ │ ├── configureDSLPort.txt │ │ │ ├── configureEquipmentSlots.txt │ │ │ ├── configureONTPort.txt │ │ │ ├── configureOnt.txt │ │ │ ├── configurePonPort.txt │ │ │ ├── configureSntpServers.txt │ │ │ ├── configureSoftwareManagement.txt │ │ │ ├── configureSystemBanner.txt │ │ │ ├── configureSystemSyslog.txt │ │ │ ├── configureTrafficVlanOnPort.txt │ │ │ ├── createAlarms.txt │ │ │ ├── createCPEManagementVlan.txt │ │ │ ├── createPPPoERelayVlan.txt │ │ │ ├── createTrafficVlan.txt │ │ │ ├── deactivatePort.txt │ │ │ ├── deconfigureDSLPort.txt │ │ │ ├── deconfigureONT.txt │ │ │ ├── displayMacInfo.txt │ │ │ ├── enableVectoring.txt │ │ │ ├── getDslamDetails.txt │ │ │ ├── readStatus.txt │ │ │ ├── runMeltTest.txt │ │ │ ├── setUpBox.txt │ │ │ ├── showEquipmentSlotDetails.txt │ │ │ ├── showEquipmentSlots.txt │ │ │ ├── showMetrics.txt │ │ │ └── showOntPortDetails.txt │ │ ├── edgecore │ │ │ ├── backup.txt │ │ │ ├── configureBox7.txt │ │ │ ├── configureBoxName10.txt │ │ │ ├── configureClock9.txt │ │ │ ├── configureInternet2.txt │ │ │ ├── configureLog11.txt │ │ │ ├── configureMVlan12.txt │ │ │ ├── configurePort4.txt │ │ │ ├── configureRelay13.txt │ │ │ ├── configureRelayOnPort14.txt │ │ │ ├── configureTVlan8.txt │ │ │ ├── configureTVlanPort1.txt │ │ │ ├── configureUVlan15.txt │ │ │ ├── display_data2.txt │ │ │ ├── display_information4.txt │ │ │ ├── display_model3.txt │ │ │ ├── display_state1.txt │ │ │ ├── unconfigureInternet3.txt │ │ │ └── unconfigurePort5.txt │ │ ├── huawei │ │ │ ├── backup.txt │ │ │ ├── backupRestart.txt │ │ │ ├── backupTest.txt │ │ │ ├── changeAllPorts16.txt │ │ │ ├── changeDSL2.txt │ │ │ ├── changeDSLAM9.txt │ │ │ ├── changeDSLProfile18.txt │ │ │ ├── changeIp7.txt │ │ │ ├── changeMode17.txt │ │ │ ├── changeONT13.txt │ │ │ ├── changeOntPorts1.txt │ │ │ ├── changePPPoE12.txt │ │ │ ├── changePort5.txt │ │ │ ├── changeSPort20.txt │ │ │ ├── changeTerminalUser15.txt │ │ │ ├── changeTime11.txt │ │ │ ├── changeVlan10.txt │ │ │ ├── displayBoard7.txt │ │ │ ├── displayDSLAM3.txt │ │ │ ├── displayEquipment1.txt │ │ │ ├── displayFreeSPort6.txt │ │ │ ├── displayMacInfo4.txt │ │ │ ├── displayMonitor2.txt │ │ │ ├── displayOnt5.txt │ │ │ ├── displayState9.txt │ │ │ ├── unchangeDSL4.txt │ │ │ ├── unchangeONT14.txt │ │ │ └── unchangePort6.txt │ │ ├── keymile │ │ │ ├── backup.txt │ │ │ ├── getDslam.txt │ │ │ ├── getInventory.txt │ │ │ ├── getIpsx.txt │ │ │ ├── getMonitoring.txt │ │ │ ├── getState.txt │ │ │ ├── getSubscriber.txt │ │ │ ├── getVoice.txt │ │ │ ├── setChannelProfile.txt │ │ │ ├── setInterface.txt │ │ │ ├── setIpAddr.txt │ │ │ ├── setPortActive.txt │ │ │ ├── setPortDeactive.txt │ │ │ ├── setPortProfile.txt │ │ │ ├── setSIPDomain.txt │ │ │ ├── setTraffic.txt │ │ │ ├── setVCC.txt │ │ │ ├── setconfDsl.txt │ │ │ ├── setconfVoice.txt │ │ │ ├── setdeconfVoicePort.txt │ │ │ ├── setdeconfVoicePortIsdn.txt │ │ │ ├── setunconfDsl.txt │ │ │ ├── testLoopback.txt │ │ │ ├── testVoicePort.txt │ │ │ └── testmelting.txt │ │ ├── pbn │ │ │ ├── activatePort.txt │ │ │ ├── backup.txt │ │ │ ├── backupConfiguration.txt │ │ │ ├── configureProfile.txt │ │ │ ├── configureSystem.txt │ │ │ ├── deactivatePort.txt │ │ │ ├── deconfigureSystem.txt │ │ │ └── display.txt │ │ └── zhone │ │ │ └── dslstat.txt │ └── unit_tests │ │ ├── __init__.py │ │ ├── alcatel │ │ ├── __init__.py │ │ └── test_alcatel.py │ │ ├── edgecore │ │ ├── __init__.py │ │ └── test_edgecore.py │ │ ├── huawei │ │ ├── __init__.py │ │ └── test_huawei.py │ │ ├── keymile │ │ ├── __init__.py │ │ └── test_keymile.py │ │ ├── pbn │ │ ├── __init__.py │ │ └── test_pbn.py │ │ ├── test_core.py │ │ └── zhone │ │ ├── __init__.py │ │ └── test_zhone.py └── vendors │ ├── Alcatel │ ├── __init__.py │ ├── adminCommandProcessor.py │ ├── baseCommandProcessor.py │ ├── baseMixIn.py │ ├── configureCommandProcessor.py │ ├── environmentCommandProcessor.py │ ├── main.py │ ├── showCommandProcessor.py │ └── userViewCommandProcessor.py │ ├── EdgeCore │ ├── __init__.py │ ├── baseCommandProcessor.py │ ├── configCommandProcessor.py │ ├── enableCommandProcessor.py │ ├── interfaceCommandProcessor.py │ ├── main.py │ ├── userViewCommandProcessor.py │ └── vlanCommandProcessor.py │ ├── Huawei │ ├── __init__.py │ ├── baseCommandProcessor.py │ ├── baseMixIn.py │ ├── configCommandProcessor.py │ ├── diagnoseCommandProcessor.py │ ├── enableCommandProcessor.py │ ├── huaweiBaseCommandProcessor.py │ ├── interfaceCommandProcessor.py │ ├── main.py │ ├── testCommandProcessor.py │ ├── userViewCommandProcessor.py │ └── vlanSrvprofCommandProcessor.py │ ├── KeyMile │ ├── __init__.py │ ├── accessPoints │ │ └── root │ │ │ ├── eoamCommandProcessor.py │ │ │ ├── eoamManagementFunctions.py │ │ │ ├── fan │ │ │ ├── alarmCommandProcessor.py │ │ │ ├── alarmManagementFunctions.py │ │ │ ├── fanCommandProcessor.py │ │ │ └── fanManagementFunctions.py │ │ │ ├── mgmt_unit │ │ │ ├── mgmt_port │ │ │ │ ├── mgmtportCommandProcessor.py │ │ │ │ └── mgmtportManagementFunctions.py │ │ │ ├── mgmtunitCommandProcessor.py │ │ │ └── mgmtunitManagementFunctions.py │ │ │ ├── multicastCommandProcessor.py │ │ │ ├── multicastManagementFunctions.py │ │ │ ├── rootCommandProcessor.py │ │ │ ├── rootManagementFunctions.py │ │ │ ├── services │ │ │ ├── macaccessctrlCommandProcessor.py │ │ │ ├── macaccessctrlManagementFunctions.py │ │ │ ├── packetCommandProcessor.py │ │ │ ├── packetManagementFunctions.py │ │ │ ├── servicesCommandProcessor.py │ │ │ ├── servicesManagementFunctions.py │ │ │ ├── srvcCommandProcessor.py │ │ │ ├── srvcManagementFunctions.py │ │ │ ├── subpacketCommandProcessor.py │ │ │ └── subpacketManagementFunctions.py │ │ │ ├── tdmconnectionsCommandProcessor.py │ │ │ ├── tdmconnectionsManagementFunctions.py │ │ │ └── unit │ │ │ ├── logport │ │ │ ├── logportsCommandProcessor.py │ │ │ ├── logportsManagementFunctions.py │ │ │ └── port │ │ │ │ ├── logportCommandProcessor.py │ │ │ │ └── logportManagementFunctions.py │ │ │ ├── port │ │ │ ├── chan │ │ │ │ ├── chanCommandProcessor.py │ │ │ │ └── chanManagementFunctions.py │ │ │ ├── interface │ │ │ │ ├── interfaceCommandProcessor.py │ │ │ │ └── interfaceManagementFunctions.py │ │ │ ├── portCommandProcessor.py │ │ │ └── portManagementFunctions.py │ │ │ ├── portgroup │ │ │ ├── port │ │ │ │ ├── portgroupportCommandProcessor.py │ │ │ │ └── portgroupportManagementFunctions.py │ │ │ ├── portgroupCommandProcessor.py │ │ │ └── portgroupManagementFunctions.py │ │ │ ├── unitCommandProcessor.py │ │ │ └── unitManagementFunctions.py │ ├── baseCommandProcessor.py │ └── main.py │ ├── PBN │ ├── __init__.py │ ├── baseCommandProcessor.py │ ├── confCommandProcessor.py │ ├── enaCommandProcessor.py │ ├── interfaceCommandProcessor.py │ ├── main.py │ └── userViewCommandProcessor.py │ ├── Zhone │ ├── __init__.py │ ├── baseCommandProcessor.py │ ├── main.py │ └── rootCommandProcessor.py │ └── __init__.py ├── requirements.txt ├── setup.py └── wsgi.py /.github/workflows/api_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/api_build.yml -------------------------------------------------------------------------------- /.github/workflows/test_alcatel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_alcatel.yml -------------------------------------------------------------------------------- /.github/workflows/test_edgecore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_edgecore.yml -------------------------------------------------------------------------------- /.github/workflows/test_huawei.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_huawei.yml -------------------------------------------------------------------------------- /.github/workflows/test_keymile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_keymile.yml -------------------------------------------------------------------------------- /.github/workflows/test_pbn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_pbn.yml -------------------------------------------------------------------------------- /.github/workflows/test_zhone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.github/workflows/test_zhone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/api.py -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/cli.py -------------------------------------------------------------------------------- /docs/source/.static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/.static/favicon.ico -------------------------------------------------------------------------------- /docs/source/.static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/.static/logo.svg -------------------------------------------------------------------------------- /docs/source/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/arch.png -------------------------------------------------------------------------------- /docs/source/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/architecture.rst -------------------------------------------------------------------------------- /docs/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/development.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/test_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/docs/source/test_structure.rst -------------------------------------------------------------------------------- /gunicorn-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/gunicorn-start.sh -------------------------------------------------------------------------------- /nesi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/__init__.py -------------------------------------------------------------------------------- /nesi/bootup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/bootup/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create-custom-benchmark-box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create-custom-benchmark-box.sh -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create-vendors-and-models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create-vendors-and-models.sh -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_alcatel_7360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_alcatel_7360.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_edgecore_xxxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_edgecore_xxxx.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_huawei_5623.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_huawei_5623.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_keymile_MG2500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_keymile_MG2500.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_pbn_AOCM3924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_pbn_AOCM3924.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/create_zhone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/create_zhone.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/function.py -------------------------------------------------------------------------------- /nesi/bootup/conf/bootstraps/test-api-endpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/bootstraps/test-api-endpoints.sh -------------------------------------------------------------------------------- /nesi/bootup/conf/nesi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/nesi.conf -------------------------------------------------------------------------------- /nesi/bootup/conf/ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/ssh/id_rsa -------------------------------------------------------------------------------- /nesi/bootup/conf/ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/ssh/id_rsa.pub -------------------------------------------------------------------------------- /nesi/bootup/conf/systemd/nesi-gunicorn.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/systemd/nesi-gunicorn.service -------------------------------------------------------------------------------- /nesi/bootup/conf/systemd/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/systemd/reset.sh -------------------------------------------------------------------------------- /nesi/bootup/conf/systemd/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/conf/systemd/update.sh -------------------------------------------------------------------------------- /nesi/bootup/sockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/bootup/sockets/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/sockets/ssh.py -------------------------------------------------------------------------------- /nesi/bootup/sockets/telnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/bootup/sockets/telnet.py -------------------------------------------------------------------------------- /nesi/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/alcatel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_box.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_card.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_cpe.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_cpe_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_cpe_port.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_ont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_ont.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_ont_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_ont_port.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_port.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_port_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_port_profile.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_qos_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_qos_interface.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_service_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_service_port.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_service_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_service_vlan.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_subrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_subrack.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/alcatel_resources/alcatel_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/alcatel_resources/alcatel_vlan.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_ont_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_ont_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_ontport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_ontport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_port_profile_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_port_profile_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_qos_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_qos_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_service_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_service_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_service_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_service_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_subrack_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_subrack_schemas.py -------------------------------------------------------------------------------- /nesi/devices/alcatel/api/schemas/alcatel_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/alcatel/api/schemas/alcatel_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_user_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_user_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/api/schemas/edgecore_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/api/schemas/edgecore_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_box.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_card.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_interface.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_port.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_user.py -------------------------------------------------------------------------------- /nesi/devices/edgecore/edgecore_resources/edgecore_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/edgecore/edgecore_resources/edgecore_vlan.py -------------------------------------------------------------------------------- /nesi/devices/huawei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/huawei/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_cpe_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_cpe_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_emu_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_emu_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_ont_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_ont_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_ontport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_ontport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_port_profile_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_port_profile_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_route_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_route_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_service_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_service_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_service_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_service_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_subrack_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_subrack_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_user_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_user_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_vlan_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_vlan_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/api/schemas/huawei_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/api/schemas/huawei_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_box.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_card.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_cpe.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_cpe_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_cpe_port.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_emu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_emu.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_ont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_ont.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_ont_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_ont_port.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_port.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_port_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_port_profile.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_route.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_service_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_service_port.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_service_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_service_vlan.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_subrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_subrack.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_user.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_vlan.py -------------------------------------------------------------------------------- /nesi/devices/huawei/huawei_resources/huawei_vlan_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/huawei/huawei_resources/huawei_vlan_interface.py -------------------------------------------------------------------------------- /nesi/devices/keymile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/keymile/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_channel_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_channel_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_logport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_logport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_mgmt_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_mgmt_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_mgmt_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_mgmt_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/api/schemas/keymile_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/api/schemas/keymile_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_box.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_card.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_channel.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_interface.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_logport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_logport.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_mgmt_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_mgmt_card.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_mgmt_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_mgmt_port.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_port.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_portgroupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_portgroupport.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_srvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_srvc.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_subrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_subrack.py -------------------------------------------------------------------------------- /nesi/devices/keymile/keymile_resources/keymile_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/keymile/keymile_resources/keymile_subscriber.py -------------------------------------------------------------------------------- /nesi/devices/pbn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/pbn/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/pbn_ont_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/pbn_ont_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/pbn_ont_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/pbn_ont_schemas.py -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/pbn_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/pbn_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/pbn_user_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/pbn_user_schemas.py -------------------------------------------------------------------------------- /nesi/devices/pbn/api/schemas/pbn_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/api/schemas/pbn_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_box.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_card.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_ont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_ont.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_ont_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_ont_port.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_port.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_service_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_service_port.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_service_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_service_vlan.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_subrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_subrack.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_user.py -------------------------------------------------------------------------------- /nesi/devices/pbn/pbn_resources/pbn_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/pbn/pbn_resources/pbn_vlan.py -------------------------------------------------------------------------------- /nesi/devices/softbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/softbox/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/__init__.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/config.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/box_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/box_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/card_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/card_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/channel_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/channel_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/cpe_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/cpe_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/cpeport_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/cpeport_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/credential_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/credential_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/emu_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/emu_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/interface_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/interface_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/logport_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/logport_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/mgmt_card_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/mgmt_card_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/mgmt_port_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/mgmt_port_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/model_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/model_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/ont_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/ont_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/ontport_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/ontport_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/port_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/port_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/portgroupport_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/portgroupport_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/portprofile_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/portprofile_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/qos_interface_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/qos_interface_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/route_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/route_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/service_port_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/service_port_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/service_vlan_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/service_vlan_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/srvc_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/srvc_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/subrack_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/subrack_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/subscriber_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/subscriber_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/user_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/user_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/vendor_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/vendor_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/version_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/version_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/vlan_interface_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/vlan_interface_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/models/vlan_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/models/vlan_models.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/channel_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/channel_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/cpe_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/cpe_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/cpeport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/cpeport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/credential_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/credential_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/emu_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/emu_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/logport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/logport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/mgmt_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/mgmt_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/mgmt_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/mgmt_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/model_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/model_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/ont_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/ont_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/ontport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/ontport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/portgroupport_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/portgroupport_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/portprofile_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/portprofile_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/qos_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/qos_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/route_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/route_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/service_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/service_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/service_vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/service_vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/srvc_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/srvc_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/subrack_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/subrack_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/subscriber_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/subscriber_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/user_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/user_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/vendor_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/vendor_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/version_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/version_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/vlan_interface_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/vlan_interface_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/schemas/vlan_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/schemas/vlan_schemas.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/__init__.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/base_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/base_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/box_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/box_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/card_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/card_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/channel_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/channel_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/cpe_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/cpe_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/cpeport_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/cpeport_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/credential_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/credential_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/emu_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/emu_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/interface_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/interface_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/logport_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/logport_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/mgmt_card_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/mgmt_card_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/mgmt_port_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/mgmt_port_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/model_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/model_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/ont_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/ont_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/ontport_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/ontport_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/port_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/port_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/portgroupport_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/portgroupport_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/portprofile_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/portprofile_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/qos_interface_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/qos_interface_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/route_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/route_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/service_port_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/service_port_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/service_vlan_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/service_vlan_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/srvc_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/srvc_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/subrack_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/subrack_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/subscriber_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/subscriber_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/user_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/user_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/vendor_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/vendor_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/version_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/version_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/vlan_interface_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/vlan_interface_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/api/views/vlan_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/api/views/vlan_views.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/base.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/box.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/card.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/cpe.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/cpe_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/cpe_port.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/credentials.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/interface.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/mgmt_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/mgmt_card.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/mgmt_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/mgmt_port.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/ont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/ont.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/ont_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/ont_port.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/port.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/port_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/port_profile.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/qos_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/qos_interface.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/root.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/route.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/service_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/service_port.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/service_vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/service_vlan.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/subrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/subrack.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/user.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/vlan.py -------------------------------------------------------------------------------- /nesi/devices/softbox/base_resources/vlan_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/base_resources/vlan_interface.py -------------------------------------------------------------------------------- /nesi/devices/softbox/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/softbox/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/cli/base.py -------------------------------------------------------------------------------- /nesi/devices/softbox/cli/rest_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/softbox/cli/rest_client.py -------------------------------------------------------------------------------- /nesi/devices/zhone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/zhone/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/__init__.py -------------------------------------------------------------------------------- /nesi/devices/zhone/api/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/schemas/__init__.py -------------------------------------------------------------------------------- /nesi/devices/zhone/api/schemas/zhone_box_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/schemas/zhone_box_schemas.py -------------------------------------------------------------------------------- /nesi/devices/zhone/api/schemas/zhone_card_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/schemas/zhone_card_schemas.py -------------------------------------------------------------------------------- /nesi/devices/zhone/api/schemas/zhone_port_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/schemas/zhone_port_schemas.py -------------------------------------------------------------------------------- /nesi/devices/zhone/api/schemas/zhone_subrack_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/api/schemas/zhone_subrack_schemas.py -------------------------------------------------------------------------------- /nesi/devices/zhone/zhone_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/zhone_resources/__init__.py -------------------------------------------------------------------------------- /nesi/devices/zhone/zhone_resources/zhone_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/zhone_resources/zhone_box.py -------------------------------------------------------------------------------- /nesi/devices/zhone/zhone_resources/zhone_card.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/devices/zhone/zhone_resources/zhone_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/devices/zhone/zhone_resources/zhone_port.py -------------------------------------------------------------------------------- /nesi/devices/zhone/zhone_resources/zhone_subrack.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/exceptions.py -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/admin/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/admin/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/admin/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/admin/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>admin# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/alarm/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-hw-issue/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm>entry>board-hw-issue# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-hw-issue/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-init/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm>entry>board-init# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-init/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-instl-missing/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm>entry>board-instl-missing# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-instl-missing/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-missing/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm>entry>board-missing# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/board-missing/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/plugin-dc-b/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm>entry>plugin-dc-b# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/entry/plugin-dc-b/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>alarm# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/alarm/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/bridge/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/bridge/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>bridge# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/bridge/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/bridge/port/port_identifier/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>linetest# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/single/ltline/session_id/lineid/port_identifier/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/single/ltsession/session_id/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/single/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>linetest>single# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/linetest/single/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/qos/interface/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>qos>interface# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/qos/interface/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/qos/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>qos# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/qos/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/service/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>service# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/service/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/software_mngt/oswp/2/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>software-mngt>oswp>2# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/loop_id_syntax/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>system>loop-id-syntax# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>system# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>system>security# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/operator/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/operator/user_name/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/profile/admin/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>system>security>profile>admin># -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/security/profile/admin/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/sntp/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>system>sntp# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/system/sntp/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/id/on_cycle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/vlan/id/on_cycle.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/id/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/id/shub/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/id/shub/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/info_body.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/vlan/info_body.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/info_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/vlan/info_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/info_head.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure/vlan/info_head.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>vlan# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/id/EgressPort/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/id/EgressPort/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/id/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/id/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>vlan>shub# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/vlan/shub/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/xdsl/board/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : referred instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/xdsl/board/nt/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : referred instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/xdsl/board/nt/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>configure>xdsl>board>nt# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/xdsl/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : referred instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure/xdsl_line_admin_up.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure_bridge_port_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure_bridge_port_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure_bridge_port_vlan.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure_bridge_port_vlan.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure_product_line_port.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure_product_line_port.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/configure_vlan_id_vlan_id.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/configure_vlan_id_vlan_id.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/environment/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/environment/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/environment/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>environment# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/environment/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | command is not complete 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/info/configure/qos/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>info>configure>qos# 2 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/info_configure_vlan_body.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/info_configure_vlan_body.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/info_configure_vlan_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/info_configure_vlan_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/info_configure_vlan_head.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/info_configure_vlan_head.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/info_configure_vlan_shub_vlan_end.j2: -------------------------------------------------------------------------------- 1 | exit 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}># 2 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/on_enter.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_body.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_body.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_shelf_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_slot_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_slot_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_slot_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_slot_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/equipment_slot_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/equipment_slot_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/ethernet_mau_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/instance_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | 2 | Error : instance does not exist 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/interface_port_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/interface_port_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/interface_port_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/interface_port_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/interface_port_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/interface_port_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}>show# -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/on_error.j2: -------------------------------------------------------------------------------- 1 | 2 | invalid token 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/product_help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/product_help.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/shdsl_span_status_port_detail.j2: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/vlan_name_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/vlan_name_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/vlan_name_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/vlan_name_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/vlan_name_name_detail.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/vlan_name_name_detail.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/mainloop/show/vlan_name_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/mainloop/show/vlan_name_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/on_cycle.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | password: 2 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/on_exit.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Alcatel/login/on_exit.j2 -------------------------------------------------------------------------------- /nesi/templates/Alcatel/login/password.j2: -------------------------------------------------------------------------------- 1 | Bad username or password 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/on_cycle.j2: -------------------------------------------------------------------------------- 1 | login: 2 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/on_enter.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ context.login_banner | safe }} 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Alcatel/on_exit.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/?.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/?.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/config/interface/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}(config-if)# 2 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/config/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}(config)# 2 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/config/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/config/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/config/vlan/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}(config-vlan)# 2 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/help.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}# -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/show_?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/show_?.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/show_memory.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/show_memory.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/show_process_cpu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/show_process_cpu.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable/show_system.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/enable/show_system.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/enable_password.j2: -------------------------------------------------------------------------------- 1 | % Bad passwords 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/help.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}> -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/on_enter.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/on_enter.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/mainloop/show_?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/login/mainloop/show_?.j2 -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/on_cycle.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | >>User password: -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/login/password.j2: -------------------------------------------------------------------------------- 1 | Bad username or password 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/on_cycle.j2: -------------------------------------------------------------------------------- 1 | >>User name: -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/on_enter.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/EdgeCore/on_exit.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/EdgeCore/on_exit.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_0_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_0_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_0_empty.j2: -------------------------------------------------------------------------------- 1 | {{ context.cardname }} 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_0_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_0_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_0_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_0_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_ftth_failed_link_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_ftth_pon_top_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_mgnt_header.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_mgnt_header.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_mgnt_top_mid.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_mgnt_top_mid.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/display_board_mgnt_top_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/display_board_mgnt_top_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/board_type_error.j2: -------------------------------------------------------------------------------- 1 | Failure: Board type error 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/delete_vlan_if_first.j2: -------------------------------------------------------------------------------- 1 | Failure: delete VLAN interface first 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_board_0_empty.j2: -------------------------------------------------------------------------------- 1 | {{ context.cardname }} 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_board_ftth_failed_link_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_board_ftth_pon_top_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_current_configuration_section_vlan_srvprof_bot2.j2: -------------------------------------------------------------------------------- 1 | # 2 | return 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_emu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/display_emu.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_emu_id.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/display_emu_id.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/display_ont_autofind_all_failure.j2: -------------------------------------------------------------------------------- 1 | Failure: The automatically found ONTs do not exist 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/interface/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/interface/ont_already_exists.j2: -------------------------------------------------------------------------------- 1 | Failure: The ONT ID has already existed 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/interface/ont_not_online.j2: -------------------------------------------------------------------------------- 1 | Failure: The ONT is not online 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/interface/port_has_been_activated.j2: -------------------------------------------------------------------------------- 1 | Failure: Port {{ context.port_name }} is being activated 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/interface/port_has_been_deactivated.j2: -------------------------------------------------------------------------------- 1 | Failure: Port {{ context.port_name }} has been deactivated 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ model.hostname }}(config)# -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/operation_not_supported_by_board.j2: -------------------------------------------------------------------------------- 1 | Failure: Board does not support the operation 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/operation_not_supported_by_board_failure.j2: -------------------------------------------------------------------------------- 1 | Failure: The board does not support this operation 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/port_already_in_vlan.j2: -------------------------------------------------------------------------------- 1 | Failure: The port is already in the VLAN 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/port_profile_already_exists.j2: -------------------------------------------------------------------------------- 1 | Failure: The profile has existed 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/port_profile_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | Failure: The profile does not exist 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/srvprof/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/srvprof/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/srvprof/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/terminal_error_choice.j2: -------------------------------------------------------------------------------- 1 | Failure: Error Choice 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/terminal_profile_error.j2: -------------------------------------------------------------------------------- 1 | Failure: This user-profile does not exist 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/terminal_pw_error.j2: -------------------------------------------------------------------------------- 1 | Failure: Error Password 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/test/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/test/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/test/melt_test.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/config/test/melt_test.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/test/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ model.hostname }}(config-test)# -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/test/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/user_already_exists.j2: -------------------------------------------------------------------------------- 1 | User {{ context.user_name }} already exists. 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/user_already_unlocked.j2: -------------------------------------------------------------------------------- 1 | This user has been unlocked already. 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/user_created.j2: -------------------------------------------------------------------------------- 1 | User has been created successfully 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/user_level.j2: -------------------------------------------------------------------------------- 1 | User's Level: 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/vlan_already_exists.j2: -------------------------------------------------------------------------------- 1 | Failure: VLAN does already exist 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/vlan_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | Failure: VLAN does not exist 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/config/vlan_service_profile_does_not_exist.j2: -------------------------------------------------------------------------------- 1 | Failure: The input VLAN service profile does not exist 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/diagnose/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/diagnose/?.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/diagnose/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ model.hostname }}(diagnose)%% -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/diagnose/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_board_0_empty.j2: -------------------------------------------------------------------------------- 1 | {{ context.cardname }} 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_board_0_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/display_board_0_top.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_board_ftth_failed_link_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_board_ftth_pon_top_bottom.j2: -------------------------------------------------------------------------------- 1 | SPХpq -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_service_port.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/display_service_port.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/display_temperature.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/enable/display_temperature.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ model.hostname }}# -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/on_enable_quit.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/enable/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/help.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | {{ model.hostname }}> -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/on_enter.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/mainloop/on_enter.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/mainloop/on_error.j2: -------------------------------------------------------------------------------- 1 | % Unknown command, the error locates at '^' 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/on_cycle.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | >>User password: -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/password.j2: -------------------------------------------------------------------------------- 1 | Bad username or password 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/login/user_locked.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Huawei/login/user_locked.j2 -------------------------------------------------------------------------------- /nesi/templates/Huawei/on_cycle.j2: -------------------------------------------------------------------------------- 1 | 2 | >>User name: -------------------------------------------------------------------------------- /nesi/templates/Huawei/on_enter.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Huawei/on_exit.j2: -------------------------------------------------------------------------------- 1 | Configuration console exit, please retry to log on 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/execution_errors/invalid_address_error.j2: -------------------------------------------------------------------------------- 1 | error: invalid address 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/execution_errors/invalid_management_function_error.j2: -------------------------------------------------------------------------------- 1 | error: invalid management function 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/execution_errors/invalid_property.j2: -------------------------------------------------------------------------------- 1 | error: invalid property 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/execution_errors/unknown_service_fragment.j2: -------------------------------------------------------------------------------- 1 | error: Unknown service fragment 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/actual_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/actual_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/administrative_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/administrative_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/attainable_rate.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/attainable_rate.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/chan_profile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/chan_profile.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/configured_profiles.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/configured_profiles.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/currTemperature.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/currTemperature.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/current_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/current_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/current_status_empty.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/current_status_empty.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/ddm_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/ddm_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/equipment_inventory.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/equipment_inventory.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/equipment_inventory_empty.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/equipment_inventory_empty.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/hardware_and_software.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/hardware_and_software.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/if_rate_limiting.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/if_rate_limiting.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/ip.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/ip.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/ip_address.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/ip_address.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/isdnport_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/isdnport_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/isdnport_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/isdnport_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/isdnport_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/isdnport_top.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/labels.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/labels.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/line_actual_state.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/line_actual_state.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/line_operation_state.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/line_operation_state.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/line_results_device.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/line_results_device.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/line_results_docu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/line_results_docu.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/melt_results_device.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/melt_results_device.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/melt_results_docu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/melt_results_docu.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/operational_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/operational_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/operational_wire_state.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/operational_wire_state.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/port_general_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/port_general_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/port_mac_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/port_mac_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/port_profile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/port_profile.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/port_profiles.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/port_profiles.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/proxy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/proxy.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/pstnport_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/pstnport_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/pstnport_middle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/pstnport_middle.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/pstnport_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/pstnport_top.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/quickloopbacktest.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/quickloopbacktest.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/registrar.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/registrar.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_mcast.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_mcast.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_nto1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_nto1.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_onetoonedoubletag.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_onetoonedoubletag.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_onetoonesingletag.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_onetoonesingletag.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_pls.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_pls.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/service_tls.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/service_tls.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/sip.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/sip.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/span_profiles.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/span_profiles.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/status.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/status.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/subscriberList_bottom.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/subscriberList_bottom.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/subscriberList_item.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/subscriberList_item.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/subscriberList_item2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/subscriberList_item2.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/subscriberList_top.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/subscriberList_top.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/unicast_list.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/unicast_list.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/unicast_list_empty.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/unicast_list_empty.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/vendor_id.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/vendor_id.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/vlan_id.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/vlan_id.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/get/vlan_profile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/get/vlan_profile.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_cd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_cd.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_download.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_download.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_exit.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_exit.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_ftpserver.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_ftpserver.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_get.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_get.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_help.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_help.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_ls.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_ls.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_mode.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_mode.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_profile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_profile.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_pwd.j2: -------------------------------------------------------------------------------- 1 | 2 | Show current address 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_set.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_set.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_show.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_show.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/help/help_upload.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/help/help_upload.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/login_message.j2: -------------------------------------------------------------------------------- 1 | ---===### CLI Release R2A20, Build 2014-01-31 ###===--- 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_ap_list.j2: -------------------------------------------------------------------------------- 1 | 2 | AP List: 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_header.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/ls/ls_header.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_list_body.j2: -------------------------------------------------------------------------------- 1 | {{ context.list_entry }} 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_mf_body.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/ls/ls_mf_body.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_mf_header.j2: -------------------------------------------------------------------------------- 1 | {{ context.mf_layer }} 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/ls/ls_mf_list.j2: -------------------------------------------------------------------------------- 1 | 2 | MF List: 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ context.path }}> 2 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/on_error.j2: -------------------------------------------------------------------------------- 1 | error: invalid management function 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/pwd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/pwd.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/set/interface_success.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/set/interface_success.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/set/vcc_success.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/set/vcc_success.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/base/syntax_errors/syntax_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/KeyMile/login/base/syntax_errors/syntax_error.j2 -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | password: 2 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/login/password.j2: -------------------------------------------------------------------------------- 1 | Login failure: Unknown userclass 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/on_cycle.j2: -------------------------------------------------------------------------------- 1 | login as: 2 | -------------------------------------------------------------------------------- /nesi/templates/KeyMile/on_exit.j2: -------------------------------------------------------------------------------- 1 | SESSION CLOSED 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/?.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/?.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/?.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/interface/on_cycle.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/conf/interface/on_cycle.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/interface/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/conf/interface/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/interface/parameter_error.j2: -------------------------------------------------------------------------------- 1 | {{ context.full_command }} 2 | ^ 3 | Parameter invalid 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}_config# -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/conf/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/conf/parameter_error.j2: -------------------------------------------------------------------------------- 1 | {{ context.full_command }} 2 | ^ 3 | Parameter invalid 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}# -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/parameter_error.j2: -------------------------------------------------------------------------------- 1 | {{ context.full_command }} 2 | ^ 3 | Parameter invalid 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/show_interface_product_port.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/ena/show_interface_product_port.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena/uni_port_error.j2: -------------------------------------------------------------------------------- 1 | This ONU has no uni ports. 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/ena_error.j2: -------------------------------------------------------------------------------- 1 | Access denied! 2 | 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/on_cycle.j2: -------------------------------------------------------------------------------- 1 | {{ model.hostname }}> -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/on_enter.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/on_enter.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/mainloop/on_error.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/PBN/login/mainloop/on_error.j2 -------------------------------------------------------------------------------- /nesi/templates/PBN/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | Password: -------------------------------------------------------------------------------- /nesi/templates/PBN/login/password.j2: -------------------------------------------------------------------------------- 1 | 2 | Authentication failed! 3 | 4 | 5 | -------------------------------------------------------------------------------- /nesi/templates/PBN/on_cycle.j2: -------------------------------------------------------------------------------- 1 | Username: -------------------------------------------------------------------------------- /nesi/templates/PBN/on_enter.j2: -------------------------------------------------------------------------------- 1 | User Access Verification 2 | 3 | 4 | -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/dslstatCyclePrompt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Zhone/login/base/dslstatCyclePrompt.j2 -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/dslstatEmptyArg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Zhone/login/base/dslstatEmptyArg.j2 -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/dslstatInvalidArg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Zhone/login/base/dslstatInvalidArg.j2 -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/dslstatTemplate.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/templates/Zhone/login/base/dslstatTemplate.j2 -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/on_cycle.j2: -------------------------------------------------------------------------------- 1 | zSH> -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/base/on_enter.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/on_enter.j2: -------------------------------------------------------------------------------- 1 | Password: 2 | -------------------------------------------------------------------------------- /nesi/templates/Zhone/login/password.j2: -------------------------------------------------------------------------------- 1 | Login incorrect 2 | 3 | -------------------------------------------------------------------------------- /nesi/templates/Zhone/on_cycle.j2: -------------------------------------------------------------------------------- 1 | login as: 2 | -------------------------------------------------------------------------------- /nesi/templates/Zhone/on_enter.j2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/activatePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/activatePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/backUp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/backUp.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/changeBoxName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/changeBoxName.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/changeIpAddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/changeIpAddress.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureAMSProfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureAMSProfile.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureDSLPort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureDSLPort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureONTPort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureONTPort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureOnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureOnt.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configurePonPort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configurePonPort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureSntpServers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureSntpServers.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureSystemBanner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureSystemBanner.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/configureSystemSyslog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/configureSystemSyslog.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/createAlarms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/createAlarms.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/createPPPoERelayVlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/createPPPoERelayVlan.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/createTrafficVlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/createTrafficVlan.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/deactivatePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/deactivatePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/deconfigureDSLPort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/deconfigureDSLPort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/deconfigureONT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/deconfigureONT.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/displayMacInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/displayMacInfo.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/enableVectoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/enableVectoring.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/getDslamDetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/getDslamDetails.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/readStatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/readStatus.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/runMeltTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/runMeltTest.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/setUpBox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/setUpBox.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/showEquipmentSlots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/showEquipmentSlots.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/showMetrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/showMetrics.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/alcatel/showOntPortDetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/alcatel/showOntPortDetails.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/backup.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureBox7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureBox7.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureBoxName10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureBoxName10.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureClock9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureClock9.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureInternet2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureInternet2.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureLog11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureLog11.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureMVlan12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureMVlan12.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configurePort4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configurePort4.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureRelay13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureRelay13.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureTVlan8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureTVlan8.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureTVlanPort1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureTVlanPort1.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/configureUVlan15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/configureUVlan15.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/display_data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/display_data2.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/display_information4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/display_information4.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/display_model3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/display_model3.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/display_state1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/display_state1.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/unconfigureInternet3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/unconfigureInternet3.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/edgecore/unconfigurePort5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/edgecore/unconfigurePort5.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/backup.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/backupRestart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/backupRestart.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/backupTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/backupTest.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeAllPorts16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeAllPorts16.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeDSL2.txt: -------------------------------------------------------------------------------- 1 | root 2 | secret 3 | enable 4 | quit 5 | y -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeDSLAM9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeDSLAM9.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeDSLProfile18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeDSLProfile18.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeIp7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeIp7.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeMode17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeMode17.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeONT13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeONT13.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeOntPorts1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeOntPorts1.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changePPPoE12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changePPPoE12.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changePort5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changePort5.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeSPort20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeSPort20.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeTerminalUser15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeTerminalUser15.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeTime11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeTime11.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/changeVlan10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/changeVlan10.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayBoard7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayBoard7.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayDSLAM3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayDSLAM3.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayEquipment1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayEquipment1.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayFreeSPort6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayFreeSPort6.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayMacInfo4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayMacInfo4.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayMonitor2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayMonitor2.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayOnt5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayOnt5.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/displayState9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/displayState9.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/unchangeDSL4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/unchangeDSL4.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/unchangeONT14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/unchangeONT14.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/huawei/unchangePort6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/huawei/unchangePort6.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/backup.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getDslam.txt: -------------------------------------------------------------------------------- 1 | manager 2 | secret 3 | ls 4 | exit -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getInventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getInventory.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getIpsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getIpsx.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getMonitoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getMonitoring.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getState.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getSubscriber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getSubscriber.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/getVoice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/getVoice.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setChannelProfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setChannelProfile.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setInterface.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setIpAddr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setIpAddr.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setPortActive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setPortActive.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setPortDeactive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setPortDeactive.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setPortProfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setPortProfile.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setSIPDomain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setSIPDomain.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setTraffic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setTraffic.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setVCC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setVCC.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setconfDsl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setconfDsl.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setconfVoice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setconfVoice.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setdeconfVoicePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setdeconfVoicePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setdeconfVoicePortIsdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setdeconfVoicePortIsdn.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/setunconfDsl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/setunconfDsl.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/testLoopback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/testLoopback.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/testVoicePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/testVoicePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/keymile/testmelting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/keymile/testmelting.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/activatePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/activatePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/backup.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/backupConfiguration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/backupConfiguration.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/configureProfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/configureProfile.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/configureSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/configureSystem.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/deactivatePort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/deactivatePort.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/deconfigureSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/deconfigureSystem.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/pbn/display.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/pbn/display.txt -------------------------------------------------------------------------------- /nesi/test_cases/integration_tests/zhone/dslstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/integration_tests/zhone/dslstat.txt -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/alcatel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/alcatel/test_alcatel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/alcatel/test_alcatel.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/edgecore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/edgecore/test_edgecore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/edgecore/test_edgecore.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/huawei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/huawei/test_huawei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/huawei/test_huawei.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/keymile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/keymile/test_keymile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/keymile/test_keymile.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/pbn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/pbn/test_pbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/pbn/test_pbn.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/test_core.py -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/zhone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/test_cases/unit_tests/zhone/test_zhone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/test_cases/unit_tests/zhone/test_zhone.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/adminCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/adminCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/baseMixIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/baseMixIn.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/configureCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/configureCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/environmentCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/environmentCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/main.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/showCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/showCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Alcatel/userViewCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Alcatel/userViewCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/configCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/configCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/enableCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/enableCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/interfaceCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/interfaceCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/main.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/userViewCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/userViewCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/EdgeCore/vlanCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/EdgeCore/vlanCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/vendors/Huawei/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/baseMixIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/baseMixIn.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/configCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/configCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/diagnoseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/diagnoseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/enableCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/enableCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/huaweiBaseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/huaweiBaseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/interfaceCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/interfaceCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/main.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/testCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/testCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/userViewCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/userViewCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Huawei/vlanSrvprofCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Huawei/vlanSrvprofCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/eoamCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/eoamCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/eoamManagementFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/eoamManagementFunctions.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/fan/alarmCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/fan/alarmCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/fan/fanCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/fan/fanCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/rootCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/rootCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/accessPoints/root/rootManagementFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/accessPoints/root/rootManagementFunctions.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/KeyMile/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/KeyMile/main.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesi/vendors/PBN/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/confCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/confCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/enaCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/enaCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/interfaceCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/interfaceCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/main.py -------------------------------------------------------------------------------- /nesi/vendors/PBN/userViewCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/PBN/userViewCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Zhone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Zhone/__init__.py -------------------------------------------------------------------------------- /nesi/vendors/Zhone/baseCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Zhone/baseCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/Zhone/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Zhone/main.py -------------------------------------------------------------------------------- /nesi/vendors/Zhone/rootCommandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/nesi/vendors/Zhone/rootCommandProcessor.py -------------------------------------------------------------------------------- /nesi/vendors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/setup.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inexio/NESi/HEAD/wsgi.py --------------------------------------------------------------------------------