From 724a4f2bd91cc43f771fd8cc173b7e16e2260cc7 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Mon, 5 Dec 2022 11:19:16 +0100 Subject: [PATCH 01/31] add oneaccess oneos templates --- ntc_templates/templates/index | 11 +++++++ .../oneaccess_oneos_hostname.textfsm | 5 +++ ...cess_oneos_show_ip_interface_brief.textfsm | 11 +++++++ .../oneaccess_oneos_show_ip_vrf_brief.textfsm | 12 +++++++ ...ccess_oneos_show_product-info-area.textfsm | 17 ++++++++++ ...cess_oneos_show_running-config_aaa.textfsm | 9 ++++++ ...oneos_show_running-config_ip-route.textfsm | 11 +++++++ ...oneaccess_oneos_show_system_status.textfsm | 31 +++++++++++++++++++ ...oneaccess_oneos_show_tacacs-server.textfsm | 11 +++++++ .../oneaccess_oneos_show_tacacs.textfsm | 26 ++++++++++++++++ 10 files changed, 144 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_hostname.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index aacd884b4a..ca7869f68c 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,6 +684,17 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] +oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers +oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname +oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area +oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status +oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server +oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs +oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa +oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief +oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief +oneaccess_oneos_show_running-config_ip-route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route + paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_hostname.textfsm b/ntc_templates/templates/oneaccess_oneos_hostname.textfsm new file mode 100644 index 0000000000..762a7e6fcb --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_hostname.textfsm @@ -0,0 +1,5 @@ +Value HOSTNAME (.*) + +Start + ^${HOSTNAME}$$ -> Record + ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm new file mode 100644 index 0000000000..d36f44103a --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm @@ -0,0 +1,11 @@ +Value INTF (\S+(?:\s\S+)?) +Value IPADDR (\S+) +Value OK (YES|NO|Yes|No|yes|no) +Value STATUS (up|down|administratively down) +Value PROTO (up|down) +Value IFDESCR (.*) + +Start + ^${INTF}\s+${IPADDR}\s+${OK}\s+${STATUS}\s+${PROTO}\s+${IFDESCR} -> Record + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm new file mode 100644 index 0000000000..a9de2c9458 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm @@ -0,0 +1,12 @@ +Value VRF (\w+) +Value VRF_ID (\d+) +Value List INTERFACES ([\w\-]+\s?[\w\/\.]+) + +Start + ^\s*VRF Name + ^\s?\w+\s+\d+ -> Continue.Record + ^\s?${VRF}?\s+${VRF_ID}\s+${INTERFACES}$$ + ^\s?${VRF}?\s+${VRF_ID}\s*$$ + ^\s{2}\s+${INTERFACES}$$ + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm b/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm new file mode 100644 index 0000000000..82ad7fec33 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm @@ -0,0 +1,17 @@ +Value MAC ([\w:]+) +Value MOTHERBOARD (\w.*\w) +Value MANUFACTURING_DATE ([^ ]+) +Value List SERIAL ([A-Z]\d+) +Value PRODUCT_NAME (\w.+\w) +Value COMMERCIAL_NAME (\w.+\w) + + +Start + ^\|\Wmac0\W+\|\W${MAC}\W+\|$$ + ^\|\WMotherboard\W[Tt]ype\W+\|\W${MOTHERBOARD}\W+\|$$ + ^\|\WManufacturing\W[Dd]ate\W+\|\W${MANUFACTURING_DATE}\W+\|$$ + ^\|\WSerial\W[Nn]umber\W+\|\W${SERIAL}\W+\|$$ + ^\|\WProduct\W[Nn]ame\W+\|\W${PRODUCT_NAME}\W+\|$$ + ^\|\WCommercial\W[Nn]ame\W+\|\W${COMMERCIAL_NAME}\W+\|$$ -> Record + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm new file mode 100644 index 0000000000..2ab8042fee --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm @@ -0,0 +1,9 @@ +Value AAA_PROTOCOL (authentication|authorization|accounting) +Value AAA_COMMAND (\w+) +Value List AAA_CONFIG (.*) + +Start + ^\s*aaa\s+${AAA_PROTOCOL}\s+${AAA_COMMAND}\s+${AAA_CONFIG}\s*$$ -> Record + ^.*$$ + ^. -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm new file mode 100644 index 0000000000..d75ea714ab --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm @@ -0,0 +1,11 @@ +Value Required NETWORK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) +Value MASK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) +Value NEXTHOP_IP (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) +Value NEXTHOP_IF ([A-Z][\w\-\.:\/]+( [\d\.]+)?) + +Start + ^ip\sroute\s${NETWORK}\s${MASK}\s${NEXTHOP_IP} -> Record + ^ip\sroute\s${NETWORK}\s${MASK}\s${NEXTHOP_IF} -> Record + ^.*$$ + ^. -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm new file mode 100644 index 0000000000..bd7a4f1edf --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm @@ -0,0 +1,31 @@ +Value List SERIAL (\w+) +Value DEVICEID ([^ ]+) +Value SOFTWARE (.+) +Value BOOT_VERSION (.+) +Value RECOVERY_VERSION (.+) +Value BOOT_FLAGS (\dx\d+) +Value SYSTEM_TIME (.*) +Value RESTARTED (.*) +Value RELOAD_REASON (.*) +Value UPTIME (.*) +Value UPTIME_SECONDS (\d+) +Value UPTIME_MINUTES (\d+) +Value UPTIME_HOURS (\d+) +Value UPTIME_DAYS (\d+) +Value VERSION (\d) + + +Start + ^System\WInformation\Wfor\Wdevice\W${DEVICEID}\W+S\/N\W${SERIAL} + ^Software\Wversion\W+:\W+${SOFTWARE} -> Continue + ^Software\Wversion\W+:\W+.*\-V?${VERSION}\..* + ^Boot\Wversion\W+:\W${BOOT_VERSION} + ^Boot\WFlags\W+:\W+${BOOT_FLAGS} + ^Recovery\Wversion\W+:\W+${RECOVERY_VERSION} + ^Current\Wsystem\Wtime\W+:\W+${SYSTEM_TIME} + ^System\Wstarted\W+:\W+${RESTARTED} + ^Start\Wcaused\Wby\W+:\W+${RELOAD_REASON} + ^Sys\WUp\Wtime\W+:\W+(?:${UPTIME_DAYS}d)? ?(?:${UPTIME_HOURS}h)? ?(?:${UPTIME_MINUTES}m)? ?(?:${UPTIME_SECONDS}s)? -> Continue + ^Sys\WUp\Wtime\W+:\W+${UPTIME} -> Record + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm b/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm new file mode 100644 index 0000000000..597d5e8d44 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm @@ -0,0 +1,11 @@ +Value TACACS_SERVER (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value SERVER_PORT (\d+) +Value SECRET_KEY (\w+) +Value SOURCE (\w+\s[\w\/\.]+) +Value VRF ([\w\-]+) + + +Start + ^\s*${TACACS_SERVER}\s+${SERVER_PORT}\s+${SECRET_KEY}\s+${SOURCE}\s*(?:Default-Router)?${VRF}?$$ -> Record + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm b/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm new file mode 100644 index 0000000000..6f2c15c347 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm @@ -0,0 +1,26 @@ +Value TACACS_SERVER (.+?) +Value SERVER_PORT (\d+) +Value SOCKET_OPENS (\d+) +Value SOCKET_CLOSES (\d+) +Value SOCKET_ABORTS (\d+) +Value SOCKET_ERRORS (\d+) +Value SOCKET_TIMEOUTS (\d+) +Value FAILED_CONNECTIONS (\d+) +Value PACKETS_SENT (\d+) +Value PACKET_RECEIVED (\d+) + + +Start + ^\s+Tacacs\+\s+Server\s+Address\s+:\s.*$$ -> Continue.Record + ^\s+Tacacs\+\s+Server\s+Address\s+:\s+${TACACS_SERVER}\s*$$ + ^\s+Server\s+port\s+:\s+${SERVER_PORT}\s*$$ + ^\s+Number\sof\ssockets\sopen\s+:\s+${SOCKET_OPENS}\s*$$ + ^\s+Number\sof\ssockets\sclosed\s+:\s+${SOCKET_CLOSES}\s*$$ + ^\s+Number\sof\ssockets\saborted\s+:\s+${SOCKET_ABORTS}\s*$$ + ^\s+Number\sof\ssockets\serror\s+:\s+${SOCKET_ERRORS}\s*$$ + ^\s+Number\sof\ssockets\stimeout\s+:\s+${SOCKET_TIMEOUTS}\s*$$ + ^\s+Number\sof\sconnect\sfails\s+:\s+${FAILED_CONNECTIONS}\s*$$ + ^\s+Number\sof\spackets\ssent\s+:\s+${PACKETS_SENT}\s*$$ + ^\s+Number\sof\spackets\sreceived\s+:\s+${PACKET_RECEIVED}\s*$$ + ^.*$$ + ^. -> Error From 2658e95bedd41f1e99bc5270e35058c19e2d9d45 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 15 Dec 2022 22:53:58 +0100 Subject: [PATCH 02/31] oneaccess_oneos templates and tests --- ntc_templates/templates/index | 17 ++- .../oneaccess_oneos_show_helpers.textfsm | 12 ++ .../oneaccess_oneos_show_ip_ssh.textfsm | 28 ++++ ...ess_oneos_show_running-config_bind.textfsm | 34 +++++ ..._oneos_show_running-config_ip_dhcp.textfsm | 31 ++++ ...neos_show_running-config_ip_route.textfsm} | 0 ...neaccess_oneos_show_snmp_community.textfsm | 12 ++ tests/oneaccess_oneos/hostname/hostname.raw | 1 + tests/oneaccess_oneos/hostname/hostname.yml | 3 + .../show_helpers/show_helpers.oneos5.raw | 15 ++ .../show_helpers/show_helpers.oneos5.yml | 17 +++ .../show_helpers/show_helpers.oneos6.raw | 15 ++ .../show_helpers/show_helpers.oneos6.yml | 17 +++ .../show_ip_interface_brief.oneos5.raw | 21 +++ .../show_ip_interface_brief.oneos5.yml | 126 +++++++++++++++++ .../show_ip_interface_brief.oneos6.raw | 22 +++ .../show_ip_interface_brief.oneos6.yml | 132 ++++++++++++++++++ .../show_ip_ssh/show_ip_ssh.oneos5.raw | 11 ++ .../show_ip_ssh/show_ip_ssh.oneos5.yml | 13 ++ .../show_ip_ssh/show_ips_ssh.oneos6.raw | 11 ++ .../show_ip_ssh/show_ips_ssh.oneos6.yml | 13 ++ .../show_ip_vrf_brief.oneos5.raw | 7 + .../show_ip_vrf_brief.oneos5.yml | 16 +++ .../show_ip_vrf_brief.oneos6.raw | 8 ++ .../show_ip_vrf_brief.oneos6.yml | 29 ++++ .../show_product-info-area.oneos5.raw | 43 ++++++ .../show_product-info-area.oneos5.yml | 9 ++ .../show_product-info-area.oneos6.raw | 67 +++++++++ .../show_product-info-area.oneos6.yml | 9 ++ .../show_running-config_aaa.oneos5.raw | 17 +++ .../show_running-config_aaa.oneos5.yml | 66 +++++++++ .../show_running-config_aaa.oneos6.raw | 18 +++ .../show_running-config_aaa.oneos6.yml | 58 ++++++++ .../show_running-config_bind.oneos5.raw | 18 +++ .../show_running-config_bind.oneos5.yml | 26 ++++ .../show_running-config_bind.oneos6.raw | 8 ++ .../show_running-config_bind.oneos6.yml | 16 +++ .../show_running-config_ip_dhcp.oneos5.raw | 40 ++++++ .../show_running-config_ip_dhcp.oneos5.yml | 66 +++++++++ .../show_running-config_ip_dhcp.oneos6.raw | 8 ++ .../show_running-config_ip_dhcp.oneos6.yml | 20 +++ .../show_running-config_ip_route.oneos5.raw | 3 + .../show_running-config_ip_route.oneos5.yml | 14 ++ .../show_running-config_ip_route.oneos6.raw | 3 + .../show_running-config_ip_route.oneos6.yml | 14 ++ .../show_snmp_community.oneos5.raw | 4 + .../show_snmp_community.oneos5.yml | 10 ++ .../show_snmp_community.oneos6.raw | 6 + .../show_snmp_community.oneos6.yml | 14 ++ .../show_system_status.oneos5.raw | 22 +++ .../show_system_status.oneos5.yml | 18 +++ .../show_system_status.oneos6.raw | 17 +++ .../show_system_status.oneos6.yml | 18 +++ .../show_tacacs-server.oneos5.raw | 6 + .../show_tacacs-server.oneos5.yml | 17 +++ .../show_tacacs-server.oneos6.raw | 8 ++ .../show_tacacs-server.oneos6.yml | 17 +++ .../show_tacacs/show_tacacs.oneos5.raw | 35 +++++ .../show_tacacs/show_tacacs.oneos5.yml | 32 +++++ .../show_tacacs/show_tacacs.oneos6.raw | 34 +++++ .../show_tacacs/show_tacacs.oneos6.yml | 32 +++++ tests/test_index_order.py | 25 +++- 62 files changed, 1440 insertions(+), 9 deletions(-) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm rename ntc_templates/templates/{oneaccess_oneos_show_running-config_ip-route.textfsm => oneaccess_oneos_show_running-config_ip_route.textfsm} (100%) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm create mode 100644 tests/oneaccess_oneos/hostname/hostname.raw create mode 100644 tests/oneaccess_oneos/hostname/hostname.yml create mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index ca7869f68c..7b8e0c9cdd 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,16 +684,21 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] -oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers -oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname +oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route +oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp +oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind +oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief +oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area +oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server -oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs -oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief -oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief -oneaccess_oneos_show_running-config_ip-route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route +oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers +oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh +oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs +oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname + paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all diff --git a/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm b/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm new file mode 100644 index 0000000000..4d8423ed1a --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm @@ -0,0 +1,12 @@ +Value Required INTERFACE (.*) +Value List HELPERS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) + +Start + ^.*:\s\d+\sbroadcasts\sforwarded -> Continue.Record + ^${INTERFACE}:\s\d+\sbroadcasts\sforwarded + ^\s*${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){1}${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){2}${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){3}${HELPERS} + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm new file mode 100644 index 0000000000..4b7eb73d48 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm @@ -0,0 +1,28 @@ +Value SSH (\S+) +Value SCP (\S+) +Value ENCR (ssh\-\S+|\S+) +Value BITS (\d+) +Value FINGERPRINT ([a-f0-9:]+) +Value MAX_SESSIONS (\d+) +Value MAX_CHANNELS_SESSION (\d+) +Value METHOD (\S+) +Value SESSION_TIMEOUT (\d+) +Value AUTH_TIMEOUT (\d+) +Value AUTH_RETRIES (\d+) + +Start + ^SSH\s${SSH} + ^SCP\sserver\s${SCP} + ^Authentication\s.ethod:?\s${METHOD} + ^Authentication\stimeout\s${AUTH_TIMEOUT}\ssecs,\sretries\s${AUTH_RETRIES} + ^Session\stimeout\s${SESSION_TIMEOUT}\ssecs + ^Maximum\snumber\sof\ssessions\s${MAX_SESSIONS} + ^Maximum\snumber\sof\schannels\sper\ssession\s${MAX_CHANNELS_SESSION} + ^Key\sfingerprint -> FINGERPRINT + ^.*$$ + ^. -> Error + +FINGERPRINT + ^${ENCR}\s${BITS}\s${FINGERPRINT}\s*$$ -> Start + ^${BITS}\sMD5:${FINGERPRINT}.*\s\(${ENCR}\)$$ -> Start + diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm new file mode 100644 index 0000000000..ba8cc4536e --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm @@ -0,0 +1,34 @@ +Value Required PROTO (ssh|telnet) +Value List INTERFACE (\S+.*\d+) +Value ACL (\S+) +Value List VRF (\S+) + +Start + ^bind\sssh\sacl\s${ACL} -> SSH + ^bind\sssh\s${INTERFACE}$$ -> SSH + ^bind\sssh\svrf\s${VRF} -> SSH + ^bind\stelnet\sacl\s${ACL} -> TELNET + ^bind\stelnet\s${INTERFACE} -> TELNET + ^bind\stelnet\svrf\s${VRF} -> TELNET + ^$$ + ^. -> Error + +SSH + # at EOF or new protocol, start a record + # not all entries (ACL, VRF) may be present + ^bind\stelnet -> Continue.Record + ^bind\stelnet\sacl\s${ACL} -> Start + ^bind\stelnet\s${INTERFACE} -> Start + ^bind\stelnet\svrf\s${VRF} -> Start + ^bind\s${PROTO}\svrf\s${VRF} + ^bind\s${PROTO}\s${INTERFACE} + +TELNET + # at EOF or new protocol, start a record + # not all entries (ACL, VRF) may be present + ^bind\sssh -> Continue.Record + ^bind\sssh\sacl\s${ACL} -> Start + ^bind\sssh\s${INTERFACE}$$ -> Start + ^bind\sssh\svrf\s${VRF} -> Start + ^bind\s${PROTO}\svrf\s${VRF} + ^bind\s${PROTO}\s${INTERFACE} diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm new file mode 100644 index 0000000000..ba982563a2 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm @@ -0,0 +1,31 @@ +Value POOL (\S+) +Value VRF (\S+) +Value DEFAULT_ROUTER (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value DOMAIN_NAME (\S+) +Value List DNS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value NETWORK (\S+\s\S+) +Value LEASE (.*) +Value EXCLUDED (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(\s\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})?) + +Start + # DHCP SCOPE records have a dhcp pool name + ^ip\sdhcp\spool\s${POOL} -> Pool + # EXCLUDE records do not have a dhcp pool name + ^ip\sdhcp\s(vrf ${VRF}\s)?excluded-address\s${EXCLUDED} -> Record + ^.*$$ + ^. -> Error + +Pool + #^ip\sdhcp\spool -> Continue.Record + ^\s+lease\s${LEASE} + #^ip\sdhcp\spool\s${POOL} + ^\s+vrf\s${VRF} + ^\s+domain-name\s+${DOMAIN_NAME} + ^\s+default-router\s${DEFAULT_ROUTER} + ^\s+dns-server\s${DNS} -> Continue + ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){1}${DNS} -> Continue + ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){2}${DNS} -> Continue + ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){3}${DNS} -> Continue + ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){4}${DNS} -> Continue + ^\s+network\s${NETWORK} + ^(exit|!) -> Record Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm similarity index 100% rename from ntc_templates/templates/oneaccess_oneos_show_running-config_ip-route.textfsm rename to ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm diff --git a/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm b/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm new file mode 100644 index 0000000000..c89f051ae4 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm @@ -0,0 +1,12 @@ +Value NAME (\S+) +Value SECURITY_NAME (\S+) +Value ACL (\S+) +Value GROUP (\S+) + +Start + ^SNMP.*community -> Continue.Record + ^SNMP\s${SECURITY_NAME}\s+community\s*:\s+${NAME}.* + ^SNMP\s\S+\s+community\s*:\s+\S+\s+v2group\s+${GROUP} + ^SNMP\saccess\scontrol\slists\s*:\s*${ACL} + ^.*$$ + ^. -> Error diff --git a/tests/oneaccess_oneos/hostname/hostname.raw b/tests/oneaccess_oneos/hostname/hostname.raw new file mode 100644 index 0000000000..7a142ee347 --- /dev/null +++ b/tests/oneaccess_oneos/hostname/hostname.raw @@ -0,0 +1 @@ +dops-lab-02 \ No newline at end of file diff --git a/tests/oneaccess_oneos/hostname/hostname.yml b/tests/oneaccess_oneos/hostname/hostname.yml new file mode 100644 index 0000000000..37fc0c4258 --- /dev/null +++ b/tests/oneaccess_oneos/hostname/hostname.yml @@ -0,0 +1,3 @@ +--- +parsed_sample: + - hostname: "dops-lab-02" diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw new file mode 100644 index 0000000000..071bec40bc --- /dev/null +++ b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw @@ -0,0 +1,15 @@ +ip forward-protocol udp 137 +ip forward-protocol udp 138 +ip forward-protocol udp 67 +ip forward-protocol udp 68 +ip forward-protocol udp 69 +ip forward-protocol udp 37 +ip forward-protocol udp 42 +ip forward-protocol udp 49 +ip forward-protocol udp 53 +Bvi 1: 0 broadcasts forwarded + 10.1.0.151 10.2.0.20 10.88.1.11 +Bvi 2: 0 broadcasts forwarded + 10.2.0.20 10.1.0.151 10.88.1.11 +Bvi 3: 0 broadcasts forwarded + 10.1.0.151 10.2.0.20 10.88.1.11 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml new file mode 100644 index 0000000000..a3ffbb14f8 --- /dev/null +++ b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml @@ -0,0 +1,17 @@ +--- +parsed_sample: + - interface: "Bvi 1" + helpers: + - "10.1.0.151" + - "10.2.0.20" + - "10.88.1.11" + - interface: "Bvi 2" + helpers: + - "10.2.0.20" + - "10.1.0.151" + - "10.88.1.11" + - interface: "Bvi 3" + helpers: + - "10.1.0.151" + - "10.2.0.20" + - "10.88.1.11" diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw new file mode 100644 index 0000000000..071bec40bc --- /dev/null +++ b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw @@ -0,0 +1,15 @@ +ip forward-protocol udp 137 +ip forward-protocol udp 138 +ip forward-protocol udp 67 +ip forward-protocol udp 68 +ip forward-protocol udp 69 +ip forward-protocol udp 37 +ip forward-protocol udp 42 +ip forward-protocol udp 49 +ip forward-protocol udp 53 +Bvi 1: 0 broadcasts forwarded + 10.1.0.151 10.2.0.20 10.88.1.11 +Bvi 2: 0 broadcasts forwarded + 10.2.0.20 10.1.0.151 10.88.1.11 +Bvi 3: 0 broadcasts forwarded + 10.1.0.151 10.2.0.20 10.88.1.11 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml new file mode 100644 index 0000000000..a3ffbb14f8 --- /dev/null +++ b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml @@ -0,0 +1,17 @@ +--- +parsed_sample: + - interface: "Bvi 1" + helpers: + - "10.1.0.151" + - "10.2.0.20" + - "10.88.1.11" + - interface: "Bvi 2" + helpers: + - "10.2.0.20" + - "10.1.0.151" + - "10.88.1.11" + - interface: "Bvi 3" + helpers: + - "10.1.0.151" + - "10.2.0.20" + - "10.88.1.11" diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw new file mode 100644 index 0000000000..9b3e4c9274 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw @@ -0,0 +1,21 @@ +Interface IP-Address OK? Status Protocol Description +GigabitEthernet 0/0 YES up up *** PBXPLUG 212 - BACKUP TEST - 94.105.1.119 *** +GigabitEthernet 0/1 YES up up *** PBXPLUG 401 - BACKUP TEST - 94.105.34.2 *** +GigabitEthernet 0/2 YES up down *IPERF* +GigabitEthernet 0/3 YES up down +FastEthernet 1/0 YES up up *** WAN INTERFACE *** +FastEthernet 1/0.1 192.168.1.2 YES up up *** management A-modem (modem ip = 192.168.1.1) *** +FastEthernet 1/0.10 YES up up *** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - Loopback503941 *** +Dialer 1 94.105.163.30 YES up up *** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - Loopback503941 +Dialer 2 NO administratively down down *** VT108085 - GS20190640686 - CI - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 *** +Dialer 3 94.104.254.138 YES up up *** DATA VDSL shared VLAN - GSID0004_MAIN - CI TEST - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 500000*** +Loopback 0 127.0.0.1 YES up up +Loopback 1 94.105.12.148 YES up up *** VT096910 - GS20170330107 *** +Loopback 777 94.107.245.249 YES up up +Bvi 10 192.168.10.1 YES up up *** VT108085 - GS20190640686 - CI ACCESS *** +Bvi 100 192.168.100.1 YES up up *** TEST MAARTEN - BACKUP SCRIPT PBXPLUG *** +Bvi 200 94.105.16.129 YES up down *IPERF* +dot11radio 0/0.1 YES up up +dot11radio 0/0.2 YES up up +Null 0 YES up up +dot11radio 0/0 YES up up \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml new file mode 100644 index 0000000000..f5d35e818e --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml @@ -0,0 +1,126 @@ +--- +parsed_sample: + - intf: "GigabitEthernet 0/0" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** PBXPLUG 212 - BACKUP TEST - 94.105.1.119 ***" + - intf: "GigabitEthernet 0/1" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** PBXPLUG 401 - BACKUP TEST - 94.105.34.2 ***" + - intf: "GigabitEthernet 0/2" + ipaddr: "" + ok: "YES" + status: "up" + proto: "down" + ifdescr: "*IPERF*" + - intf: "GigabitEthernet 0/3" + ipaddr: "" + ok: "YES" + status: "up" + proto: "down" + ifdescr: "" + - intf: "FastEthernet 1/0" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** WAN INTERFACE ***" + - intf: "FastEthernet 1/0.1" + ipaddr: "192.168.1.2" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** management A-modem (modem ip = 192.168.1.1) ***" + - intf: "FastEthernet 1/0.10" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + \ - Loopback503941 ***" + - intf: "Dialer 1" + ipaddr: "94.105.163.30" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + \ - Loopback503941" + - intf: "Dialer 2" + ipaddr: "" + ok: "NO" + status: "administratively down" + proto: "down" + ifdescr: "*** VT108085 - GS20190640686 - CI - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + \ - LOOPBACK 503899 ***" + - intf: "Dialer 3" + ipaddr: "94.104.254.138" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** DATA VDSL shared VLAN - GSID0004_MAIN - CI TEST - NOS-EMLP-01/ANT-EMLP-01\ + \ - LOOPBACK 500000***" + - intf: "Loopback 0" + ipaddr: "127.0.0.1" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" + - intf: "Loopback 1" + ipaddr: "94.105.12.148" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** VT096910 - GS20170330107 ***" + - intf: "Loopback 777" + ipaddr: "94.107.245.249" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" + - intf: "Bvi 10" + ipaddr: "192.168.10.1" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** VT108085 - GS20190640686 - CI ACCESS ***" + - intf: "Bvi 100" + ipaddr: "192.168.100.1" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "*** TEST MAARTEN - BACKUP SCRIPT PBXPLUG ***" + - intf: "Bvi 200" + ipaddr: "94.105.16.129" + ok: "YES" + status: "up" + proto: "down" + ifdescr: "*IPERF*" + - intf: "dot11radio 0/0.1" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" + - intf: "dot11radio 0/0.2" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" + - intf: "Null 0" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" + - intf: "dot11radio 0/0" + ipaddr: "" + ok: "YES" + status: "up" + proto: "up" + ifdescr: "" diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw new file mode 100644 index 0000000000..a021349e0f --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw @@ -0,0 +1,22 @@ +Interface IP-Address OK? Status Protocol Description +GigabitEthernet 0/0 94.107.208.169 Yes up down *** LAN INTERFACE *** +GigabitEthernet 0/1 20.20.20.1 Yes up up *** LAB_C891F - GigabitEthernet0 *** +GigabitEthernet 0/2 Yes up down +GigabitEthernet 0/3 10.100.1.254 Yes up up TO LBB156 +GigabitEthernet 1/0 Yes up down *** WAN INTERFACE *** +GigabitEthernet 1/0.1 Yes up down +GigabitEthernet 1/0.10 No administratively down down +GigabitEthernet 1/0.200 Yes up down * VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 * +GigabitEthernet 1/0.300 No administratively down down * VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - Loopback503210 * +Bvi 300 94.107.224.226 Yes up down +Virtual-Ethernet 1 10.94.50.22 Yes up up * Mobile access 4G - UNTRUST - CORPORATE INTERNET - 4G * +Null 0 Yes up up Null 0 +Loopback 0 Yes up up +Loopback 1 94.105.9.192 Yes up up +Loopback 21 192.4.21.238 Yes up up *** Mobile access 4G - BGP PEER LOOPBACK ANT *** +Loopback 91 192.4.91.238 Yes up up *** Mobile access 4G - BGP PEER LOOPBACK NOS *** +Tunnel 21 94.105.9.192 Yes up up GRE tunnel to ANT-IPSEC-02 - NO IPSEC +Tunnel 91 94.105.9.192 Yes up up GRE tunnel to NOS-IPSEC-02 +Dialer 1 Yes up down * VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 * +Dialer 3 No administratively down down * VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - Loopback503210 * +Dialer 32 Yes up down \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml new file mode 100644 index 0000000000..52e77de6e6 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml @@ -0,0 +1,132 @@ +--- +parsed_sample: + - intf: "GigabitEthernet 0/0" + ipaddr: "94.107.208.169" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "*** LAN INTERFACE ***" + - intf: "GigabitEthernet 0/1" + ipaddr: "20.20.20.1" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "*** LAB_C891F - GigabitEthernet0 ***" + - intf: "GigabitEthernet 0/2" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "" + - intf: "GigabitEthernet 0/3" + ipaddr: "10.100.1.254" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "TO LBB156 " + - intf: "GigabitEthernet 1/0" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "*** WAN INTERFACE ***" + - intf: "GigabitEthernet 1/0.1" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "" + - intf: "GigabitEthernet 1/0.10" + ipaddr: "" + ok: "No" + status: "administratively down" + proto: "down" + ifdescr: "" + - intf: "GigabitEthernet 1/0.200" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ + \ - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 *" + - intf: "GigabitEthernet 1/0.300" + ipaddr: "" + ok: "No" + status: "administratively down" + proto: "down" + ifdescr: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + \ - Loopback503210 *" + - intf: "Bvi 300" + ipaddr: "94.107.224.226" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "" + - intf: "Virtual-Ethernet 1" + ipaddr: "10.94.50.22" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "* Mobile access 4G - UNTRUST - CORPORATE INTERNET - 4G *" + - intf: "Null 0" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "Null 0 " + - intf: "Loopback 0" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "" + - intf: "Loopback 1" + ipaddr: "94.105.9.192" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "" + - intf: "Loopback 21" + ipaddr: "192.4.21.238" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "*** Mobile access 4G - BGP PEER LOOPBACK ANT ***" + - intf: "Loopback 91" + ipaddr: "192.4.91.238" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "*** Mobile access 4G - BGP PEER LOOPBACK NOS ***" + - intf: "Tunnel 21" + ipaddr: "94.105.9.192" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "GRE tunnel to ANT-IPSEC-02 - NO IPSEC" + - intf: "Tunnel 91" + ipaddr: "94.105.9.192" + ok: "Yes" + status: "up" + proto: "up" + ifdescr: "GRE tunnel to NOS-IPSEC-02" + - intf: "Dialer 1" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ + \ - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 *" + - intf: "Dialer 3" + ipaddr: "" + ok: "No" + status: "administratively down" + proto: "down" + ifdescr: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + \ - Loopback503210 *" + - intf: "Dialer 32" + ipaddr: "" + ok: "Yes" + status: "up" + proto: "down" + ifdescr: "" diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw new file mode 100644 index 0000000000..79a6e3aa0d --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw @@ -0,0 +1,11 @@ +SSH Enabled +Authentication timeout 30 secs, retries 3 +Session timeout 900 secs +Authentication method: all +Maximum number of sessions 5 +Maximum number of channels per session 10 +Authorized public keys: +none +Key fingerprint: +ssh-rsa 4096 bc:f8:c3:67:8f:de:f3:ec:5c:29:b5:a4:e4:25:de:7a +SCP server enabled \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml new file mode 100644 index 0000000000..a2ede5bc51 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - ssh: "Enabled" + scp: "enabled" + encr: "ssh-rsa" + bits: "4096" + fingerprint: "bc:f8:c3:67:8f:de:f3:ec:5c:29:b5:a4:e4:25:de:7a" + max_sessions: "5" + max_channels_session: "10" + method: "all" + session_timeout: "900" + auth_timeout: "30" + auth_retries: "3" diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw b/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw new file mode 100644 index 0000000000..b7f7730664 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw @@ -0,0 +1,11 @@ +SSH Enabled +Authentication timeout 30 secs, retries 3 +Session timeout 900 secs +Authentication Method all +Maximum number of sessions 5 +Maximum number of channels per session 10 +Authorized public keys: +none +Key fingerprint: +4096 MD5:5e:70:36:5a:20:93:14:18:93:04:03:df:f0:72:f4:fc root@euroshoe01-12ton-03 (RSA) +SCP server disabled diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml b/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml new file mode 100644 index 0000000000..83bf41bc09 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - ssh: "Enabled" + scp: "disabled" + encr: "RSA" + bits: "4096" + fingerprint: "5e:70:36:5a:20:93:14:18:93:04:03:df:f0:72:f4:fc" + max_sessions: "5" + max_channels_session: "10" + method: "all" + session_timeout: "900" + auth_timeout: "30" + auth_retries: "3" diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw new file mode 100644 index 0000000000..dd795cccc2 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw @@ -0,0 +1,7 @@ + VRF Name VRF Id Interfaces + MODEM 1 FastEthernet 1/0.1 + INTERNET 2 Dialer 2 + Dialer 3 + Loopback 777 + Bvi 10 + TEST 3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml new file mode 100644 index 0000000000..60a8e0587e --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml @@ -0,0 +1,16 @@ +--- +parsed_sample: + - vrf: "MODEM" + vrf_id: "1" + interfaces: + - "FastEthernet 1/0.1" + - vrf: "INTERNET" + vrf_id: "2" + interfaces: + - "Dialer 2" + - "Dialer 3" + - "Loopback 777" + - "Bvi 10" + - vrf: "TEST" + vrf_id: "3" + interfaces: [] diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw new file mode 100644 index 0000000000..a0eecf35ea --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw @@ -0,0 +1,8 @@ +AUTO_PROVISIONING_0001 5 Dialer 32 +CORPORATE_INTERNET_0001 3 GigabitEthernet 0/0 +MODEM 4 GigabitEthernet 1/0.1 +O_SWOPS_LAB_0001 6 Dialer 3 +TRUST 7 +UNTRUST 2 GigabitEthernet 0/1 + Virtual-Ethernet 1 +Yavuz 8 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml new file mode 100644 index 0000000000..6ca7c26784 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml @@ -0,0 +1,29 @@ +--- +parsed_sample: + - vrf: "AUTO_PROVISIONING_0001" + vrf_id: "5" + interfaces: + - "Dialer 32" + - vrf: "CORPORATE_INTERNET_0001" + vrf_id: "3" + interfaces: + - "GigabitEthernet 0/0" + - vrf: "MODEM" + vrf_id: "4" + interfaces: + - "GigabitEthernet 1/0.1" + - vrf: "O_SWOPS_LAB_0001" + vrf_id: "6" + interfaces: + - "Dialer 3" + - vrf: "TRUST" + vrf_id: "7" + interfaces: [] + - vrf: "UNTRUST" + vrf_id: "2" + interfaces: + - "GigabitEthernet 0/1" + - "Virtual-Ethernet 1" + - vrf: "Yavuz" + vrf_id: "8" + interfaces: [] diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw new file mode 100644 index 0000000000..57d67ab889 --- /dev/null +++ b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw @@ -0,0 +1,43 @@ ++----------------------------------------------------------------+ +| Product Info Area | ++------------------------------+---------------------------------+ +| Key | Value | ++------------------------------+---------------------------------+ +| mac0 | 70:FC:8C:07:22:CC | ++------------------------------+---------------------------------+ +| mac1 | 70:FC:8C:0B:22:CC | ++------------------------------+---------------------------------+ +| mac2 | 70:FC:8C:0F:22:CC | ++------------------------------+---------------------------------+ +| mac3 | 70:FC:8C:13:22:CC | ++------------------------------+---------------------------------+ +| mac4 | 70:FC:8C:17:22:CC | ++------------------------------+---------------------------------+ +| mac5 | 70:FC:8C:1B:22:CC | ++------------------------------+---------------------------------+ +| mac6 | 70:FC:8C:1F:22:CC | ++------------------------------+---------------------------------+ +| mac7 | 70:FC:8C:23:22:CC | ++------------------------------+---------------------------------+ +| Manufacturing File Reference | 1000 00 N 0046230A00 AH | ++------------------------------+---------------------------------+ +| Motherboard Type | MB420SAVad0UFPE0BNW | ++------------------------------+---------------------------------+ +| Manufacturing Location | TOAB | ++------------------------------+---------------------------------+ +| Manufacturing Date | 18/01/2017 | ++------------------------------+---------------------------------+ +| Serial Number | T1703006230033175 | ++------------------------------+---------------------------------+ +| Product name | LBB_140 | ++------------------------------+---------------------------------+ +| Commercial name | LBB 140 | ++------------------------------+---------------------------------+ +| Mreturn1 | | ++------------------------------+---------------------------------+ +| Mreturn2 | | ++------------------------------+---------------------------------+ +| Mreturn3 | | ++------------------------------+---------------------------------+ +| Mreturn4 | | ++------------------------------+---------------------------------+ diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml new file mode 100644 index 0000000000..b680ba7617 --- /dev/null +++ b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml @@ -0,0 +1,9 @@ +--- +parsed_sample: + - mac: "70:FC:8C:07:22:CC" + motherboard: "MB420SAVad0UFPE0BNW" + manufacturing_date: "18/01/2017" + serial: + - "T1703006230033175" + product_name: "LBB_140" + commercial_name: "LBB 140" diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw new file mode 100644 index 0000000000..60d9251a64 --- /dev/null +++ b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw @@ -0,0 +1,67 @@ ++----------------------------------------------------------------+ +| Product Info Area | ++------------------------------+---------------------------------+ +| Key | Value | ++------------------------------+---------------------------------+ +| mac0 | 70:FC:8C:12:B5:B9 | ++------------------------------+---------------------------------+ +| mac1 | 70:FC:8C:16:B5:B9 | ++------------------------------+---------------------------------+ +| mac2 | 70:FC:8C:1A:B5:B9 | ++------------------------------+---------------------------------+ +| mac3 | 70:FC:8C:1E:B5:B9 | ++------------------------------+---------------------------------+ +| mac4 | 70:FC:8C:22:B5:B9 | ++------------------------------+---------------------------------+ +| mac5 | 70:FC:8C:26:B5:B9 | ++------------------------------+---------------------------------+ +| mac6 | 70:FC:8C:2A:B5:B9 | ++------------------------------+---------------------------------+ +| mac7 | 70:FC:8C:2E:B5:B9 | ++------------------------------+---------------------------------+ +| mac8 | 70:FC:8C:12:B5:BA | ++------------------------------+---------------------------------+ +| mac9 | 70:FC:8C:16:B5:BA | ++------------------------------+---------------------------------+ +| mac10 | 70:FC:8C:1A:B5:BA | ++------------------------------+---------------------------------+ +| mac11 | 70:FC:8C:1E:B5:BA | ++------------------------------+---------------------------------+ +| mac12 | 70:FC:8C:22:B5:BA | ++------------------------------+---------------------------------+ +| mac13 | 70:FC:8C:26:B5:BA | ++------------------------------+---------------------------------+ +| mac14 | 70:FC:8C:2A:B5:BA | ++------------------------------+---------------------------------+ +| mac15 | 70:FC:8C:2E:B5:BA | ++------------------------------+---------------------------------+ +| Model revision | 1.0 | ++------------------------------+---------------------------------+ +| Manufacturing File Reference | 48554 | ++------------------------------+---------------------------------+ +| Motherboard Type | MB520 AV2aF5PWnac/a | ++------------------------------+---------------------------------+ +| PCB Revision | B | ++------------------------------+---------------------------------+ +| HW Revision | A | ++------------------------------+---------------------------------+ +| Manufacturing Location | TOAB | ++------------------------------+---------------------------------+ +| Manufacturing Date | 2021-W21 | ++------------------------------+---------------------------------+ +| Last Testing Date | 2021-06-07 | ++------------------------------+---------------------------------+ +| Serial Number | T2121008554075089 | ++------------------------------+---------------------------------+ +| Product Name | LBB_150 | ++------------------------------+---------------------------------+ +| Commercial Name | LBB 150 | ++------------------------------+---------------------------------+ +| Sales Code | 82131 | ++------------------------------+---------------------------------+ +| Mib-2 system sysObjectID | 150 | ++------------------------------+---------------------------------+ +| Software compatibility code | 0x1E | ++------------------------------+---------------------------------+ +| SCAid | LBB15X | ++------------------------------+---------------------------------+ \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml new file mode 100644 index 0000000000..a2eff3b32f --- /dev/null +++ b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml @@ -0,0 +1,9 @@ +--- +parsed_sample: + - mac: "70:FC:8C:12:B5:B9" + motherboard: "MB520 AV2aF5PWnac/a" + manufacturing_date: "2021-W21" + serial: + - "T2121008554075089" + product_name: "LBB_150" + commercial_name: "LBB 150" diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw new file mode 100644 index 0000000000..20dd4e66a3 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw @@ -0,0 +1,17 @@ +aaa group server tacacs TACGROUP +aaa authentication login default TACGROUP +aaa authentication login console TACGROUP +aaa authentication enable default TACGROUP +aaa authentication enable console TACGROUP +aaa authorization command 15 TACGROUP none +aaa authorization command 7 TACGROUP none +aaa authorization command 1 TACGROUP none +aaa authorization command 0 TACGROUP none +aaa authorization network group TACGROUP +aaa accounting exec default start-stop group TACGROUP +aaa accounting commands 15 default stop-only group TACGROUP +aaa accounting system default start-stop group TACGROUP +aaa accounting commands 7 default stop-only group TACGROUP +aaa accounting commands 1 default stop-only group TACGROUP +aaa accounting commands 0 default stop-only group TACGROUP +aaa authentication banner sequence 1 *-TACACS SERVER UNAVAILABLE-* diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml new file mode 100644 index 0000000000..c6fd0c650b --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml @@ -0,0 +1,66 @@ +--- +parsed_sample: + - aaa_protocol: "authentication" + aaa_command: "login" + aaa_config: + - "default TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "login" + aaa_config: + - "console TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "enable" + aaa_config: + - "default TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "enable" + aaa_config: + - "console TACGROUP" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "15 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "7 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "1 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "0 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "network" + aaa_config: + - "group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "exec" + aaa_config: + - "default start-stop group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "15 default stop-only group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "system" + aaa_config: + - "default start-stop group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "7 default stop-only group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "1 default stop-only group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "0 default stop-only group TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "banner" + aaa_config: + - "sequence 1 *-TACACS SERVER UNAVAILABLE-*" diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw new file mode 100644 index 0000000000..12b1ef4181 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw @@ -0,0 +1,18 @@ +aaa group server tacacs TACGROUP + server 1.2.3.4 + server 11.22.33.44 +exit +aaa authentication login default TACGROUP +aaa authentication login console TACGROUP +aaa authentication banner sequence 1 *-TACACS SERVER UNAVAILABLE-* +aaa authentication enable default TACGROUP +aaa authentication enable console TACGROUP +aaa authorization network group TACGROUP +aaa authorization command 1 TACGROUP none +aaa authorization command 7 TACGROUP none +aaa authorization command 15 TACGROUP none +aaa accounting exec default start-stop group TACGROUP +aaa accounting system default start-stop group TACGROUP +aaa accounting commands 1 default stop-only group TACGROUP +aaa accounting commands 7 default stop-only group TACGROUP +aaa accounting commands 15 default stop-only group TACGROUP diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml new file mode 100644 index 0000000000..8bc5780e4d --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml @@ -0,0 +1,58 @@ +--- +parsed_sample: + - aaa_protocol: "authentication" + aaa_command: "login" + aaa_config: + - "default TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "login" + aaa_config: + - "console TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "banner" + aaa_config: + - "sequence 1 *-TACACS SERVER UNAVAILABLE-*" + - aaa_protocol: "authentication" + aaa_command: "enable" + aaa_config: + - "default TACGROUP" + - aaa_protocol: "authentication" + aaa_command: "enable" + aaa_config: + - "console TACGROUP" + - aaa_protocol: "authorization" + aaa_command: "network" + aaa_config: + - "group TACGROUP" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "1 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "7 TACGROUP none" + - aaa_protocol: "authorization" + aaa_command: "command" + aaa_config: + - "15 TACGROUP none" + - aaa_protocol: "accounting" + aaa_command: "exec" + aaa_config: + - "default start-stop group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "system" + aaa_config: + - "default start-stop group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "1 default stop-only group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "7 default stop-only group TACGROUP" + - aaa_protocol: "accounting" + aaa_command: "commands" + aaa_config: + - "15 default stop-only group TACGROUP" diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw new file mode 100644 index 0000000000..db2b964095 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw @@ -0,0 +1,18 @@ +bind ssh acl MANAGEMENT_IN_SSH +bind ssh loopback 1 +bind ssh loopback 21 +bind ssh loopback 91 +bind ssh tunnel 21 +bind ssh tunnel 91 +bind ssh virtual-ethernet 1 +bind ssh vrf UNTRUST-SSH +bind ssh vrf default-router +bind telnet acl MANAGEMENT_IN_TELNET +bind telnet loopback 1 +bind telnet loopback 21 +bind telnet loopback 91 +bind telnet tunnel 21 +bind telnet tunnel 91 +bind telnet virtual-ethernet 1 +bind telnet vrf UNTRUST-TELNET +bind telnet vrf default-router diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml new file mode 100644 index 0000000000..8765c7db71 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - proto: "ssh" + interface: + - "loopback 1" + - "loopback 21" + - "loopback 91" + - "tunnel 21" + - "tunnel 91" + - "virtual-ethernet 1" + acl: "MANAGEMENT_IN_SSH" + vrf: + - "UNTRUST-SSH" + - "default-router" + - proto: "telnet" + interface: + - "loopback 1" + - "loopback 21" + - "loopback 91" + - "tunnel 21" + - "tunnel 91" + - "virtual-ethernet 1" + acl: "MANAGEMENT_IN_TELNET" + vrf: + - "UNTRUST-TELNET" + - "default-router" diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw new file mode 100644 index 0000000000..513008fd8a --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw @@ -0,0 +1,8 @@ +bind ssh acl MANAGEMENT_IN +bind ssh gigabitethernet 1/0.300 +bind ssh loopback 1 +bind ssh vrf default-router +bind telnet acl MANAGEMENT_IN +bind telnet gigabitethernet 1/0.300 +bind telnet loopback 1 +bind telnet vrf default-router diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml new file mode 100644 index 0000000000..a50a292a13 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml @@ -0,0 +1,16 @@ +--- +parsed_sample: + - proto: "ssh" + interface: + - "gigabitethernet 1/0.300" + - "loopback 1" + acl: "MANAGEMENT_IN" + vrf: + - "default-router" + - proto: "telnet" + interface: + - "gigabitethernet 1/0.300" + - "loopback 1" + acl: "MANAGEMENT_IN" + vrf: + - "default-router" diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw new file mode 100644 index 0000000000..aa6ed87a24 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw @@ -0,0 +1,40 @@ +ip dhcp vrf INTERNET excluded-address 192.168.10.1 +ip dhcp pool DHCP_LBB + vrf INTERNET + lease 0 8 0 +default-router 192.168.10.1 +dns-server 212.224.255.252 212.224.255.254 +network 192.168.10.0 255.255.255.0 +exit +ip dhcp pool OrangeShopWifi-VLAN20 +lease 0 8 0 +domain-name OrangeShopWifi +default-router 10.32.60.1 +dns-server 212.224.129.90 212.224.129.94 +network 10.32.60.0 255.255.255.0 +exit +ip dhcp pool OrangeShopDigitalSignage-VLAN30 +lease 0 8 0 +default-router 10.42.60.1 +domain-name OrangeShopDigitalSignage +dns-server 212.224.129.90 212.224.129.94 +network 10.42.60.0 255.255.255.0 +exit +ip dhcp pool OrangeShopSecurity-VLAN40 +lease 0 8 0 +default-router 10.52.60.1 +domain-name OrangeShopSecurity +dns-server 212.224.129.90 212.224.129.94 +network 10.52.60.0 255.255.255.0 +exit +ip dhcp pool TEST-MAARTEN +dns-server 10.200.19.4 10.200.19.5 +exit +ip dhcp pool TEST-FEDERALE-WOUTER +dns-server 10.20.25.6 10.0.1.228 172.20.64.13 +domain-name federale.be +exit +ip dhcp pool TEST1 +dns-server 1.1.1.1 192.168.50.20 192.168.50.30 2.2.2.2 3.3.3.3 +exit +! diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml new file mode 100644 index 0000000000..5963accffd --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml @@ -0,0 +1,66 @@ +--- +parsed_sample: + - pool: "" + vrf: "INTERNET" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "192.168.10.1" + - pool: "DHCP_LBB" + vrf: "INTERNET" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "0 8 0" + excluded: "" + - pool: "OrangeShopWifi-VLAN20" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" + - pool: "OrangeShopDigitalSignage-VLAN30" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" + - pool: "OrangeShopSecurity-VLAN40" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" + - pool: "TEST-MAARTEN" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" + - pool: "TEST-FEDERALE-WOUTER" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" + - pool: "TEST1" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw new file mode 100644 index 0000000000..e6a209654c --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw @@ -0,0 +1,8 @@ +ip dhcp excluded-address 192.168.202.1 +ip dhcp pool POOL + default-router 192.168.202.1 + dns-server 212.224.255.252 212.224.255.254 + lease 0 8 0 + netmask 255.255.255.0 + network 192.168.202.0 255.255.255.0 +exit diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml new file mode 100644 index 0000000000..d398c4f66f --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml @@ -0,0 +1,20 @@ +--- +parsed_sample: + - pool: "" + vrf: "" + default_router: "" + domain_name: "" + dns: [] + network: "" + lease: "" + excluded: "192.168.202.1" + - pool: "POOL" + vrf: "" + default_router: "192.168.202.1" + domain_name: "" + dns: + - "212.224.255.252" + - "212.224.255.254" + network: "192.168.202.0 255.255.255.0" + lease: "0 8 0" + excluded: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw new file mode 100644 index 0000000000..c3e027b8ac --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw @@ -0,0 +1,3 @@ +ip route 94.105.1.119 255.255.255.255 192.168.100.2 +ip route 94.105.16.130 255.255.255.255 Bvi 200 +ip route 94.105.34.2 255.255.255.255 192.168.100.3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml new file mode 100644 index 0000000000..fed65aec64 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml @@ -0,0 +1,14 @@ +--- +parsed_sample: + - network: "94.105.1.119" + mask: "255.255.255.255" + nexthop_ip: "192.168.100.2" + nexthop_if: "" + - network: "94.105.16.130" + mask: "255.255.255.255" + nexthop_ip: "" + nexthop_if: "Bvi 200" + - network: "94.105.34.2" + mask: "255.255.255.255" + nexthop_ip: "192.168.100.3" + nexthop_if: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw new file mode 100644 index 0000000000..c3e027b8ac --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw @@ -0,0 +1,3 @@ +ip route 94.105.1.119 255.255.255.255 192.168.100.2 +ip route 94.105.16.130 255.255.255.255 Bvi 200 +ip route 94.105.34.2 255.255.255.255 192.168.100.3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml new file mode 100644 index 0000000000..fed65aec64 --- /dev/null +++ b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml @@ -0,0 +1,14 @@ +--- +parsed_sample: + - network: "94.105.1.119" + mask: "255.255.255.255" + nexthop_ip: "192.168.100.2" + nexthop_if: "" + - network: "94.105.16.130" + mask: "255.255.255.255" + nexthop_ip: "" + nexthop_if: "Bvi 200" + - network: "94.105.34.2" + mask: "255.255.255.255" + nexthop_ip: "192.168.100.3" + nexthop_if: "" diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw new file mode 100644 index 0000000000..63c6607891 --- /dev/null +++ b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw @@ -0,0 +1,4 @@ +SNMP write community: Kl3t5k0p +SNMP access control lists :52 +SNMP read community: 5pr1t5 +SNMP access control lists :52 diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml new file mode 100644 index 0000000000..b528f5e3b7 --- /dev/null +++ b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml @@ -0,0 +1,10 @@ +--- +parsed_sample: + - name: "Kl3t5k0p" + security_name: "write" + acl: "52" + group: "" + - name: "5pr1t5" + security_name: "read" + acl: "52" + group: "" diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw new file mode 100644 index 0000000000..ca63c78a02 --- /dev/null +++ b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw @@ -0,0 +1,6 @@ +SNMP write community: Kl3t5k0p +SNMP access control lists : 52 +SNMP read community: 5pr1t5 +SNMP access control lists : 52 +SNMP read community: R3dCr055 +SNMP access control lists : 5 diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml new file mode 100644 index 0000000000..9646a0f1b6 --- /dev/null +++ b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml @@ -0,0 +1,14 @@ +--- +parsed_sample: + - name: "Kl3t5k0p" + security_name: "write" + acl: "52" + group: "" + - name: "5pr1t5" + security_name: "read" + acl: "52" + group: "" + - name: "R3dCr055" + security_name: "read" + acl: "5" + group: "" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw new file mode 100644 index 0000000000..1ece4d0c77 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw @@ -0,0 +1,22 @@ +System Information for device MB420SAVad0UFPE0BNW S/N T1703006230033175 + +Software version : ONEOS16-MONO_FT-V5.2R2E7_HA8 +Software created on : 04/08/20 18:14:48 +License token : None +Boot version : BOOT16-SEC-V3.4R3E40C +Boot created on : 14/06/16 09:34:31 + +Boot Flags : 0x00000008 + +Current system time : 29/09/22 13:41:52 +System started : 02/07/22 16:20:10 +Start caused by : Power Fail detection +Sys Up time : 88d 21h 21m 42s +System clock ticks : 384072819 + +Current CPU load : 16.1% +Current Critical Tasks CPU load : 14.4% +Current Non Critical Tasks CPU load : 1.7% +Average CPU load (5 / 60 Minutes) : 15.8% / 15.6% + +Free / Max RAM : 163,04 / 208,59 MB \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml new file mode 100644 index 0000000000..ee6e167520 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml @@ -0,0 +1,18 @@ +--- +parsed_sample: + - serial: + - "T1703006230033175" + deviceid: "MB420SAVad0UFPE0BNW" + software: "ONEOS16-MONO_FT-V5.2R2E7_HA8" + boot_version: "BOOT16-SEC-V3.4R3E40C" + recovery_version: "" + boot_flags: "0x00000008" + system_time: "29/09/22 13:41:52" + restarted: "02/07/22 16:20:10" + reload_reason: "Power Fail detection" + uptime: "88d 21h 21m 42s" + uptime_seconds: "42" + uptime_minutes: "21" + uptime_hours: "21" + uptime_days: "88" + version: "5" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw new file mode 100644 index 0000000000..84f739fd3a --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw @@ -0,0 +1,17 @@ +System Information for device LBB_150 S/N T2121008554075089 + +Software version : OneOS-pCPE-ARM_pi1-6.6.1m3 +Software created on : 2021-03-26 11:13:54 +Boot version : BOOT-ARM_hw1-3.1.3 +Boot created on : 2019-05-27 11:11:55 +Recovery version : OneOs-RCY-ARM_pi1-1.3.4 +Recovery created on : 2019-05-21 11:16:59 + +Current system time : 2022-09-29 15:54:19+0200 +System started : 2022-09-22 06:24:19+0200 +Start caused by : Software requested / System defense - reboot after crash +Sys Up time : 7d 9h 30m 0s + +Core Type last sec last min last hour last day last 72 hours + 0 control 61.0 % 4.0 % 0.0 % 0.0 % 0.0 % + 1 forwarding 0.0 % 0.0 % 0.0 % 0.0 % 0.0 % \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml new file mode 100644 index 0000000000..53f3e1ef3b --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml @@ -0,0 +1,18 @@ +--- +parsed_sample: + - serial: + - "T2121008554075089" + deviceid: "LBB_150" + software: "OneOS-pCPE-ARM_pi1-6.6.1m3" + boot_version: "BOOT-ARM_hw1-3.1.3" + recovery_version: "OneOs-RCY-ARM_pi1-1.3.4" + boot_flags: "" + system_time: "2022-09-29 15:54:19+0200" + restarted: "2022-09-22 06:24:19+0200" + reload_reason: "Software requested / System defense - reboot after crash" + uptime: "7d 9h 30m 0s" + uptime_seconds: "0" + uptime_minutes: "30" + uptime_hours: "9" + uptime_days: "7" + version: "6" diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw new file mode 100644 index 0000000000..c8f602a60a --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw @@ -0,0 +1,6 @@ +----- List of TACACS+ server ----- + + IP address Port Secret Key Source address VRF + 1.1.1.1 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 + 2.2.2.2 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 + 3.3.3.3 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml new file mode 100644 index 0000000000..8c6c30db67 --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml @@ -0,0 +1,17 @@ +--- +parsed_sample: + - tacacs_server: "1.1.1.1" + server_port: "49" + secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" + source: "Loopback 1" + vrf: "" + - tacacs_server: "2.2.2.2" + server_port: "49" + secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" + source: "Loopback 1" + vrf: "" + - tacacs_server: "3.3.3.3" + server_port: "49" + secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" + source: "Loopback 1" + vrf: "" diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw new file mode 100644 index 0000000000..7748effd04 --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw @@ -0,0 +1,8 @@ + IP address Port number Secret Key Interface VRF + ----------------------------------- + +1.1.1.1 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router + +2.2.2.2 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router + +3.3.3.3 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml new file mode 100644 index 0000000000..1002b8ba05 --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml @@ -0,0 +1,17 @@ +--- +parsed_sample: + - tacacs_server: "1.1.1.1" + server_port: "49" + secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" + source: "loopback 1" + vrf: "" + - tacacs_server: "2.2.2.2" + server_port: "49" + secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" + source: "loopback 1" + vrf: "" + - tacacs_server: "3.3.3.3" + server_port: "49" + secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" + source: "loopback 1" + vrf: "" diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw new file mode 100644 index 0000000000..6e1278c57a --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw @@ -0,0 +1,35 @@ + TACACS+ SERVER Statistics + -------------------------- + Tacacs+ Server Address : 91.208.220.142 + Server port : 49 + Number of sockets open : 14196 + Number of sockets closed : 13677 + Number of sockets aborted : 0 + Number of sockets error : 0 + Number of sockets timeout : 0 + Number of connect fails : 4 + Number of packets sent : 14590 + Number of packets received : 14590 + + Tacacs+ Server Address : 1.2.3.4 + Server port : 49 + Number of sockets open : 5124 + Number of sockets closed : 4933 + Number of sockets aborted : 0 + Number of sockets error : 0 + Number of sockets timeout : 0 + Number of connect fails : 0 + Number of packets sent : 5264 + Number of packets received : 5264 + + Tacacs+ Server Address : 11.22.33.44 + Server port : 49 + Number of sockets open : 126 + Number of sockets closed : 119 + Number of sockets aborted : 0 + Number of sockets error : 0 + Number of sockets timeout : 0 + Number of connect fails : 21 + Number of packets sent : 105 + Number of packets received : 105 + diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml new file mode 100644 index 0000000000..180485d1fc --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml @@ -0,0 +1,32 @@ +--- +parsed_sample: + - tacacs_server: "91.208.220.142" + server_port: "49" + socket_opens: "14196" + socket_closes: "13677" + socket_aborts: "0" + socket_errors: "0" + socket_timeouts: "0" + failed_connections: "4" + packets_sent: "14590" + packet_received: "14590" + - tacacs_server: "1.2.3.4" + server_port: "49" + socket_opens: "5124" + socket_closes: "4933" + socket_aborts: "0" + socket_errors: "0" + socket_timeouts: "0" + failed_connections: "0" + packets_sent: "5264" + packet_received: "5264" + - tacacs_server: "11.22.33.44" + server_port: "49" + socket_opens: "126" + socket_closes: "119" + socket_aborts: "0" + socket_errors: "0" + socket_timeouts: "0" + failed_connections: "21" + packets_sent: "105" + packet_received: "105" diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw new file mode 100644 index 0000000000..13e9b6e069 --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw @@ -0,0 +1,34 @@ + TACACS+ SERVER Statistics +-------------------------- + Tacacs+ Server Address : 1.1.1.1 + Server port : 49 + Number of sockets open : 73 + Number of sockets closed : 73 + Number of sockets aborted : 0 + Number of sockets error : 8 + Number of sockets timeout : 0 + Number of connect fails : 40 + Number of packets sent : 55 + Number of packets received : 70 + + Tacacs+ Server Address : 2.2.2.2 + Server port : 49 + Number of sockets open : 88 + Number of sockets closed : 88 + Number of sockets aborted : 0 + Number of sockets error : 3 + Number of sockets timeout : 0 + Number of connect fails : 0 + Number of packets sent : 88 + Number of packets received : 97 + + Tacacs+ Server Address : 3.3.3.3 + Server port : 49 + Number of sockets open : 38 + Number of sockets closed : 38 + Number of sockets aborted : 0 + Number of sockets error : 0 + Number of sockets timeout : 0 + Number of connect fails : 0 + Number of packets sent : 38 + Number of packets received : 38 diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml new file mode 100644 index 0000000000..a2c8e1362f --- /dev/null +++ b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml @@ -0,0 +1,32 @@ +--- +parsed_sample: + - tacacs_server: "1.1.1.1" + server_port: "49" + socket_opens: "73" + socket_closes: "73" + socket_aborts: "0" + socket_errors: "8" + socket_timeouts: "0" + failed_connections: "40" + packets_sent: "55" + packet_received: "70" + - tacacs_server: "2.2.2.2" + server_port: "49" + socket_opens: "88" + socket_closes: "88" + socket_aborts: "0" + socket_errors: "3" + socket_timeouts: "0" + failed_connections: "0" + packets_sent: "88" + packet_received: "97" + - tacacs_server: "3.3.3.3" + server_port: "49" + socket_opens: "38" + socket_closes: "38" + socket_aborts: "0" + socket_errors: "0" + socket_timeouts: "0" + failed_connections: "0" + packets_sent: "38" + packet_received: "38" diff --git a/tests/test_index_order.py b/tests/test_index_order.py index d56af453fb..91d249261d 100755 --- a/tests/test_index_order.py +++ b/tests/test_index_order.py @@ -53,6 +53,7 @@ "juniper", "linux", "mikrotik_routeros", + "oneaccess_oneos", "ovs_linux", "paloalto_panos", "quanta_mesh", @@ -71,7 +72,14 @@ def check_order( # pylint: disable=too-many-arguments,too-many-arguments,too-many-return-statements - current_os, prior_os, cmd_len, prior_len, os_choices, used_os, cmd, prior_cmd + current_os, + prior_os, + cmd_len, + prior_len, + os_choices, + used_os, + cmd, + prior_cmd, ): """Enforcing the complex logic to ensure that the index file is ordered correctly.""" add_os_check = [] @@ -94,7 +102,11 @@ def check_order( # pylint: disable=too-many-arguments,too-many-arguments,too-ma if not prior_os and prior_len == 0: # Starting Point return True, "" - if current_os == prior_os and cmd_len == prior_len and cmd == min(prior_cmd, cmd): + if ( + current_os == prior_os + and cmd_len == prior_len + and cmd == min(prior_cmd, cmd) + ): msg = f"OS is the same and command same length, please set {cmd} before {prior_cmd} to be in alphabetical order" return False, msg if current_os == prior_os and cmd_len <= prior_len: @@ -128,7 +140,14 @@ def test_index_ordering(): cmd = template[cmd_start_index:] cmd_len = len(cmd) check_val, check_msg = check_order( - current_os, prior_os, cmd_len, prior_len, OS_CHOICES, used_os, cmd, prior_cmd + current_os, + prior_os, + cmd_len, + prior_len, + OS_CHOICES, + used_os, + cmd, + prior_cmd, ) if not check_val: # assertFalse(check_val, msg=check_msg) From 3d6d795a81f13e47d8a0b374f10d893554263e2d Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 16 Dec 2022 23:07:15 +0100 Subject: [PATCH 03/31] add oneaccess_oneos templates --- ntc_templates/templates/index | 7 + ..._oneos_show_cellular-radio_context.textfsm | 60 ++ ...neos_show_cellular-radio_equipment.textfsm | 36 + ..._oneos_show_cellular-radio_network.textfsm | 39 + ...eaccess_oneos_show_ip_access-lists.textfsm | 56 ++ ..._oneos_show_ip_as-path-access-list.textfsm | 13 + ...neaccess_oneos_show_ip_prefix-list.textfsm | 17 + .../oneaccess_oneos_show_route-map.textfsm | 12 + .../show_cellular-radio_context.oneos6.raw | 41 + .../show_cellular-radio_context.oneos6.yml | 22 + .../show_cellular-radio_equipment.oneos5.raw | 14 + .../show_cellular-radio_equipment.oneos5.yml | 11 + .../show_cellular-radio_equipment.oneos6.raw | 14 + .../show_cellular-radio_equipment.oneos6.yml | 11 + .../show_cellular-radio_context.oneos5.raw | 23 + .../show_cellular-radio_context.oneos5.yml | 19 + .../show_cellular-radio_context.oneos6.raw | 22 + .../show_cellular-radio_context.oneos6.yml | 19 + .../show_ip_access-lists.oneos5.raw | 32 + .../show_ip_access-lists.oneos5.yml | 578 +++++++++++++ .../show_ip_access-lists.oneos6.raw | 42 + .../show_ip_access-lists.oneos6.yml | 770 ++++++++++++++++++ .../show_ip_as-path-access-list.oneos5.raw | 2 + .../show_ip_as-path-access-list.oneos5.yml | 5 + .../show_ip_as-path-access-list.oneos6.raw | 2 + .../show_ip_as-path-access-list.oneos6.yml | 5 + .../show_ip_prefix-list.oneos5.raw | 15 + .../show_ip_prefix-list.oneos5.yml | 83 ++ .../show_ip_prefix-list.oneos6.raw | 15 + .../show_ip_prefix-list.oneos6.yml | 83 ++ .../show_route-map/show_route-map.oneos5.raw | 19 + .../show_route-map/show_route-map.oneos5.yml | 33 + .../show_route-map/show_route-map.oneos6.raw | 17 + .../show_route-map/show_route-map.oneos6.yml | 31 + 34 files changed, 2168 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm create mode 100644 tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 7b8e0c9cdd..d4f4c94a5d 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,16 +684,23 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] +oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route +oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] context +oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network +oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area +oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] +oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief +oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm new file mode 100644 index 0000000000..3c2a37ef51 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm @@ -0,0 +1,60 @@ +Value Required CONTEXT (\d+) +Value CONTROLLER (\d+) +Value INTERFACE (Virtual\-Ethernet\s\S+) +Value CELLULAR_PROFILE (\d+) +Value BEARER_TECHNOLOGY (\S+) +Value IPV4_ADDRESS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value IPV4_SUBNET (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value IPV4_GW (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value IPV4_DNS1 (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value IPV4_DNS2 (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) +Value DATA_CONN (\S+) +Value LASTCALL_END_REASON (.*) +Value TX_PACKETS (\d+) +Value RX_PACKETS (\d+) +Value TX_PACKET_ERRORS (\d+) +Value RX_PACKET_ERRORS (\d+) +Value TX_PACKET_OVERFLOW (\d+) +Value RX_PACKET_OVERFLOW (\d+) +Value TX_BYTES (\d+) +Value RX_BYTES (\d+) + +Start + ^\s*Context -> Continue.Record + ^\s*Context\s${CONTEXT} -> CONTEXT + ^.*$$ + ^. -> Error + +CONTEXT + ^\s+Cellular\scontroller:\s${CONTROLLER} + ^\s+Interface\s*:\s*${INTERFACE}, + ^\s+Cellular\sprofile\s*:\s*${CELLULAR_PROFILE} + ^\s+Data\sbearer\stechnology\s*:\s*${BEARER_TECHNOLOGY} + ^\s+Ipv4\sconnection -> IPV4 + ^\s+Ipv6\sconnection -> IPV6 + ^$$ + ^.*$$ + +IPV4 + ^\s+Address\s*:\s*${IPV4_ADDRESS} + ^\s+Subnet\s*:\s*${IPV4_SUBNET} + ^\s+Gateway\s*:\s*${IPV4_GW} + ^\s+Primary\sDns\s*:\s*${IPV4_DNS1} + ^\s+Secondary\sDns\s*:\s*${IPV4_DNS2} + ^\s+Packet\sdata\sconnection\s*:\s*${DATA_CONN} + ^\s+Last\scall\send\sreason\s*:\s*${LASTCALL_END_REASON} + ^\s+Tx\spackets\s*:\s*${TX_PACKETS} + ^\s+Rx\spackets\s*:\s*${RX_PACKETS} + ^\s+Tx\spacket\serrors\s*:\s*${TX_PACKET_ERRORS} + ^\s+Rx\spacket\serrors\s*:\s*${RX_PACKET_ERRORS} + ^\s+Tx\spacket\soverflows\s*:\s*${TX_PACKET_OVERFLOW} + ^\s+Rx\spacket\soverflows\s*:\s*${RX_PACKET_OVERFLOW} + ^\s+Tx\sbytes\s*:\s*${TX_BYTES} + ^\s+Rx\sbytes\s*:\s*${RX_BYTES} + ^$$ -> CONTEXT + ^.*$$ + +IPV6 + ^$$ -> CONTEXT + ^.*$$ + diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm new file mode 100644 index 0000000000..8cf76c182c --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm @@ -0,0 +1,36 @@ +Value Required MANUFACTURER (.*) +Value EQUIPMENT (.*) +Value BOOT_REVISION (.*) +Value IMEI (\d+) +Value SIM1_STATUS (present|not present) +Value SIM2_STATUS (present|not present) +Value IMSI (\d+) +Value CARD_ID (\d+) +Value PIN_STATUS (.*[^\s]) + + +Start + ^\s*Cellular\sRadio\sModem\sInformation -> Record + ^\s*Manufacturer\sidentification\s*:\s*${MANUFACTURER} + ^\s*Equipment\sinformation\s*:\s*${EQUIPMENT} + ^\s*Revision\sidentification\s*:\s*${BOOT_REVISION} + ^\s*Equipment\sinformation\s\(IMEI\)\s*:\s*${IMEI} + ^\s*SIM\scard\sstatus\s*:\s*SIM( card)?( is)?\s${SIM1_STATUS} -> Oneos5 + ^\s*SIM\scard\sslot\s1\s*:\s*SIM( card)?( is)?\s${SIM1_STATUS} -> Oneos6 + ^.*$$ + ^. -> Error + +Oneos5 + ^.*IMSI\s*:\s+${IMSI} + ^\s*Integrated\sCircuit\sCard\sID\s*:\s+${CARD_ID} + ^\s*PIN\scode\sstatus\s*:\s+${PIN_STATUS} + ^.*$$ + ^. -> Error + +Oneos6 + ^\s*SIM\scard\sslot\s2\s*:\s*SIM( card)?( is)?\s${SIM2_STATUS} + ^.*IMSI\s*:\s+${IMSI} + ^\s*Integrated\sCircuit\sCard\sID\s*:\s+${CARD_ID} + ^.*$$ + ^. -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm new file mode 100644 index 0000000000..33a4a4fdc4 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm @@ -0,0 +1,39 @@ +Value Required OPERATOR (.*) +Value SIGNAL_STRENGTH (.*) +Value RSSI (\S+) +Value RSRQ (\S+) +Value RSRP (\S+) +Value SNR (\S+) +Value RADIO_TECHNOLOGY (\S+) +Value REGISTER_STATE (\S+) +Value ATTACH_STATE (\S+) +Value RESETS_LOSS_REGISTRATIONS (\d+) +Value RESETS_FAILED_REGISTRATIONS (\d+) +Value RESETS_MODEM (\d+) +Value RESETS_UNKNOWN (\d+) +Value LAC (.*) +Value CELL_ID (\d+) +Value TAC (\d+) +Value PLMN (\d+) + +Start + ^\s*Current\sselected\soperator\s+:\s+${OPERATOR} + ^\s*Signal\sstrength\s+:\s+${SIGNAL_STRENGTH} + ^\s*RSSI\s+:\s+${RSSI} + ^\s*RSRQ\s+:\s+${RSRQ} + ^\s*RSRP\s+:\s+${RSRP} + ^\s*SNR\s+:\s+${SNR} + ^\s*Current\sradio\saccess\stechnology\s+:\s+${RADIO_TECHNOLOGY} + ^\s*Circuit-switched\sregister\sstate\s+:\s+${REGISTER_STATE} + ^\s*Packet-switched\sattach\sstate\s+:\s+${ATTACH_STATE} + ^\s*Reset\son\sloss\sof\sGPRS\sregistration\s+:\s+${RESETS_LOSS_REGISTRATIONS} + ^\s*Reset\son\sfailed\sinitial\sregistration\s+:\s+${RESETS_FAILED_REGISTRATIONS} + ^\s*Hardware\sreset\sof\smodem\s+:\s+${RESETS_MODEM} + ^\s*Unknown\sreset\sof\smodem\s+:\s+${RESETS_UNKNOWN} + ^\s*.*\(LAC\)\s+:\s+${LAC} + ^\s*Cell\sID\s+:\s+${CELL_ID} + ^\s*.*\(TAC\)\s+:\s+${TAC} + ^.*Public Land Mobile Network.*:\s+${PLMN} + ^.*$$ + ^. -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm new file mode 100644 index 0000000000..8560159abb --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm @@ -0,0 +1,56 @@ +Value Required,Filldown ACL_TYPE (standard|extended) +Value Required,Filldown ACL_NAME (\S+) +Value LINE_NUM (\d+) +Value ACTION (permit|deny) +Value PROTOCOL (\S+) +Value PROTOCOL_NR (\d+) +Value SRC_HOST (\d+\.\d+\.\d+\.\d+) +Value SRC_ANY (any) +Value SRC_NETWORK (\d+\.\d+\.\d+\.\d+) +Value SRC_WILDCARD (\d+\.\d+\.\d+\.\d+) +#Value SRC_NETWORK_OBJECT_GROUP_NAME (\S+) +Value SRC_PORT_MATCH (eq|neq|precedence|range|tos|lt|gt) +Value SRC_PORT (\d+|[a-z]+) +Value SRC_PORT_RANGE_START ((?<=range\s)\S+) +Value SRC_PORT_RANGE_END (\S+) +Value DST_HOST (\d+\.\d+\.\d+\.\d+) +Value DST_ANY (any) +Value DST_NETWORK (\d+\.\d+\.\d+\.\d+) +Value DST_WILDCARD (\d+\.\d+\.\d+\.\d+) +#Value DST_NETWORK_OBJECT_GROUP_NAME (\S+) +Value DST_PORT_MATCH (eq|neq|precedence|range|tos|lt|gt) +Value DST_PORT (\d+|[a-z]+) +Value DST_PORT_RANGE_START ((?<=range\s)\S+) +Value DST_PORT_RANGE_END (\S+) +#Value SERVICE_OBJECT_GROUP_NAME (\S+) +#Value FLAGS_MATCH (match-all|match-any) +#Value TCP_FLAG (((\+|-|)ack(\s*?)|(\+|-|)established(\s*?)|(\+|-|)fin(\s*?)|(\+|-|)fragments(\s*?)|(\+|-|)psh(\s*?)|(\+|-|)rst(\s*?)|(\+|-|)syn(\s*?)|urg(\s*?))+) +Value LOG (log) +#Value LOG_TAG (\S+) +#Value ICMP_TYPE (administratively-prohibited|echo|echo-reply|mask-request|packet-too-big|parameter-problem|port-unreachable|redirect|router-advertisement|router-solicitation|time-exceeded|ttl-exceeded|unreachable) +#Value TIME (\S+) +#Value STATE (inactive|active) +Value MATCHES (\d+) + +Start + ^ip\saccess-list\s(standard|extended) -> Continue.Clearall + ^ip\saccess-list\s${ACL_TYPE}\s${ACL_NAME}\s* -> Record ONEOS6 + ^IP\saccess\slist\s(standard|extended) -> Continue.Clearall + ^IP\saccess\slist\s${ACL_TYPE}\s${ACL_NAME}\s* -> Record ONEOS5 + ^interface.* + ^For info on.* + ^\s*$$ + ^.* -> Error "Could not parse line:" + +ONEOS6 + ^\s+${LINE_NUM}\s+${ACTION}(?:\s+${PROTOCOL})?\s+(?:${PROTOCOL_NR}\s)?${SRC_NETWORK}\s+${SRC_WILDCARD}(${SRC_PORT}|)(\s+${DST_NETWORK}\s+${DST_WILDCARD}|)(\s+${DST_PORT}|)(\s+${LOG}|)(?:\s+\(${MATCHES}\s+matches\)|)\s* -> Record + ^\s*$$ -> Start + ^.* -> Error "Could not parse line:" + +ONEOS5 + ^${ACTION}\s+(${PROTOCOL}\s+|)(host\s+${SRC_HOST}|${SRC_ANY}|${SRC_NETWORK}\s+${SRC_WILDCARD})(\s+${SRC_PORT_MATCH}\s+|)(${SRC_PORT_RANGE_START}\s+${SRC_PORT_RANGE_END}|${SRC_PORT}|)\s+(host\s+${DST_HOST}|${DST_ANY}|${DST_NETWORK}\s+${DST_WILDCARD})(\s+${DST_PORT_MATCH}\s+(${DST_PORT_RANGE_START}\s+${DST_PORT_RANGE_END}|${DST_PORT}|)|)(\s+${LOG}|)(?:\s+\(${MATCHES}\s+matches\)|) -> Record + ^\s*$$ -> Start + ^.* -> Error "Could not parse line:" + +EOF + diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm new file mode 100644 index 0000000000..e027a430ec --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm @@ -0,0 +1,13 @@ +Value Required NAME (\S+) +Value Required,List ENTRIES (.*) + +Start + ^AS\spath\saccess\slist\s${NAME}$$ -> ASPATH + ^.+ -> Error + +ASPATH + ^[\s\t]+${ENTRIES}.* + ^\s+$$ -> Record Start + ^AS\spath -> Continue.Record + ^AS\spath\saccess\slist\s${NAME}$$ -> ASPATH + ^.+ -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm new file mode 100644 index 0000000000..d089337c53 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm @@ -0,0 +1,17 @@ +Value Required,Filldown PROTCOL (\S+) +Value Required,Filldown NAME (\S+) +Value Filldown DESCRIPTION (.*) +Value Required SEQ (\d+) +Value ACTION (\S+) +Value NETWORK ([0-9a-f:\.]+|any) +Value NETMASK (\d+) +Value LE (\d+) +Value GE (\d+) + +Start + ^${PROTCOL}:\sip\s+prefix-list\s+${NAME} + ^\s+Description:\s${DESCRIPTION} + ^\s+seq\s+${SEQ}\s+${ACTION}\s+${NETWORK}(/${NETMASK}|)(?:\s+ge\s+${GE}|)(?:\s+le\s+${LE}|)\s*$$ -> Record + ^\s*$$ + ^.+ -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm b/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm new file mode 100644 index 0000000000..42cb945272 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm @@ -0,0 +1,12 @@ +Value Required NAME (\S+) +Value Required ACTION (\S+) +Value Required SEQ (\d+) +Value List MATCH_CLAUSES (.+) +Value List SET_CLAUSES (.+) + +Start + ^route-map\s+${NAME}\s${ACTION}\s+${SEQ}\s*$$ + ^\s+match\s+${MATCH_CLAUSES} + ^\s+set\s+${SET_CLAUSES} + ^exit -> Record + ^.+ -> Error diff --git a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw new file mode 100644 index 0000000000..a8494edcc3 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw @@ -0,0 +1,41 @@ + Context 1 + ========= + + Cellular controller: 0 + Internal context Id: 1 + Interface : Virtual-Ethernet 1, USB-Path: /sys/class/net/wwan0 + Cellular profile : 1 + + rxSpeed/max : 0/0 + txSpeed/max : 0/0 + + Call manager state : _connected + Mtu : 1500 + Data bearer technology : LTE + + Ipv4 connection + Address : 101.194.59.47 + Subnet : 255.255.255.224 + Gateway : 101.194.59.48 + Primary Dns : 2.2.2.90 + Secondary Dns : 2.2.2.94 + Packet data connection : Connected + Last call end reason : + Data statistics : + Tx packets : 603031 + Rx packets : 572105 + Tx packet errors : 0 + Rx packet errors : 0 + Tx packet overflows : 0 + Rx packet overflows : 0 + Tx bytes : 83925324 + Rx bytes : 87179616 + + Ipv6 connection + Address : + Gateway : + Primary Dns : + Secondary Dns : + Packet data connection : + Last call end reason : + Data statistics : diff --git a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml new file mode 100644 index 0000000000..6f75c9e415 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - context: "1" + controller: "0" + interface: "Virtual-Ethernet 1" + cellular_profile: "1" + bearer_technology: "LTE" + ipv4_address: "101.194.59.47" + ipv4_subnet: "255.255.255.224" + ipv4_gw: "101.194.59.48" + ipv4_dns1: "2.2.2.90" + ipv4_dns2: "2.2.2.94" + data_conn: "Connected" + lastcall_end_reason: "" + tx_packets: "603031" + rx_packets: "572105" + tx_packet_errors: "0" + rx_packet_errors: "0" + tx_packet_overflow: "0" + rx_packet_overflow: "0" + tx_bytes: "83925324" + rx_bytes: "87179616" diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw new file mode 100644 index 0000000000..b0d3fca5c3 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw @@ -0,0 +1,14 @@ + Cellular Radio Modem Information + Manufacturer identification : Sierra Wireless, Incorporated + Equipment information : MC7455 + Boot revision identification : SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05 + Revision identification : SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05 + Equipment information (IMEI) : 359022065533630 + + SIM Card Information + SIM card status : SIM card is present + SIM International Mobile Subscriber Identity IMSI : 211104500225982 + Integrated Circuit Card ID : 89320269140114098260 + + PIN Information + PIN code status : entered OK diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml new file mode 100644 index 0000000000..9d68e9148c --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml @@ -0,0 +1,11 @@ +--- +parsed_sample: + - manufacturer: "Sierra Wireless, Incorporated" + equipment: "MC7455" + boot_revision: "SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05" + imei: "359022065533630" + sim1_status: "present" + sim2_status: "" + imsi: "211104500225982" + card_id: "89320269140114098260" + pin_status: "entered OK" diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw new file mode 100644 index 0000000000..1026b5a02e --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw @@ -0,0 +1,14 @@ + Cellular Radio Modem Information + Manufacturer identification : Quectel + Equipment information : EP06-E + Boot revision identification : + Revision identification : EP06ELAR03A07M4G + Equipment information (IMEI) : 862286066345736 + + SIM Card Information + SIM card slot 1 : SIM present + SIM card slot 2 : SIM not present + Active SIM slot : 1 + SIM card status : SIM card is present + SIM International Mobile Subscriber Identity IMSI : 202202404403339 + Integrated Circuit Card ID : 89320269640110137970 diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml new file mode 100644 index 0000000000..ab1a6061f8 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml @@ -0,0 +1,11 @@ +--- +parsed_sample: + - manufacturer: "Quectel" + equipment: "EP06-E" + boot_revision: "EP06ELAR03A07M4G" + imei: "862286066345736" + sim1_status: "present" + sim2_status: "not present" + imsi: "202202404403339" + card_id: "89320269640110137970" + pin_status: "" diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw new file mode 100644 index 0000000000..43d0351654 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw @@ -0,0 +1,23 @@ + Current selected operator : Dummy Provider + Signal strength : Good + Total Ec/Io : + RSSI : -58 dBm + RSRQ : -9 dB + RSRP : -91 dBm + SNR : 23 dB + Current radio access technology : 4G + Circuit-switched register state : Registered + Packet-switched attach state : Attached + +Statistics: + Reset on loss of GPRS registration : 1 + Reset on failed initial registration : 0 + Hardware reset of modem : 0 + Unknown reset of modem : 505 + Toggle w_disable of modem : 0 + +Details: + Location Area Code (LAC) : + Cell ID : 18224898 + Tracking Area Code (TAC) : 18300 + Current Public Land Mobile Network (PLMN = MCC+MNC) : 20610 diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml new file mode 100644 index 0000000000..10a47ebf6f --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml @@ -0,0 +1,19 @@ +--- +parsed_sample: + - operator: "Dummy Provider" + signal_strength: "Good" + rssi: "-58" + rsrq: "-9" + rsrp: "-91" + snr: "23" + radio_technology: "4G" + register_state: "Registered" + attach_state: "Attached" + resets_loss_registrations: "1" + resets_failed_registrations: "0" + resets_modem: "0" + resets_unknown: "505" + lac: "" + cell_id: "18224898" + tac: "18300" + plmn: "20610" diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw new file mode 100644 index 0000000000..55d819a964 --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw @@ -0,0 +1,22 @@ + Current selected operator : Dummy Provider + Signal strength : Good + Total Ec/Io : + RSSI : -70 dBm + RSRQ : -9 dB + RSRP : -96 dBm + SNR : 6 dB + Current radio access technology : 4G + Circuit-switched register state : Registered + Packet-switched attach state : Attached + +Statistics: + Reset on loss of registration : 0 + Reset on failed initial registration : 0 + Hardware reset of modem : 0 + Unknown reset of modem : 0 + +Details: + Location Area Code (LAC) : + Cell ID : 18242055 + Tracking Area Code (TAC) : 20300 + Public Land Mobile Network (PLMN = MCC+MNC) : 20610 diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml new file mode 100644 index 0000000000..c3c37d4c4c --- /dev/null +++ b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml @@ -0,0 +1,19 @@ +--- +parsed_sample: + - operator: "Dummy Provider" + signal_strength: "Good" + rssi: "-70" + rsrq: "-9" + rsrp: "-96" + snr: "6" + radio_technology: "4G" + register_state: "Registered" + attach_state: "Attached" + resets_loss_registrations: "" + resets_failed_registrations: "0" + resets_modem: "0" + resets_unknown: "0" + lac: "" + cell_id: "18242055" + tac: "20300" + plmn: "20610" diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw new file mode 100644 index 0000000000..2f7e507c80 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw @@ -0,0 +1,32 @@ +interface Bvi 20, inbound IP access list GUEST_WIFI_IN + +IP access list extended GRE-Tunnel21 +permit gre host 10.94.55.207 host 94.105.25.2 log (0 matches) + +IP access list extended GRE-Tunnel11 +permit gre host 10.94.55.207 host 94.105.25.9 log (0 matches) + +IP access list extended GUEST_WIFI_IN +deny any 10.0.0.0 0.255.255.255 (0 matches) +deny any 172.16.0.0 0.15.255.255 (0 matches) +deny any 192.168.0.0 0.0.255.255 (0 matches) +permit any any (5164438 matches) + +IP access list standard 52 +permit 91.208.220.0 0.0.0.255 any (4519825 matches) + +IP access list extended MANAGEMENT_IN +permit tcp 91.208.220.0 0.0.0.255 any eq ssh (2896 matches) +permit tcp 91.208.220.0 0.0.0.255 any eq telnet (0 matches) +permit tcp 94.104.18.0 0.0.1.255 any eq ssh (0 matches) +permit tcp 94.104.18.0 0.0.1.255 any eq telnet (0 matches) +permit tcp 192.4.21.0 0.0.0.255 any eq ssh (0 matches) +permit tcp 192.4.21.0 0.0.0.255 any eq telnet (0 matches) +permit tcp 192.4.91.0 0.0.0.255 any eq ssh (0 matches) +permit tcp 192.4.91.0 0.0.0.255 any eq telnet (0 matches) +permit tcp host 10.0.96.16 10.110.0.0 0.0.255.255 eq telnet (0 matches) +permit tcp 192.0.2.0 0.0.0.255 any eq ssh (0 matches) +permit tcp 192.0.2.0 0.0.0.255 any eq telnet (0 matches) +deny any any (0 matches) + +For info on ACLs used by IPSEC, please refer to show crypto acl [detail ] command. diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml new file mode 100644 index 0000000000..c32920f35c --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml @@ -0,0 +1,578 @@ +--- +parsed_sample: + - acl_type: "extended" + acl_name: "GRE-Tunnel21" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GRE-Tunnel21" + line_num: "" + action: "permit" + protocol: "gre" + protocol_nr: "" + src_host: "10.94.55.207" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "94.105.25.2" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "log" + matches: "0" + - acl_type: "extended" + acl_name: "GRE-Tunnel11" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GRE-Tunnel11" + line_num: "" + action: "permit" + protocol: "gre" + protocol_nr: "" + src_host: "10.94.55.207" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "94.105.25.9" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "log" + matches: "0" + - acl_type: "extended" + acl_name: "GUEST_WIFI_IN" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GUEST_WIFI_IN" + line_num: "" + action: "deny" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "any" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "10.0.0.0" + dst_wildcard: "0.255.255.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "GUEST_WIFI_IN" + line_num: "" + action: "deny" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "any" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "172.16.0.0" + dst_wildcard: "0.15.255.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "GUEST_WIFI_IN" + line_num: "" + action: "deny" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "any" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "192.168.0.0" + dst_wildcard: "0.0.255.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "GUEST_WIFI_IN" + line_num: "" + action: "permit" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "any" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "5164438" + - acl_type: "standard" + acl_name: "52" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "standard" + acl_name: "52" + line_num: "" + action: "permit" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "4519825" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "ssh" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "2896" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.104.18.0" + src_wildcard: "0.0.1.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "ssh" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.104.18.0" + src_wildcard: "0.0.1.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.21.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "ssh" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.21.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.91.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "ssh" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.91.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "10.0.96.16" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "10.110.0.0" + dst_wildcard: "0.0.255.255" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.0.2.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "ssh" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.0.2.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "eq" + dst_port: "telnet" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "deny" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "any" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "any" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw new file mode 100644 index 0000000000..92567f137d --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw @@ -0,0 +1,42 @@ +ip access-list standard 52 + 1 permit 91.208.220.0 0.0.0.255 (988908 matches) + +ip access-list standard 5 + 1 permit 172.16.8.0 0.0.0.255 (0 matches) + +ip access-list extended GRE-Tunnel21 + 1 permit ip 47 10.94.57.196 0.0.0.0 94.105.25.2 0.0.0.0 log (0 matches) + +ip access-list extended GRE-Tunnel91 + 1 permit ip 47 10.94.57.196 0.0.0.0 94.105.25.9 0.0.0.0 log (0 matches) + +ip access-list extended MANAGEMENT + 1 permit ip 0.0.0.0 255.255.255.255 91.208.220.0 0.0.0.255 (1273326 matches) + 2 permit ip 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 (0 matches) + +ip access-list extended REAL-TIME + +ip access-list extended PREMIUM + +ip access-list extended GOLD + +ip access-list extended SILVER + +ip access-list extended BRONZE + +ip access-list extended MANAGEMENT_IN + 1 permit tcp 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (1128 matches) + 2 permit tcp 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) + 3 permit tcp 94.104.18.0 0.0.1.255 0.0.0.0 255.255.255.255 22 (0 matches) + 4 permit tcp 94.104.18.0 0.0.1.255 0.0.0.0 255.255.255.255 23 (0 matches) + 5 permit tcp 94.105.225.124 0.0.0.3 0.0.0.0 255.255.255.255 22 (0 matches) + 6 permit tcp 94.105.225.124 0.0.0.3 0.0.0.0 255.255.255.255 23 (0 matches) + 7 permit tcp 192.4.21.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) + 8 permit tcp 192.4.21.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) + 9 permit tcp 192.4.91.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) + 10 permit tcp 192.4.91.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) + 11 permit tcp 10.0.96.16 0.0.0.0 10.110.0.0 0.0.255.255 23 (0 matches) + 12 permit tcp 10.0.32.16 0.0.0.0 10.110.0.0 0.0.255.255 23 (0 matches) + 13 permit tcp 192.0.2.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) + 14 permit tcp 192.0.2.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) + 15 deny ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255 (0 matches) diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml new file mode 100644 index 0000000000..0e706417c8 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml @@ -0,0 +1,770 @@ +--- +parsed_sample: + - acl_type: "standard" + acl_name: "52" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "standard" + acl_name: "52" + line_num: "1" + action: "permit" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "988908" + - acl_type: "standard" + acl_name: "5" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "standard" + acl_name: "5" + line_num: "1" + action: "permit" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "172.16.8.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "GRE-Tunnel21" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GRE-Tunnel21" + line_num: "1" + action: "permit" + protocol: "ip" + protocol_nr: "47" + src_host: "" + src_any: "" + src_network: "10.94.57.196" + src_wildcard: "0.0.0.0" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "94.105.25.2" + dst_wildcard: "0.0.0.0" + dst_port_match: "" + dst_port: "log" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "GRE-Tunnel91" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GRE-Tunnel91" + line_num: "1" + action: "permit" + protocol: "ip" + protocol_nr: "47" + src_host: "" + src_any: "" + src_network: "10.94.57.196" + src_wildcard: "0.0.0.0" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "94.105.25.9" + dst_wildcard: "0.0.0.0" + dst_port_match: "" + dst_port: "log" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "MANAGEMENT" + line_num: "1" + action: "permit" + protocol: "ip" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "0.0.0.0" + src_wildcard: "255.255.255.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "91.208.220.0" + dst_wildcard: "0.0.0.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "1273326" + - acl_type: "extended" + acl_name: "MANAGEMENT" + line_num: "2" + action: "permit" + protocol: "ip" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "REAL-TIME" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "PREMIUM" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "GOLD" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "SILVER" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "BRONZE" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "" + action: "" + protocol: "" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "" + src_wildcard: "" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "" + dst_wildcard: "" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "1" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "1128" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "2" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "91.208.220.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "3" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.104.18.0" + src_wildcard: "0.0.1.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "4" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.104.18.0" + src_wildcard: "0.0.1.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "5" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.105.225.124" + src_wildcard: "0.0.0.3" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "6" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "94.105.225.124" + src_wildcard: "0.0.0.3" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "7" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.21.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "8" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.21.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "9" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.91.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "10" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.4.91.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "11" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "10.0.96.16" + src_wildcard: "0.0.0.0" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "10.110.0.0" + dst_wildcard: "0.0.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "12" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "10.0.32.16" + src_wildcard: "0.0.0.0" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "10.110.0.0" + dst_wildcard: "0.0.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "13" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.0.2.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "22" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "14" + action: "permit" + protocol: "tcp" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "192.0.2.0" + src_wildcard: "0.0.0.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "23" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" + - acl_type: "extended" + acl_name: "MANAGEMENT_IN" + line_num: "15" + action: "deny" + protocol: "ip" + protocol_nr: "" + src_host: "" + src_any: "" + src_network: "0.0.0.0" + src_wildcard: "255.255.255.255" + src_port_match: "" + src_port: "" + src_port_range_start: "" + src_port_range_end: "" + dst_host: "" + dst_any: "" + dst_network: "0.0.0.0" + dst_wildcard: "255.255.255.255" + dst_port_match: "" + dst_port: "" + dst_port_range_start: "" + dst_port_range_end: "" + log: "" + matches: "0" diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw new file mode 100644 index 0000000000..848969e923 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw @@ -0,0 +1,2 @@ +AS path access list 102 + permit ^$ diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml new file mode 100644 index 0000000000..96b39fa8e5 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml @@ -0,0 +1,5 @@ +--- +parsed_sample: + - name: "102" + entries: + - "permit ^$" diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw new file mode 100644 index 0000000000..848969e923 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw @@ -0,0 +1,2 @@ +AS path access list 102 + permit ^$ diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml new file mode 100644 index 0000000000..96b39fa8e5 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml @@ -0,0 +1,5 @@ +--- +parsed_sample: + - name: "102" + entries: + - "permit ^$" diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.raw b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.raw new file mode 100644 index 0000000000..fea365807a --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.raw @@ -0,0 +1,15 @@ +RIP: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any +OSPF: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any +BGP: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml new file mode 100644 index 0000000000..7c58771bb6 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml @@ -0,0 +1,83 @@ +--- +parsed_sample: + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.raw b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.raw new file mode 100644 index 0000000000..fea365807a --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.raw @@ -0,0 +1,15 @@ +RIP: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any +OSPF: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any +BGP: ip prefix-list DENY-BGP: 3 entries + Description: ** do not advertise to BGP neighbors ** + seq 5 permit 192.4.21.0/24 le 32 + seq 10 permit 192.4.91.0/24 le 32 + seq 15 deny any diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml new file mode 100644 index 0000000000..7c58771bb6 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml @@ -0,0 +1,83 @@ +--- +parsed_sample: + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "RIP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "OSPF" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "5" + action: "permit" + network: "192.4.21.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "10" + action: "permit" + network: "192.4.91.0" + netmask: "24" + le: "32" + ge: "" + - protcol: "BGP" + name: "DENY-BGP:" + description: "** do not advertise to BGP neighbors **" + seq: "15" + action: "deny" + network: "any" + netmask: "" + le: "" + ge: "" diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw new file mode 100644 index 0000000000..884544c6ee --- /dev/null +++ b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw @@ -0,0 +1,19 @@ +route-map BGP-MAP-OUT permit 10 + match as-path 102 + set origin igp + set metric 50 +exit +route-map BGP_SECONDARY_OUT permit 10 + set as-path prepend 65000 65000 65000 + set origin igp + set local-preference 50 + set metric 100 +exit +route-map CONNECTED-BGP deny 5 + match ip address prefix-list DENY-BGP +exit +route-map CONNECTED-BGP permit 10 + set origin igp + set local-preference 100 + set metric 50 +exit diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml new file mode 100644 index 0000000000..b0d595c10a --- /dev/null +++ b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml @@ -0,0 +1,33 @@ +--- +parsed_sample: + - name: "BGP-MAP-OUT" + action: "permit" + seq: "10" + match_clauses: + - "as-path 102" + set_clauses: + - "origin igp" + - "metric 50" + - name: "BGP_SECONDARY_OUT" + action: "permit" + seq: "10" + match_clauses: [] + set_clauses: + - "as-path prepend 65000 65000 65000" + - "origin igp" + - "local-preference 50" + - "metric 100" + - name: "CONNECTED-BGP" + action: "deny" + seq: "5" + match_clauses: + - "ip address prefix-list DENY-BGP" + set_clauses: [] + - name: "CONNECTED-BGP" + action: "permit" + seq: "10" + match_clauses: [] + set_clauses: + - "origin igp" + - "local-preference 100" + - "metric 50" diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw new file mode 100644 index 0000000000..6dc03d001f --- /dev/null +++ b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw @@ -0,0 +1,17 @@ +route-map ADVERTISE-LOCAL-ONLY permit 10 + match as-path 102 +exit +route-map BGP-MAP-OUT permit 10 + match as-path 102 + set as-path prepend 65000 65000 65000 + set origin igp + set metric 100 +exit +route-map CONNECTED-BGP deny 5 + match ip address prefix-list DENY-BGP +exit +route-map CONNECTED-BGP permit 10 + set origin igp + set local-preference 50 + set metric 100 +exit diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml new file mode 100644 index 0000000000..f1d698c9f1 --- /dev/null +++ b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml @@ -0,0 +1,31 @@ +--- +parsed_sample: + - name: "ADVERTISE-LOCAL-ONLY" + action: "permit" + seq: "10" + match_clauses: + - "as-path 102" + set_clauses: [] + - name: "BGP-MAP-OUT" + action: "permit" + seq: "10" + match_clauses: + - "as-path 102" + set_clauses: + - "as-path prepend 65000 65000 65000" + - "origin igp" + - "metric 100" + - name: "CONNECTED-BGP" + action: "deny" + seq: "5" + match_clauses: + - "ip address prefix-list DENY-BGP" + set_clauses: [] + - name: "CONNECTED-BGP" + action: "permit" + seq: "10" + match_clauses: [] + set_clauses: + - "origin igp" + - "local-preference 50" + - "metric 100" From 46454188362fefb972a66b4317146486fccca17c Mon Sep 17 00:00:00 2001 From: mwallraf Date: Tue, 27 Dec 2022 18:49:32 +0100 Subject: [PATCH 04/31] addtional oneos commands --- ntc_templates/templates/index | 4 +++ ...neaccess_oneos_cat_bsa_bsaboot.inf.textfsm | 12 +++++++ .../templates/oneaccess_oneos_ls.textfsm | 15 +++++++++ .../oneaccess_oneos_show_sntp.textfsm | 31 +++++++++++++++++++ ...neaccess_oneos_show_software-image.textfsm | 18 +++++++++++ .../cat_BSA_bsaBoot.inf.raw | 2 ++ .../cat_BSA_bsaBoot.inf.yml | 6 ++++ .../ls/ls.bsabinaries.oneos5.raw | 5 +++ .../ls/ls.bsabinaries.oneos5.yml | 6 ++++ .../ls/ls.bsabinaries.oneos6.raw | 1 + .../ls/ls.bsabinaries.oneos6.yml | 4 +++ .../show_sntp/show_sntp.oneos5.raw | 6 ++++ .../show_sntp/show_sntp.oneos5.yml | 26 ++++++++++++++++ .../show_sntp/show_sntp.oneos6.raw | 6 ++++ .../show_sntp/show_sntp.oneos6.yml | 26 ++++++++++++++++ .../show_software-image.raw | 9 ++++++ .../show_software-image.yml | 10 ++++++ 17 files changed, 187 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_ls.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm create mode 100644 tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw create mode 100644 tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml create mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw create mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml create mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw create mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_software-image/show_software-image.raw create mode 100644 tests/oneaccess_oneos/show_software-image/show_software-image.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index d4f4c94a5d..5c1c272b9b 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -695,8 +695,10 @@ oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] i oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] +oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] +oneaccess_oneos_show_software-image.textfsm, .*, oneaccess_oneos, sh[[ow]] software-image oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief @@ -704,7 +706,9 @@ oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs +oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname +oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] diff --git a/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm b/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm new file mode 100644 index 0000000000..47dc95d3b2 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm @@ -0,0 +1,12 @@ +Value BOOTFILE (\S+) +Value BOOTFOLDER (/BSA/binaries) +Value CONFIGFILE (\S+) +Value CONFIGFOLDER (/BSA/config) + +Start + ^.*${BOOTFOLDER} -> Continue + ^.*/BSA/binaries/${BOOTFILE} + ^.*${CONFIGFOLDER} -> Continue + ^.*/BSA/config/${CONFIGFILE} + ^.*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_ls.textfsm b/ntc_templates/templates/oneaccess_oneos_ls.textfsm new file mode 100644 index 0000000000..a28da60a7e --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_ls.textfsm @@ -0,0 +1,15 @@ +Value Required FILE (\S+) +Value BYTES (\d+) + +Start + ^Listing -> ONEOS5 + ^\S+\s+\d+\s+${BYTES}\s+.*\s+${FILE}$$ -> Record ONEOS6 + ^$$ + ^. -> Error + +ONEOS5 + ^\. + ^${FILE}\s+${BYTES} -> Record + +ONEOS6 + ^\S+\s+\d+\s+${BYTES}\s+.*\s+${FILE}$$ -> Record \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm b/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm new file mode 100644 index 0000000000..3a63f051a4 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm @@ -0,0 +1,31 @@ +Value Required SERVER (\S+) +Value SOURCE (\S+(\s\S+)?) +Value STRATUM (\d+) +Value VERSION (\d+) +Value LAST (\d+:\d+:\d+) +Value RECEIVE (\S+) +Value LEARN_FROM (\S+) +Value INTERFACE (\S+) +Value VRF (\S+) +Value FAILED_AUTH_PKTS (\d+) +Value Fillup BROADCAST (enabled|not enabled) +Value Fillup AUTHENTICATION (enabled|not enabled) + +Start + ^server\s+source\s+stratum\s+version\s+last\s+receive\s+learn -> ONEOS6 + ^server\s+source\s+stratum\s+version\s+last\s+receive -> ONEOS5 + ^$$ + ^. -> Error + +ONEOS5 + ^${SERVER}\s+${SOURCE}\s+(${STRATUM}|)\s+(${VERSION}|)\s+(${LAST}|)\s+(${RECEIVE}|) -> Record + ^$$ + ^\s*broadcast\sclient\smode\sis\s${BROADCAST} + ^\s*SNTP\sAuthentication\sis\s${AUTHENTICATION} + +ONEOS6 + ^${SERVER}\s+${SOURCE}\s+(${STRATUM}|-)\s+(${VERSION}|-)\s+(${LAST}|)\s+(${RECEIVE}|-)\s+(${LEARN_FROM}|-)\s+(${INTERFACE}|-)\s+(${VRF}|-)\s+(${FAILED_AUTH_PKTS}) -> Record + ^$$ + ^\s*broadcast\sclient\smode\sis\s${BROADCAST} + ^\s*SNTP\sAuthentication\sis\s${AUTHENTICATION} + diff --git a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm new file mode 100644 index 0000000000..e9425b431c --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm @@ -0,0 +1,18 @@ +Value Required,Key BANK (Active|Alternate) +Value SOFTWARE (\S+) +Value CREATED (.*) +Value CHECKSUM (\S+) + +Start + ^-+\s${BANK}\sbank\s-+ -> BANK + ^.*$$ + ^. -> Error + +BANK + ^Software\sversion\s+:\s${SOFTWARE} + ^Creation\sdate\s+:\s${CREATED} + ^Header\schecksum\s+:\s${CHECKSUM} + ^-+ -> Continue.Record + ^-+\s${BANK}\sbank\s-+ -> BANK + ^$$ + ^. -> Error diff --git a/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw b/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw new file mode 100644 index 0000000000..bbb51855f3 --- /dev/null +++ b/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw @@ -0,0 +1,2 @@ +flash:/BSA/binaries/OneOs +flash:/BSA/config/bsaStart.cfg \ No newline at end of file diff --git a/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml b/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml new file mode 100644 index 0000000000..5bd871861c --- /dev/null +++ b/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml @@ -0,0 +1,6 @@ +--- +parsed_sample: + - bootfile: "OneOs" + bootfolder: "/BSA/binaries" + configfile: "bsaStart.cfg" + configfolder: "/BSA/config" diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw new file mode 100644 index 0000000000..c31fab4664 --- /dev/null +++ b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw @@ -0,0 +1,5 @@ +Listing the directory /BSA/binaries +. 0 +.. 0 +OneOs 15896363 +ONEOS16-MONO_FT-V5.2R2E7_HA1.ZZZ 15848593 \ No newline at end of file diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml new file mode 100644 index 0000000000..d49f276a36 --- /dev/null +++ b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml @@ -0,0 +1,6 @@ +--- +parsed_sample: + - file: "OneOs" + bytes: "15896363" + - file: "ONEOS16-MONO_FT-V5.2R2E7_HA1.ZZZ" + bytes: "15848593" diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw new file mode 100644 index 0000000000..c130abd224 --- /dev/null +++ b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw @@ -0,0 +1 @@ +-rw-r--r-- 1 105178216 Oct 6 16:10 OneOS-pCPE-ARM_pi1-6.8.4.ZZZ \ No newline at end of file diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml new file mode 100644 index 0000000000..c243116513 --- /dev/null +++ b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml @@ -0,0 +1,4 @@ +--- +parsed_sample: + - file: "OneOS-pCPE-ARM_pi1-6.8.4.ZZZ" + bytes: "105178216" diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw new file mode 100644 index 0000000000..dffce541b5 --- /dev/null +++ b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw @@ -0,0 +1,6 @@ +server source stratum version last receive +101.208.220.147 Loopback 1 +10.208.220.19 Loopback 1 5 1 00:00:39 synced + +broadcast client mode is not enabled +SNTP Authentication is not enabled \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml new file mode 100644 index 0000000000..f412cb7b50 --- /dev/null +++ b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - server: "101.208.220.147" + source: "Loopback 1" + stratum: "" + version: "" + last: "" + receive: "" + learn_from: "" + interface: "" + vrf: "" + failed_auth_pkts: "" + broadcast: "not enabled" + authentication: "not enabled" + - server: "10.208.220.19" + source: "Loopback 1" + stratum: "5" + version: "1" + last: "00:00:39" + receive: "synced" + learn_from: "" + interface: "" + vrf: "" + failed_auth_pkts: "" + broadcast: "not enabled" + authentication: "not enabled" diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw new file mode 100644 index 0000000000..8517f0b49d --- /dev/null +++ b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw @@ -0,0 +1,6 @@ +server source stratum version last receive learn-from interface vrf failed-auth-pkts +101.208.220.147 Loopback 1 - - - - - Default 0 +101.208.220.19 Loopback 1 5 4 00:00:20 synced - - Default 0 + + broadcast client mode is not enabled + SNTP Authentication is not enabled \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml new file mode 100644 index 0000000000..a498ccab60 --- /dev/null +++ b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - server: "101.208.220.147" + source: "Loopback 1" + stratum: "" + version: "" + last: "" + receive: "-" + learn_from: "-" + interface: "-" + vrf: "Default" + failed_auth_pkts: "0" + broadcast: "not enabled" + authentication: "not enabled" + - server: "101.208.220.19" + source: "Loopback 1" + stratum: "5" + version: "4" + last: "00:00:20" + receive: "synced" + learn_from: "-" + interface: "-" + vrf: "Default" + failed_auth_pkts: "0" + broadcast: "not enabled" + authentication: "not enabled" diff --git a/tests/oneaccess_oneos/show_software-image/show_software-image.raw b/tests/oneaccess_oneos/show_software-image/show_software-image.raw new file mode 100644 index 0000000000..2d70080418 --- /dev/null +++ b/tests/oneaccess_oneos/show_software-image/show_software-image.raw @@ -0,0 +1,9 @@ +--------------- Active bank --------------- +Software version : OneOS-pCPE-ARM_pi1-6.8.4 +Creation date : 2022-08-02 16:59:01 +Header checksum : 0x16368E60 + +-------------- Alternate bank ------------- +Software version : OneOS-pCPE-ARM_pi1-6.6.1m3 +Creation date : 2021-03-26 11:13:54 +Header checksum : 0x73ED8876 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_software-image/show_software-image.yml b/tests/oneaccess_oneos/show_software-image/show_software-image.yml new file mode 100644 index 0000000000..4a43c10495 --- /dev/null +++ b/tests/oneaccess_oneos/show_software-image/show_software-image.yml @@ -0,0 +1,10 @@ +--- +parsed_sample: + - bank: "Active" + software: "OneOS-pCPE-ARM_pi1-6.8.4" + created: "2022-08-02 16:59:01" + checksum: "0x16368E60" + - bank: "Alternate" + software: "OneOS-pCPE-ARM_pi1-6.6.1m3" + created: "2021-03-26 11:13:54" + checksum: "0x73ED8876" From 92a99a8e689287b4ede98c5afec93c21a5a679d5 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 30 Dec 2022 16:51:34 +0100 Subject: [PATCH 05/31] extra oneos commands --- ntc_templates/templates/index | 2 +- .../oneaccess_oneos_show_memory.textfsm | 25 ++++++++++++++ .../show_memory/show_memory.oneos5.raw | 27 +++++++++++++++ .../show_memory/show_memory.oneos5.yml | 8 +++++ .../show_memory/show_memory.oneos6.raw | 33 +++++++++++++++++++ .../show_memory/show_memory.oneos6.yml | 8 +++++ 6 files changed, 102 insertions(+), 1 deletion(-) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_memory.textfsm create mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 5c1c272b9b..a98dd0c756 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -705,12 +705,12 @@ oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh +oneaccess_oneos_show_memory.textfsm, .*, oneaccess_oneos, sh[[ow]] memory oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* - paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm b/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm new file mode 100644 index 0000000000..83a1759ce5 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm @@ -0,0 +1,25 @@ +Value RAM (\S+|\d+\s?\d+) +Value BOOT_SIZE (\S+|\d+\s?\d+) +Value FLASH_SIZE (\S+|\d+\s?\d+) +Value USER_PARTITION_TOTAL (\S+|\d+\s?\d+) +Value USER_PARTITION_USED (\S+|\d+\s?\d+) +Value USER_PARTITION_FREE (\S+|\d+\s?\d+) + + +Start + # total system memory + ^\s*\|\sRam\ssize\s+\|\s+${RAM}\s+\| + ^\s*\|\sMemory Total\s+\|\s+${RAM}\s+\| + # total boot size + ^\s*\|\s+:\.\.Boot\s+\|\s+${BOOT_SIZE}\s+\| + ^\s*\|\sBoot\sPartition\s+\|\s+${BOOT_SIZE}\s+\| + # total flash disk size + ^\s*\|\s+Extended\sFlash\ssize\s+\|\s+${FLASH_SIZE}\s+\| + ^\s*\|\sFlash\sTotal\s+\|\s+${FLASH_SIZE}\s+\| + # total user partition size and usage, part of flash (/BSA) + ^\s*\|\s+:\.\.Flash\sdisk\stotal\s+\|\s+${USER_PARTITION_TOTAL}\s+\| + ^\s*\|\s+\-\suser\s+\|\s+${USER_PARTITION_TOTAL}\s+\|\s+${USER_PARTITION_FREE}\s+\|\s+${USER_PARTITION_USED}\s+\| + ^\s*\|\s+used\s+\|\s+${USER_PARTITION_USED}\s+\| + ^\s*\|\s+free\s+\|\s+${USER_PARTITION_FREE}\s+\| + ^.* + ^. -> Error \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw new file mode 100644 index 0000000000..66d5778003 --- /dev/null +++ b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw @@ -0,0 +1,27 @@ +=============================================== +| Memory status report | Kbytes | | +=============================================== +| Ram size | 262 144 | | +| :..Program | 41 171 | | +| : :..code | 30 715 | | +| : :..data | 10 455 | | +| :..Static buffers | 192 | | +| :..Dynamic total | 213 604 | | +| : : used | 46 847 | 21.9% | +| : : free | 166 757 | 78.0% | +| : :..System total | 213 604 | | +| : used | 46 847 | 21.9% | +| : free | 166 757 | 78.0% | +| :..Ram disk total | 1 011 | | +| used | 74 | 7.4% | +| free | 937 | 92.7% | +| | | | +| Flash size | 2 048 | | +| :..Boot | 1 024 | | +| :..Static areas | 200 | | +| | | | +| Extended Flash size | 65 536 | | +| :..Flash disk total | 64 688 | | +| used | 31 176 | 48.1% | +| free | 33 512 | 51.8% | +=============================================== \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml new file mode 100644 index 0000000000..a06485b016 --- /dev/null +++ b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml @@ -0,0 +1,8 @@ +--- +parsed_sample: + - ram: "262 144" + boot_size: "1 024" + flash_size: "65 536" + user_partition_total: "64 688" + user_partition_used: "31 176" + user_partition_free: "33 512" diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw new file mode 100644 index 0000000000..63ba8ec6b8 --- /dev/null +++ b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw @@ -0,0 +1,33 @@ +================================================================================ +| Memory status report | Total | Free | Use % | +================================================================================ +| Memory Total | 1.0GiB | | | +|----------------------------------------------|----------|----------|---------| +| Shared Partition | | | | +| - Shared Pool | 31.9MiB | 27.7MiB | 13.3% | +| | | | | +| Control Partition | | | | +| - Linux RAM (*) | 546.1MiB | 183.4MiB | 66.4% | +| - system free | | 102.7MiB | | +| - Linux cached | 127.9MiB | | | +| - Linux buffers | 8.7MiB | | | +| - Linux File Systems | | | | +| - root | 273.0MiB | 268.4MiB | 1.7% | +| - tmp | na |used:51MiB| 90.0% | +| | | | | +| Forwarding Partition | | | | +| - Shared Pool | 249.9MiB | 233.1MiB | 6.7% | +| - Core 0 Pool | 1.9MiB | 1.4MiB | 25.8% | +| - Binary | 3.2MiB | | | +| | | | | +================================================================================ +| Flash Total | 512.0MiB | | | +|----------------------------------------------|----------|----------|---------| +| Boot Partition | 100.0MiB | | | +| | | | | +| File systems | 412.0MiB | | | +| - user | 366.9MiB | 85.4MiB | 76.7% | +================================================================================ +| Removable disks | | | | +|----------------------------------------------|----------|----------|---------| +================================================================================ diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml new file mode 100644 index 0000000000..342ff1b0bd --- /dev/null +++ b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml @@ -0,0 +1,8 @@ +--- +parsed_sample: + - ram: "1.0GiB" + boot_size: "100.0MiB" + flash_size: "512.0MiB" + user_partition_total: "366.9MiB" + user_partition_used: "76.7%" + user_partition_free: "85.4MiB" From 1cd6dcb32eefc3e57dbe6a0affb1757f63f228a8 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 4 Jan 2023 17:12:21 +0100 Subject: [PATCH 06/31] add oneaccess command --- ntc_templates/templates/index | 2 ++ ...neaccess_oneos_show_soft-file_info.textfsm | 24 +++++++++++++++++++ .../show_soft-file_info.oneos5.raw | 9 +++++++ .../show_soft-file_info.oneos5.yml | 11 +++++++++ .../show_soft-file_info.oneos6.raw | 13 ++++++++++ .../show_soft-file_info.oneos6.yml | 11 +++++++++ 6 files changed, 70 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm create mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index a98dd0c756..422fe00e6a 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -698,6 +698,7 @@ oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip a oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] +oneaccess_oneos_show_soft-file_info.textfsm, .*, oneaccess_oneos, sh[[ow]] soft\-file info.* oneaccess_oneos_show_software-image.textfsm, .*, oneaccess_oneos, sh[[ow]] software-image oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server @@ -711,6 +712,7 @@ oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* + paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm b/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm new file mode 100644 index 0000000000..fde7a4764a --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm @@ -0,0 +1,24 @@ +Value STATUS (.*) +Value FILENAME (\S+) +Value FILETYPE (.+) +Value SOFTWARE_VERSION (\S+) +Value SOFTWARE_DATE (.*) +Value FILESIZE (\d+) +Value HEADER_CHECKSUM (\S+) +Value COMPUTED_CHECKSUM (\S+) +Value TARGET_DEVICE (\S+) + +Start + ^Binary\sfile + ^\s+file\sname\s+=\s+${FILENAME} + ^\s+file\stype\s+=\s+${FILETYPE} + ^\s+software\sversion\s+=\s+${SOFTWARE_VERSION} + ^\s+software\screation\sdate\s+=\s+${SOFTWARE_DATE} + ^\s+file\ssize\s+=\s+${FILESIZE} + ^\s+header\schecksum\s+=\s+${HEADER_CHECKSUM} + ^\s+computed\schecksum\s+=\s+${COMPUTED_CHECKSUM} + ^\s+target\sdevice\s+=\s+${TARGET_DEVICE} + ^\s*--- + ^[fF]ile\sis\s${STATUS} -> Record + ^$$ + ^. -> Error \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw new file mode 100644 index 0000000000..094769ad5e --- /dev/null +++ b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw @@ -0,0 +1,9 @@ +Binary file informations : + file name = /BSA/binaries/OneOs + software version = ONEOS92-DUAL_FT-V5.2R2E7_HA8 + software creation date = 04/08/20 17:31:55 + file size = 13852345 (0xD35EB9) + header checksum = 0xD920F600 + computed checksum = 0xD920F600 + target device = One92 +file is OK \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml new file mode 100644 index 0000000000..662f482d8e --- /dev/null +++ b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml @@ -0,0 +1,11 @@ +--- +parsed_sample: + - status: "OK" + filename: "/BSA/binaries/OneOs" + filetype: "" + software_version: "ONEOS92-DUAL_FT-V5.2R2E7_HA8" + software_date: "04/08/20 17:31:55" + filesize: "13852345" + header_checksum: "0xD920F600" + computed_checksum: "0xD920F600" + target_device: "One92" diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw new file mode 100644 index 0000000000..f4b1c62c35 --- /dev/null +++ b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw @@ -0,0 +1,13 @@ +Binary file information : + file name = OneOS-pCPE-ARM_pi1-6.8.4.ZZZ + file type = OneOs ZZZ + software version = OneOS-pCPE-ARM_pi1-6.8.4 + software creation date = 2022-08-02 16:59:01 + file size = 105178216 (0x644E468) + header checksum = 0x16368E60 + computed checksum = 0x16368E60 + target device = pCPE_ARM_pi1 +----- Extended Flash Binary ----- + --- Section 0 : OS / 5376 ko + --- Section 1 : ROOTFS / 97336 ko +File is OK diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml new file mode 100644 index 0000000000..f4833d3e30 --- /dev/null +++ b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml @@ -0,0 +1,11 @@ +--- +parsed_sample: + - status: "OK" + filename: "OneOS-pCPE-ARM_pi1-6.8.4.ZZZ" + filetype: "OneOs ZZZ" + software_version: "OneOS-pCPE-ARM_pi1-6.8.4" + software_date: "2022-08-02 16:59:01" + filesize: "105178216" + header_checksum: "0x16368E60" + computed_checksum: "0x16368E60" + target_device: "pCPE_ARM_pi1" From 5973e3ee08b3913719fe5d4c2090e2d6dd74b4d3 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 6 Jan 2023 00:17:56 +0100 Subject: [PATCH 07/31] add oneaccess_oneos show system hardware --- ntc_templates/templates/index | 1 + ...eaccess_oneos_show_system_hardware.textfsm | 51 +++++++++++++++++++ .../show_system_hardware.lbb150.raw | 19 +++++++ .../show_system_hardware.lbb150.yml | 26 ++++++++++ .../show_system_hardware.lbb320.raw | 17 +++++++ .../show_system_hardware.lbb320.yml | 26 ++++++++++ 6 files changed, 140 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 422fe00e6a..2f2722cf41 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -695,6 +695,7 @@ oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] i oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] +oneaccess_oneos_show_system_hardware.textfsm, .*, oneaccess_oneos, sh[[ow]] system hardware oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm new file mode 100644 index 0000000000..beb8b7e3ec --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm @@ -0,0 +1,51 @@ +Value Device (\w+) +Value CPU (.*) +Value CoreFreq (\d+) +Value DDRFreq (\d+) +Value CoreComplexBusFreq (\d+) +Value PlatformFreq (\d+) +Value PhysicalRamSize (\d+\S+) +Value OneOSRamSize (\d+\S+) +Value NandFlashSize (\d+\S+) +Value RamDisk (\d+\S+) +Value FlashDisk (\d+\S+) +Value Uplink ([xX]|) +Value ISDN ([xX]|) +Value Radio ([xX]|) +Value Usb ([xX]|) +Value Usb0 ([xX]|) +Value Usb1 ([xX]|) +Value Dsp (\d+) +Value Wlan (.*) +Value PORTS (.*\s+\d+\s+ports) +Value UplinkPorts (.*\S) +Value SecureBootProtection (\S+) +Value WLAN0 (.*\S) +Value WLAN1 (.*\S) + + +Start + ^\s*HARDWARE DESCRIPTION\s*$$ + ^\s*Device\s*:\s*${Device}\s*$$ + ^\s*CPU\s*:\s*${CPU}\s*$$ + ^\s*Core\sFreq\s*:\s*${CoreFreq}MHz\s+DDR\sFreq\s*:\s*${DDRFreq}MHz\s* + ^\s*Core Complex Bus Freq\s*:\s*${CoreComplexBusFreq}MHz\s*Platform Freq\s*:\s*${PlatformFreq}MHz\s*$$ + ^\s*Physical\sRam\ssize\s*:\s*${PhysicalRamSize}\s*OneOS Ram size\s*:\s*${OneOSRamSize}\s*$$ + ^\s*Physical\sRam\ssize\s*:\s*${PhysicalRamSize}\s*$$ + ^\s*Nand Flash size\s*:\s*${NandFlashSize}\s*$$ + ^\s*Ram disk\s*:\s*${RamDisk}\s*Flash disk\s*:\s*${FlashDisk}\s*$$ + ^\s*Local\s*:\s*.*\s+Uplink\s+:\s+${Uplink} -> Continue + ^\s*Local\s*:\s*.*\s+ISDN\s+:\s+${ISDN} -> Continue + ^\s*Local\s*:\s*.*\s+Radio\s+:\s+${Radio} -> Continue + ^\s*Local\s*:\s*.*\s+Usb0\s+:\s+${Usb0} -> Continue + ^\s*Local\s*:\s*.*\s+Usb1\s+:\s+${Usb1} -> Continue + ^\s*Local\s*:\s*.*\s+Usb\s+:\s+${Usb} -> Continue + ^\s*Secure\sBoot\sprotection\s*:\s*${SecureBootProtection} + ^\s*Dsp\s*:\s*${Dsp}\s*$$ + ^\s*Wlan\s*:\s*${Wlan}\s*$$ + ^\s*Local\s+:\s+${PORTS}\s* + ^\s*Uplink\s+:\s+${UplinkPorts}\s + ^\s*Wlan\s+0\s+:\s+${WLAN0}\s + ^\s*Wlan\s+1\s+:\s+${WLAN1}\s + ^.* + ^. -> Error \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw new file mode 100644 index 0000000000..3fe88ab3df --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw @@ -0,0 +1,19 @@ + HARDWARE DESCRIPTION + + Device : LBB_150 + CPU : BCM63136 - ARMv7 Processor rev 1 (v7l) + + Core Freq : 1000MHz DDR Freq : 800MHz (1600 MT/s data rate) + Physical Ram size : 1GiB + Nand Flash size : 512MiB + + + Secure Boot protection : yes + + + Local : x Uplink : x Radio : Usb : + + Local : GIGABIT ETHERNET + SFP ETHERNET + SWITCH ETHERNET / 4 ports + Uplink : AVDSL/1 Pair POTS + Wlan 0 : BCM43602 - 2,4GHz - 3x3 + Wlan 1 : BCM4366 - 5GHz - 4x4 diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml new file mode 100644 index 0000000000..3e3c750889 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - device: "LBB_150" + cpu: "BCM63136 - ARMv7 Processor rev 1 (v7l)" + corefreq: "1000" + ddrfreq: "800" + corecomplexbusfreq: "" + platformfreq: "" + physicalramsize: "1GiB" + oneosramsize: "" + nandflashsize: "512MiB" + ramdisk: "" + flashdisk: "" + uplink: "x" + isdn: "" + radio: "" + usb: "" + usb0: "" + usb1: "" + dsp: "" + wlan: "" + ports: "GIGABIT ETHERNET + SFP ETHERNET + SWITCH ETHERNET / 4 ports" + uplinkports: "AVDSL/1 Pair POTS" + securebootprotection: "yes" + wlan0: "BCM43602 - 2,4GHz -" + wlan1: "BCM4366 - 5GHz -" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw new file mode 100644 index 0000000000..c9fbc876a9 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw @@ -0,0 +1,17 @@ + HARDWARE DESCRIPTION + + Device : LBB_320 + CPU : Freescale P2020E - Security Engine + + Core Freq : 1200MHz DDR Freq : 600MHz + Core Complex Bus Freq : 600MHz Platform Freq : 600MHz + CPLD Index : 0x1 CPLD Version : 0x8 + Physical Ram size : 2048Mo OneOS Ram size : 2048Mo + Nand Flash size : 256Mo + Ram disk : 1Mo Flash disk : 246Mo + + Local : x Uplink : ISDN : Radio : Usb0 : Usb1 : + + Local : SFP ETHERNET + GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports + Dsp : 0 + Wlan : VendorID (0x168c) / DeviceID (0x002e) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml new file mode 100644 index 0000000000..d05a5a8d3d --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - device: "LBB_320" + cpu: "Freescale P2020E - Security Engine" + corefreq: "1200" + ddrfreq: "600" + corecomplexbusfreq: "600" + platformfreq: "600" + physicalramsize: "2048Mo" + oneosramsize: "2048Mo" + nandflashsize: "256Mo" + ramdisk: "1Mo" + flashdisk: "246Mo" + uplink: "" + isdn: "" + radio: "" + usb: "" + usb0: "" + usb1: "" + dsp: "0" + wlan: "VendorID (0x168c) / DeviceID (0x002e)" + ports: "SFP ETHERNET + GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports" + uplinkports: "" + securebootprotection: "" + wlan0: "" + wlan1: "" From db9c4fe8ce9bf3e47fbaba8c3cfe0eacd1c014a0 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 6 Jan 2023 15:28:55 +0100 Subject: [PATCH 08/31] oneaccess_oneos voice related commands --- ntc_templates/templates/index | 16 +- .../oneaccess_oneos_show_isdn_active.textfsm | 0 ...eaccess_oneos_show_isdn_led-status.textfsm | 66 ++++++ ...eaccess_oneos_show_isdn_status_all.textfsm | 49 +++++ ...how_voice_dial-peer_voice_voip_all.textfsm | 199 ++++++++++++++++++ .../oneaccess_oneos_show_voice_mos.textfsm | 0 ...ccess_oneos_show_voice_sip-gateway.textfsm | 55 +++++ ...oneos_show_voice_sip-gateway_reset.textfsm | 0 ...ss_oneos_show_voice_voice-port_all.textfsm | 10 + ...neos_show_voice_voice-port_pri_all.textfsm | 89 ++++++++ ...how_voice_voice-port_pri_all_histo.textfsm | 24 +++ ...how_voice_voice-port_pri_all_reset.textfsm | 0 ...os_show_voice_voip-call_active_all.textfsm | 0 ...oneos_show_voice_voip-call_any_all.textfsm | 0 .../show_isdn_active.plug103.raw | 7 + .../show_isdn_active.plug212.raw | 8 + .../show_isdn_active.plug401.raw | 8 + .../show_isdn_led-status.plug103.raw | 22 ++ .../show_isdn_led-status.plug103.yml | 28 +++ .../show_isdn_led-status.plug212.raw | 31 +++ .../show_isdn_led-status.plug212.yml | 28 +++ .../show_isdn_led-status.plug401.raw | 22 ++ .../show_isdn_led-status.plug401.yml | 28 +++ .../show_isdn_status_all.plug103.raw | 39 ++++ .../show_isdn_status_all.plug103.yml | 56 +++++ .../show_isdn_status_all.plug212.raw | 40 ++++ .../show_isdn_status_all.plug212.yml | 56 +++++ .../show_isdn_status_all.plug401.raw | 79 +++++++ .../show_isdn_status_all.plug401.yml | 74 +++++++ .../show_system_hardware.pbxplug103.raw | 23 ++ .../show_system_hardware.pbxplug103.yml | 26 +++ .../show_system_hardware.pbxplug212.raw | 17 ++ .../show_system_hardware.pbxplug212.yml | 26 +++ .../show_system_hardware.pbxplug401.raw | 25 +++ .../show_system_hardware.pbxplug401.yml | 26 +++ .../show_system_status.plug103.raw | 17 ++ .../show_system_status.plug103.yml | 18 ++ .../show_system_status.plug212.raw | 19 ++ .../show_system_status.plug212.yml | 18 ++ .../show_system_status.plug401.raw | 24 +++ .../show_system_status.plug401.yml | 18 ++ ...voice_dial-peer_voice_voip_all.plug103.raw | 79 +++++++ ...voice_dial-peer_voice_voip_all.plug103.yml | 85 ++++++++ ...voice_dial-peer_voice_voip_all.plug401.raw | 78 +++++++ ...voice_dial-peer_voice_voip_all.plug401.yml | 85 ++++++++ ...ce_dial-peer_voice_voip_all_al.plug212.raw | 76 +++++++ ...ce_dial-peer_voice_voip_all_al.plug212.yml | 85 ++++++++ .../show_voice_mos/show_voice_mos.plug103.raw | 27 +++ .../show_voice_mos/show_voice_mos.plug212.raw | 27 +++ .../show_voice_mos/show_voice_mos.plug401.raw | 27 +++ .../show_voice_sip-gateway.plug103.raw | 28 +++ .../show_voice_sip-gateway.plug103.yml | 29 +++ .../show_voice_sip-gateway.plug212.raw | 24 +++ .../show_voice_sip-gateway.plug212.yml | 28 +++ .../show_voice_sip-gateway.plug401.raw | 25 +++ .../show_voice_sip-gateway.plug401.yml | 28 +++ .../show_voice_sip-gateway_reset.plug103.raw | 0 .../show_voice_sip-gateway_reset.plug212.raw | 0 .../show_voice_sip-gateway_reset.plug401.raw | 0 ...show_voice_voice-port_port_all.plug103.raw | 7 + ...show_voice_voice-port_port_all.plug103.yml | 37 ++++ ...show_voice_voice-port_port_all.plug212.raw | 3 + ...show_voice_voice-port_port_all.plug212.yml | 17 ++ ...show_voice_voice-port_port_all.plug401.raw | 8 + ...show_voice_voice-port_port_all.plug401.yml | 42 ++++ .../show_voice_voice-port_pri_all.plug103.raw | 41 ++++ .../show_voice_voice-port_pri_all.plug103.yml | 42 ++++ .../show_voice_voice-port_pri_all.plug212.raw | 46 ++++ .../show_voice_voice-port_pri_all.plug212.yml | 42 ++++ .../show_voice_voice-port_pri_all.plug401.raw | 164 +++++++++++++++ .../show_voice_voice-port_pri_all.plug401.yml | 162 ++++++++++++++ ...voice_voice-port_pri_all_histo.plug103.raw | 20 ++ ...voice_voice-port_pri_all_histo.plug103.yml | 9 + ...voice_voice-port_pri_all_histo.plug212.raw | 20 ++ ...voice_voice-port_pri_all_histo.plug212.yml | 9 + ...voice_voice-port_pri_all_histo.plug401.raw | 87 ++++++++ ...voice_voice-port_pri_all_histo.plug401.yml | 23 ++ ...voice_voice-port_pri_all_reset.plug103.raw | 0 ...voice_voice-port_pri_all_reset.plug212.raw | 0 ...voice_voice-port_pri_all_reset.plug401.raw | 0 ...how_voice_voip-call_active_all.plug103.raw | 0 ...how_voice_voip-call_active_all.plug212.raw | 0 ...how_voice_voip-call_active_all.plug401.raw | 0 .../show_voice_voip-call_any_all.plug103.raw | 0 .../show_voice_voip-call_any_all.plug212.raw | 0 .../show_voice_voip-call_any_all.plug401.raw | 0 86 files changed, 2800 insertions(+), 1 deletion(-) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw create mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw create mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw create mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw create mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 2f2722cf41..c8bb897f1f 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,17 +684,28 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] +oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? +oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo +oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment +oneaccess_oneos_show_voice_voice-port_pri_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route +oneaccess_oneos_show_voice_sip-gateway_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice sip-gateway reset +oneaccess_oneos_show_voice_voip-call_any_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call any all oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] context oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp +oneaccess_oneos_show_voice_voip-call_active.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active +oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area +oneaccess_oneos_show_voice_sip-gateway.textfsm, .*, oneaccess_oneos, sh[[ow]] voice sip-gateway oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] +oneaccess_oneos_show_isdn_led-status.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn led-status +oneaccess_oneos_show_isdn_status_all.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn status all oneaccess_oneos_show_system_hardware.textfsm, .*, oneaccess_oneos, sh[[ow]] system hardware oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list @@ -704,8 +715,10 @@ oneaccess_oneos_show_software-image.textfsm, .*, oneaccess_oneos, sh[[ow]] softw oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief +oneaccess_oneos_show_isdn_active.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn active oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map -oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, show helpers +oneaccess_oneos_show_voice_mos.textfsm, .*, oneaccess_oneos, sh[[ow]] voice mos +oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, sh[[ow]] helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh oneaccess_oneos_show_memory.textfsm, .*, oneaccess_oneos, sh[[ow]] memory oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs @@ -714,6 +727,7 @@ oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* + paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm new file mode 100644 index 0000000000..4500a27328 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm @@ -0,0 +1,66 @@ +Value DIALPEER_POTS_UP (\d+) +Value DIALPEER_VOIP_UP (\d+) +Value SIP_GATEWAY_STATUS (no shutdown|shutdown|[nN]o Sip-gateway) +Value SIP_GATEWAY_REGISTERED (.*registered.*) +Value SIP_GATEWAY_NBR_REGISTERED (\d+) +Value SIP_GATEWAY_NBR_AVAILABLE (\d+) +Value SIP_GATEWAY_REGISTRAR (\S+:\d+) +Value SIP_GATEWAY_INTF (\S+\s\S+) +Value SIP_GATEWAY_INTF_IP (\S+) +Value SIP_GATEWAY_INTF_STATUS (\S+) +Value SIP_SERVER_STATUS (no shutdown|shutdown|[nN]o Sip-server) +Value VOICE_COM_STATUS (no shutdown|shutdown|[nN]o voice com) +Value TRACK_COND_VOICE_GW (\S+) +Value TRACK_COND_VOICE_PORT (\S+) +Value SYSLED_VOIP_COLOR (\S+|\-) +Value SYSLED_VOIP_STATE (\S+) +Value SYSLED_COM_COLOR (\S+|\-) +Value SYSLED_COM_STATE (\S+) +Value SYSLED_MAINTENANCE_COLOR (\S+|\-) +Value SYSLED_MAINTENANCE_STATE (\S+) +Value SYSLED_PRI_COLOR (\S+|\-) +Value SYSLED_PRI_STATE (\S+) +Value SYSLED_BRI1_COLOR (\S+|\-) +Value SYSLED_BRI1_STATE (\S+) +Value SYSLED_BRI2_COLOR (\S+|\-) +Value SYSLED_BRI2_STATE (\S+) + + +Start + ^\s*${DIALPEER_POTS_UP}\sDial\-peer\spots\sup + ^\s*${DIALPEER_VOIP_UP}\sDial\-peer\svoip\sup + ^\s*Sip\-gateway\sstatus\sis\s${SIP_GATEWAY_STATUS} -> SipGateway + ^\s*${SIP_GATEWAY_STATUS} + ^\s*Sip\-server\sstatus\sis\s${SIP_SERVER_STATUS} -> SipServer + ^\s*${SIP_SERVER_STATUS} + ^\s*voice com\sstatus\sis\s${VOICE_COM_STATUS} -> VoiceCom + ^\s*${VOICE_COM_STATUS} + ^\s*voice\sled\strack-conditions -> Track + ^\s*Sys LEDs -> SysLed + + + +SipGateway + ^\s*->\sis\s${SIP_GATEWAY_REGISTERED} + ^\s*${SIP_GATEWAY_NBR_REGISTERED}\/${SIP_GATEWAY_NBR_AVAILABLE}\sep\sis.*with\sregistrar\s${SIP_GATEWAY_REGISTRAR} + ^\s*->\sIF\s${SIP_GATEWAY_INTF}\s\[${SIP_GATEWAY_INTF_IP}\]\sis\s${SIP_GATEWAY_INTF_STATUS}\. + ^\s*$$ -> Start + +SipServer + ^\s*$$ -> Start + +VoiceCom + ^\s*$$ -> Start + +Track + ^\s*voice-gw\s+${TRACK_COND_VOICE_GW} + ^\s*voice-port\s+${TRACK_COND_VOICE_PORT} + ^\s*$$ -> Start + +SysLed + ^\s*SYS\sLED\s(VoIP|VOIP)\s*color=\s*${SYSLED_VOIP_COLOR}\s*,?\sstate=${SYSLED_VOIP_STATE} + ^\s*SYS\sLED\sCOM\s*color=\s*${SYSLED_COM_COLOR}\s*,?\sstate=${SYSLED_COM_STATE} + ^\s*SYS\sLED\sMaintenance\s*color=\s*${SYSLED_MAINTENANCE_COLOR}\s*,?\sstate=${SYSLED_MAINTENANCE_STATE} + ^\s*SYS\sLED\sPRI\s*color=\s*${SYSLED_PRI_COLOR}\s*,?\sstate=${SYSLED_PRI_STATE} + ^\s*SYS\sLED\sBRI1\s*color=\s*${SYSLED_BRI1_COLOR}\s*,?\sstate=${SYSLED_BRI1_STATE} + ^\s*SYS\sLED\sBRI2\s*color=\s*${SYSLED_BRI2_COLOR}\s*,?\sstate=${SYSLED_BRI2_STATE} diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm new file mode 100644 index 0000000000..99005147c9 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm @@ -0,0 +1,49 @@ +Value Required ISDN_LINE (\d+\/\d+) +Value PHYSICAL_TYPE (\S+) +Value PROTO_DESCRIPTOR (\S+) +Value PROTO_LINECODE (\S+) +Value PROTO_FRAMING (\S+) +Value CONFIG_STATE (\S+) +Value LOOP_STATE (\S+) +Value L1_STATUS (\S+) +Value AIS (\S+) +Value LOS (\S+) +Value RAI (\S+) +Value PRI_AIS_OCCURRENCES (\d+) +Value PRI_LOS_OCCURRENCES (\d+) +Value PRI_RDI_OCCURRENCES (\d+) +Value L2_STATUS (\S+) +Value L2_TXFRAMES_DCHANNEL (\d+) +Value L2_RXFRAMES_DCHANNEL (\d+) +Value L3_STATUS (no active call) + + + +Start + ^\s*isdn\sline\s+${ISDN_LINE} -> ISDNLINE + +ISDNLINE + ^\s+physical\stype\s+${PHYSICAL_TYPE} + ^\s+protocol\sdescriptor\s+${PROTO_DESCRIPTOR} + ^\s+linecode\s+${PROTO_LINECODE} + ^\s+framing\s+${PROTO_FRAMING} + ^\s+config\sstate\s+${CONFIG_STATE} + ^\s+loop\sstate\s+${LOOP_STATE} + ^\s+\-layer\s1\sstatus\s+${L1_STATUS} + ^\s*Alarm\sIndication\sSignal\s+\(AIS\)\s+${AIS} + ^\s*Loss\sOff\sSignal\s+\(LOS\)\s+${LOS} + ^\s*Remote\sIndication\sSignal\s+\(RAI\)\s+${RAI} + ^\s*pri\sAIS\soccurrence\(s\)\s+${PRI_AIS_OCCURRENCES} + ^\s*pri\sLOS\soccurrence\(s\)\s+${PRI_LOS_OCCURRENCES} + ^\s*pri\sRDI\soccurrence\(s\)\s+${PRI_RDI_OCCURRENCES} + ^\s+\-layer\s2\sstatus\s+${L2_STATUS} + ^\s+Tx\sframes\son\sD\schannel\s+${L2_TXFRAMES_DCHANNEL} + ^\s+Rx\sframes\son\sD\schannel\s+${L2_RXFRAMES_DCHANNEL} + ^\s+-layer\s3\sstatus -> L3Status + ^\s*$$ -> Record + ^\s*isdn\sline\s+${ISDN_LINE} -> ISDNLINE + +L3Status + ^\s*${L3_STATUS} + ^\s*$$ -> Record ISDNLINE + diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm new file mode 100644 index 0000000000..de868d57cf --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm @@ -0,0 +1,199 @@ +# global vars +Value DIAL_PEER (\d+) +Value CONFIG_STATE (\S+) +Value OPER_STATUS (\S+) +Value REGISTRATION_STATUS (\S+) +Value CURRENT_PROTOCOL (\S+) +Value LAST_OK (\d+) +Value USER_AGENT (\w+) +Value BW_USED (\d+) +Value CAC (\d+) +Value BW_UNUSED (\d+) +Value SIP_PROTOCOL_MODE (\S+) +Value SIP_PROTOCOL_CONFIGURED (\w+) +Value CURRENT_CALLS (\d+) +# outgoing call vars +Value OUTGOING_CALLS (\d+) +Value OUTGOING_BW_USED (\d+) +Value OUTGOING_CAC (\d+) +Value OUTGOING_BW_UNUSED (\d+) +Value OUTGOING_FAILURES (\d+) +Value OUTGOING_FAILURES_Q931 (\d+) +Value OUTGOING_FAILURES_Q931_0_NORMAL (\d+) +Value OUTGOING_FAILURES_Q931_1_NORMAL (\d+) +Value OUTGOING_FAILURES_Q931_16_NORMAL (\d+) +Value OUTGOING_FAILURES_Q931_17_BUSY (\d+) +Value OUTGOING_FAILURES_Q931_18_NO_ANSWER (\d+) +Value OUTGOING_FAILURES_Q931_2_UNAVAILABLE_RESOURCES (\d+) +Value OUTGOING_FAILURES_Q931_3_UNAVAILABLE_SERVICE (\d+) +Value OUTGOING_FAILURES_Q931_4_SERVICE_NOT_PROVIDED (\d+) +Value OUTGOING_FAILURES_Q931_5_INVALID_MESSAGE (\d+) +Value OUTGOING_FAILURES_Q931_6_PROTOCOL (\d+) +Value OUTGOING_FAILURES_Q931_7_INTERWORKING (\d+) +Value OUTGOING_FAILURES_SIP_CALL (\d+) +Value OUTGOING_FAILURES_CAPABILITIES (\d+) +Value OUTGOING_FAILURES_PROTOCOL (\d+) +Value OUTGOING_FAILURES_INTERNAL_CALL (\d+) +Value OUTGOING_FAILURES_DSP_UNAVAILABLE (\d+) +Value OUTGOING_FAILURES_MAX_BW_EXCEEDED (\d+) +Value OUTGOING_FAILURES_MAX_CONN_EXCEEDED (\d+) +Value OUTGOING_FAILURES_RTP_PAYLOAD (\d+) +Value OUTGOING_FAILURES_NOT_SPECIFIED (\d+) +# incoming call vars +Value INCOMING_CALLS (\d+) +Value INCOMING_BW_USED (\d+) +Value INCOMING_CAC (\d+) +Value INCOMING_BW_UNUSED (\d+) +Value INCOMING_FAILURES (\d+) +Value INCOMING_FAILURES_LOCAL_PORT (\d+) +Value INCOMING_FAILURES_SIP_CALL (\d+) +Value INCOMING_FAILURES_CAPABILITIES (\d+) +Value INCOMING_FAILURES_PROTOCOL (\d+) +Value INCOMING_FAILURES_INTERNAL_CALL (\d+) +Value INCOMING_FAILURES_DSP_UNAVAILABLE (\d+) +Value INCOMING_FAILURES_UNKNOWN_NUMBER (\d+) +Value INCOMING_FAILURES_CHANNEL_OR_PORT_UNAVAILABLE (\d+) +Value INCOMING_FAILURES_MAX_BW_EXCEEDED (\d+) +Value INCOMING_FAILURES_MAX_CONN_EXCEEDED (\d+) +Value INCOMING_FAILURES_RTP_PAYLOAD (\d+) +Value INCOMING_FAILURES_NOT_SPECIFIED (\d+) +# VOICE & FAX STATS +Value VOICE_FAX_REAL_DSP_SWITCHING (\d+) +# RTP vars +Value RTP_PKTS_TRANSMITTED (\d+) +Value RTP_PKTS_RECEIVED (\d+) +Value RTP_BYTES_TRANSMITTED (\d+) +Value RTP_BYTES_RECEIVED (\d+) +Value RTP_EXCESSIVE_JITTER_EVENTS (\d+) +Value RTP_PKTS_LOST (\d+) +Value RTP_PKTS_INVALID (\d+) +# frame error call vars +Value FRAME_ERROR_RATE_TOTAL (\d+) +Value FRAME_ERROR_RATE_LT_0_01 (\d+) +Value FRAME_ERROR_RATE_LT_0_1 (\d+) +Value FRAME_ERROR_RATE_LT_0_5 (\d+) +Value FRAME_ERROR_RATE_LT_1 (\d+) +Value FRAME_ERROR_RATE_LT_5 (\d+) +Value FRAME_ERROR_RATE_GE_5 (\d+) +# modem passthrough vars +Value MODEM_SWITCHES (\d+) +# FAX vars +Value FAX_OUTGOING (\d+) +Value FAX_INCOMING (\d+) +Value FAX_FAILURES (\d+) +Value FAX_FAILURES_REQUEST_MODE (\d+) +Value FAX_FAILURES_PRE_MSG (\d+) +Value FAX_FAILURES_PAGE (\d+) +Value FAX_PKTS_TRANSMITTED (\d+) +Value FAX_PKTS_RECEIVED (\d+) +Value FAX_BYTES_TRANSMITTED (\d+) +Value FAX_BYTES_RECEIVED (\d+) +Value FAX_PKTS_LOST (\d+) + + +Start + ^\s*Dial\sPeer\s+${DIAL_PEER} + ^\s*Config\sstate\s+${CONFIG_STATE} + ^\s*Operstatus\s+${OPER_STATUS} + ^\s*Registration\sstatus\s+${REGISTRATION_STATUS} + ^\s*Current\sprotocol\s+${CURRENT_PROTOCOL} + ^\s*lastOK\s+${LAST_OK} + ^\s*User\sAgent\s+\(?${USER_AGENT}\)? + ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${BW_USED}\s*\/\s*${CAC}\s*\/\s*${BW_UNUSED} + ^\s*Current\ssip-protocol-mode\s+${SIP_PROTOCOL_MODE}.*:\s${SIP_PROTOCOL_CONFIGURED} + ^\s*Current\sCalls\s+${CURRENT_CALLS} + ^\s*Outgoing\sCalls\s*$$ -> OutgoingCalls + ^\s*Incoming\sCalls\s*$$ -> IncomingCalls + ^\s*Voice\s\&\sFAX\sstatistics\s*$$ -> VoiceFax + ^\s*RTP\sstatistics\s*$$ -> RTP + ^\s*Number\sof\scalls\swith\sframe\serror\srate\s*$$ -> CallsWithFrameError + ^\s*Modem\spassthrough\s*$$ -> MODEM + ^\s*T38\sFAX\sCalls\s*$$ -> FAX + ^.* + ^\s*$$ + ^. -> Error + +OutgoingCalls + ^\s*Outgoing\sCalls\s+${OUTGOING_CALLS} + ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${OUTGOING_BW_USED}\s*\/\s*${OUTGOING_CAC}\s*\/\s*${OUTGOING_BW_UNUSED} + ^\s*Outgoing\scalls\sfailures\s+${OUTGOING_FAILURES} + ^\s*Q931\sCall\sfailures\s+${OUTGOING_FAILURES_Q931} + ^\s*Cause\sClass\s0\s+.*${OUTGOING_FAILURES_Q931_0_NORMAL} + ^\s*Cause\sClass\s1\s+.*${OUTGOING_FAILURES_Q931_1_NORMAL} + ^\s*Normal\sCause\s\(16\)\s+${OUTGOING_FAILURES_Q931_16_NORMAL} + ^\s*User\sbusy\s\(17\)\s+${OUTGOING_FAILURES_Q931_17_BUSY} + ^\s*No\sanswer\s\(18\)\s+${OUTGOING_FAILURES_Q931_18_NO_ANSWER} + ^\s*Cause\sClass\s2\s+.*${OUTGOING_FAILURES_Q931_2_UNAVAILABLE_RESOURCES} + ^\s*Cause\sClass\s3\s+.*${OUTGOING_FAILURES_Q931_3_UNAVAILABLE_SERVICE} + ^\s*Cause\sClass\s4\s+.*${OUTGOING_FAILURES_Q931_4_SERVICE_NOT_PROVIDED} + ^\s*Cause\sClass\s5\s+.*${OUTGOING_FAILURES_Q931_5_INVALID_MESSAGE} + ^\s*Cause\sClass\s6\s+.*${OUTGOING_FAILURES_Q931_6_PROTOCOL} + ^\s*Cause\sClass\s7\s+.*${OUTGOING_FAILURES_Q931_7_INTERWORKING} + ^\s*SIP\sCall\sfailures\s+${OUTGOING_FAILURES_SIP_CALL} + ^\s*Incompatible\scapabilities\s+${OUTGOING_FAILURES_CAPABILITIES} + ^\s*Protocol\serrors\s+${OUTGOING_FAILURES_PROTOCOL} + ^\s*Internal\scall\sfailures\s+${OUTGOING_FAILURES_INTERNAL_CALL} + ^\s*DSP\sunavailable\s+${OUTGOING_FAILURES_DSP_UNAVAILABLE} + ^\s*Max-bandwidth\sexceeded\s+${OUTGOING_FAILURES_MAX_BW_EXCEEDED} + ^\s*Max-connection\sexceeded\s+${OUTGOING_FAILURES_MAX_CONN_EXCEEDED} + ^\s*RTP\sdynamic-payload\serror\s+${OUTGOING_FAILURES_RTP_PAYLOAD} + ^\s*Not\sspecified\s+${OUTGOING_FAILURES_NOT_SPECIFIED} + ^\s*Incoming\sCalls\s*$$ -> IncomingCalls + +IncomingCalls + ^\s*Incoming\scalls\s+${INCOMING_CALLS} + ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${INCOMING_BW_USED}\s*\/\s*${INCOMING_CAC}\s*\/\s*${INCOMING_BW_UNUSED} + ^\s*Incoming\scalls\sfailures\s+${INCOMING_FAILURES} + ^\s*Local\sPort\sCall\sfailures\s+${INCOMING_FAILURES_LOCAL_PORT} + ^\s*SIP\sCall\sfailures\s+${INCOMING_FAILURES_SIP_CALL} + ^\s*Incompatible\scapabilities\s+${INCOMING_FAILURES_CAPABILITIES} + ^\s*Protocol\serrors\s+${INCOMING_FAILURES_PROTOCOL} + ^\s*Internal\scall\sfailures\s+${INCOMING_FAILURES_INTERNAL_CALL} + ^\s*DSP\sunavailable\s+${INCOMING_FAILURES_DSP_UNAVAILABLE} + ^\s*Unknown\snumber\s+${INCOMING_FAILURES_UNKNOWN_NUMBER} + ^\s*Channel\s\/\sport\sunavailable\s+${INCOMING_FAILURES_CHANNEL_OR_PORT_UNAVAILABLE} + ^\s*Max-bandwidth\sexceeded\s+${INCOMING_FAILURES_MAX_BW_EXCEEDED} + ^\s*Max-connection\sexceeded\s+${INCOMING_FAILURES_MAX_CONN_EXCEEDED} + ^\s*RTP\sdynamic-payload\serror\s+${INCOMING_FAILURES_RTP_PAYLOAD} + ^\s*Not\sspecified\s+${INCOMING_FAILURES_NOT_SPECIFIED} + ^\s*Voice\s.\sFax\sstatistics\s*$$ -> VoiceFax + ^\s*RTP\sstatistics\s*$$ -> RTP + +VoiceFax + ^\s*Number\sof\sreal\sdsp\sswitching\s+${VOICE_FAX_REAL_DSP_SWITCHING} + ^\s*RTP\sstatistics\s*$$ -> RTP + +RTP + ^\s*Number\sof\stransmitted\spackets\s+${RTP_PKTS_TRANSMITTED} + ^\s*Number\sof\sreceived\spackets\s+${RTP_PKTS_RECEIVED} + ^\s*Number\sof\stransmitted\sbytes\s+${RTP_BYTES_TRANSMITTED} + ^\s*Number\sof\sreceived\sbytes\s+${RTP_BYTES_RECEIVED} + ^\s*Number\sof\sexcessive\sjitter\sevents\s+${RTP_EXCESSIVE_JITTER_EVENTS} + ^\s*Number\sof\slost\spackets\s+${RTP_PKTS_LOST} + ^\s*Number\sof\sinvalid\spackets\s+${RTP_PKTS_INVALID} + ^\s*Number\sof\scalls\swith\sframe\serror\srate\s*$$ -> CallsWithFrameError + +CallsWithFrameError + ^\s*total + ^\s*${FRAME_ERROR_RATE_TOTAL}\s*${FRAME_ERROR_RATE_LT_0_01}\s*${FRAME_ERROR_RATE_LT_0_1}\s*${FRAME_ERROR_RATE_LT_0_5}\s*${FRAME_ERROR_RATE_LT_1}\s*${FRAME_ERROR_RATE_LT_5}\s*${FRAME_ERROR_RATE_GE_5}\s* + ^\s*Modem\spassthrough\s*$$ -> MODEM + +MODEM + ^\s*Number\sof\sswitching\sto\smodem\smode\s+${MODEM_SWITCHES} + ^\s*T38\sFAX\sCalls\s*$$ -> FAX + + +FAX + ^\s*Number\sof\soutgoing\sfax\s+${FAX_OUTGOING} + ^\s*Number\sof\sincoming\sfax\s+${FAX_INCOMING} + ^\s*Number\sof\sfailures\s+${FAX_FAILURES} + ^\s*Request\sMode\sfailure\s+${FAX_FAILURES_REQUEST_MODE} + ^\s*Pre-message\sprocedure\sfailure\s+${FAX_FAILURES_PRE_MSG} + ^\s*Page\sfailure\s+${FAX_FAILURES_PAGE} + ^\s*Number\sof\stransmitted\spackets\s+${FAX_PKTS_TRANSMITTED} + ^\s*Number\sof\sreceived\spackets\s+${FAX_PKTS_RECEIVED} + ^\s*Number\sof\stransmitted\sbytes\s+${FAX_BYTES_TRANSMITTED} + ^\s*Number\sof\sreceived\sbytes\s+${FAX_BYTES_RECEIVED} + ^\s*Number\sof\slost\spackets\s+${FAX_PKTS_LOST} + ^\s*$$ -> Start + diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm new file mode 100644 index 0000000000..fd94e216d8 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm @@ -0,0 +1,55 @@ +Value GW_STATE (\S+) +Value GW_OPERSTATUS (\S+) +Value List SOCKETS (\S+:\d+) +Value REGISTRATION_STATE (\S+) +Value RTP_MONITORING (\S+) +Value REGISTRAR (\S+:\d+) +Value REGISTRAR_NBR_REGISTERED (\d+) +Value REGISTRAR_NBR_AVAILABLE (\d+) +Value BW_USED (\d+) +Value CAC (\d+) +Value BW_UNUSED (\d+) +Value THOLD_BW_TO_SWITCH (\S+) +Value MAX_BW_EXCEEDED (\d+) +Value NBR_LOWER_SWITCHING (\d+) +Value REGISTRATION_ERRORS (\d+) +Value SIP_PROTOCOL_MODE (\S+) +Value SIP_PROTOCOL_CONFIGURED (\S+) +Value CURRENT_CALL (\d+) +Value CALLS_RELEASED_RTP_MONITORING (\d+) +Value AUTHENTICATION_REJECTS (\d+) +Value DROPPED_PKT (\d+) +Value DROPPED_PKT_RATE_LIMIT (\d+) +Value DROPPED_PKT_MEMORY_LIMIT (\d+) +Value DROPPED_PKT_CPU_LIMIT (\d+) +Value DROPPED_PKT_ACL (\d+) +Value DROPPED_PKT_UNKNOWN_PROXY (\d+) + +Start + ^\s*Sip-Gateway\sstatistics + ^\s*Gateway\sstate\s+${GW_STATE} + ^\s*Operstatus\s+${GW_OPERSTATUS} + ^\s*Sockidx:\s*\d+,\s*${SOCKETS} + ^\s*Registration\sstate\s+${REGISTRATION_STATE} + ^\s*RTP\smonitoring\s+${RTP_MONITORING} + ^\s*Nb\sRegistered\sendpoints + ^\s*\[${REGISTRAR_NBR_REGISTERED}\/${REGISTRAR_NBR_AVAILABLE}\]\s+${REGISTRAR} + ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${BW_USED}\s*\/\s*${CAC}\s*\/\s*${BW_UNUSED} + ^\s*Threshold\sof\sbandwidth\sto\sswitch\s+${THOLD_BW_TO_SWITCH} + ^\s*Max\sBandwidth\sexceeded\s+${MAX_BW_EXCEEDED} + ^\s*Number\sof\slower\sswitching\s+${NBR_LOWER_SWITCHING} + ^\s*Registration\serrors\s+${REGISTRATION_ERRORS} + ^\s*Current\ssip-protocol-mode\s+${SIP_PROTOCOL_MODE}\s*\(config\s*:\s*${SIP_PROTOCOL_CONFIGURED}\) + ^\s*Current\scall\s+${CURRENT_CALL} + ^\s*Calls\sreleased\sby\srtp\smonitoring\s+${CALLS_RELEASED_RTP_MONITORING} + ^\s*Authentication\sRejects\s+${AUTHENTICATION_REJECTS} + ^\s*Dropped\spackets\s+${DROPPED_PKT} + ^\s*due\sto\srate\slimitation\s+${DROPPED_PKT_RATE_LIMIT} + ^\s*due\sto\smemory\slimitation\s+${DROPPED_PKT_MEMORY_LIMIT} + ^\s*due\sto\sCPU\slimitation\s+${DROPPED_PKT_CPU_LIMIT} + ^\s*due\sto\sdenied\sby\sacl\s+${DROPPED_PKT_ACL} + ^\s*due\sto\sunknown\sproxy\s+${DROPPED_PKT_UNKNOWN_PROXY} + ^.* + ^\s*$$ + ^. -> Error + diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm new file mode 100644 index 0000000000..a54a2adf8f --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm @@ -0,0 +1,10 @@ +Value Required PORT (\d+) +Value Required LP (\d+) +Value SENSE (\S+|\S+\s\[\S+\]) +Value IF_STATE (\w+) +Value VP_STATE (\w+) + +Start + ^\s*port\s+:\s+${PORT}\s+lp\s+:\s+${LP}\s+sense\s+:\s+${SENSE}\s+(if-state\s+:\s+${IF_STATE})?\s*\(?vp-state\s*:\s+${VP_STATE}\s*\)? -> Record + ^\s*$$ + ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm new file mode 100644 index 0000000000..78fe7c4404 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm @@ -0,0 +1,89 @@ +Value Required PORT (\d+\/\d+) +Value PHYSICAL_TYPE (\S+) +Value PROTO_DESCRIPTOR (\S+) +Value CONFIG_STATE (\S+) +Value LOOP_STATE (\S+) +Value FRAMING (\S+) +Value L1_STATUS (\S+) +Value AIS (\S+) +Value LOS (\S+) +Value RAI (\S+) +Value PRI_AIS_OCCURRENCES (\d+) +Value PRI_LOS_OCCURRENCES (\d+) +Value PRI_RAI_OCCURRENCES (\d+) +Value L2_STATUS (\S+) +Value PRI_TX_FRAMES_ON_D_CHANNEL (\d+) +Value PRI_RX_FRAMES_ON_D_CHANNEL (\d+) +Value ATTACHED_VOIP_DIAL_PEER (\d+) +Value NBR_VOICE_COMMunication (\d+) +Value OUTGOING_CALLS (\d+) +Value OUTGOING_FAILURES (\d+) +Value OUTGOING_FAILURES_PHYSICAL_INTF_DOWN (\d+) +Value OUTGOING_FAILURES_0_NORMAL (\d+) +Value OUTGOING_FAILURES_1_NORMAL (\d+) +Value OUTGOING_FAILURES_16_NORMAL (\d+) +Value OUTGOING_FAILURES_17_BUSY (\d+) +Value OUTGOING_FAILURES_18_NO_ANSWER (\d+) +Value OUTGOING_FAILURES_2_UNAVAILABLE_RESOURCES (\d+) +Value OUTGOING_FAILURES_3_UNAVAILABLE_SERVICE (\d+) +Value OUTGOING_FAILURES_4_SERVICE_NOT_PROVIDED (\d+) +Value OUTGOING_FAILURES_5_INVALID_MESSAGE (\d+) +Value OUTGOING_FAILURES_6_PROTOCOL (\d+) +Value OUTGOING_FAILURES_7_INTERWORKING (\d+) +Value INCOMING_CALLS (\d+) +Value INCOMING_CALLS_BACKUP_INVOKED (\d+) +Value INCOMING_FAILURES (\d+) +Value INCOMING_FAILURES_REMOTE (\d+) +Value INCOMING_FAILURES_UNKOWN_NUMBER (\d+) +Value INCOMING_FAILURES_DSP_UNAVAILABLE (\d+) +Value INCOMING_FAILURES_NO_VOIP_RESOURCE_AVAILABLE (\d+) +Value INCOMING_FAILURES_NOT_SPECIFIED (\d+) + + +Start + ^\s*voice\sport -> Continue.Record + ^\s*voice\sport\s+${PORT} + ^\s*physical\stype\s+${PHYSICAL_TYPE} + ^\s*protocol\sdescriptor\s+${PROTO_DESCRIPTOR} + ^\s*config\sstate\s+${CONFIG_STATE} + ^\s*loop\sstate\s+${LOOP_STATE} + ^\s*framing\s+${FRAMING} + ^\s*layer\s1\sstatus\s+${L1_STATUS} + ^\s*Alarm\sIndication\sSignal\s+\(AIS\)\s+${AIS} + ^\s*Loss\sOff\sSignal\s+\(LOS\)\s+${LOS} + ^\s*Remote\sAlarm\sIndication\s+\(RAI\)\s+${RAI} + ^\s*pri\sAIS\soccurrence\(s\)\s+${PRI_AIS_OCCURRENCES} + ^\s*pri\sLOS\soccurrence\(s\)\s+${PRI_LOS_OCCURRENCES} + ^\s*pri\sRAI\soccurrence\(s\)\s+${PRI_RAI_OCCURRENCES} + ^\s*layer\s2\sstatus\s+${L2_STATUS} + ^\s*pri\sTx\sframes\son\sD\schannel\s+${PRI_TX_FRAMES_ON_D_CHANNEL} + ^\s*pri\sRx\sframes\son\sD\schannel\s+${PRI_RX_FRAMES_ON_D_CHANNEL} + ^\s*attached\svoip\sdial\speer\s+${ATTACHED_VOIP_DIAL_PEER} + ^\s*number\sof\svoice\scommunication\s+${NBR_VOICE_COMMunication} + ^\s*Outgoing\scalls\s+${OUTGOING_CALLS} + ^\s*Outgoing\scalls\sfailures\s+${OUTGOING_FAILURES} + ^\s*Physical\sInterface\sdown\s+${OUTGOING_FAILURES_PHYSICAL_INTF_DOWN} + ^\s*Cause\sClass\s0\s+.*${OUTGOING_FAILURES_0_NORMAL} + ^\s*Cause\sClass\s1\s+.*${OUTGOING_FAILURES_1_NORMAL} + ^\s*Normal\sCause\s\(16\)\s+${OUTGOING_FAILURES_16_NORMAL} + ^\s*User\sbusy\s\(17\)\s+${OUTGOING_FAILURES_17_BUSY} + ^\s*No\sanswer\s\(18\)\s+${OUTGOING_FAILURES_18_NO_ANSWER} + ^\s*Cause\sClass\s2\s+.*${OUTGOING_FAILURES_2_UNAVAILABLE_RESOURCES} + ^\s*Cause\sClass\s3\s+.*${OUTGOING_FAILURES_3_UNAVAILABLE_SERVICE} + ^\s*Cause\sClass\s4\s+.*${OUTGOING_FAILURES_4_SERVICE_NOT_PROVIDED} + ^\s*Cause\sClass\s5\s+.*${OUTGOING_FAILURES_5_INVALID_MESSAGE} + ^\s*Cause\sClass\s6\s+.*${OUTGOING_FAILURES_6_PROTOCOL} + ^\s*Cause\sClass\s7\s+.*${OUTGOING_FAILURES_7_INTERWORKING} + ^\s*Incoming\scalls\s+${INCOMING_CALLS} + ^\s*Incoming\scalls\sbackup\sinvoked\s+${INCOMING_CALLS_BACKUP_INVOKED} + ^\s*Incoming\scalls\sfailures\s+${INCOMING_FAILURES} + ^\s*Remote\sfailure\s+${INCOMING_FAILURES_REMOTE} + ^\s*Unknown\snumber\s+${INCOMING_FAILURES_UNKOWN_NUMBER} + ^\s*DSP\sunavailable\s+${INCOMING_FAILURES_DSP_UNAVAILABLE} + ^\s*No\sVoIP\sresource\savailable\s+${INCOMING_FAILURES_NO_VOIP_RESOURCE_AVAILABLE} + ^\s*Not\sspecified\s+${INCOMING_FAILURES_NOT_SPECIFIED} + ^.* + ^\s*$$ + ^. -> Error + + diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm new file mode 100644 index 0000000000..feac194e55 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm @@ -0,0 +1,24 @@ +Value Required PORT (\d+\/\d+) +Value PHYSICAL_TYPE (\S+) +Value PROTO_DESCRIPTOR (\S+) +Value ATTACHED_VOIP_DIAL_PEER (\d+) +Value DATE_LAST_RESET (.*) +Value MAX_CHANNELS_USED (\d+) +Value MAX_CHANNELS_AVAILABLE (\d+) + + + + + +Start + ^\s*voice\sport\s+${PORT} -> VoicePort + ^\s*$$ + ^. -> Error + +VoicePort + ^\s*physical\stype\s+${PHYSICAL_TYPE} + ^\s*protocol\sdescriptor\s+${PROTO_DESCRIPTOR} + ^\s*attached\svoip\sdial\speer\s+${ATTACHED_VOIP_DIAL_PEER} + ^\s*date\sof\slast\sreset\s+${DATE_LAST_RESET} + ^\s*max\schannel\(s\)\sused\s+${MAX_CHANNELS_USED}\/${MAX_CHANNELS_AVAILABLE} + ^\s*voice\sport\s+${PORT} -> Record VoicePort diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw new file mode 100644 index 0000000000..b373969207 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw @@ -0,0 +1,7 @@ + ISDN ACTIVE CALLS +-------------------------------------------------------------------------------- +App. Call Calling Called Call Port BChan Call-ref call-id + Type Number Number Duration +-------------------------------------------------------------------------------- +no isdn active calls... +-------------------------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw new file mode 100644 index 0000000000..872b24aafb --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw @@ -0,0 +1,8 @@ +-------------------------------------------------------------------------------- + ISDN ACTIVE CALLS +-------------------------------------------------------------------------------- +App. Call Calling Called Call Port BChan Call-ref call-id + Type Number Number Duration +-------------------------------------------------------------------------------- +no isdn active calls... +-------------------------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw new file mode 100644 index 0000000000..872b24aafb --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw @@ -0,0 +1,8 @@ +-------------------------------------------------------------------------------- + ISDN ACTIVE CALLS +-------------------------------------------------------------------------------- +App. Call Calling Called Call Port BChan Call-ref call-id + Type Number Number Duration +-------------------------------------------------------------------------------- +no isdn active calls... +-------------------------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw new file mode 100644 index 0000000000..99408d2135 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw @@ -0,0 +1,22 @@ + Status of VOIP service + + 1 Dial-peer pots up. + 1 Dial-peer voip up. + + Sip-gateway status is no shutdown, + -> is registered + 1/1 ep is registered with registrar sip.blabla.be:5060 + -> IF loopback 1 [1.2.3.4] is up. + + No Sip-server, + + no voice com... + +voice led track-conditions + voice-gw any + voice-port no + +Sys LEDs +SYS LED VoIP color= GREEN , state=ON +SYS LED COM color= - , state=OFF +SYS LED Maintenance color= - , state=OFF diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml new file mode 100644 index 0000000000..e7350635ff --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml @@ -0,0 +1,28 @@ +--- +parsed_sample: + - dialpeer_pots_up: "1" + dialpeer_voip_up: "1" + sip_gateway_status: "no shutdown" + sip_gateway_registered: "registered" + sip_gateway_nbr_registered: "1" + sip_gateway_nbr_available: "1" + sip_gateway_registrar: "sip.blabla.be:5060" + sip_gateway_intf: "loopback 1" + sip_gateway_intf_ip: "1.2.3.4" + sip_gateway_intf_status: "up" + sip_server_status: "No Sip-server" + voice_com_status: "no voice com" + track_cond_voice_gw: "any" + track_cond_voice_port: "no" + sysled_voip_color: "GREEN" + sysled_voip_state: "ON" + sysled_com_color: "-" + sysled_com_state: "OFF" + sysled_maintenance_color: "-" + sysled_maintenance_state: "OFF" + sysled_pri_color: "" + sysled_pri_state: "" + sysled_bri1_color: "" + sysled_bri1_state: "" + sysled_bri2_color: "" + sysled_bri2_state: "" diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw new file mode 100644 index 0000000000..7264496a93 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw @@ -0,0 +1,31 @@ + + Status of VOIP service + + 1 Dial-peer pots up. + 1 Dial-peer voip up. + + Sip-gateway status is no shutdown, + -> is registered + 1/1 ep is registered with registrar sip.blabla.be:5060 + -> IF loopback 1 [1.2.3.4] is up. + + No Sip-server, + + no voice com... + +Isdn virtual LEDs +isdnshut = 1 0 0 +Layer1State = A - - +nbcomm = 0 0 0 + +voice led track-conditions + voice-gw any + voice-port any + +Sys LEDs +SYS LED VOIP color=GREEN state=ON + +SYS LED PRI color=GREEN state=OFF +SYS LED BRI1 color=- state=OFF +SYS LED BRI2 color=- state=OFF + diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml new file mode 100644 index 0000000000..e95f48ef58 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml @@ -0,0 +1,28 @@ +--- +parsed_sample: + - dialpeer_pots_up: "1" + dialpeer_voip_up: "1" + sip_gateway_status: "no shutdown" + sip_gateway_registered: "registered" + sip_gateway_nbr_registered: "1" + sip_gateway_nbr_available: "1" + sip_gateway_registrar: "sip.blabla.be:5060" + sip_gateway_intf: "loopback 1" + sip_gateway_intf_ip: "1.2.3.4" + sip_gateway_intf_status: "up" + sip_server_status: "No Sip-server" + voice_com_status: "no voice com" + track_cond_voice_gw: "any" + track_cond_voice_port: "any" + sysled_voip_color: "GREEN" + sysled_voip_state: "ON" + sysled_com_color: "" + sysled_com_state: "" + sysled_maintenance_color: "" + sysled_maintenance_state: "" + sysled_pri_color: "GREEN" + sysled_pri_state: "OFF" + sysled_bri1_color: "-" + sysled_bri1_state: "OFF" + sysled_bri2_color: "-" + sysled_bri2_state: "OFF" diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw new file mode 100644 index 0000000000..57f35362c7 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw @@ -0,0 +1,22 @@ + Status of VOIP service + + 1 Dial-peer pots up. + 1 Dial-peer voip up. + + Sip-gateway status is no shutdown, + -> is registered + 1/1 ep is registered with registrar sip.blabla.be:5060 + -> IF loopback 1 [1.2.3.4] is up. + + Sip-server status is shutdown, + + no voice com... + +voice led track-conditions + voice-gw any + voice-port no + +Sys LEDs +SYS LED VoIP color= GREEN , state=ON +SYS LED COM color= - , state=OFF +SYS LED Maintenance color= - , state=OFF diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml new file mode 100644 index 0000000000..488cca2d63 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml @@ -0,0 +1,28 @@ +--- +parsed_sample: + - dialpeer_pots_up: "1" + dialpeer_voip_up: "1" + sip_gateway_status: "no shutdown" + sip_gateway_registered: "registered" + sip_gateway_nbr_registered: "1" + sip_gateway_nbr_available: "1" + sip_gateway_registrar: "sip.blabla.be:5060" + sip_gateway_intf: "loopback 1" + sip_gateway_intf_ip: "1.2.3.4" + sip_gateway_intf_status: "up" + sip_server_status: "shutdown" + voice_com_status: "no voice com" + track_cond_voice_gw: "any" + track_cond_voice_port: "no" + sysled_voip_color: "GREEN" + sysled_voip_state: "ON" + sysled_com_color: "-" + sysled_com_state: "OFF" + sysled_maintenance_color: "-" + sysled_maintenance_state: "OFF" + sysled_pri_color: "" + sysled_pri_state: "" + sysled_bri1_color: "" + sysled_bri1_state: "" + sysled_bri2_color: "" + sysled_bri2_state: "" diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw new file mode 100644 index 0000000000..0497c8bd8e --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw @@ -0,0 +1,39 @@ + isdn line 5/0 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state up + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) ON + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/1 + protocol descriptor BRI_NT + config state down + -layer 1 status deactivated + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/2 + protocol descriptor BRI_NT + config state down + -layer 1 status deactivated + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml new file mode 100644 index 0000000000..83992f1511 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml @@ -0,0 +1,56 @@ +--- +parsed_sample: + - isdn_line: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "DF" + config_state: "up" + loop_state: "down" + l1_status: "deactivated" + ais: "OFF" + los: "ON" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "1" + pri_rdi_occurrences: "0" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/1" + physical_type: "" + proto_descriptor: "BRI_NT" + proto_linecode: "" + proto_framing: "" + config_state: "down" + loop_state: "" + l1_status: "deactivated" + ais: "" + los: "" + rai: "" + pri_ais_occurrences: "" + pri_los_occurrences: "" + pri_rdi_occurrences: "" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/2" + physical_type: "" + proto_descriptor: "BRI_NT" + proto_linecode: "" + proto_framing: "" + config_state: "down" + loop_state: "" + l1_status: "deactivated" + ais: "" + los: "" + rai: "" + pri_ais_occurrences: "" + pri_los_occurrences: "" + pri_rdi_occurrences: "" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw new file mode 100644 index 0000000000..c801bb1e08 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw @@ -0,0 +1,40 @@ + isdn line 5/0 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing MF + config state up + loop state down + -layer 1 status activated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RDI occurrence(s) 0 + -layer 2 status activated + ces= 1 , tei= 0 , state= established + Tx frames on D channel 50 + Rx frames on D channel 50 + -layer 3 status + no active call + + isdn line 5/1 + protocol descriptor BRI_NT + config state down + -layer 1 status deactivated + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/2 + protocol descriptor BRI_NT + config state down + -layer 1 status deactivated + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml new file mode 100644 index 0000000000..b48473eeb2 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml @@ -0,0 +1,56 @@ +--- +parsed_sample: + - isdn_line: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "MF" + config_state: "up" + loop_state: "down" + l1_status: "activated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rdi_occurrences: "0" + l2_status: "activated" + l2_txframes_dchannel: "50" + l2_rxframes_dchannel: "50" + l3_status: "no active call" + - isdn_line: "5/1" + physical_type: "" + proto_descriptor: "BRI_NT" + proto_linecode: "" + proto_framing: "" + config_state: "down" + loop_state: "" + l1_status: "deactivated" + ais: "" + los: "" + rai: "" + pri_ais_occurrences: "" + pri_los_occurrences: "" + pri_rdi_occurrences: "" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/2" + physical_type: "" + proto_descriptor: "BRI_NT" + proto_linecode: "" + proto_framing: "" + config_state: "down" + loop_state: "" + l1_status: "deactivated" + ais: "" + los: "" + rai: "" + pri_ais_occurrences: "" + pri_los_occurrences: "" + pri_rdi_occurrences: "" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw new file mode 100644 index 0000000000..be39b0c760 --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw @@ -0,0 +1,79 @@ + isdn line 5/0 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state up + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) ON + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/1 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state down + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/2 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state down + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call + + isdn line 5/3 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state down + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml new file mode 100644 index 0000000000..7058a1efdb --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml @@ -0,0 +1,74 @@ +--- +parsed_sample: + - isdn_line: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "DF" + config_state: "up" + loop_state: "down" + l1_status: "deactivated" + ais: "OFF" + los: "ON" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "1" + pri_rdi_occurrences: "0" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/1" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "DF" + config_state: "down" + loop_state: "down" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rdi_occurrences: "0" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/2" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "DF" + config_state: "down" + loop_state: "down" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rdi_occurrences: "0" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" + - isdn_line: "5/3" + physical_type: "E1" + proto_descriptor: "E1_PRI" + proto_linecode: "hdb3" + proto_framing: "DF" + config_state: "down" + loop_state: "down" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rdi_occurrences: "0" + l2_status: "deactivated" + l2_txframes_dchannel: "0" + l2_rxframes_dchannel: "0" + l3_status: "no active call" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw new file mode 100644 index 0000000000..245aef4599 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw @@ -0,0 +1,23 @@ + HARDWARE DESCRIPTION + + Device : PBXPLUG_103 + CPU : BCM63136 - ARMv7 Processor rev 1 (v7l) + + Core Freq : 1000MHz DDR Freq : 800MHz (1600 MT/s data rate) + Physical Ram size : 1GiB + Nand Flash size : 512MiB + + + Secure Boot protection : yes + + + Local : x Uplink : Radio : Usb : + + Local : GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports + FPGA : Version 0x0f Indice 0x0b + M Ext : PRI526 + FPGA Ext: Version 0x0f Indice 0x09 + Dsp : 2 + PRI Ext : (5/0) + BRI : (5/1, 5/2) + FXS : (5/3, 5/4, 5/5, 5/6) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml new file mode 100644 index 0000000000..5a8d176ca7 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - device: "PBXPLUG_103" + cpu: "BCM63136 - ARMv7 Processor rev 1 (v7l)" + corefreq: "1000" + ddrfreq: "800" + corecomplexbusfreq: "" + platformfreq: "" + physicalramsize: "1GiB" + oneosramsize: "" + nandflashsize: "512MiB" + ramdisk: "" + flashdisk: "" + uplink: "" + isdn: "" + radio: "" + usb: "" + usb0: "" + usb1: "" + dsp: "2" + wlan: "" + ports: "GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports" + uplinkports: "" + securebootprotection: "yes" + wlan0: "" + wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw new file mode 100644 index 0000000000..5cce1a0338 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw @@ -0,0 +1,17 @@ + HARDWARE DESCRIPTION + + Device : PBXPLUG_212 + CPU : MPC8323 PowerQUICC II Pro + + Bus Freq : 131MHz QE Freq : 196MHz Core Freq : 327MHz EPLD Version : 0x1 EPLD Index : 0x1 + Ram size : 128Mo Flash size : 2Mo Extended Flash size : 256Mo + Ram disk : 1Mo Flash disk : 256Mo (Extended) + + Dsp0 : x Dsp1 : x TCXO : + + + Local : FAST ETHERNET + Uplink : + + PRI : (5/0-v2.2) + BRI : (5/1:lifeline, 5/2) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml new file mode 100644 index 0000000000..ca22042f72 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - device: "PBXPLUG_212" + cpu: "MPC8323 PowerQUICC II Pro" + corefreq: "" + ddrfreq: "" + corecomplexbusfreq: "" + platformfreq: "" + physicalramsize: "" + oneosramsize: "" + nandflashsize: "" + ramdisk: "" + flashdisk: "" + uplink: "" + isdn: "" + radio: "" + usb: "" + usb0: "" + usb1: "" + dsp: "" + wlan: "" + ports: "" + uplinkports: "" + securebootprotection: "" + wlan0: "" + wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw new file mode 100644 index 0000000000..03c777dbcc --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw @@ -0,0 +1,25 @@ + HARDWARE DESCRIPTION + + Device : PBXPLUG_401 + CPU : Freescale T1040E (1.1) - Security Engine - 8-port Ethernet switch + + Core Freq : 1400MHz DDR Freq : 600MHz (1200 MT/s data rate) + Core Complex Bus Freq : 600MHz Platform Freq : 600MHz + FMAN Freq : 600MHz QMAN Freq : 300MHz + CPLD Index : 1 CPLD Version : E0 + FPGA Index : 1B FPGA Version : 0 + Physical Ram size : 2GiB + Nand Flash size : 512MiB + + + Secure Boot protection : no + + + Local : x Uplink : ISDN : Radio : Usb : + + Local : 2 x GIGABIT ETHERNET + M Ext : FXS904 + FPGA Ext: Version 0xf0 Indice 0x00 + Dsp : 4 + PRI : (5/0, 5/1, 5/2, 5/3) + FXS Ext : (5/4, 5/5, 5/6, 5/7) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml new file mode 100644 index 0000000000..3705c5736c --- /dev/null +++ b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml @@ -0,0 +1,26 @@ +--- +parsed_sample: + - device: "PBXPLUG_401" + cpu: "Freescale T1040E (1.1) - Security Engine - 8-port Ethernet switch" + corefreq: "1400" + ddrfreq: "600" + corecomplexbusfreq: "600" + platformfreq: "600" + physicalramsize: "2GiB" + oneosramsize: "" + nandflashsize: "512MiB" + ramdisk: "" + flashdisk: "" + uplink: "" + isdn: "" + radio: "" + usb: "" + usb0: "" + usb1: "" + dsp: "4" + wlan: "" + ports: "" + uplinkports: "" + securebootprotection: "no" + wlan0: "" + wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw new file mode 100644 index 0000000000..1944335fad --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw @@ -0,0 +1,17 @@ +System Information for device PBXPLUG_103 S/N T21370083440208 + +Software version : OneOS-pCPE-ARM_pi2-6.7.1m2 +Software created on : 2021-10-08 15:30:45 +Boot version : BOOT-ARM_hw2-3.1.3 +Boot created on : 2019-05-27 11:12:53 +Recovery version : OneOs-RCY-ARM_pi2-1.3.6 +Recovery created on : 2019-10-11 09:21:48 + +Current system time : 2023-01-06 09:32:53+0100 +System started : 2022-12-28 03:00:45+0100 +Start caused by : Generic software reboot request +Sys Up time : 9d 6h 32m 8s + +Core Type last sec last min last hour last day last 72 hours + 0 control 4.0 % 30.0 % 20.0 % 19.0 % 19.0 % + 1 forwarding 1.0 % 1.0 % 1.0 % 1.0 % 1.0 % diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml new file mode 100644 index 0000000000..46c155b1b8 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml @@ -0,0 +1,18 @@ +--- +parsed_sample: + - serial: + - "T21370083440208" + deviceid: "PBXPLUG_103" + software: "OneOS-pCPE-ARM_pi2-6.7.1m2" + boot_version: "BOOT-ARM_hw2-3.1.3" + recovery_version: "OneOs-RCY-ARM_pi2-1.3.6" + boot_flags: "" + system_time: "2023-01-06 09:32:53+0100" + restarted: "2022-12-28 03:00:45+0100" + reload_reason: "Generic software reboot request" + uptime: "9d 6h 32m 8s" + uptime_seconds: "8" + uptime_minutes: "32" + uptime_hours: "6" + uptime_days: "9" + version: "6" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw new file mode 100644 index 0000000000..6c72013bed --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw @@ -0,0 +1,19 @@ +System Information for device MBPBX30NT2BLUZ S/N T19380048300301 + +Software version : ONEOS9-MONO_FT-V5.2R2E13 +Software created on : 22/12/20 16:31:56 +License token : None +Boot version : BOOT9-SEC-V3.4R3E38 +Boot created on : 12/06/18 14:43:32 + +Boot Flags : 0x00000008 + +Current system time : 06/01/23 09:39:00 +System started : 05/01/23 19:43:59 +Start caused by : Software requested / System defense - reboot after crash +Sys Up time : 0d 13h 55m 1s +System clock ticks : 2505228 + +Current CPU load : 6.0% +Current Critical Tasks CPU load : 3.2% +Current Non Critical Tasks CPU load : 2.8% diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml new file mode 100644 index 0000000000..dc8c681583 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml @@ -0,0 +1,18 @@ +--- +parsed_sample: + - serial: + - "T19380048300301" + deviceid: "MBPBX30NT2BLUZ" + software: "ONEOS9-MONO_FT-V5.2R2E13" + boot_version: "BOOT9-SEC-V3.4R3E38" + recovery_version: "" + boot_flags: "0x00000008" + system_time: "06/01/23 09:39:00" + restarted: "05/01/23 19:43:59" + reload_reason: "Software requested / System defense - reboot after crash" + uptime: "0d 13h 55m 1s" + uptime_seconds: "1" + uptime_minutes: "55" + uptime_hours: "13" + uptime_days: "0" + version: "5" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw new file mode 100644 index 0000000000..0a7b982404 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw @@ -0,0 +1,24 @@ +System Information for device PBXPLUG_401 S/N T18170081680004 + +Software version : OneOS-pCPE-PPC_pi2-6.6.1m3 +Software created on : 2021-03-26 11:13:55 +Boot version : BOOT-PPC_hw2-2.0.5 +Boot created on : 2017-11-14 10:33:17 +Recovery version : OneOs-RCY-PPC_pi2-1.2.1 +Recovery created on : 2017-10-13 16:47:13 + +Current system time : 2023-01-06 09:38:12+0100 +System started : 2023-01-01 03:00:50+0100 +Start caused by : Generic software reboot request +Sys Up time : 5d 6h 37m 22s +PSU : normal + +Temperatures: + CPU normal 65.75 C (alarm level: 100.00 C) + board sensor 1 normal 47.00 C (alarm level: 80.00 C) + +Core Type last sec last min last hour last day last 72 hours + 0 control 59.0 % 25.0 % 21.0 % 21.0 % 21.0 % + 1 forwarding 1.0 % 1.0 % 1.0 % 0.0 % 0.0 % + 2 forwarding 1.0 % 1.0 % 1.0 % 0.0 % 0.0 % + 3 forwarding 1.0 % 1.0 % 1.0 % 1.0 % 1.0 % diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml new file mode 100644 index 0000000000..62d66d4f49 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml @@ -0,0 +1,18 @@ +--- +parsed_sample: + - serial: + - "T18170081680004" + deviceid: "PBXPLUG_401" + software: "OneOS-pCPE-PPC_pi2-6.6.1m3" + boot_version: "BOOT-PPC_hw2-2.0.5" + recovery_version: "OneOs-RCY-PPC_pi2-1.2.1" + boot_flags: "" + system_time: "2023-01-06 09:38:12+0100" + restarted: "2023-01-01 03:00:50+0100" + reload_reason: "Generic software reboot request" + uptime: "5d 6h 37m 22s" + uptime_seconds: "22" + uptime_minutes: "37" + uptime_hours: "6" + uptime_days: "5" + version: "6" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw new file mode 100644 index 0000000000..0551d81a55 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw @@ -0,0 +1,79 @@ + Dial Peer 0 + Config state up + Operstatus up + Registration status unused + Current protocol sip (UDP) + lastOK 0 + User Agent (null) + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Current sip-protocol-mode ipv4 (config : ipv4) + Current Calls 0 + Outgoing Calls + Outgoing Calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Outgoing calls failures 0 + Q931 Call failures 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Incoming Calls + Incoming calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Incoming calls failures 0 + Local Port Call failures 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Unknown number 0 + Channel / port unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Voice & Fax statistics + Number of real dsp switching 0 + RTP statistics + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of excessive jitter events 0 + Number of lost packets 0 + Number of invalid packets 0 + Number of calls with frame error rate + total <0.01% <0.1% <0.5% <1% <5% >=5% + 0 0 0 0 0 0 0 + Modem passthrough + Number of switching to modem mode 0 + T38 FAX Calls + Number of outgoing fax 0 + Number of incoming fax 0 + Number of failures 0 + Request Mode failure 0 + Pre-message procedure failure 0 + Page failure 0 + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of lost packets 0 + diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml new file mode 100644 index 0000000000..ff0c22dfd9 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml @@ -0,0 +1,85 @@ +--- +parsed_sample: + - dial_peer: "0" + config_state: "up" + oper_status: "up" + registration_status: "unused" + current_protocol: "sip" + last_ok: "0" + user_agent: "null" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + sip_protocol_mode: "ipv4" + sip_protocol_configured: "ipv4" + current_calls: "0" + outgoing_calls: "0" + outgoing_bw_used: "0" + outgoing_cac: "0" + outgoing_bw_unused: "2147483647" + outgoing_failures: "0" + outgoing_failures_q931: "0" + outgoing_failures_q931_0_normal: "0" + outgoing_failures_q931_1_normal: "0" + outgoing_failures_q931_16_normal: "0" + outgoing_failures_q931_17_busy: "0" + outgoing_failures_q931_18_no_answer: "0" + outgoing_failures_q931_2_unavailable_resources: "0" + outgoing_failures_q931_3_unavailable_service: "0" + outgoing_failures_q931_4_service_not_provided: "0" + outgoing_failures_q931_5_invalid_message: "0" + outgoing_failures_q931_6_protocol: "0" + outgoing_failures_q931_7_interworking: "0" + outgoing_failures_sip_call: "0" + outgoing_failures_capabilities: "0" + outgoing_failures_protocol: "0" + outgoing_failures_internal_call: "0" + outgoing_failures_dsp_unavailable: "0" + outgoing_failures_max_bw_exceeded: "0" + outgoing_failures_max_conn_exceeded: "0" + outgoing_failures_rtp_payload: "0" + outgoing_failures_not_specified: "0" + incoming_calls: "0" + incoming_bw_used: "0" + incoming_cac: "0" + incoming_bw_unused: "2147483647" + incoming_failures: "0" + incoming_failures_local_port: "0" + incoming_failures_sip_call: "0" + incoming_failures_capabilities: "0" + incoming_failures_protocol: "0" + incoming_failures_internal_call: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_unknown_number: "0" + incoming_failures_channel_or_port_unavailable: "0" + incoming_failures_max_bw_exceeded: "0" + incoming_failures_max_conn_exceeded: "0" + incoming_failures_rtp_payload: "0" + incoming_failures_not_specified: "0" + voice_fax_real_dsp_switching: "0" + rtp_pkts_transmitted: "0" + rtp_pkts_received: "0" + rtp_bytes_transmitted: "0" + rtp_bytes_received: "0" + rtp_excessive_jitter_events: "0" + rtp_pkts_lost: "0" + rtp_pkts_invalid: "0" + frame_error_rate_total: "0" + frame_error_rate_lt_0_01: "0" + frame_error_rate_lt_0_1: "0" + frame_error_rate_lt_0_5: "0" + frame_error_rate_lt_1: "0" + frame_error_rate_lt_5: "0" + frame_error_rate_ge_5: "0" + modem_switches: "0" + fax_outgoing: "0" + fax_incoming: "0" + fax_failures: "0" + fax_failures_request_mode: "0" + fax_failures_pre_msg: "0" + fax_failures_page: "0" + fax_pkts_transmitted: "0" + fax_pkts_received: "0" + fax_bytes_transmitted: "0" + fax_bytes_received: "0" + fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw new file mode 100644 index 0000000000..a815d12759 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw @@ -0,0 +1,78 @@ + Dial Peer 0 + Config state up + Operstatus up + Registration status unused + Current protocol sip (UDP) + lastOK 0 + User Agent (null) + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Current sip-protocol-mode ipv4 (config : ipv4) + Current Calls 0 + Outgoing Calls + Outgoing Calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Outgoing calls failures 0 + Q931 Call failures 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Incoming Calls + Incoming calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Incoming calls failures 0 + Local Port Call failures 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Unknown number 0 + Channel / port unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Voice & Fax statistics + Number of real dsp switching 0 + RTP statistics + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of excessive jitter events 0 + Number of lost packets 0 + Number of invalid packets 0 + Number of calls with frame error rate + total <0.01% <0.1% <0.5% <1% <5% >=5% + 0 0 0 0 0 0 0 + Modem passthrough + Number of switching to modem mode 0 + T38 FAX Calls + Number of outgoing fax 0 + Number of incoming fax 0 + Number of failures 0 + Request Mode failure 0 + Pre-message procedure failure 0 + Page failure 0 + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of lost packets 0 diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml new file mode 100644 index 0000000000..ff0c22dfd9 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml @@ -0,0 +1,85 @@ +--- +parsed_sample: + - dial_peer: "0" + config_state: "up" + oper_status: "up" + registration_status: "unused" + current_protocol: "sip" + last_ok: "0" + user_agent: "null" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + sip_protocol_mode: "ipv4" + sip_protocol_configured: "ipv4" + current_calls: "0" + outgoing_calls: "0" + outgoing_bw_used: "0" + outgoing_cac: "0" + outgoing_bw_unused: "2147483647" + outgoing_failures: "0" + outgoing_failures_q931: "0" + outgoing_failures_q931_0_normal: "0" + outgoing_failures_q931_1_normal: "0" + outgoing_failures_q931_16_normal: "0" + outgoing_failures_q931_17_busy: "0" + outgoing_failures_q931_18_no_answer: "0" + outgoing_failures_q931_2_unavailable_resources: "0" + outgoing_failures_q931_3_unavailable_service: "0" + outgoing_failures_q931_4_service_not_provided: "0" + outgoing_failures_q931_5_invalid_message: "0" + outgoing_failures_q931_6_protocol: "0" + outgoing_failures_q931_7_interworking: "0" + outgoing_failures_sip_call: "0" + outgoing_failures_capabilities: "0" + outgoing_failures_protocol: "0" + outgoing_failures_internal_call: "0" + outgoing_failures_dsp_unavailable: "0" + outgoing_failures_max_bw_exceeded: "0" + outgoing_failures_max_conn_exceeded: "0" + outgoing_failures_rtp_payload: "0" + outgoing_failures_not_specified: "0" + incoming_calls: "0" + incoming_bw_used: "0" + incoming_cac: "0" + incoming_bw_unused: "2147483647" + incoming_failures: "0" + incoming_failures_local_port: "0" + incoming_failures_sip_call: "0" + incoming_failures_capabilities: "0" + incoming_failures_protocol: "0" + incoming_failures_internal_call: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_unknown_number: "0" + incoming_failures_channel_or_port_unavailable: "0" + incoming_failures_max_bw_exceeded: "0" + incoming_failures_max_conn_exceeded: "0" + incoming_failures_rtp_payload: "0" + incoming_failures_not_specified: "0" + voice_fax_real_dsp_switching: "0" + rtp_pkts_transmitted: "0" + rtp_pkts_received: "0" + rtp_bytes_transmitted: "0" + rtp_bytes_received: "0" + rtp_excessive_jitter_events: "0" + rtp_pkts_lost: "0" + rtp_pkts_invalid: "0" + frame_error_rate_total: "0" + frame_error_rate_lt_0_01: "0" + frame_error_rate_lt_0_1: "0" + frame_error_rate_lt_0_5: "0" + frame_error_rate_lt_1: "0" + frame_error_rate_lt_5: "0" + frame_error_rate_ge_5: "0" + modem_switches: "0" + fax_outgoing: "0" + fax_incoming: "0" + fax_failures: "0" + fax_failures_request_mode: "0" + fax_failures_pre_msg: "0" + fax_failures_page: "0" + fax_pkts_transmitted: "0" + fax_pkts_received: "0" + fax_bytes_transmitted: "0" + fax_bytes_received: "0" + fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw new file mode 100644 index 0000000000..a9cf2cc61d --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw @@ -0,0 +1,76 @@ + Dial Peer 0 + Config state up + Operstatus up + Current protocol sip (UDP) + User Agent (null) + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Current Calls 0 + Outgoing Calls + Outgoing Calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Outgoing calls failures 0 + Q931 Call failures 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Incoming Calls + Incoming calls 0 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Incoming calls failures 0 + Local Port Call failures 0 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Unknown number 0 + Channel / port unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Voice & Fax statistics + Number of real dsp switching 0 + RTP statistics + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of excessive jitter events 0 + Number of lost packets 0 + Number of invalid packets 0 + Number of calls with frame error rate + total <0.01% <0.1% <0.5% <1% <5% >=5% + 0 0 0 0 0 0 0 + Modem passthrough + Number of switching to modem mode 0 + T38 FAX Calls + Number of outgoing fax 0 + Number of incoming fax 0 + Number of failures 0 + Request Mode failure 0 + Pre-message procedure failure 0 + Page failure 0 + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of lost packets 0 + diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml new file mode 100644 index 0000000000..cc51fd53b8 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml @@ -0,0 +1,85 @@ +--- +parsed_sample: + - dial_peer: "0" + config_state: "up" + oper_status: "up" + registration_status: "" + current_protocol: "sip" + last_ok: "" + user_agent: "null" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + sip_protocol_mode: "" + sip_protocol_configured: "" + current_calls: "0" + outgoing_calls: "0" + outgoing_bw_used: "0" + outgoing_cac: "0" + outgoing_bw_unused: "2147483647" + outgoing_failures: "0" + outgoing_failures_q931: "0" + outgoing_failures_q931_0_normal: "0" + outgoing_failures_q931_1_normal: "0" + outgoing_failures_q931_16_normal: "0" + outgoing_failures_q931_17_busy: "0" + outgoing_failures_q931_18_no_answer: "0" + outgoing_failures_q931_2_unavailable_resources: "0" + outgoing_failures_q931_3_unavailable_service: "0" + outgoing_failures_q931_4_service_not_provided: "0" + outgoing_failures_q931_5_invalid_message: "0" + outgoing_failures_q931_6_protocol: "0" + outgoing_failures_q931_7_interworking: "0" + outgoing_failures_sip_call: "0" + outgoing_failures_capabilities: "0" + outgoing_failures_protocol: "0" + outgoing_failures_internal_call: "0" + outgoing_failures_dsp_unavailable: "0" + outgoing_failures_max_bw_exceeded: "0" + outgoing_failures_max_conn_exceeded: "0" + outgoing_failures_rtp_payload: "0" + outgoing_failures_not_specified: "0" + incoming_calls: "0" + incoming_bw_used: "0" + incoming_cac: "0" + incoming_bw_unused: "2147483647" + incoming_failures: "0" + incoming_failures_local_port: "0" + incoming_failures_sip_call: "0" + incoming_failures_capabilities: "0" + incoming_failures_protocol: "0" + incoming_failures_internal_call: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_unknown_number: "0" + incoming_failures_channel_or_port_unavailable: "0" + incoming_failures_max_bw_exceeded: "0" + incoming_failures_max_conn_exceeded: "0" + incoming_failures_rtp_payload: "0" + incoming_failures_not_specified: "0" + voice_fax_real_dsp_switching: "0" + rtp_pkts_transmitted: "0" + rtp_pkts_received: "0" + rtp_bytes_transmitted: "0" + rtp_bytes_received: "0" + rtp_excessive_jitter_events: "0" + rtp_pkts_lost: "0" + rtp_pkts_invalid: "0" + frame_error_rate_total: "0" + frame_error_rate_lt_0_01: "0" + frame_error_rate_lt_0_1: "0" + frame_error_rate_lt_0_5: "0" + frame_error_rate_lt_1: "0" + frame_error_rate_lt_5: "0" + frame_error_rate_ge_5: "0" + modem_switches: "0" + fax_outgoing: "0" + fax_incoming: "0" + fax_failures: "0" + fax_failures_request_mode: "0" + fax_failures_pre_msg: "0" + fax_failures_page: "0" + fax_pkts_transmitted: "0" + fax_pkts_received: "0" + fax_bytes_transmitted: "0" + fax_bytes_received: "0" + fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw new file mode 100644 index 0000000000..83470fec40 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw @@ -0,0 +1,27 @@ + ------------------------- Call Quality ------------------------- + + ------------------------- Current hour ------------------------- + Number of Call : 0 + Average of MOS : 0.00 + Minimum MOS : 0.00 + Maximum MOS : 0.00 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ------------------------- Previous hour ------------------------ + Number of Call : 0 + Average of MOS : 0.00 + Minimum MOS : 0.00 + Maximum MOS : 0.00 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw new file mode 100644 index 0000000000..18cc1472ad --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw @@ -0,0 +1,27 @@ + ------------------------- Call Quality ------------------------- + + ------------------------- Current hour ------------------------- + Number of Call : 0 + Average of MOS : 0.0 + Minimum MOS : 0.0 + Maximum MOS : 0.0 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ------------------------- Previous hour ------------------------ + Number of Call : 0 + Average of MOS : 0.0 + Minimum MOS : 0.0 + Maximum MOS : 0.0 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw new file mode 100644 index 0000000000..83470fec40 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw @@ -0,0 +1,27 @@ + ------------------------- Call Quality ------------------------- + + ------------------------- Current hour ------------------------- + Number of Call : 0 + Average of MOS : 0.00 + Minimum MOS : 0.00 + Maximum MOS : 0.00 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ------------------------- Previous hour ------------------------ + Number of Call : 0 + Average of MOS : 0.00 + Minimum MOS : 0.00 + Maximum MOS : 0.00 + Average of ERL : 0 + Average of ACOM : 0 + Average of loss-rate : 0 + Average of jitter : 0 + Average of Max delay : 0 + Average Pdd : 0 + + ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw new file mode 100644 index 0000000000..989418b105 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw @@ -0,0 +1,28 @@ + Sip-Gateway statistics : + Gateway state up + Operstatus up + SIP-GW entity opened sockets: + UDP sockets: + Sockidx: 0, 1.2.3.4:5060 + Registration state registered + RTP monitoring disable + Nb Registered endpoints/Max to register/Registrar server: + [1/1] blabla:5060 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Threshold of bandwidth to switch unused + Max Bandwidth exceeded 0 + Number of lower switching 0 + Registration errors 0 + + Current sip-protocol-mode ipv4 (config : ipv4) + Current call 0 + Calls released by rtp monitoring 0 + + Authentication Rejects 0 + + Dropped packets 0 + due to rate limitation 0 + due to memory limitation 0 + due to CPU limitation 0 + due to denied by acl 0 + due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml new file mode 100644 index 0000000000..0a95d4e474 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml @@ -0,0 +1,29 @@ +--- +parsed_sample: + - gw_state: "up" + gw_operstatus: "up" + sockets: + - "1.2.3.4:5060" + registration_state: "registered" + rtp_monitoring: "disable" + registrar: "blabla:5060" + registrar_nbr_registered: "1" + registrar_nbr_available: "1" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + thold_bw_to_switch: "unused" + max_bw_exceeded: "0" + nbr_lower_switching: "0" + registration_errors: "0" + sip_protocol_mode: "ipv4" + sip_protocol_configured: "ipv4" + current_call: "0" + calls_released_rtp_monitoring: "0" + authentication_rejects: "0" + dropped_pkt: "0" + dropped_pkt_rate_limit: "0" + dropped_pkt_memory_limit: "0" + dropped_pkt_cpu_limit: "0" + dropped_pkt_acl: "0" + dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw new file mode 100644 index 0000000000..6dbca11cb3 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw @@ -0,0 +1,24 @@ + Sip-Gateway statistics : + Gateway state up + Operstatus up + Registration state registered + RTP monitoring disable + Nb Registered endpoints/Max to register/Registrar server: + [1/1] sip.blabla.be:5060 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Threshold of bandwidth to switch unused + Max Bandwidth exceeded 0 + Number of lower switching 0 + Registration errors 0 + + Current call 0 + Calls released by rtp monitoring 0 + + Authentication Rejects 0 + + Dropped packets 0 + due to rate limitation 0 + due to memory limitation 0 + due to CPU limitation 0 + due to denied by acl 0 + due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml new file mode 100644 index 0000000000..fb46d1af91 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml @@ -0,0 +1,28 @@ +--- +parsed_sample: + - gw_state: "up" + gw_operstatus: "up" + sockets: [] + registration_state: "registered" + rtp_monitoring: "disable" + registrar: "sip.blabla.be:5060" + registrar_nbr_registered: "1" + registrar_nbr_available: "1" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + thold_bw_to_switch: "unused" + max_bw_exceeded: "0" + nbr_lower_switching: "0" + registration_errors: "0" + sip_protocol_mode: "" + sip_protocol_configured: "" + current_call: "0" + calls_released_rtp_monitoring: "0" + authentication_rejects: "0" + dropped_pkt: "0" + dropped_pkt_rate_limit: "0" + dropped_pkt_memory_limit: "0" + dropped_pkt_cpu_limit: "0" + dropped_pkt_acl: "0" + dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw new file mode 100644 index 0000000000..e2ff948a6b --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw @@ -0,0 +1,25 @@ + Sip-Gateway statistics : + Gateway state up + Operstatus up + Registration state registered + RTP monitoring disable + Nb Registered endpoints/Max to register/Registrar server: + [1/1] sip.blabla.be:5060 + Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps + Threshold of bandwidth to switch unused + Max Bandwidth exceeded 0 + Number of lower switching 0 + Registration errors 0 + + Current sip-protocol-mode ipv4 (config : ipv4) + Current call 0 + Calls released by rtp monitoring 0 + + Authentication Rejects 0 + + Dropped packets 0 + due to rate limitation 0 + due to memory limitation 0 + due to CPU limitation 0 + due to denied by acl 0 + due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml new file mode 100644 index 0000000000..e960e2cab7 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml @@ -0,0 +1,28 @@ +--- +parsed_sample: + - gw_state: "up" + gw_operstatus: "up" + sockets: [] + registration_state: "registered" + rtp_monitoring: "disable" + registrar: "sip.blabla.be:5060" + registrar_nbr_registered: "1" + registrar_nbr_available: "1" + bw_used: "0" + cac: "0" + bw_unused: "2147483647" + thold_bw_to_switch: "unused" + max_bw_exceeded: "0" + nbr_lower_switching: "0" + registration_errors: "0" + sip_protocol_mode: "ipv4" + sip_protocol_configured: "ipv4" + current_call: "0" + calls_released_rtp_monitoring: "0" + authentication_rejects: "0" + dropped_pkt: "0" + dropped_pkt_rate_limit: "0" + dropped_pkt_memory_limit: "0" + dropped_pkt_cpu_limit: "0" + dropped_pkt_acl: "0" + dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw new file mode 100644 index 0000000000..7b47761cc2 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw @@ -0,0 +1,7 @@ + port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) + port : 1 lp : 0 sense : BRI if-state : Shutdown (vp-state : noShutdown) + port : 2 lp : 1 sense : BRI if-state : Shutdown (vp-state : noShutdown) + port : 3 lp : 0 sense : POTS [FXS] vp-state : noShutdown + port : 4 lp : 1 sense : POTS [FXS] vp-state : noShutdown + port : 5 lp : 2 sense : POTS [FXS] vp-state : noShutdown + port : 6 lp : 3 sense : POTS [FXS] vp-state : noShutdown diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml new file mode 100644 index 0000000000..0c62162cde --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml @@ -0,0 +1,37 @@ +--- +parsed_sample: + - port: "0" + lp: "0" + sense: "PRI" + if_state: "noShutdown" + vp_state: "noShutdown" + - port: "1" + lp: "0" + sense: "BRI" + if_state: "Shutdown" + vp_state: "noShutdown" + - port: "2" + lp: "1" + sense: "BRI" + if_state: "Shutdown" + vp_state: "noShutdown" + - port: "3" + lp: "0" + sense: "POTS [FXS]" + if_state: "" + vp_state: "noShutdown" + - port: "4" + lp: "1" + sense: "POTS [FXS]" + if_state: "" + vp_state: "noShutdown" + - port: "5" + lp: "2" + sense: "POTS [FXS]" + if_state: "" + vp_state: "noShutdown" + - port: "6" + lp: "3" + sense: "POTS [FXS]" + if_state: "" + vp_state: "noShutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw new file mode 100644 index 0000000000..208832f382 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw @@ -0,0 +1,3 @@ + port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) + port : 1 lp : 0 sense : BRI if-state : Shutdown (vp-state : Shutdown ) + port : 2 lp : 1 sense : BRI if-state : Shutdown (vp-state : Shutdown ) diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml new file mode 100644 index 0000000000..2b0b47d0d7 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml @@ -0,0 +1,17 @@ +--- +parsed_sample: + - port: "0" + lp: "0" + sense: "PRI" + if_state: "noShutdown" + vp_state: "noShutdown" + - port: "1" + lp: "0" + sense: "BRI" + if_state: "Shutdown" + vp_state: "Shutdown" + - port: "2" + lp: "1" + sense: "BRI" + if_state: "Shutdown" + vp_state: "Shutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw new file mode 100644 index 0000000000..50d76f7b6c --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw @@ -0,0 +1,8 @@ + port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) + port : 1 lp : 1 sense : PRI if-state : Shutdown (vp-state : Shutdown ) + port : 2 lp : 2 sense : PRI if-state : Shutdown (vp-state : Shutdown ) + port : 3 lp : 3 sense : PRI if-state : Shutdown (vp-state : Shutdown ) + port : 4 lp : 0 sense : POTS [FXS] vp-state : Shutdown + port : 5 lp : 1 sense : POTS [FXS] vp-state : Shutdown + port : 6 lp : 2 sense : POTS [FXS] vp-state : Shutdown + port : 7 lp : 3 sense : POTS [FXS] vp-state : Shutdown diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml new file mode 100644 index 0000000000..d24ac5737d --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml @@ -0,0 +1,42 @@ +--- +parsed_sample: + - port: "0" + lp: "0" + sense: "PRI" + if_state: "noShutdown" + vp_state: "noShutdown" + - port: "1" + lp: "1" + sense: "PRI" + if_state: "Shutdown" + vp_state: "Shutdown" + - port: "2" + lp: "2" + sense: "PRI" + if_state: "Shutdown" + vp_state: "Shutdown" + - port: "3" + lp: "3" + sense: "PRI" + if_state: "Shutdown" + vp_state: "Shutdown" + - port: "4" + lp: "0" + sense: "POTS [FXS]" + if_state: "" + vp_state: "Shutdown" + - port: "5" + lp: "1" + sense: "POTS [FXS]" + if_state: "" + vp_state: "Shutdown" + - port: "6" + lp: "2" + sense: "POTS [FXS]" + if_state: "" + vp_state: "Shutdown" + - port: "7" + lp: "3" + sense: "POTS [FXS]" + if_state: "" + vp_state: "Shutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw new file mode 100644 index 0000000000..e5758b7ccc --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw @@ -0,0 +1,41 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + config state up + loop state down + framing DF + layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) ON + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RAI occurrence(s) 0 + layer 2 status deactivated + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml new file mode 100644 index 0000000000..cf748e6d05 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml @@ -0,0 +1,42 @@ +--- +parsed_sample: + - port: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "up" + loop_state: "down" + framing: "DF" + l1_status: "deactivated" + ais: "OFF" + los: "ON" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "1" + pri_rai_occurrences: "0" + l2_status: "deactivated" + pri_tx_frames_on_d_channel: "" + pri_rx_frames_on_d_channel: "" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw new file mode 100644 index 0000000000..d76a132917 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw @@ -0,0 +1,46 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + config state up + loop state down + framing MF + layer 1 status activated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RAI occurrence(s) 0 + layer 2 status activated + ces: 1 , 0 , established + + pri Tx frames on D channel 4466 + pri Rx frames on D channel 4466 + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Insufficient pots-group resource 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml new file mode 100644 index 0000000000..25d10ddd91 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml @@ -0,0 +1,42 @@ +--- +parsed_sample: + - port: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "up" + loop_state: "down" + framing: "MF" + l1_status: "activated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rai_occurrences: "0" + l2_status: "activated" + pri_tx_frames_on_d_channel: "4466" + pri_rx_frames_on_d_channel: "4466" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw new file mode 100644 index 0000000000..37590857a8 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw @@ -0,0 +1,164 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + config state up + loop state down + framing DF + layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) ON + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RAI occurrence(s) 0 + layer 2 status deactivated + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 + voice port 5/1 + physical type E1 + protocol descriptor E1_PRI + config state down + loop state down + framing DF + layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RAI occurrence(s) 0 + layer 2 status deactivated + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 + voice port 5/2 + physical type E1 + protocol descriptor E1_PRI + config state down + loop state down + framing DF + layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RAI occurrence(s) 0 + layer 2 status deactivated + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 + voice port 5/3 + physical type E1 + protocol descriptor E1_PRI + config state down + loop state down + framing DF + layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Alarm Indication (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RAI occurrence(s) 0 + layer 2 status deactivated + attached voip dial peer 0 + number of voice communication 0 + Channel(s) used + + Outgoing calls 0 + Outgoing calls failures 0 + Physical Interface down 0 + Cause Class 0 (normal event) 0 + Cause Class 1 (normal event) 0 + Normal Cause (16) 0 + User busy (17) 0 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 0 + + Incoming calls 0 + Incoming calls backup invoked 0 + Incoming calls failures 0 + Remote failure 0 + Unknown number 0 + DSP unavailable 0 + No VoIP resource available 0 + Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml new file mode 100644 index 0000000000..841a3919cf --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml @@ -0,0 +1,162 @@ +--- +parsed_sample: + - port: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "up" + loop_state: "down" + framing: "DF" + l1_status: "deactivated" + ais: "OFF" + los: "ON" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "1" + pri_rai_occurrences: "0" + l2_status: "deactivated" + pri_tx_frames_on_d_channel: "" + pri_rx_frames_on_d_channel: "" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" + - port: "5/1" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "down" + loop_state: "down" + framing: "DF" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rai_occurrences: "0" + l2_status: "deactivated" + pri_tx_frames_on_d_channel: "" + pri_rx_frames_on_d_channel: "" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" + - port: "5/2" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "down" + loop_state: "down" + framing: "DF" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rai_occurrences: "0" + l2_status: "deactivated" + pri_tx_frames_on_d_channel: "" + pri_rx_frames_on_d_channel: "" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" + - port: "5/3" + physical_type: "E1" + proto_descriptor: "E1_PRI" + config_state: "down" + loop_state: "down" + framing: "DF" + l1_status: "deactivated" + ais: "OFF" + los: "OFF" + rai: "OFF" + pri_ais_occurrences: "0" + pri_los_occurrences: "0" + pri_rai_occurrences: "0" + l2_status: "deactivated" + pri_tx_frames_on_d_channel: "" + pri_rx_frames_on_d_channel: "" + attached_voip_dial_peer: "0" + nbr_voice_communication: "0" + outgoing_calls: "0" + outgoing_failures: "0" + outgoing_failures_physical_intf_down: "0" + outgoing_failures_0_normal: "0" + outgoing_failures_1_normal: "0" + outgoing_failures_16_normal: "0" + outgoing_failures_17_busy: "0" + outgoing_failures_18_no_answer: "0" + outgoing_failures_2_unavailable_resources: "0" + outgoing_failures_3_unavailable_service: "0" + outgoing_failures_4_service_not_provided: "0" + outgoing_failures_5_invalid_message: "0" + outgoing_failures_6_protocol: "0" + outgoing_failures_7_interworking: "0" + incoming_calls: "0" + incoming_calls_backup_invoked: "0" + incoming_failures: "0" + incoming_failures_remote: "0" + incoming_failures_unkown_number: "0" + incoming_failures_dsp_unavailable: "0" + incoming_failures_no_voip_resource_available: "0" + incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw new file mode 100644 index 0000000000..ef9339d3eb --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw @@ -0,0 +1,20 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset 28/12/2022 03:05 + max channel(s) used 0/30 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml new file mode 100644 index 0000000000..328d2ee76e --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml @@ -0,0 +1,9 @@ +--- +parsed_sample: + - port: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + attached_voip_dial_peer: "0" + date_last_reset: "28/12/2022 03:05" + max_channels_used: "0" + max_channels_available: "30" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw new file mode 100644 index 0000000000..ca5d8758b2 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw @@ -0,0 +1,20 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset 1/2/2000 01:01 + max channel(s) used 0/30 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml new file mode 100644 index 0000000000..abd4ce70ae --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml @@ -0,0 +1,9 @@ +--- +parsed_sample: + - port: "5/0" + physical_type: "E1" + proto_descriptor: "E1_PRI" + attached_voip_dial_peer: "0" + date_last_reset: "1/2/2000 01:01" + max_channels_used: "0" + max_channels_available: "30" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw new file mode 100644 index 0000000000..e59ac1e280 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw @@ -0,0 +1,87 @@ + voice port 5/0 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset 1/1/2023 03:04 + max channel(s) used 0/30 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. + + + voice port 5/1 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset --/--/---- + max channel(s) used 0/32 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. + + + voice port 5/2 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset --/--/---- + max channel(s) used 0/32 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. + + + voice port 5/3 + physical type E1 + protocol descriptor E1_PRI + attached voip dial peer 0 + date of last reset --/--/---- + max channel(s) used 0/32 + daily occupancy of B channels + % + 100 | + 90 | + 80 | + 70 | + 60 | + 50 | + 40 | + 30 | + 20 | + 10 | + 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ + 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. + diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml new file mode 100644 index 0000000000..17a14ad006 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml @@ -0,0 +1,23 @@ +--- +parsed_sample: + - port: "5/1" + physical_type: "E1" + proto_descriptor: "E1_PRI" + attached_voip_dial_peer: "0" + date_last_reset: "1/1/2023 03:04" + max_channels_used: "0" + max_channels_available: "30" + - port: "5/2" + physical_type: "E1" + proto_descriptor: "E1_PRI" + attached_voip_dial_peer: "0" + date_last_reset: "--/--/----" + max_channels_used: "0" + max_channels_available: "32" + - port: "5/3" + physical_type: "E1" + proto_descriptor: "E1_PRI" + attached_voip_dial_peer: "0" + date_last_reset: "--/--/----" + max_channels_used: "0" + max_channels_available: "32" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw new file mode 100644 index 0000000000..e69de29bb2 From e1b1ad5cf2b2fa09ac0beb279b200097f82d1e43 Mon Sep 17 00:00:00 2001 From: Andrea Dainese Date: Tue, 3 Jan 2023 16:16:47 +0100 Subject: [PATCH 09/31] HP Comware fix spacing allowances Fix templates if output contain tabs. --- ntc_templates/templates/hp_comware_display_interface.textfsm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ntc_templates/templates/hp_comware_display_interface.textfsm b/ntc_templates/templates/hp_comware_display_interface.textfsm index 6a06f3273e..cd8d6df9e2 100644 --- a/ntc_templates/templates/hp_comware_display_interface.textfsm +++ b/ntc_templates/templates/hp_comware_display_interface.textfsm @@ -183,6 +183,9 @@ Start ^\s+-\s+frame ^\s+-\s+aborts ^\s+-\s+lost\s+carrier +<<<<<<< HEAD ^\s*DCD: +======= +>>>>>>> cbea7530 (HP Comware fix spacing allowances) ^. -> Error ^\s*$$ ^. -> Error From 86f6f651a36c4a203ee8aec8cc43eaf5b1569178 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 11 Jan 2023 23:42:13 +0100 Subject: [PATCH 10/31] extra oneos templates --- ntc_templates/templates/index | 4 +- ...neaccess_oneos_show_ip_bgp_summary.textfsm | 34 + .../oneaccess_oneos_show_isdn_active.textfsm | 4 + ...eaccess_oneos_show_reboot_counters.textfsm | 27 + .../oneaccess_oneos_show_voice_mos.textfsm | 51 + ...oneos_show_voice_sip-gateway_reset.textfsm | 4 + ...how_voice_voice-port_pri_all_reset.textfsm | 4 + ...os_show_voice_voip-call_active_all.textfsm | 4 + ...oneos_show_voice_voip-call_any_all.textfsm | 4 + .../show_ip_bgp_summary.oneos5.raw | 8 + .../show_ip_bgp_summary.oneos5.yml | 22 + .../show_ip_bgp_summary.oneos6.raw | 9 + .../show_ip_bgp_summary.oneos6.yml | 42 + .../show_isdn_active.plug103.yml | 2 + .../show_isdn_active.plug212.yml | 2 + .../show_isdn_active.plug401.yml | 2 + .../show_reboot_counters.lbb4g.raw | 13 + .../show_reboot_counters.lbb4g.yml | 13 + .../show_reboot_counters.oneos5.raw | 14 + .../show_reboot_counters.oneos5.yml | 13 + .../show_reboot_counters.plug401.raw | 14 + .../show_reboot_counters.plug401.yml | 13 + .../show_voice_mos/show_voice_mos.plug103.raw | 14 +- .../show_voice_mos/show_voice_mos.plug103.yml | 22 + .../show_voice_mos/show_voice_mos.plug212.yml | 22 + .../show_voice_mos/show_voice_mos.plug401.raw | 28 +- .../show_voice_mos/show_voice_mos.plug401.yml | 22 + .../show_voice_sip-gateway_reset.plug103.yml | 2 + .../show_voice_sip-gateway_reset.plug212.yml | 2 + .../show_voice_sip-gateway_reset.plug401.yml | 2 + ...voice_voice-port_pri_all_reset.plug103.yml | 2 + ...voice_voice-port_pri_all_reset.plug212.yml | 2 + ...voice_voice-port_pri_all_reset.plug401.yml | 2 + .../show_voice_voip-call_any_all.plug103.raw | 2113 ++++++++++++++++ .../show_voice_voip-call_any_all.plug103.yml | 2 + .../show_voice_voip-call_any_all.plug212.raw | 2119 +++++++++++++++++ .../show_voice_voip-call_any_all.plug212.yml | 2 + .../show_voice_voip-call_any_all.plug401.raw | 1627 +++++++++++++ .../show_voice_voip-call_any_all.plug401.yml | 2 + 39 files changed, 6265 insertions(+), 23 deletions(-) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm create mode 100644 tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml create mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index c8bb897f1f..6226f8a8f1 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -706,8 +706,10 @@ oneaccess_oneos_show_voice_sip-gateway.textfsm, .*, oneaccess_oneos, sh[[ow]] vo oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] oneaccess_oneos_show_isdn_led-status.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn led-status oneaccess_oneos_show_isdn_status_all.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn status all +oneaccess_oneos_show_reboot_counters.textfsm, .*, oneaccess_oneos, sh[[ow]] reboot counters oneaccess_oneos_show_system_hardware.textfsm, .*, oneaccess_oneos, sh[[ow]] system hardware oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf +oneaccess_oneos_show_ip_bgp_summary.textfsm, .*, oneaccess_oneos, sh[[ow]] ip bgp summary oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] oneaccess_oneos_show_soft-file_info.textfsm, .*, oneaccess_oneos, sh[[ow]] soft\-file info.* @@ -726,8 +728,6 @@ oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* - - paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm new file mode 100644 index 0000000000..2c07c5f299 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm @@ -0,0 +1,34 @@ +Value Filldown,Required ROUTER_ID ([0-9a-f:\.]+) +Value Filldown LOCAL_AS (\d+(\.\d+)?) +Value Filldown VRF (\w+) +Value Filldown RIB_ENTRIES (\d+) +Value Filldown RIB_MEMORY (\d+\s\S+) +Value Filldown PEERS (\d+) +Value Filldown BGP_MEMORY (\d+\s\S+) +Value Filldown AS_PATH_ENTRIES (\d+) +Value Filldown COMMUNTIY_ENTRIES (\d+) +Value BGP_NEIGH (\d+\.\d+\.\d+\.\d+) +Value ADDR_FAMILY (\d+) +Value NEIGH_AS (\d+) +Value MSG_RCVD (\d+) +Value MSG_SENT (\d+) +Value TBL_VER (\d+) +Value IN_Q (\d+) +Value OUT_Q (\d+) +Value UP_DOWN (\S+?) +Value STATE_PFXRCD (\S+\s+\S+|\S+) +Value Fillup TOTAL_NEIGHBORS (\d+) + +Start + ^BGP\srouter\sidentifier\s${ROUTER_ID},\slocal\sAS\snumber\s${LOCAL_AS},?\s+vrf\s\(?${VRF}\)? + ^RIB\sentries\s${RIB_ENTRIES},\susing\s${RIB_MEMORY}\sof\smemory + ^Peers\s${PEERS},\susing\s${BGP_MEMORY}\sof\smemory + ^${AS_PATH_ENTRIES}\sBGP\sAS-PATH\sentries + ^${COMMUNTIY_ENTRIES}\sBGP\scommunity\sentries + ^Neighbor\s + ^${BGP_NEIGH}\s+${ADDR_FAMILY}\s+${NEIGH_AS}\s+${MSG_RCVD}\s+${MSG_SENT}\s+${TBL_VER}\s+${IN_Q}\s+${OUT_Q}\s+${UP_DOWN}\s+${STATE_PFXRCD} -> Record + ^Total\snumber\sof\sneighbors\s${TOTAL_NEIGHBORS} + ^\s*$$ + ^. -> Error + +EOF diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm index e69de29bb2..0a476636c1 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm @@ -0,0 +1,4 @@ +Value TODO (.*) + +Start + ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm b/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm new file mode 100644 index 0000000000..9e286a2455 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm @@ -0,0 +1,27 @@ +Value Required DEVICE (\S+) +Value SERIAL (\S+) +Value REBOOT_CAUSE (.*) +Value HARDWARE_RESET (\d+) +Value POWER_FAIL_DETECTION (\d+) +Value TOTAL_SOFTWARE_REBOOTS (\d+) +Value SYSTEM_DEFENSE (\d+) +Value GENERIC_SOFTWARE_REBOOT (\d+) +Value ADMIN_REQUESTED_REBOOT (\d+) +Value ADMIN_DELAYED_REBOOT (\d+) +Value SPURIOUS_POWER_FAILS (\d+) + +Start + ^Reboot\sstatus\sfor\sdevice\s${DEVICE}\sS\/N\s${SERIAL} + ^Last\sReboot\sCause\s+:\s+${REBOOT_CAUSE} + ^Reboot\sCounters + ^Reboot\son\shardware\sreset\s+:\s+${HARDWARE_RESET} + ^Power\sFail\sdetection\s+:\s+${POWER_FAIL_DETECTION} + ^Total\sSoftware\sRequested\sReboots\s+:\s+${TOTAL_SOFTWARE_REBOOTS} + ^\s*Generic\ssoftware\sreboot\srequest\s+:\s+${GENERIC_SOFTWARE_REBOOT} + ^\s*System\sdefense\s-\sreboot\safter\scrash\s+:\s+${SYSTEM_DEFENSE} + ^\s*Administrator\srequested\sreboot\s+:\s+${ADMIN_REQUESTED_REBOOT} + ^\s*Administrator\srequested\sdelayed\sreboot\s+:\s+${ADMIN_DELAYED_REBOOT} + ^Since\sstartup,\sspurious\sPower\sFail\shas\soccur+ed\s${SPURIOUS_POWER_FAILS}\stime + ^\s*$$ + ^.* + ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm index e69de29bb2..ceafcd7755 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm @@ -0,0 +1,51 @@ +Value CURR_NBR_CALL (\d+\.\d+|\d+) +Value CURR_AVG_MOS (\d+\.\d+|\d+) +Value CURR_MIN_MOS (\d+\.\d+|\d+) +Value CURR_MAX_MOS (\d+\.\d+|\d+) +Value CURR_AVG_ERL (\d+\.\d+|\d+) +Value CURR_AVG_ACOM (\d+\.\d+|\d+) +Value CURR_AVG_LOSS_RATE (\d+\.\d+|\d+) +Value CURR_AVG_JITTER (\d+\.\d+|\d+) +Value CURR_AVG_MAX_DELAY (\d+\.\d+|\d+) +Value CURR_AVG_PDD (\d+\.\d+|\d+) +Value PREV_NBR_CALL (\d+\.\d+|\d+) +Value PREV_AVG_MOS (\d+\.\d+|\d+) +Value PREV_MIN_MOS (\d+\.\d+|\d+) +Value PREV_MAX_MOS (\d+\.\d+|\d+) +Value PREV_AVG_ERL (\d+\.\d+|\d+) +Value PREV_AVG_ACOM (\d+\.\d+|\d+) +Value PREV_AVG_LOSS_RATE (\d+\.\d+|\d+) +Value PREV_AVG_JITTER (\d+\.\d+|\d+) +Value PREV_AVG_MAX_DELAY (\d+\.\d+|\d+) +Value PREV_AVG_PDD (\d+\.\d+|\d+) + +Start + ^\s*-+\sCurrent\shour\s-+ -> CurrentHour + ^\s*$$ + ^\s*-* + ^. -> Error + +CurrentHour + ^\s*Number\sof\sCall\s+:\s+${CURR_NBR_CALL} + ^\s*Average\sof\sMOS\s+:\s+${CURR_AVG_MOS} + ^\s*Minimum\sMOS\s+:\s+${CURR_MIN_MOS} + ^\s*Maximum\sMOS\s+:\s+${CURR_MAX_MOS} + ^\s*Average\sof\sERL\s+:\s+${CURR_AVG_ERL} + ^\s*Average\sof\sACOM\s+:\s+${CURR_AVG_ACOM} + ^\s*Average\sof\sloss-rate\s+:\s+${CURR_AVG_LOSS_RATE} + ^\s*Average\sof\sjitter\s+:\s+${CURR_AVG_JITTER} + ^\s*Average\sof\sMax\sdelay\s+:\s+${CURR_AVG_MAX_DELAY} + ^\s*Average\sPdd\s+:\s+${CURR_AVG_PDD} + ^\s*-+\sPrevious\shour\s-+ -> PreviousHour + +PreviousHour + ^\s*Number\sof\sCall\s+:\s+${PREV_NBR_CALL} + ^\s*Average\sof\sMOS\s+:\s+${PREV_AVG_MOS} + ^\s*Minimum\sMOS\s+:\s+${PREV_MIN_MOS} + ^\s*Maximum\sMOS\s+:\s+${PREV_MAX_MOS} + ^\s*Average\sof\sERL\s+:\s+${PREV_AVG_ERL} + ^\s*Average\sof\sACOM\s+:\s+${PREV_AVG_ACOM} + ^\s*Average\sof\sloss-rate\s+:\s+${PREV_AVG_LOSS_RATE} + ^\s*Average\sof\sjitter\s+:\s+${PREV_AVG_JITTER} + ^\s*Average\sof\sMax\sdelay\s+:\s+${PREV_AVG_MAX_DELAY} + ^\s*Average\sPdd\s+:\s+${PREV_AVG_PDD} diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm index e69de29bb2..0a476636c1 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm @@ -0,0 +1,4 @@ +Value TODO (.*) + +Start + ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm index e69de29bb2..0a476636c1 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm @@ -0,0 +1,4 @@ +Value TODO (.*) + +Start + ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm index e69de29bb2..0a476636c1 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm @@ -0,0 +1,4 @@ +Value TODO (.*) + +Start + ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm index e69de29bb2..0a476636c1 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm @@ -0,0 +1,4 @@ +Value TODO (.*) + +Start + ^.* \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw new file mode 100644 index 0000000000..ed928fdf1c --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw @@ -0,0 +1,8 @@ +BGP router identifier 194.5.12.148, local AS number 65000, vrf (null) +6 BGP AS-PATH entries +0 BGP community entries + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +194.5.163.29 4 14737 13360 12237 34 0 0 4d05h57m 28 + +Total number of neighbors 1 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml new file mode 100644 index 0000000000..a492e63452 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - router_id: "194.5.12.148" + local_as: "65000" + vrf: "null" + rib_entries: "" + rib_memory: "" + peers: "" + bgp_memory: "" + as_path_entries: "6" + communtiy_entries: "0" + bgp_neigh: "194.5.163.29" + addr_family: "4" + neigh_as: "14737" + msg_rcvd: "13360" + msg_sent: "12237" + tbl_ver: "34" + in_q: "0" + out_q: "0" + up_down: "4d05h57m" + state_pfxrcd: "28" + total_neighbors: "1" diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw new file mode 100644 index 0000000000..cad0dfe0e1 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw @@ -0,0 +1,9 @@ +BGP router identifier 1.105.35.17, local AS number 65000 vrf default +RIB entries 1493, using 105 KiB of memory +Peers 2, using 5128 bytes of memory + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +192.4.21.254 4 61400 38962 26256 78123 0 0 20:35:48 881 +192.4.91.254 4 61400 38876 26260 78123 0 0 20:35:48 881 + +Total number of neighbors 2 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml new file mode 100644 index 0000000000..d7b92c65d1 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml @@ -0,0 +1,42 @@ +--- +parsed_sample: + - router_id: "1.105.35.17" + local_as: "65000" + vrf: "default" + rib_entries: "1493" + rib_memory: "105 KiB" + peers: "2" + bgp_memory: "5128 bytes" + as_path_entries: "" + communtiy_entries: "" + bgp_neigh: "192.4.21.254" + addr_family: "4" + neigh_as: "61400" + msg_rcvd: "38962" + msg_sent: "26256" + tbl_ver: "78123" + in_q: "0" + out_q: "0" + up_down: "20:35:48" + state_pfxrcd: "881" + total_neighbors: "2" + - router_id: "1.105.35.17" + local_as: "65000" + vrf: "default" + rib_entries: "1493" + rib_memory: "105 KiB" + peers: "2" + bgp_memory: "5128 bytes" + as_path_entries: "" + communtiy_entries: "" + bgp_neigh: "192.4.91.254" + addr_family: "4" + neigh_as: "61400" + msg_rcvd: "38876" + msg_sent: "26260" + tbl_ver: "78123" + in_q: "0" + out_q: "0" + up_down: "20:35:48" + state_pfxrcd: "881" + total_neighbors: "2" diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw new file mode 100644 index 0000000000..72408f314c --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw @@ -0,0 +1,13 @@ + + +Reboot status for device LBB_154 S/N T2047008177055804 + +Last Reboot Cause : Software requested / System defense - reboot after crash + +Reboot Counters : +Reboot on hardware reset : 0 +Power Fail detection : 9 +Total Software Requested Reboots : 7 + System defense - reboot after crash : 6 + Administrator requested delayed reboot : 1 + diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml new file mode 100644 index 0000000000..2de2ca0a8b --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - device: "LBB_154" + serial: "T2047008177055804" + reboot_cause: "Software requested / System defense - reboot after crash" + hardware_reset: "0" + power_fail_detection: "9" + total_software_reboots: "7" + system_defense: "6" + generic_software_reboot: "" + admin_requested_reboot: "" + admin_delayed_reboot: "1" + spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw new file mode 100644 index 0000000000..0596347538 --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw @@ -0,0 +1,14 @@ + +Reboot status for device MB420SAVad0UFPE0BNW S/N T1703006230033175 + +Last Reboot Cause : Power Fail detection + +Reboot Counters : +Reboot on hardware reset : 0 +Power Fail detection : 33 +Total Software Requested Reboots : 21 + System defense - reboot after crash : 4 + Administrator requested reboot : 15 + Administrator requested delayed reboot : 2 + +Since startup, spurious Power Fail has occured 0 time(s) diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml new file mode 100644 index 0000000000..dd24edad7e --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - device: "MB420SAVad0UFPE0BNW" + serial: "T1703006230033175" + reboot_cause: "Power Fail detection" + hardware_reset: "0" + power_fail_detection: "33" + total_software_reboots: "21" + system_defense: "4" + generic_software_reboot: "" + admin_requested_reboot: "15" + admin_delayed_reboot: "2" + spurious_power_fails: "0" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw new file mode 100644 index 0000000000..00c93656ad --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw @@ -0,0 +1,14 @@ + +Reboot status for device PBXPLUG_401 S/N T1817008168000443 + +Last Reboot Cause : Generic software reboot request + +Reboot Counters : +Reboot on hardware reset : 0 +Power Fail detection : 6 +Total Software Requested Reboots : 83 + Generic software reboot request : 59 + System defense - reboot after crash : 5 + Administrator requested reboot : 16 + Administrator requested delayed reboot : 3 + diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml new file mode 100644 index 0000000000..57f5073421 --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - device: "PBXPLUG_401" + serial: "T1817008168000443" + reboot_cause: "Generic software reboot request" + hardware_reset: "0" + power_fail_detection: "6" + total_software_reboots: "83" + system_defense: "5" + generic_software_reboot: "59" + admin_requested_reboot: "16" + admin_delayed_reboot: "3" + spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw index 83470fec40..e1210c7478 100644 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw @@ -13,15 +13,15 @@ Average Pdd : 0 ------------------------- Previous hour ------------------------ - Number of Call : 0 - Average of MOS : 0.00 - Minimum MOS : 0.00 - Maximum MOS : 0.00 - Average of ERL : 0 - Average of ACOM : 0 + Number of Call : 1 + Average of MOS : 4.34 + Minimum MOS : 4.34 + Maximum MOS : 4.34 + Average of ERL : 14 + Average of ACOM : 43 Average of loss-rate : 0 Average of jitter : 0 - Average of Max delay : 0 + Average of Max delay : 3 Average Pdd : 0 ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml new file mode 100644 index 0000000000..7dd838cbeb --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - curr_nbr_call: "0" + curr_avg_mos: "0.00" + curr_min_mos: "0.00" + curr_max_mos: "0.00" + curr_avg_erl: "0" + curr_avg_acom: "0" + curr_avg_loss_rate: "0" + curr_avg_jitter: "0" + curr_avg_max_delay: "0" + curr_avg_pdd: "0" + prev_nbr_call: "1" + prev_avg_mos: "4.34" + prev_min_mos: "4.34" + prev_max_mos: "4.34" + prev_avg_erl: "14" + prev_avg_acom: "43" + prev_avg_loss_rate: "0" + prev_avg_jitter: "0" + prev_avg_max_delay: "3" + prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml new file mode 100644 index 0000000000..33c2f92122 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - curr_nbr_call: "0" + curr_avg_mos: "0.0" + curr_min_mos: "0.0" + curr_max_mos: "0.0" + curr_avg_erl: "0" + curr_avg_acom: "0" + curr_avg_loss_rate: "0" + curr_avg_jitter: "0" + curr_avg_max_delay: "0" + curr_avg_pdd: "0" + prev_nbr_call: "0" + prev_avg_mos: "0.0" + prev_min_mos: "0.0" + prev_max_mos: "0.0" + prev_avg_erl: "0" + prev_avg_acom: "0" + prev_avg_loss_rate: "0" + prev_avg_jitter: "0" + prev_avg_max_delay: "0" + prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw index 83470fec40..2c15eed7a2 100644 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw @@ -1,27 +1,27 @@ ------------------------- Call Quality ------------------------- ------------------------- Current hour ------------------------- - Number of Call : 0 - Average of MOS : 0.00 - Minimum MOS : 0.00 - Maximum MOS : 0.00 - Average of ERL : 0 - Average of ACOM : 0 + Number of Call : 1 + Average of MOS : 4.35 + Minimum MOS : 4.35 + Maximum MOS : 4.35 + Average of ERL : 19 + Average of ACOM : 46 Average of loss-rate : 0 Average of jitter : 0 - Average of Max delay : 0 + Average of Max delay : 262144 Average Pdd : 0 ------------------------- Previous hour ------------------------ - Number of Call : 0 - Average of MOS : 0.00 - Minimum MOS : 0.00 - Maximum MOS : 0.00 - Average of ERL : 0 - Average of ACOM : 0 + Number of Call : 6 + Average of MOS : 4.34 + Minimum MOS : 4.33 + Maximum MOS : 4.34 + Average of ERL : 29 + Average of ACOM : 57 Average of loss-rate : 0 Average of jitter : 0 - Average of Max delay : 0 + Average of Max delay : 43691 Average Pdd : 0 ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml new file mode 100644 index 0000000000..d042271f37 --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - curr_nbr_call: "1" + curr_avg_mos: "4.35" + curr_min_mos: "4.35" + curr_max_mos: "4.35" + curr_avg_erl: "19" + curr_avg_acom: "46" + curr_avg_loss_rate: "0" + curr_avg_jitter: "0" + curr_avg_max_delay: "262144" + curr_avg_pdd: "0" + prev_nbr_call: "6" + prev_avg_mos: "4.34" + prev_min_mos: "4.33" + prev_max_mos: "4.34" + prev_avg_erl: "29" + prev_avg_acom: "57" + prev_avg_loss_rate: "0" + prev_avg_jitter: "0" + prev_avg_max_delay: "43691" + prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw index e69de29bb2..08d6c75eeb 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw @@ -0,0 +1,2113 @@ + + 1 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 151 (390) + calling : 490446941, called : 55335275 + setup time: 11/01/23 21h52m53s + connexion time: 11/01/23 21h53m07s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:31 + PDD duration: 283 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:23394 + Play time (voice) : 00h02m31s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7544 / 7531 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 14 dB + ACOM : 43 dB + + + 2 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 150 (389) + calling : 490446941, called : 55335275 + setup time: 11/01/23 21h27m06s + connexion time: 11/01/23 21h27m33s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:36 + PDD duration: 270 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:23492 + Play time (voice) : 00h01m36s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4814 / 4807 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 13 dB + ACOM : 40 dB + + + 3 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 149 (388) + calling : 488313757, called : 55337751 + setup time: 11/01/23 20h25m09s + connexion time: 11/01/23 20h25m09s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 102 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:23440 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 244 / 245 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 4 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 148 (387) + calling : 488313757, called : 55337751 + setup time: 11/01/23 20h24m56s + connexion time: 11/01/23 20h24m56s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:06 + PDD duration: 155 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:23418 + Play time (voice) : 00h00m06s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 272 / 273 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 5 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 147 (386) + calling : 3255335278, called : 3250703433 + setup time: 11/01/23 16h33m08s + connexion time: 11/01/23 16h33m09s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:11 + PDD duration: 847 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:23192 + Play time (voice) : 00h02m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6529 / 6529 + RTP Packet lost&discarded RX / TX (RTCP reported) : 13 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 40 dB + ACOM : 66 dB + + + 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 144 (383) + calling : 3255335278, called : 3250703433 + setup time: 11/01/23 16h15m11s + connexion time: 11/01/23 16h15m12s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:13:29 + PDD duration: 708 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:23156 + Play time (voice) : 00h13m29s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 40459 / 40459 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 37 dB + ACOM : 64 dB + + + 7 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 146 (385) + calling : 32491169975, called : 32490661143 + setup time: 11/01/23 16h22m35s + connexion time: 11/01/23 16h22m39s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:48 + PDD duration: 599 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:23196 + Play time (voice) : 00h02m48s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 8567 / 8567 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 24 dB + ACOM : 73 dB + + + 8 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 145 (384) + calling : 491169975, called : 55337505 + setup time: 11/01/23 16h22m35s + connexion time: 11/01/23 16h22m39s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:48 + PDD duration: 852 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:23180 + Play time (voice) : 00h02m48s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 8390 / 8382 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 32 dB + ACOM : 58 dB + + + 9 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 143 (382) + calling : 492819960, called : 55335206 + setup time: 11/01/23 16h06m05s + connexion time: 11/01/23 16h06m08s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 377 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:23128 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 943 / 929 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 42 dB + ACOM : 67 dB + + + 10 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 142 (381) + calling : 3255335346, called : 32490661137 + setup time: 11/01/23 16h04m09s + connexion time: 11/01/23 16h04m17s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:10 + PDD duration: 2088 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:23122 + Play time (voice) : 00h00m10s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 801 / 801 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 28 dB + ACOM : 51 dB + + + 11 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 141 (380) + calling : 3255335241, called : 32498178799 + setup time: 11/01/23 15h59m31s + connexion time: 11/01/23 15h59m55s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 1422 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:23074 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1182 / 1199 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 66 dB + ACOM : 90 dB + + + 12 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 140 (379) + calling : 3255335278, called : 32492819960 + setup time: 11/01/23 15h42m36s + connexion time: 11/01/23 15h43m00s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:04 + PDD duration: 967 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:23008 + Play time (voice) : 00h00m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1318 / 1334 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 67 dB + ACOM : 91 dB + + + 13 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 139 (378) + calling : 3255335278, called : 32492819960 + setup time: 11/01/23 15h41m50s + connexion time: 11/01/23 15h42m14s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 1041 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:23006 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1379 / 1391 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 67 dB + ACOM : 91 dB + + + 14 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 138 (377) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 15h10m36s + connexion time: 11/01/23 15h10m48s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:17 + PDD duration: 1464 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:22878 + Play time (voice) : 00h00m17s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1356 / 1373 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 54 dB + + + 15 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 137 (376) + calling : 3255337739, called : 32491169927 + setup time: 11/01/23 15h07m19s + connexion time: 11/01/23 15h07m43s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:07 + PDD duration: 1515 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:22890 + Play time (voice) : 00h00m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1458 / 1462 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 41 dB + ACOM : 71 dB + + + 16 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 136 (375) + calling : 490661133, called : 55335206 + setup time: 11/01/23 15h02m05s + connexion time: 11/01/23 15h02m07s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:04 + PDD duration: 361 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:22866 + Play time (voice) : 00h01m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3199 / 3187 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 38 dB + ACOM : 65 dB + + + 17 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 135 (374) + calling : 495914834, called : 55335241 + setup time: 11/01/23 14h58m35s + connexion time: 11/01/23 14h58m38s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:05 + PDD duration: 321 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:22838 + Play time (voice) : 00h02m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6214 / 6200 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 18 dB + ACOM : 42 dB + + + 18 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 134 (373) + calling : 3255337758, called : 32490661150 + setup time: 11/01/23 14h54m36s + connexion time: 11/01/23 14h54m49s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:51 + PDD duration: 3148 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:22826 + Play time (voice) : 00h01m51s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6031 / 6066 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.38 / 4.39 + ERL : 40 dB + ACOM : 59 dB + + + 19 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 133 (372) + calling : 32499172658, called : 32490446941 + setup time: 11/01/23 14h53m42s + connexion time: 11/01/23 14h54m06s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 1136 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:22808 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1758 / 1760 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 28 dB + ACOM : 66 dB + + + 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 132 (371) + calling : 499172658, called : 55335361 + setup time: 11/01/23 14h53m42s + connexion time: 11/01/23 14h54m06s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 1393 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:22802 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 598 / 602 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 20 dB + ACOM : 75 dB + + + 21 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 131 (370) + calling : 3255335346, called : 32490661134 + setup time: 11/01/23 14h41m09s + connexion time: 11/01/23 14h41m21s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:30 + PDD duration: 2115 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16412 /Dest ip :212.224.167.110 rtp:22776 + Play time (voice) : 00h00m30s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2003 / 2004 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 53 dB + + + 22 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 130 (369) + calling : 32490661150, called : 32479844827 + setup time: 11/01/23 14h12m45s + connexion time: 11/01/23 14h12m46s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:23 + PDD duration: 1109 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16410 /Dest ip :212.224.167.110 rtp:22630 + Play time (voice) : 00h00m23s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1140 / 1141 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 2 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 48 dB + ACOM : 77 dB + + + 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 129 (368) + calling : 490661150, called : 55337758 + setup time: 11/01/23 14h12m45s + connexion time: 11/01/23 14h12m46s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:22 + PDD duration: 1401 msec + advice-of-charge: free + call priority: 100 + + + 24 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 128 (367) + calling : 495504138, called : 55335211 + setup time: 11/01/23 14h07m36s + connexion time: 11/01/23 14h07m43s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:20 + PDD duration: 263 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16408 /Dest ip :212.224.167.110 rtp:22634 + Play time (voice) : 00h02m20s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7005 / 7003 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 44 dB + ACOM : 68 dB + + + 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 127 (366) + calling : 475453097, called : 55335278 + setup time: 11/01/23 13h31m44s + connexion time: 11/01/23 13h31m51s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:05:38 + PDD duration: 254 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16406 /Dest ip :212.224.167.110 rtp:22452 + Play time (voice) : 00h05m38s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 16865 / 16867 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 46 dB + ACOM : 73 dB + + + 26 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 126 (365) + calling : 3255337741, called : 32492819960 + setup time: 11/01/23 13h18m28s + connexion time: 11/01/23 13h18m38s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:33 + PDD duration: 899 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16404 /Dest ip :212.224.167.110 rtp:22392 + Play time (voice) : 00h00m33s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2118 / 2136 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 20 dB + ACOM : 52 dB + + + 27 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 125 (364) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 13h16m15s + connexion time: 11/01/23 13h16m27s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:14 + PDD duration: 1409 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16402 /Dest ip :212.224.167.110 rtp:22348 + Play time (voice) : 00h00m15s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1217 / 1234 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 47 dB + ACOM : 78 dB + + + 28 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 123 (362) + calling : 32039693, called : 55337755 + setup time: 11/01/23 12h36m17s + connexion time: 11/01/23 12h36m22s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:48 + PDD duration: 1241 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16400 /Dest ip :212.224.167.110 rtp:22232 + Play time (voice) : 00h00m48s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2365 / 2362 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 30 dB + ACOM : 54 dB + + + 29 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 124 (363) + calling : 3232039693, called : 32495914860 + setup time: 11/01/23 12h36m17s + connexion time: 11/01/23 12h36m22s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:48 + PDD duration: 1020 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16398 /Dest ip :212.224.167.110 rtp:22160 + Play time (voice) : 00h00m48s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2574 / 2574 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 30 dB + ACOM : 57 dB + + + 30 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 122 (361) + calling : 3255335206, called : 32492136378 + setup time: 11/01/23 12h11m38s + connexion time: 11/01/23 12h11m52s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 3277 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16396 /Dest ip :212.224.167.110 rtp:22132 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1107 / 1112 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 39 dB + ACOM : 62 dB + + + 31 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 121 (360) + calling : 3255335206, called : 32495914834 + setup time: 11/01/23 12h10m24s + connexion time: 11/01/23 12h10m27s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:27 + PDD duration: 1219 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16394 /Dest ip :212.224.167.110 rtp:22136 + Play time (voice) : 00h00m27s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1444 / 1444 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 37 dB + ACOM : 63 dB + + + 32 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 120 (359) + calling : 3255335206, called : 32490661154 + setup time: 11/01/23 12h09m51s + connexion time: 11/01/23 12h10m18s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 3375 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16392 /Dest ip :212.224.167.110 rtp:22142 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1287 / 1290 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 60 dB + ACOM : 89 dB + + + 33 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 119 (358) + calling : 3255335241, called : 32491169975 + setup time: 11/01/23 12h02m16s + connexion time: 11/01/23 12h02m24s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 1208 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16390 /Dest ip :212.224.167.110 rtp:22090 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1323 / 1323 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 21 dB + ACOM : 41 dB + + + 34 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 118 (357) + calling : 3255337741, called : 32470635841 + setup time: 11/01/23 11h48m06s + connexion time: 11/01/23 11h48m16s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:55 + PDD duration: 1406 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16388 /Dest ip :212.224.167.110 rtp:21946 + Play time (voice) : 00h01m55s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6164 / 6170 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 25 dB + ACOM : 47 dB + + + 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 117 (356) + calling : 470635841, called : 55335211 + setup time: 11/01/23 11h46m22s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 258 msec + advice-of-charge: free + call priority: 100 + + + 36 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 116 (355) + calling : 495914834, called : 55335395 + setup time: 11/01/23 11h41m18s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 343 msec + advice-of-charge: free + call priority: 100 + + + 37 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 115 (354) + calling : 495914834, called : 55335395 + setup time: 11/01/23 11h41m15s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 114 (353) + calling : 495914834, called : 55335395 + setup time: 11/01/23 11h38m56s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 302 msec + advice-of-charge: free + call priority: 100 + + + 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 113 (352) + calling : 495914834, called : 55335395 + setup time: 11/01/23 11h36m21s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 356 msec + advice-of-charge: free + call priority: 100 + + + 40 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 111 (350) + calling : 476215202, called : 55335234 + setup time: 11/01/23 11h30m51s + connexion time: 11/01/23 11h31m03s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:13 + PDD duration: 3942 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16386 /Dest ip :212.224.167.110 rtp:21918 + Play time (voice) : 00h00m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 646 / 644 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 52 dB + + + 41 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 112 (351) + calling : 32476215202, called : 32490661131 + setup time: 11/01/23 11h30m51s + connexion time: 11/01/23 11h31m03s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:13 + PDD duration: 3646 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16384 /Dest ip :212.224.167.110 rtp:21936 + Play time (voice) : 00h00m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1060 / 1065 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 41 dB + ACOM : 65 dB + + + 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 110 (349) + calling : 490661150, called : 55335241 + setup time: 11/01/23 11h23m17s + connexion time: 11/01/23 11h23m44s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 301 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16454 /Dest ip :212.224.167.110 rtp:21848 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 76 / 62 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : 27 dB + ACOM : 82 dB + + + 43 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 109 (348) + calling : 55218750, called : 55335241 + setup time: 11/01/23 11h21m13s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 355 msec + advice-of-charge: free + call priority: 100 + + + 44 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 108 (347) + calling : 3255335334, called : 32475638295 + setup time: 11/01/23 11h17m51s + connexion time: 11/01/23 11h17m57s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:24 + PDD duration: 814 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:21814 + Play time (voice) : 00h01m24s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4463 / 4464 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 20 dB + ACOM : 53 dB + + + 45 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 107 (346) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 11h16m33s + connexion time: 11/01/23 11h16m46s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:11 + PDD duration: 900 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:21764 + Play time (voice) : 00h00m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1159 / 1177 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 40 dB + ACOM : 64 dB + + + 46 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 106 (345) + calling : 3255335278, called : 32492819960 + setup time: 11/01/23 11h13m41s + connexion time: 11/01/23 11h13m51s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:58 + PDD duration: 1332 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:21776 + Play time (voice) : 00h01m58s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6322 / 6335 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 24 dB + ACOM : 57 dB + + + 47 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 104 (343) + calling : 3255335241, called : 32491169975 + setup time: 11/01/23 11h09m16s + connexion time: 11/01/23 11h09m21s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:03:01 + PDD duration: 1464 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:21738 + Play time (voice) : 00h03m01s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9207 / 9207 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 25 dB + ACOM : 62 dB + + + 48 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 105 (344) + calling : 3255335278, called : 32474810035 + setup time: 11/01/23 11h10m19s + connexion time: 11/01/23 11h10m26s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:38 + PDD duration: 1209 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:21724 + Play time (voice) : 00h01m38s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5201 / 5202 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 31 dB + ACOM : 61 dB + + + 49 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 103 (342) + calling : 55218750, called : 55335241 + setup time: 11/01/23 11h05m39s + connexion time: 11/01/23 11h06m06s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 350 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:21744 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 102 / 106 + RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : 28 dB + ACOM : 83 dB + + + 50 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 102 (341) + calling : 3255335278, called : 32479790455 + setup time: 11/01/23 11h04m18s + connexion time: 11/01/23 11h04m30s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:04 + PDD duration: 1099 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:21706 + Play time (voice) : 00h00m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 732 / 761 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 25 dB + ACOM : 53 dB + + + 51 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 101 (340) + calling : 3255335241, called : 3255218750 + setup time: 11/01/23 11h03m15s + connexion time: 11/01/23 11h03m15s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:43 + PDD duration: 554 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:21686 + Play time (voice) : 00h00m43s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2131 / 2148 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 2 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 48 dB + ACOM : 71 dB + + + 52 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 100 (339) + calling : 3255335241, called : 32495914834 + setup time: 11/01/23 11h01m29s + connexion time: 11/01/23 11h01m33s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:24 + PDD duration: 1491 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:21718 + Play time (voice) : 00h01m24s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4315 / 4315 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 32 dB + ACOM : 64 dB + + + 53 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 98 (337) + calling : 3255335241, called : 32486141517 + setup time: 11/01/23 10h59m16s + connexion time: 11/01/23 10h59m30s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:53 + PDD duration: 1433 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:21672 + Play time (voice) : 00h01m53s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6280 / 6281 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 43 dB + ACOM : 77 dB + + + 54 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 99 (338) + calling : 3255335275, called : 32495914834 + setup time: 11/01/23 11h00m11s + connexion time: 11/01/23 11h00m15s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:22 + PDD duration: 998 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:21662 + Play time (voice) : 00h00m22s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1256 / 1256 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 14 dB + ACOM : 53 dB + + + 55 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 97 (336) + calling : 3255335241, called : 3255235858 + setup time: 11/01/23 10h58m23s + connexion time: 11/01/23 10h58m25s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:41 + PDD duration: 1643 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:21684 + Play time (voice) : 00h00m41s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2053 / 2080 + RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.32 / 4.38 + ERL : 45 dB + ACOM : 76 dB + + + 56 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 96 (335) + calling : 3255335241, called : 32495914834 + setup time: 11/01/23 10h57m17s + connexion time: 11/01/23 10h57m21s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:40 + PDD duration: 1310 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:21618 + Play time (voice) : 00h00m40s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2136 / 2136 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 54 dB + ACOM : 88 dB + + + 57 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 95 (334) + calling : 3255335241, called : 3256303372 + setup time: 11/01/23 10h54m14s + connexion time: 11/01/23 10h54m16s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:57 + PDD duration: 1601 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:21642 + Play time (voice) : 00h02m57s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 8815 / 8872 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 14 dB + ACOM : 40 dB + + + 58 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 93 (332) + calling : 3255335334, called : 32475638295 + setup time: 11/01/23 10h52m58s + connexion time: 11/01/23 10h53m22s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:03:03 + PDD duration: 1153 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:21632 + Play time (voice) : 00h03m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 10275 / 10276 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 29 dB + ACOM : 54 dB + + + 59 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 94 (333) + calling : 3255337755, called : 32474718109 + setup time: 11/01/23 10h53m32s + connexion time: 11/01/23 10h53m36s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:06 + PDD duration: 1327 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:21612 + Play time (voice) : 00h01m06s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3428 / 3428 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 33 dB + ACOM : 59 dB + + + 60 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 92 (331) + calling : 3255335241, called : 3256627111 + setup time: 11/01/23 10h52m03s + connexion time: 11/01/23 10h52m05s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:57 + PDD duration: 649 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:21634 + Play time (voice) : 00h01m57s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5846 / 5893 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 2.87 / 4.39 + ERL : 49 dB + ACOM : 76 dB + + + 61 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 91 (330) + calling : 3255335241, called : 3255218750 + setup time: 11/01/23 10h47m31s + connexion time: 11/01/23 10h47m31s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:04:05 + PDD duration: 566 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:21590 + Play time (voice) : 00h04m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 12176 / 12215 + RTP Packet lost&discarded RX / TX (RTCP reported) : 10786 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 1.00 / 1.00 + ERL : 37 dB + ACOM : 65 dB + + + 62 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 90 (329) + calling : 3255335346, called : 32490661135 + setup time: 11/01/23 10h47m26s + connexion time: 11/01/23 10h47m36s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:37 + PDD duration: 1731 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:21586 + Play time (voice) : 00h00m37s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2283 / 2283 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 31 dB + ACOM : 55 dB + + + 63 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 89 (328) + calling : 3255335346, called : 32490661135 + setup time: 11/01/23 10h44m55s + connexion time: 11/01/23 10h44m58s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 2197 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:21574 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 166 / 168 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 64 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 88 (327) + calling : 3255337741, called : 31228355612 + setup time: 11/01/23 10h39m59s + connexion time: 11/01/23 10h40m06s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:09 + PDD duration: 1017 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16412 /Dest ip :212.224.167.110 rtp:21570 + Play time (voice) : 00h01m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3717 / 3723 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.29 / 4.39 + ERL : 35 dB + ACOM : 61 dB + + + 65 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 87 (326) + calling : 32491169975, called : 32490661134 + setup time: 11/01/23 10h37m30s + connexion time: 11/01/23 10h37m41s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:14 + PDD duration: 2045 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16408 /Dest ip :212.224.167.110 rtp:21544 + Play time (voice) : 00h03m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 10140 / 10141 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 18 dB + ACOM : 44 dB + + + 66 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 86 (325) + calling : 491169975, called : 55335341 + setup time: 11/01/23 10h37m30s + connexion time: 11/01/23 10h37m41s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:03:14 + PDD duration: 2247 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16410 /Dest ip :212.224.167.110 rtp:21532 + Play time (voice) : 00h03m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9688 / 9681 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 20 dB + ACOM : 48 dB + + + 67 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 84 (323) + calling : 3255218750, called : 32495914836 + setup time: 11/01/23 10h32m20s + connexion time: 11/01/23 10h32m35s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:18 + PDD duration: 1840 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16402 /Dest ip :212.224.167.110 rtp:21520 + Play time (voice) : 00h00m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1560 / 1561 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 51 dB + ACOM : 75 dB + + + 68 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 83 (322) + calling : 55218750, called : 55335241 + setup time: 11/01/23 10h32m20s + connexion time: 11/01/23 10h32m35s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:18 + PDD duration: 2104 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16406 /Dest ip :212.224.167.110 rtp:21528 + Play time (voice) : 00h00m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 884 / 896 + RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 42 dB + ACOM : 73 dB + + + 69 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 85 (324) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 10h32m23s + connexion time: 11/01/23 10h32m31s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:10 + PDD duration: 931 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16404 /Dest ip :212.224.167.110 rtp:21542 + Play time (voice) : 00h00m10s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 817 / 835 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 36 dB + ACOM : 64 dB + + + 70 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 82 (321) + calling : 3255335334, called : 32490661126 + setup time: 11/01/23 10h31m03s + connexion time: 11/01/23 10h31m16s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:07 + PDD duration: 3170 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16400 /Dest ip :212.224.167.110 rtp:21498 + Play time (voice) : 00h00m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 811 / 847 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 34 dB + ACOM : 59 dB + + + 71 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 81 (320) + calling : 3255335346, called : 32495914836 + setup time: 11/01/23 10h23m33s + connexion time: 11/01/23 10h23m46s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:14 + PDD duration: 678 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16398 /Dest ip :212.224.167.110 rtp:21460 + Play time (voice) : 00h02m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7352 / 7352 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 29 dB + ACOM : 62 dB + + + 72 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 80 (319) + calling : 32460973920, called : 32495914836 + setup time: 11/01/23 10h23m24s + connexion time: 11/01/23 10h23m31s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:13 + PDD duration: 1492 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16394 /Dest ip :212.224.167.110 rtp:21454 + Play time (voice) : 00h00m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 936 / 937 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 29 dB + ACOM : 54 dB + + + 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 79 (318) + calling : 460973920, called : 55335241 + setup time: 11/01/23 10h23m24s + connexion time: 11/01/23 10h23m31s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:13 + PDD duration: 1727 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16396 /Dest ip :212.224.167.110 rtp:21452 + Play time (voice) : 00h00m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 652 / 657 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 28 dB + ACOM : 55 dB + + + 74 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 78 (317) + calling : 3255335346, called : 32490661124 + setup time: 11/01/23 10h19m03s + connexion time: 11/01/23 10h19m19s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:22 + PDD duration: 3237 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16392 /Dest ip :212.224.167.110 rtp:21438 + Play time (voice) : 00h01m22s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4726 / 4729 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 31 dB + ACOM : 56 dB + + + 75 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 77 (316) + calling : 3255335346, called : 32474718109 + setup time: 11/01/23 10h18m16s + connexion time: 11/01/23 10h18m20s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:39 + PDD duration: 919 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16390 /Dest ip :212.224.167.110 rtp:21450 + Play time (voice) : 00h00m39s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2137 / 2137 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 27 dB + ACOM : 51 dB + + + 76 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 76 (315) + calling : 3255335346, called : 32490661135 + setup time: 11/01/23 10h16m51s + connexion time: 11/01/23 10h17m05s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:11 + PDD duration: 2327 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16388 /Dest ip :212.224.167.110 rtp:21430 + Play time (voice) : 00h00m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1166 / 1166 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 28 dB + ACOM : 53 dB + + + 77 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 75 (314) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 10h07m53s + connexion time: 11/01/23 10h08m17s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 1453 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16386 /Dest ip :212.224.167.110 rtp:21352 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1224 / 1239 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 66 dB + ACOM : 90 dB + + + 78 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 73 (312) + calling : 491169975, called : 55335354 + setup time: 11/01/23 10h05m41s + connexion time: 11/01/23 10h05m55s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:35 + PDD duration: 2467 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16384 /Dest ip :212.224.167.110 rtp:21354 + Play time (voice) : 00h00m35s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1746 / 1738 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 17 dB + ACOM : 44 dB + + + 79 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 74 (313) + calling : 32491169975, called : 32490661135 + setup time: 11/01/23 10h05m41s + connexion time: 11/01/23 10h05m54s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:35 + PDD duration: 2259 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16454 /Dest ip :212.224.167.110 rtp:21356 + Play time (voice) : 00h00m35s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2294 / 2295 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 17 dB + ACOM : 60 dB + + + 80 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 72 (311) + calling : 3255335346, called : 32495914834 + setup time: 11/01/23 09h58m30s + connexion time: 11/01/23 09h58m53s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:04 + PDD duration: 961 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:21314 + Play time (voice) : 00h00m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1305 / 1307 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 60 dB + ACOM : 90 dB + + + 81 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 71 (310) + calling : 3255335346, called : 32495914834 + setup time: 11/01/23 09h57m58s + connexion time: 11/01/23 09h58m22s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 1369 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:21324 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1261 / 1263 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 60 dB + ACOM : 90 dB + + + 82 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 70 (309) + calling : 3255337741, called : 3256232940 + setup time: 11/01/23 09h49m37s + connexion time: 11/01/23 09h49m38s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:02 + PDD duration: 1118 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:21266 + Play time (voice) : 00h01m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 622 / 3093 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 3998976 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 33 dB + ACOM : 58 dB + + + 83 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 69 (308) + calling : 3255337741, called : 3256232940 + setup time: 11/01/23 09h49m34s + connexion time: 11/01/23 09h49m36s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:04 + PDD duration: 1325 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:21262 + Play time (voice) : 00h01m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 628 / 3220 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 2684106 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 84 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 68 (307) + calling : 3255337741, called : 3256232940 + setup time: 11/01/23 09h48m47s + connexion time: 11/01/23 09h48m48s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:34 + PDD duration: 1098 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:21252 + Play time (voice) : 00h00m34s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 619 / 1707 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 1121577 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 34 dB + ACOM : 61 dB + + + 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 67 (306) + calling : 495914834, called : 55335241 + setup time: 11/01/23 09h48m07s + connexion time: 11/01/23 09h48m23s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:17 + PDD duration: 308 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:21268 + Play time (voice) : 00h00m17s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 824 / 813 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 23 dB + ACOM : 72 dB + + + 86 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 66 (305) + calling : 3255335241, called : 32495914834 + setup time: 11/01/23 09h41m58s + connexion time: 11/01/23 09h42m00s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:13 + PDD duration: 1335 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:21216 + Play time (voice) : 00h00m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 678 / 680 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 87 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 65 (304) + calling : 31113760035, called : 55335278 + setup time: 11/01/23 09h36m21s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 263 msec + advice-of-charge: free + call priority: 100 + + + 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 64 (303) + calling : 460973920, called : 55335241 + setup time: 11/01/23 09h21m11s + connexion time: 11/01/23 09h21m14s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:46 + PDD duration: 311 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:21108 + Play time (voice) : 00h01m46s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5330 / 5332 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 19 dB + ACOM : 44 dB + + + 89 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 63 (302) + calling : 3255337741, called : 32492819960 + setup time: 11/01/23 09h02m42s + connexion time: 11/01/23 09h02m51s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 1052 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:20998 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1336 / 1356 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 35 dB + ACOM : 57 dB + + + 90 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 62 (301) + calling : 3255337741, called : 3292349010 + setup time: 11/01/23 08h55m10s + connexion time: 11/01/23 08h55m13s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:07:20 + PDD duration: 1490 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:20990 + Play time (voice) : 00h07m20s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 17752 / 22075 + RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 32 dB + ACOM : 58 dB + + + 91 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 61 (300) + calling : 3255337741, called : 32492819960 + setup time: 11/01/23 08h51m58s + connexion time: 11/01/23 08h52m22s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:04 + PDD duration: 1153 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:20970 + Play time (voice) : 00h00m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1298 / 1315 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 73 dB + + + 92 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 60 (299) + calling : 3255337741, called : 32492819960 + setup time: 11/01/23 08h44m49s + connexion time: 11/01/23 08h45m13s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 1285 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:20888 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1243 / 1262 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 56 dB + ACOM : 75 dB + + + 93 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 59 (298) + calling : 3255335206, called : 32492819960 + setup time: 11/01/23 08h42m47s + connexion time: 11/01/23 08h42m59s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:09 + PDD duration: 1183 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:20902 + Play time (voice) : 00h00m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 994 / 1009 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 33 dB + ACOM : 58 dB + + + 94 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 58 (297) + calling : 3255335286, called : 32490661144 + setup time: 11/01/23 08h27m13s + connexion time: 11/01/23 08h27m26s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:21 + PDD duration: 2148 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:20874 + Play time (voice) : 00h00m21s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1600 / 1600 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 95 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 57 (296) + calling : 3255337758, called : 32490661150 + setup time: 11/01/23 08h26m27s + connexion time: 11/01/23 08h26m36s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:06 + PDD duration: 3073 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:20882 + Play time (voice) : 00h01m06s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3578 / 3611 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.24 / 4.39 + ERL : 25 dB + ACOM : 50 dB + + + 96 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 56 (295) + calling : 3255335241, called : 32490446941 + setup time: 11/01/23 08h12m33s + connexion time: 11/01/23 08h12m42s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:31 + PDD duration: 1404 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:20840 + Play time (voice) : 00h03m32s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 10973 / 10974 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 12 dB + ACOM : 45 dB + + + 97 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 55 (294) + calling : 32491169927, called : 32490446941 + setup time: 11/01/23 07h58m45s + connexion time: 11/01/23 07h59m09s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 1072 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:20780 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1377 / 1378 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 49 dB + ACOM : 78 dB + + + 98 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 54 (293) + calling : 491169927, called : 55335361 + setup time: 11/01/23 07h58m45s + connexion time: 11/01/23 07h59m09s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 1343 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:20778 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 227 / 216 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : 20 dB + ACOM : 65 dB + + + 99 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 53 (292) + calling : 3255335286, called : 32490661144 + setup time: 11/01/23 07h04m54s + connexion time: 11/01/23 07h05m00s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:44 + PDD duration: 2156 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:20716 + Play time (voice) : 00h00m44s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2416 / 2417 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 15 dB + ACOM : 42 dB + + + 100 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 51 (290) + calling : 476215202, called : 55335234 + setup time: 11/01/23 07h04m14s + connexion time: 11/01/23 07h04m27s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 3735 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:20682 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 577 / 575 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 26 dB + ACOM : 50 dB + diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw index e69de29bb2..2e737bd480 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw @@ -0,0 +1,2119 @@ + + 1 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 9 (44) + calling : 3232041212, called : 32499572278 + setup time: 11/01/23 22h24m31s + connexion time: 11/01/23 22h24m38s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:15 + PDD duration: 1012 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 22h24m31s + RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15638 + Play time (voice) : 00h00m15s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1017 / 1018 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 19 dB + ACOM : 46 dB + + + 2 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 8 (43) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 22h06m46s + connexion time: 11/01/23 22h07m09s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:07 + PDD duration: 851 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 22h06m46s + RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15644 + Play time (voice) : 00h00m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1464 / 1465 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 23 dB + ACOM : 56 dB + + + 3 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 7 (42) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 22h05m48s + connexion time: 11/01/23 22h06m12s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 1451 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 22h05m48s + RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15642 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1370 / 1371 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 20 dB + ACOM : 59 dB + + + 4 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 6 (41) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 21h59m56s + connexion time: 11/01/23 22h00m21s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:08 + PDD duration: 1211 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h59m56s + RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15636 + Play time (voice) : 00h00m08s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1564 / 1566 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 20 dB + ACOM : 64 dB + + + 5 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 5 (40) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 21h55m39s + connexion time: 11/01/23 21h56m03s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:08 + PDD duration: 1301 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h55m39s + RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15632 + Play time (voice) : 00h00m08s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1526 / 1526 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 19 dB + ACOM : 61 dB + + + 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 4 (39) + calling : 3232041212, called : 32499572278 + setup time: 11/01/23 21h18m43s + connexion time: 11/01/23 21h18m45s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:31 + PDD duration: 921 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h18m43s + RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15634 + Play time (voice) : 00h02m31s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7608 / 7609 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 22 dB + ACOM : 53 dB + + + 7 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (38) + calling : 3232041212, called : 32499572278 + setup time: 11/01/23 21h16m55s + connexion time: 11/01/23 21h17m03s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:18 + PDD duration: 1211 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h16m55s + RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15630 + Play time (voice) : 00h00m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1224 / 1226 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 18 dB + ACOM : 58 dB + + + 8 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 2 (37) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 21h14m01s + connexion time: 11/01/23 21h14m14s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:44 + PDD duration: 1751 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h14m01s + RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15628 + Play time (voice) : 00h00m44s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2733 / 2735 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 19 dB + ACOM : 46 dB + + + 9 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 1 (36) + calling : 3232041212, called : 32499565390 + setup time: 11/01/23 21h10m37s + connexion time: 11/01/23 21h10m46s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:23 + PDD duration: 3701 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 21h10m37s + RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15626 + Play time (voice) : 00h00m23s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1355 / 1425 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.35 + ERL : 29 dB + ACOM : 73 dB + + + 10 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 0 (35) + calling : 3232041212, called : 32499572278 + setup time: 11/01/23 20h58m02s + connexion time: 11/01/23 20h58m08s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:40 + PDD duration: 951 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 20h58m02s + RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15622 + Play time (voice) : 00h00m40s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2235 / 2236 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 17 dB + ACOM : 49 dB + + + 11 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 35 (34) + calling : 3232041212, called : 32499565392 + setup time: 11/01/23 20h54m34s + connexion time: 11/01/23 20h54m52s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:27 + PDD duration: 3621 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 20h54m34s + RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15624 + Play time (voice) : 00h00m27s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1990 / 2038 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 2 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 40 dB + ACOM : 66 dB + + + 12 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 34 (33) + calling : 3232041212, called : 32499572283 + setup time: 11/01/23 20h22m04s + connexion time: 11/01/23 20h22m05s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 561 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 20h22m04s + RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15620 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 931 / 931 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 37 dB + ACOM : 68 dB + + + 13 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 33 (32) + calling : 3232041212, called : 32499572283 + setup time: 11/01/23 20h21m36s + connexion time: 11/01/23 20h22m00s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 1111 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 20h21m36s + RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15618 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1218 / 1217 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 34 dB + ACOM : 63 dB + + + 14 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 31 (30) + calling : 33091465, called : 32041214 + setup time: 11/01/23 19h35m29s + connexion time: 11/01/23 19h35m33s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:18:52 + PDD duration: 62 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 19h35m33s + RTP Source ip :94.105.56.10 rtp:16446 /Dest ip :212.224.167.110 rtp:15614 + Play time (voice) : 00h18m52s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 56596 / 56592 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 22 dB + ACOM : 51 dB + + + 15 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 32 (31) + calling : 3232041212, called : 032 + setup time: 11/01/23 19h43m07s + connexion time: 11/01/23 19h43m07s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 182 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 19h43m07s + RTP Source ip :94.105.56.10 rtp:16448 /Dest ip :212.224.167.110 rtp:15616 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 91 / 98 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 16 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 30 (29) + calling : 3232041212, called : 3233091465 + setup time: 11/01/23 19h34m53s + connexion time: 11/01/23 19h34m54s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 471 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 19h34m53s + RTP Source ip :94.105.56.10 rtp:16444 /Dest ip :212.224.167.110 rtp:15612 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 127 / 126 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 17 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (28) + calling : 3232041212, called : 3233091465 + setup time: 11/01/23 19h02m09s + connexion time: 11/01/23 19h02m09s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 459 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 19h02m09s + RTP Source ip :94.105.56.10 rtp:16442 /Dest ip :212.224.167.110 rtp:15610 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 134 / 134 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 18 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (27) + calling : 33320148410, called : 32048595 + setup time: 11/01/23 18h59m25s + connexion time: --- + disconnected by local port: 5/0 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: 58 msec + advice-of-charge: free + call priority: 100 + + + 19 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 26 (25) + calling : 31610669704, called : 32041212 + setup time: 11/01/23 18h40m17s + connexion time: 11/01/23 18h40m19s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:17:56 + PDD duration: 55 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h40m19s + RTP Source ip :94.105.56.10 rtp:16438 /Dest ip :212.224.167.110 rtp:15602 + Play time (voice) : 00h17m56s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 53819 / 53806 + RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 20 dB + ACOM : 47 dB + + + 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 27 (26) + calling : 31651915707, called : 32041212 + setup time: 11/01/23 18h54m45s + connexion time: 11/01/23 18h54m47s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:03 + PDD duration: 55 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h54m47s + RTP Source ip :94.105.56.10 rtp:16440 /Dest ip :212.224.167.110 rtp:15606 + Play time (voice) : 00h01m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3155 / 3142 + RTP Packet lost&discarded RX / TX (RTCP reported) : 6 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.28 / 4.33 + ERL : 23 dB + ACOM : 56 dB + + + 21 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 23 (22) + calling : 31610669704, called : 32041212 + setup time: 11/01/23 18h39m07s + connexion time: 11/01/23 18h39m09s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:00 + PDD duration: 59 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h39m09s + RTP Source ip :94.105.56.10 rtp:16436 /Dest ip :212.224.167.110 rtp:15604 + Play time (voice) : 00h01m00s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2993 / 2991 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 50 dB + ACOM : 82 dB + + + 22 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 21 (20) + calling : 33761671482, called : 32041212 + setup time: 11/01/23 18h23m01s + connexion time: 11/01/23 18h23m03s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:03:51 + PDD duration: 56 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h23m03s + RTP Source ip :94.105.56.10 rtp:16432 /Dest ip :212.224.167.110 rtp:15596 + Play time (voice) : 00h03m52s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 11558 / 11564 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 51 dB + ACOM : 76 dB + + + 23 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (21) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 18h23m21s + connexion time: 11/01/23 18h23m24s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:30 + PDD duration: 418 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h23m21s + RTP Source ip :94.105.56.10 rtp:16434 /Dest ip :212.224.167.110 rtp:15600 + Play time (voice) : 00h03m30s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 10646 / 10644 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 30 dB + ACOM : 60 dB + + + 24 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 20 (19) + calling : 478047439, called : 32041212 + setup time: 11/01/23 18h14m02s + connexion time: 11/01/23 18h14m04s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:38 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h14m04s + RTP Source ip :94.105.56.10 rtp:16430 /Dest ip :212.224.167.110 rtp:15594 + Play time (voice) : 00h01m38s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4867 / 4868 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 23 dB + ACOM : 52 dB + + + 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 19 (18) + calling : 51280120, called : 32048635 + setup time: 11/01/23 18h09m57s + connexion time: 11/01/23 18h10m14s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 69 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h10m14s + RTP Source ip :94.105.56.10 rtp:16428 /Dest ip :212.224.167.110 rtp:15592 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 205 / 216 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 26 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 18 (17) + calling : 3232041212, called : 32499565392 + setup time: 11/01/23 18h08m18s + connexion time: 11/01/23 18h08m31s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:31 + PDD duration: 4061 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h08m18s + RTP Source ip :94.105.56.10 rtp:16426 /Dest ip :212.224.167.110 rtp:15590 + Play time (voice) : 00h00m31s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1958 / 2007 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.35 + ERL : 26 dB + ACOM : 54 dB + + + 27 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 17 (16) + calling : 3232041212, called : 32499565391 + setup time: 11/01/23 18h08m06s + connexion time: 11/01/23 18h08m07s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:06 + PDD duration: 941 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h08m06s + RTP Source ip :94.105.56.10 rtp:16424 /Dest ip :212.224.167.110 rtp:15588 + Play time (voice) : 00h00m06s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 287 / 286 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 28 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 16 (15) + calling : 3232041212, called : 32499572269 + setup time: 11/01/23 18h02m50s + connexion time: 11/01/23 18h02m51s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:03 + PDD duration: 251 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 18h02m50s + RTP Source ip :94.105.56.10 rtp:16422 /Dest ip :212.224.167.110 rtp:15586 + Play time (voice) : 00h00m03s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 146 / 146 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 29 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 14 (13) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 17h49m16s + connexion time: 11/01/23 17h49m19s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:09:21 + PDD duration: 427 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h49m16s + RTP Source ip :94.105.56.10 rtp:16418 /Dest ip :212.224.167.110 rtp:15580 + Play time (voice) : 00h09m21s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 28173 / 28178 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 52 dB + ACOM : 76 dB + + + 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 13 (12) + calling : 477920299, called : 32041212 + setup time: 11/01/23 17h48m48s + connexion time: 11/01/23 17h48m50s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:09:50 + PDD duration: 73 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h48m50s + RTP Source ip :94.105.56.10 rtp:16416 /Dest ip :212.224.167.110 rtp:15584 + Play time (voice) : 00h09m50s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 29483 / 29480 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 46 dB + ACOM : 64 dB + + + 31 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 15 (14) + calling : 477649116, called : 32041212 + setup time: 11/01/23 17h51m38s + connexion time: 11/01/23 17h51m40s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:42 + PDD duration: 66 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h51m41s + RTP Source ip :94.105.56.10 rtp:16420 /Dest ip :212.224.167.110 rtp:15582 + Play time (voice) : 00h01m41s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5057 / 5059 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 20 dB + ACOM : 50 dB + + + 32 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 12 (11) + calling : 3232041212, called : 32499572263 + setup time: 11/01/23 17h46m16s + connexion time: 11/01/23 17h46m23s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:15 + PDD duration: 1331 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h46m16s + RTP Source ip :94.105.56.10 rtp:16412 /Dest ip :212.224.167.110 rtp:15576 + Play time (voice) : 00h02m15s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7019 / 7026 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 45 dB + ACOM : 70 dB + + + 33 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 11 (10) + calling : 16314545049, called : 32041229 + setup time: 11/01/23 17h46m16s + connexion time: 11/01/23 17h46m23s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:15 + PDD duration: 73 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h46m23s + RTP Source ip :94.105.56.10 rtp:16414 /Dest ip :212.224.167.110 rtp:15578 + Play time (voice) : 00h02m15s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6749 / 6746 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 27 dB + ACOM : 51 dB + + + 34 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 6 (5) + calling : 34935479692, called : 32041212 + setup time: 11/01/23 17h25m55s + connexion time: 11/01/23 17h25m57s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:08:20 + PDD duration: 62 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h25m57s + RTP Source ip :94.105.56.10 rtp:16406 /Dest ip :212.224.167.110 rtp:15572 + Play time (voice) : 00h08m20s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 24993 / 24989 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 21 dB + ACOM : 49 dB + + + 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 9 (8) + calling : 495471646, called : 32041212 + setup time: 11/01/23 17h29m28s + connexion time: 11/01/23 17h29m30s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:42 + PDD duration: 55 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h29m30s + RTP Source ip :94.105.56.10 rtp:16408 /Dest ip :212.224.167.110 rtp:15560 + Play time (voice) : 00h01m42s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5113 / 5113 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 29 dB + ACOM : 56 dB + + + 36 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 10 (9) + calling : 3232041212, called : 32499572264 + setup time: 11/01/23 17h30m14s + connexion time: 11/01/23 17h30m16s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 1900 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h30m14s + RTP Source ip :94.105.56.10 rtp:16410 /Dest ip :212.224.167.110 rtp:15558 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 267 / 266 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : -- dB + ACOM : 255 dB + + + 37 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 8 (7) + calling : 473608618, called : 32048398 + setup time: 11/01/23 17h27m00s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 7 (6) + calling : 473608618, called : 32048398 + setup time: 11/01/23 17h26m53s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 4 (3) + calling : 34935479692, called : 32048281 + setup time: 11/01/23 17h25m42s + connexion time: 11/01/23 17h25m45s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:08 + PDD duration: 69 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h25m45s + RTP Source ip :94.105.56.10 rtp:16404 /Dest ip :212.224.167.110 rtp:15566 + Play time (voice) : 00h00m08s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 385 / 394 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 40 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 5 (4) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 17h25m42s + connexion time: 11/01/23 17h25m45s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:08 + PDD duration: 358 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h25m42s + RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15568 + Play time (voice) : 00h00m08s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 550 / 550 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : -- dB + ACOM : 255 dB + + + 41 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (2) + calling : 3232041212, called : 32499572263 + setup time: 11/01/23 17h10m47s + connexion time: 11/01/23 17h10m54s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:32 + PDD duration: 1171 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h10m47s + RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15564 + Play time (voice) : 00h00m32s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1901 / 1900 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 27 dB + ACOM : 67 dB + + + 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 2 (1) + calling : 12137889760, called : 32048690 + setup time: 11/01/23 17h09m49s + connexion time: 11/01/23 17h09m55s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 17h09m55s + RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15562 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 251 / 259 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 43 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 1 (0) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 16h59m23s + connexion time: 11/01/23 16h59m27s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:05:19 + PDD duration: 408 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h59m23s + RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15556 + Play time (voice) : 00h05m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 16125 / 16130 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 13 dB + ACOM : 43 dB + + + 44 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 0 (395) + calling : 13022615018, called : 32041212 + setup time: 11/01/23 16h59m05s + connexion time: 11/01/23 16h59m07s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:05:39 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h59m07s + RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15554 + Play time (voice) : 00h05m39s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 16551 / 16933 + RTP Packet lost&discarded RX / TX (RTCP reported) : 3 / 0 + Number of Excessive Jitter events : 35 + MOS-CQ / MOS-LQ : 4.32 / 4.35 + ERL : 49 dB + ACOM : 73 dB + + + 45 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 35 (394) + calling : 38216459, called : 32041206 + setup time: 11/01/23 16h54m41s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + + 46 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 30 (389) + calling : 34935479693, called : 32048281 + setup time: 11/01/23 16h34m56s + connexion time: 11/01/23 16h34m59s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:15:14 + PDD duration: 74 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h34m59s + RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15542 + Play time (voice) : 00h15m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 45674 / 45681 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 53 dB + ACOM : 78 dB + + + 47 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 31 (390) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 16h34m56s + connexion time: 11/01/23 16h34m59s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:15:14 + PDD duration: 458 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h34m56s + RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15544 + Play time (voice) : 00h15m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 45828 / 45827 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 15 dB + ACOM : 40 dB + + + 48 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 34 (393) + calling : 31202008260, called : 32041212 + setup time: 11/01/23 16h44m02s + connexion time: 11/01/23 16h44m05s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:04:46 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h44m05s + RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15550 + Play time (voice) : 00h04m46s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 14339 / 14327 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 26 dB + ACOM : 54 dB + + + 49 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 33 (392) + calling : 31202008260, called : 32041212 + setup time: 11/01/23 16h39m00s + connexion time: 11/01/23 16h39m02s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:16 + PDD duration: 64 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h39m03s + RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15548 + Play time (voice) : 00h03m15s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9763 / 9745 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 26 dB + ACOM : 67 dB + + + 50 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 32 (391) + calling : 3232041212, called : 32499565390 + setup time: 11/01/23 16h36m15s + connexion time: 11/01/23 16h36m25s + B channel (from B1..) : B3 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:51 + PDD duration: 3610 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h36m15s + RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15546 + Play time (voice) : 00h00m51s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2825 / 2873 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.32 / 4.35 + ERL : 19 dB + ACOM : 59 dB + + + 51 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (388) + calling : 3232041212, called : 3234433533 + setup time: 11/01/23 16h26m42s + connexion time: 11/01/23 16h26m43s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:56 + PDD duration: 678 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h26m42s + RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15540 + Play time (voice) : 00h02m56s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 8767 / 8812 + RTP Packet lost&discarded RX / TX (RTCP reported) : 25 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.28 / 4.33 + ERL : 26 dB + ACOM : 55 dB + + + 52 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (387) + calling : 496407383, called : 32041212 + setup time: 11/01/23 16h10m46s + connexion time: 11/01/23 16h10m48s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:01 + PDD duration: 56 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h10m48s + RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15538 + Play time (voice) : 00h02m01s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6061 / 6049 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 21 dB + ACOM : 51 dB + + + 53 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 27 (386) + calling : 3232041212, called : 32499572271 + setup time: 11/01/23 16h05m31s + connexion time: 11/01/23 16h05m41s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:07 + PDD duration: 3401 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 16h05m31s + RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15536 + Play time (voice) : 00h00m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 648 / 695 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 26 dB + ACOM : 53 dB + + + 54 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 26 (385) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 15h59m07s + connexion time: 11/01/23 15h59m10s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:17 + PDD duration: 428 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h59m07s + RTP Source ip :94.105.56.10 rtp:16448 /Dest ip :212.224.167.110 rtp:15534 + Play time (voice) : 00h00m17s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 959 / 957 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.29 / 4.34 + ERL : 18 dB + ACOM : 41 dB + + + 55 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 25 (384) + calling : 3232041212, called : 32499565392 + setup time: 11/01/23 15h55m56s + connexion time: 11/01/23 15h56m11s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 5451 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h55m56s + RTP Source ip :94.105.56.10 rtp:16446 /Dest ip :212.224.167.110 rtp:15532 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1397 / 1448 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 18 dB + ACOM : 43 dB + + + 56 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 24 (383) + calling : 3232041212, called : 3222724802 + setup time: 11/01/23 15h53m25s + connexion time: 11/01/23 15h53m29s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:19 + PDD duration: 389 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h53m25s + RTP Source ip :94.105.56.10 rtp:16444 /Dest ip :212.224.167.110 rtp:15530 + Play time (voice) : 00h00m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1100 / 1105 + RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 2.82 / 4.33 + ERL : 13 dB + ACOM : 57 dB + + + 57 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 23 (382) + calling : 3232041212, called : 3222724802 + setup time: 11/01/23 15h52m56s + connexion time: 11/01/23 15h53m00s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:14 + PDD duration: 447 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h52m56s + RTP Source ip :94.105.56.10 rtp:16442 /Dest ip :212.224.167.110 rtp:15528 + Play time (voice) : 00h00m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 897 / 898 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 14 dB + ACOM : 60 dB + + + 58 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (381) + calling : 3232041212, called : 3222724802 + setup time: 11/01/23 15h52m31s + connexion time: 11/01/23 15h52m35s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:11 + PDD duration: 416 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h52m31s + RTP Source ip :94.105.56.10 rtp:16440 /Dest ip :212.224.167.110 rtp:15520 + Play time (voice) : 00h00m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 714 / 716 + RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.28 / 4.33 + ERL : 14 dB + ACOM : 56 dB + + + 59 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 14 (373) + calling : 479252454, called : 32041212 + setup time: 11/01/23 15h28m45s + connexion time: 11/01/23 15h28m47s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:08:02 + PDD duration: 66 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h28m47s + RTP Source ip :94.105.56.10 rtp:16424 /Dest ip :212.224.167.110 rtp:15512 + Play time (voice) : 00h08m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 24050 / 24058 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 55 dB + ACOM : 79 dB + + + 60 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 15 (374) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 15h28m54s + connexion time: 11/01/23 15h28m57s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:07:52 + PDD duration: 467 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h28m54s + RTP Source ip :94.105.56.10 rtp:16426 /Dest ip :212.224.167.110 rtp:15510 + Play time (voice) : 00h07m52s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 23722 / 23721 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 25 dB + ACOM : 42 dB + + + 61 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 16 (375) + calling : 475276840, called : 32048281 + setup time: 11/01/23 15h29m29s + connexion time: 11/01/23 15h29m32s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:03:59 + PDD duration: 75 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h29m32s + RTP Source ip :94.105.56.10 rtp:16430 /Dest ip :212.224.167.110 rtp:15514 + Play time (voice) : 00h03m59s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 11932 / 11944 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 53 dB + ACOM : 77 dB + + + 62 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 17 (376) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 15h29m29s + connexion time: 11/01/23 15h29m32s + B channel (from B1..) : B4 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:59 + PDD duration: 397 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h29m29s + RTP Source ip :94.105.56.10 rtp:16428 /Dest ip :212.224.167.110 rtp:15516 + Play time (voice) : 00h03m59s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 12062 / 12063 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 2.84 / 4.35 + ERL : 35 dB + ACOM : 64 dB + + + 63 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 20 (379) + calling : 31202008260, called : 32041212 + setup time: 11/01/23 15h31m25s + connexion time: 11/01/23 15h31m27s + B channel (from B1..) : B5 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:30 + PDD duration: 58 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h31m27s + RTP Source ip :94.105.56.10 rtp:16436 /Dest ip :212.224.167.110 rtp:15524 + Play time (voice) : 00h01m30s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4524 / 4510 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 21 dB + ACOM : 53 dB + + + 64 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 21 (380) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 15h32m21s + connexion time: 11/01/23 15h32m24s + B channel (from B1..) : B6 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 395 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h32m21s + RTP Source ip :94.105.56.10 rtp:16438 /Dest ip :212.224.167.110 rtp:15526 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 713 / 712 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : -- dB + ACOM : 255 dB + + + 65 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 18 (377) + calling : 31202008260, called : 32048281 + setup time: 11/01/23 15h31m14s + connexion time: 11/01/23 15h31m17s + B channel (from B1..) : B5 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 75 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h31m17s + RTP Source ip :94.105.56.10 rtp:16434 /Dest ip :212.224.167.110 rtp:15518 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 214 / 220 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 66 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 19 (378) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 15h31m14s + connexion time: 11/01/23 15h31m17s + B channel (from B1..) : B6 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 406 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h31m14s + RTP Source ip :94.105.56.10 rtp:16432 /Dest ip :212.224.167.110 rtp:15522 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 357 / 356 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 67 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 13 (372) + calling : 31614310606, called : 32041212 + setup time: 11/01/23 15h23m03s + connexion time: 11/01/23 15h23m05s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:13 + PDD duration: 59 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h23m05s + RTP Source ip :94.105.56.10 rtp:16422 /Dest ip :212.224.167.110 rtp:15508 + Play time (voice) : 00h03m13s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9666 / 9655 + RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 17 dB + ACOM : 40 dB + + + 68 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 12 (371) + calling : 33648251574, called : 32048627 + setup time: 11/01/23 15h21m29s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 56 msec + advice-of-charge: free + call priority: 100 + + + 69 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 11 (370) + calling : 31202050443, called : 32041212 + setup time: 11/01/23 15h07m12s + connexion time: 11/01/23 15h07m14s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:30 + PDD duration: 62 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 15h07m14s + RTP Source ip :94.105.56.10 rtp:16420 /Dest ip :212.224.167.110 rtp:15506 + Play time (voice) : 00h02m30s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7512 / 7496 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 18 dB + ACOM : 47 dB + + + 70 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 10 (369) + calling : 51280120, called : 32048470 + setup time: 11/01/23 14h56m52s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 71 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 8 (367) + calling : 3232041212, called : 3222724802 + setup time: 11/01/23 14h53m16s + connexion time: 11/01/23 14h53m25s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:10 + PDD duration: 395 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h53m16s + RTP Source ip :94.105.56.10 rtp:16418 /Dest ip :212.224.167.110 rtp:15498 + Play time (voice) : 00h00m10s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 935 / 934 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 18 dB + ACOM : 75 dB + + + 72 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 9 (368) + calling : 51280120, called : 32048364 + setup time: 11/01/23 14h53m24s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 7 (366) + calling : 51280120, called : 32048468 + setup time: 11/01/23 14h53m08s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 74 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 6 (365) + calling : 3232041212, called : 3222724802 + setup time: 11/01/23 14h52m31s + connexion time: 11/01/23 14h52m46s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:20 + PDD duration: 451 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h52m31s + RTP Source ip :94.105.56.10 rtp:16416 /Dest ip :212.224.167.110 rtp:15494 + Play time (voice) : 00h00m20s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1718 / 1719 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 13 dB + ACOM : 60 dB + + + 75 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 5 (364) + calling : 51280120, called : 32048599 + setup time: 11/01/23 14h51m50s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 76 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 4 (363) + calling : 3232041212, called : 32499565390 + setup time: 11/01/23 14h50m20s + connexion time: 11/01/23 14h50m36s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:11 + PDD duration: 1221 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h50m20s + RTP Source ip :94.105.56.10 rtp:16414 /Dest ip :212.224.167.110 rtp:15492 + Play time (voice) : 00h00m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1273 / 1279 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.29 / 4.34 + ERL : 20 dB + ACOM : 49 dB + + + 77 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (362) + calling : 3232041212, called : 32499565390 + setup time: 11/01/23 14h48m57s + connexion time: 11/01/23 14h49m06s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:26 + PDD duration: 3360 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h48m57s + RTP Source ip :94.105.56.10 rtp:16412 /Dest ip :212.224.167.110 rtp:15488 + Play time (voice) : 00h01m26s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4548 / 4600 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 2 + MOS-CQ / MOS-LQ : 4.33 / 4.35 + ERL : 28 dB + ACOM : 53 dB + + + 78 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 2 (361) + calling : 3232041212, called : 32491928186 + setup time: 11/01/23 14h48m16s + connexion time: 11/01/23 14h48m23s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:37 + PDD duration: 961 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h48m16s + RTP Source ip :94.105.56.10 rtp:16410 /Dest ip :212.224.167.110 rtp:15486 + Play time (voice) : 00h00m37s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2129 / 2145 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 19 dB + ACOM : 48 dB + + + 79 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 0 (359) + calling : 499572283, called : 32041216 + setup time: 11/01/23 14h43m30s + connexion time: 11/01/23 14h43m35s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:23 + PDD duration: 74 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h43m35s + RTP Source ip :94.105.56.10 rtp:16408 /Dest ip :212.224.167.110 rtp:15482 + Play time (voice) : 00h00m23s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1187 / 1180 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 16 dB + ACOM : 41 dB + + + 80 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 34 (357) + calling : 448081648741, called : 32041212 + setup time: 11/01/23 14h41m29s + connexion time: 11/01/23 14h41m31s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:02:11 + PDD duration: 61 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h41m31s + RTP Source ip :94.105.56.10 rtp:16406 /Dest ip :212.224.167.110 rtp:15476 + Play time (voice) : 00h02m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6535 / 6516 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 20 dB + ACOM : 41 dB + + + 81 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1 (360) + calling : 51280120, called : 32048500 + setup time: 11/01/23 14h43m35s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 82 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 35 (358) + calling : 51280120, called : 32048606 + setup time: 11/01/23 14h43m12s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 83 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 33 (356) + calling : 51280120, called : 32048312 + setup time: 11/01/23 14h40m58s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 84 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 32 (355) + calling : 51280120, called : 32048465 + setup time: 11/01/23 14h40m18s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 31 (354) + calling : 51280120, called : 32048562 + setup time: 11/01/23 14h38m17s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 86 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 30 (353) + calling : 3232041212, called : 32499565392 + setup time: 11/01/23 14h33m07s + connexion time: 11/01/23 14h33m18s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 3521 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h33m07s + RTP Source ip :94.105.56.10 rtp:16404 /Dest ip :212.224.167.110 rtp:15470 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 945 / 997 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 36 dB + ACOM : 64 dB + + + 87 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (352) + calling : 3232041212, called : 32499572283 + setup time: 11/01/23 14h32m12s + connexion time: 11/01/23 14h32m22s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:12 + PDD duration: 1341 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h32m12s + RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15468 + Play time (voice) : 00h00m12s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1041 / 1041 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 28 dB + ACOM : 53 dB + + + 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (351) + calling : 441189817377, called : 32041220 + setup time: 11/01/23 14h28m13s + connexion time: 11/01/23 14h28m15s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:50 + PDD duration: 63 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h28m15s + RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15466 + Play time (voice) : 00h01m50s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5531 / 5533 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 16 dB + ACOM : 42 dB + + + 89 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 27 (350) + calling : 31628113204, called : 32041212 + setup time: 11/01/23 14h26m01s + connexion time: 11/01/23 14h26m03s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:03:09 + PDD duration: 57 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h26m03s + RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15464 + Play time (voice) : 00h03m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9422 / 9424 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 20 dB + ACOM : 45 dB + + + 90 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 25 (348) + calling : 31653732902, called : 32041212 + setup time: 11/01/23 14h18m18s + connexion time: 11/01/23 14h18m20s + B channel (from B1..) : B3 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:05:02 + PDD duration: 71 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h18m20s + RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15460 + Play time (voice) : 00h05m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 15094 / 15088 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 54 dB + ACOM : 79 dB + + + 91 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 26 (349) + calling : 3232041212, called : 3227106308 + setup time: 11/01/23 14h18m29s + connexion time: 11/01/23 14h18m31s + B channel (from B1..) : B4 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:04:51 + PDD duration: 406 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h18m29s + RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15462 + Play time (voice) : 00h04m51s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 14644 / 14644 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.31 / 4.35 + ERL : 49 dB + ACOM : 77 dB + + + 92 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 24 (347) + calling : 3232041212, called : 32499572263 + setup time: 11/01/23 14h18m17s + connexion time: 11/01/23 14h18m29s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:58 + PDD duration: 1111 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h18m17s + RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15458 + Play time (voice) : 00h01m58s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6432 / 6432 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 31 dB + ACOM : 48 dB + + + 93 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 23 (346) + calling : 478291430, called : 32048280 + setup time: 11/01/23 14h18m08s + connexion time: 11/01/23 14h18m12s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:34 + PDD duration: 73 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h18m12s + RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15456 + Play time (voice) : 00h01m34s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4693 / 4696 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 22 dB + ACOM : 59 dB + + + 94 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (345) + calling : 3232041212, called : 32490653442 + setup time: 11/01/23 14h16m39s + connexion time: 11/01/23 14h16m46s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:11 + PDD duration: 1237 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h16m39s + RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15454 + Play time (voice) : 00h00m11s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 810 / 809 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 29 dB + ACOM : 52 dB + + + 95 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 21 (344) + calling : 3232041212, called : 32491928186 + setup time: 11/01/23 14h04m42s + connexion time: 11/01/23 14h04m49s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:45 + PDD duration: 1311 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h04m42s + RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15452 + Play time (voice) : 00h00m45s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2526 / 2544 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 26 dB + ACOM : 54 dB + + + 96 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 20 (343) + calling : 3232041212, called : 32499572268 + setup time: 11/01/23 14h03m15s + connexion time: 11/01/23 14h03m16s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:09 + PDD duration: 861 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 14h03m15s + RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15450 + Play time (voice) : 00h00m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 489 / 488 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 97 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 19 (342) + calling : 3232041212, called : 3233552818 + setup time: 11/01/23 13h49m52s + connexion time: 11/01/23 13h50m02s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:48 + PDD duration: 412 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 13h49m52s + RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15448 + Play time (voice) : 00h01m48s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5887 / 5904 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.29 / 4.35 + ERL : 31 dB + ACOM : 58 dB + + + 98 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 18 (341) + calling : 3232041212, called : 32499572273 + setup time: 11/01/23 13h43m19s + connexion time: 11/01/23 13h43m46s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 3741 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 13h43m19s + RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15446 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1207 / 1259 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 3 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 30 dB + ACOM : 58 dB + + + 99 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 16 (339) + calling : 487347844, called : 32048280 + setup time: 11/01/23 13h41m11s + connexion time: 11/01/23 13h41m18s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:02 + PDD duration: 59 msec + advice-of-charge: free + call priority: 100 + + 11/01/23 13h41m18s + RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15442 + Play time (voice) : 00h01m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3108 / 3106 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.35 + ERL : 29 dB + ACOM : 62 dB + + + 100 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 17 (340) + calling : 51280120, called : 32048312 + setup time: 11/01/23 13h42m09s + connexion time: --- + disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw index e69de29bb2..d1fb7df5fd 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw @@ -0,0 +1,1627 @@ + + 1 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1005 (2204) + calling : 465868145, called : 27649014 + setup time: 11/01/23 22h45m58s + connexion time: --- + disconnected by local port: 5/0 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 2 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1004 (2203) + calling : 465868145, called : 27649014 + setup time: 11/01/23 22h45m55s + connexion time: --- + disconnected by local port: 5/1 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 3 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1003 (2202) + calling : 465868145, called : 27649014 + setup time: 11/01/23 22h45m54s + connexion time: --- + disconnected by local port: 5/0 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 4 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1002 (2201) + calling : 465868145, called : 27649014 + setup time: 11/01/23 22h45m39s + connexion time: --- + disconnected by local port: 5/1 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 5 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1001 (2200) + calling : 472765918, called : 27641602 + setup time: 11/01/23 22h30m32s + connexion time: 11/01/23 22h30m32s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:12:08 + PDD duration: 41 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17782 /Dest ip :212.224.167.110 rtp:25690 + Play time (voice) : 00h12m08s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 36400 / 36385 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 19 dB + ACOM : 46 dB + + + 6 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1000 (2199) + calling : 476883166, called : 27642734 + setup time: 11/01/23 22h17m19s + connexion time: 11/01/23 22h17m25s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:00:50 + PDD duration: 217 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17780 /Dest ip :212.224.167.110 rtp:26202 + Play time (voice) : 00h00m50s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2530 / 2529 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 31 dB + ACOM : 84 dB + + + 7 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 999 (2198) + calling : 468429012, called : 27649393 + setup time: 11/01/23 22h11m32s + connexion time: 11/01/23 22h11m41s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:44 + PDD duration: 69 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17778 /Dest ip :212.224.167.110 rtp:24530 + Play time (voice) : 00h00m44s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2212 / 2203 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 35 dB + ACOM : 59 dB + + + 8 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 998 (2197) + calling : 24207829, called : 27641111 + setup time: 11/01/23 22h02m49s + connexion time: 11/01/23 22h02m49s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:01:41 + PDD duration: 41 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17776 /Dest ip :212.224.167.110 rtp:25118 + Play time (voice) : 00h01m41s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5059 / 5058 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 49 dB + ACOM : 63 dB + + + 9 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 997 (2196) + calling : 487112012, called : 27643203 + setup time: 11/01/23 21h54m38s + connexion time: 11/01/23 21h55m11s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:49 + PDD duration: 626 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17774 /Dest ip :212.224.167.110 rtp:26092 + Play time (voice) : 00h00m49s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2467 / 2465 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 48 dB + + + 10 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 996 (2195) + calling : 456545176, called : 27642723 + setup time: 11/01/23 21h43m45s + connexion time: 11/01/23 21h43m59s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:05:14 + PDD duration: 633 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17772 /Dest ip :212.224.167.110 rtp:23004 + Play time (voice) : 00h05m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 15697 / 15699 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 18 dB + ACOM : 43 dB + + + 11 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 995 (2194) + calling : 10885259, called : 27641602 + setup time: 11/01/23 21h43m28s + connexion time: 11/01/23 21h43m28s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:23 + PDD duration: 44 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17770 /Dest ip :212.224.167.110 rtp:25888 + Play time (voice) : 00h01m23s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4136 / 4137 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 23 dB + ACOM : 56 dB + + + 12 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 994 (2193) + calling : 473211404, called : 27647027 + setup time: 11/01/23 21h30m07s + connexion time: --- + disconnected by local port: 5/1 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 13 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 992 (2191) + calling : 483598429, called : 27642753 + setup time: 11/01/23 21h26m22s + connexion time: 11/01/23 21h26m31s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:56 + PDD duration: 612 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17768 /Dest ip :212.224.167.110 rtp:25432 + Play time (voice) : 00h02m56s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 8827 / 8805 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 38 dB + ACOM : 64 dB + + + 14 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 993 (2192) + calling : 496106073, called : 27642702 + setup time: 11/01/23 21h27m32s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 506 msec + advice-of-charge: free + call priority: 100 + + + 15 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 991 (2190) + calling : 27724672, called : 27642733 + setup time: 11/01/23 21h21m42s + connexion time: 11/01/23 21h21m52s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:54 + PDD duration: 561 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17766 /Dest ip :212.224.167.110 rtp:25278 + Play time (voice) : 00h00m55s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2717 / 2715 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 21 dB + ACOM : 45 dB + + + 16 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 989 (2188) + calling : , called : 27646751 + setup time: 11/01/23 21h08m40s + connexion time: 11/01/23 21h08m47s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:04 + PDD duration: 124 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17764 /Dest ip :212.224.167.110 rtp:25640 + Play time (voice) : 00h01m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3155 / 3159 + RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 17 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 990 (2189) + calling : 465786907, called : 27649603 + setup time: 11/01/23 21h08m41s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 633 msec + advice-of-charge: free + call priority: 100 + + + 18 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 988 (2187) + calling : , called : 27646751 + setup time: 11/01/23 21h07m16s + connexion time: 11/01/23 21h07m24s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:01:02 + PDD duration: 118 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17762 /Dest ip :212.224.167.110 rtp:25122 + Play time (voice) : 00h01m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3063 / 3074 + RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 + Number of Excessive Jitter events : 1 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 19 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 987 (2186) + calling : 472207590, called : 27647097 + setup time: 11/01/23 20h49m27s + connexion time: --- + disconnected by local port: 5/0 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 20 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 986 (2185) + calling : 22720800, called : 27641111 + setup time: 11/01/23 20h42m09s + connexion time: 11/01/23 20h42m10s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:04:09 + PDD duration: 43 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17760 /Dest ip :212.224.167.110 rtp:26722 + Play time (voice) : 00h04m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 12474 / 12479 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 12 dB + ACOM : 47 dB + + + 21 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 983 (2182) + calling : 22219275, called : 27641602 + setup time: 11/01/23 20h39m00s + connexion time: 11/01/23 20h39m00s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(19)[No answer from user (user alerted)] + call duration: 00:03:53 + PDD duration: 46 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17756 /Dest ip :212.224.167.110 rtp:26832 + Play time (voice) : 00h03m53s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 11625 / 11625 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 52 dB + ACOM : 82 dB + + + 22 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 984 (2183) + calling : 477531031, called : 27641602 + setup time: 11/01/23 20h39m16s + connexion time: 11/01/23 20h39m16s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:03:02 + PDD duration: 60 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17758 /Dest ip :212.224.167.110 rtp:25738 + Play time (voice) : 00h03m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 9078 / 9076 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 27 dB + ACOM : 62 dB + + + 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 985 (2184) + calling : 492458256, called : 27642840 + setup time: 11/01/23 20h41m04s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 176 msec + advice-of-charge: free + call priority: 100 + + + 24 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 982 (2181) + calling : 498089031, called : 27640286 + setup time: 11/01/23 20h36m15s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 138 msec + advice-of-charge: free + call priority: 100 + + + 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 981 (2180) + calling : 393288948408, called : 27641867 + setup time: 11/01/23 20h34m52s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 257 msec + advice-of-charge: free + call priority: 100 + + + 26 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 980 (2179) + calling : 473258393, called : 27645603 + setup time: 11/01/23 20h31m12s + connexion time: --- + disconnected by local port: 5/1 cause :(21)[Call rejected] + call duration: 00:00:00 + PDD duration: 734 msec + advice-of-charge: free + call priority: 100 + + + 27 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 979 (2178) + calling : 93985010, called : 27646930 + setup time: 11/01/23 20h28m11s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 125 msec + advice-of-charge: free + call priority: 100 + + + 28 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 978 (2177) + calling : 93985010, called : 27646930 + setup time: 11/01/23 20h27m07s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 131 msec + advice-of-charge: free + call priority: 100 + + + 29 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 976 (2175) + calling : 488268009, called : 27649103 + setup time: 11/01/23 20h26m43s + connexion time: 11/01/23 20h27m00s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:01:04 + PDD duration: 877 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17752 /Dest ip :212.224.167.110 rtp:24704 + Play time (voice) : 00h01m04s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3225 / 3224 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 24 dB + ACOM : 51 dB + + + 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 977 (2176) + calling : 466253631, called : 27649603 + setup time: 11/01/23 20h27m01s + connexion time: 11/01/23 20h27m04s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:10 + PDD duration: 688 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17754 /Dest ip :212.224.167.110 rtp:22762 + Play time (voice) : 00h00m10s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 478 / 486 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 31 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 975 (2174) + calling : 473111057, called : 27643203 + setup time: 11/01/23 20h26m31s + connexion time: 11/01/23 20h26m38s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:33 + PDD duration: 881 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17750 /Dest ip :212.224.167.110 rtp:28060 + Play time (voice) : 00h00m33s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1606 / 1606 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 23 dB + ACOM : 47 dB + + + 32 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 974 (2173) + calling : 27362673, called : 27641111 + setup time: 11/01/23 20h26m21s + connexion time: 11/01/23 20h26m21s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:07 + PDD duration: 42 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17748 /Dest ip :212.224.167.110 rtp:25330 + Play time (voice) : 00h00m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 309 / 312 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 33 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 971 (2170) + calling : 473658327, called : 27641602 + setup time: 11/01/23 20h15m10s + connexion time: 11/01/23 20h15m10s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:06:58 + PDD duration: 49 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17744 /Dest ip :212.224.167.110 rtp:25234 + Play time (voice) : 00h06m58s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 20881 / 20879 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 15 dB + ACOM : 40 dB + + + 34 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 970 (2169) + calling : 22219275, called : 27641602 + setup time: 11/01/23 20h14m48s + connexion time: 11/01/23 20h14m48s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:06:56 + PDD duration: 52 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17742 /Dest ip :212.224.167.110 rtp:24802 + Play time (voice) : 00h06m56s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 20829 / 20829 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 22 dB + ACOM : 57 dB + + + 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 973 (2172) + calling : 93985010, called : 27646930 + setup time: 11/01/23 20h16m06s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 127 msec + advice-of-charge: free + call priority: 100 + + + 36 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 972 (2171) + calling : 494086485, called : 27645303 + setup time: 11/01/23 20h15m23s + connexion time: 11/01/23 20h15m30s + B channel (from B1..) : B2 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:00:53 + PDD duration: 939 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17746 /Dest ip :212.224.167.110 rtp:25840 + Play time (voice) : 00h00m54s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2654 / 2641 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 18 dB + ACOM : 44 dB + + + 37 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 968 (2167) + calling : 476882711, called : 27648203 + setup time: 11/01/23 20h03m36s + connexion time: 11/01/23 20h03m47s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:06:05 + PDD duration: 931 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17738 /Dest ip :212.224.167.110 rtp:23572 + Play time (voice) : 00h06m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 18277 / 18275 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 33 dB + ACOM : 60 dB + + + 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 969 (2168) + calling : 65971863, called : 27642713 + setup time: 11/01/23 20h05m35s + connexion time: 11/01/23 20h05m45s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:55 + PDD duration: 757 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17740 /Dest ip :212.224.167.110 rtp:26740 + Play time (voice) : 00h01m55s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 5767 / 5761 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.35 / 4.39 + ERL : 49 dB + ACOM : 73 dB + + + 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 967 (2166) + calling : 478342433, called : 27646403 + setup time: 11/01/23 20h00m13s + connexion time: 11/01/23 20h00m21s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:52 + PDD duration: 878 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17736 /Dest ip :212.224.167.110 rtp:27464 + Play time (voice) : 00h00m52s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2592 / 2595 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 15 dB + ACOM : 43 dB + + + 40 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 966 (2165) + calling : 473934233, called : 27642743 + setup time: 11/01/23 19h58m24s + connexion time: 11/01/23 19h58m37s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:01:07 + PDD duration: 372 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17734 /Dest ip :212.224.167.110 rtp:24682 + Play time (voice) : 00h01m07s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3309 / 3306 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 26 dB + ACOM : 60 dB + + + 41 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 965 (2164) + calling : 476332293, called : 27649393 + setup time: 11/01/23 19h52m03s + connexion time: 11/01/23 19h52m12s + B channel (from B1..) : B2 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:33 + PDD duration: 67 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17732 /Dest ip :212.224.167.110 rtp:25110 + Play time (voice) : 00h01m33s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4629 / 4628 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 29 dB + ACOM : 57 dB + + + 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 963 (2162) + calling : 493878372, called : 27641111 + setup time: 11/01/23 19h50m30s + connexion time: 11/01/23 19h50m30s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:02 + PDD duration: 46 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17730 /Dest ip :212.224.167.110 rtp:26584 + Play time (voice) : 00h02m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 6072 / 6062 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 28 dB + ACOM : 60 dB + + + 43 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 964 (2163) + calling : 472290857, called : 27648251 + setup time: 11/01/23 19h51m43s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 271 msec + advice-of-charge: free + call priority: 100 + + + 44 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 962 (2161) + calling : 478773565, called : 27642723 + setup time: 11/01/23 19h49m59s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 604 msec + advice-of-charge: free + call priority: 100 + + + 45 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 961 (2160) + calling : 488569589, called : 27641800 + setup time: 11/01/23 19h42m41s + connexion time: 11/01/23 19h42m41s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:02 + PDD duration: 46 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17728 /Dest ip :212.224.167.110 rtp:24876 + Play time (voice) : 00h01m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3073 / 3093 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 46 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 960 (2159) + calling : 14697951355, called : 27649177 + setup time: 11/01/23 19h38m16s + connexion time: 11/01/23 19h38m24s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:40 + PDD duration: 119 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17726 /Dest ip :212.224.167.110 rtp:26622 + Play time (voice) : 00h00m40s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1984 / 1985 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 47 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 959 (2158) + calling : 495200394, called : 27641920 + setup time: 11/01/23 19h38m01s + connexion time: 11/01/23 19h38m01s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:14 + PDD duration: 58 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17724 /Dest ip :212.224.167.110 rtp:26572 + Play time (voice) : 00h00m14s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 698 / 688 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 48 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 957 (2156) + calling : 24772048, called : 27641111 + setup time: 11/01/23 19h28m41s + connexion time: 11/01/23 19h28m42s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:07:43 + PDD duration: 43 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17722 /Dest ip :212.224.167.110 rtp:24714 + Play time (voice) : 00h07m43s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 23133 / 23129 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 28 dB + ACOM : 53 dB + + + 49 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 958 (2157) + calling : 27207387, called : 27640314 + setup time: 11/01/23 19h29m59s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 50 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 955 (2154) + calling : 470983656, called : 27641111 + setup time: 11/01/23 19h21m16s + connexion time: 11/01/23 19h21m16s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:04:05 + PDD duration: 50 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17718 /Dest ip :212.224.167.110 rtp:26002 + Play time (voice) : 00h04m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 12234 / 12232 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 21 dB + ACOM : 62 dB + + + 51 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 956 (2155) + calling : 477366037, called : 27642812 + setup time: 11/01/23 19h23m37s + connexion time: 11/01/23 19h23m38s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:05 + PDD duration: 46 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17720 /Dest ip :212.224.167.110 rtp:24998 + Play time (voice) : 00h00m05s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 264 / 265 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 52 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 954 (2153) + calling : 476239129, called : 27648076 + setup time: 11/01/23 19h19m35s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 470 msec + advice-of-charge: free + call priority: 100 + + + 53 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 953 (2152) + calling : 479078031, called : 27646203 + setup time: 11/01/23 19h19m28s + connexion time: 11/01/23 19h19m34s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:02 + PDD duration: 836 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17716 /Dest ip :212.224.167.110 rtp:26838 + Play time (voice) : 00h00m02s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 73 / 89 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : -- / -- + ERL : -- dB + ACOM : 255 dB + + + 54 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 952 (2151) + calling : 473399322, called : 27643700 + setup time: 11/01/23 19h15m13s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 390 msec + advice-of-charge: free + call priority: 100 + + + 55 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 951 (2150) + calling : 483598429, called : 27642753 + setup time: 11/01/23 19h09m10s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 232 msec + advice-of-charge: free + call priority: 100 + + + 56 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 945 (2144) + calling : 19325073, called : 27640287 + setup time: 11/01/23 19h07m16s + connexion time: 11/01/23 19h07m29s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:33 + PDD duration: 137 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17714 /Dest ip :212.224.167.110 rtp:25244 + Play time (voice) : 00h02m33s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7646 / 7649 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 17 dB + ACOM : 47 dB + + + 57 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 950 (2149) + calling : 27207387, called : 27640314 + setup time: 11/01/23 19h08m18s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 58 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 949 (2148) + calling : 25135994, called : 27646021 + setup time: 11/01/23 19h08m02s + connexion time: --- + disconnected by local port: 5/0 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 59 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 948 (2147) + calling : 25135994, called : 27646021 + setup time: 11/01/23 19h08m01s + connexion time: --- + disconnected by local port: 5/1 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 60 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 947 (2146) + calling : 25135994, called : 27646021 + setup time: 11/01/23 19h07m59s + connexion time: --- + disconnected by local port: 5/0 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 61 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 946 (2145) + calling : 25135994, called : 27646021 + setup time: 11/01/23 19h07m58s + connexion time: --- + disconnected by local port: 5/1 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 62 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 944 (2143) + calling : 497257441, called : 27646056 + setup time: 11/01/23 19h07m16s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 239 msec + advice-of-charge: free + call priority: 100 + + + 63 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 943 (2142) + calling : 477738093, called : 27641483 + setup time: 11/01/23 19h06m36s + connexion time: --- + disconnected by local port: 5/0 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 64 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 942 (2141) + calling : 27207387, called : 27640314 + setup time: 11/01/23 19h06m31s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 65 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 941 (2140) + calling : 477738093, called : 27641483 + setup time: 11/01/23 19h05m27s + connexion time: --- + disconnected by local port: 5/0 cause :(20)[Subscriber absent] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 66 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 940 (2139) + calling : 472509100, called : 27641610 + setup time: 11/01/23 19h03m58s + connexion time: 11/01/23 19h04m04s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:00:26 + PDD duration: 200 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17712 /Dest ip :212.224.167.110 rtp:26548 + Play time (voice) : 00h00m26s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1326 / 1323 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 34 dB + ACOM : 59 dB + + + 67 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 939 (2138) + calling : 478792136, called : 27648150 + setup time: 11/01/23 19h03m57s + connexion time: --- + disconnected by local port: 5/0 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 68 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 938 (2137) + calling : 478792136, called : 27648150 + setup time: 11/01/23 19h03m48s + connexion time: --- + disconnected by local port: 5/1 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 69 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 934 (2133) + calling : 33671050013, called : 27641111 + setup time: 11/01/23 18h59m27s + connexion time: 11/01/23 18h59m27s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:02:21 + PDD duration: 46 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17708 /Dest ip :212.224.167.110 rtp:25090 + Play time (voice) : 00h02m21s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7044 / 7058 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 22 dB + ACOM : 43 dB + + + 70 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 937 (2136) + calling : 27207387, called : 27640314 + setup time: 11/01/23 19h01m41s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 71 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 935 (2134) + calling : , called : 27641111 + setup time: 11/01/23 19h00m02s + connexion time: 11/01/23 19h00m02s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:54 + PDD duration: 42 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17710 /Dest ip :212.224.167.110 rtp:25882 + Play time (voice) : 00h00m54s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 2658 / 2660 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 53 dB + ACOM : 76 dB + + + 72 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 936 (2135) + calling : 27207387, called : 27640314 + setup time: 11/01/23 19h00m35s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 933 (2132) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h56m10s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 74 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 931 (2130) + calling : 33784557704, called : 27642100 + setup time: 11/01/23 18h52m16s + connexion time: 11/01/23 18h52m19s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:09 + PDD duration: 357 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17706 /Dest ip :212.224.167.110 rtp:26266 + Play time (voice) : 00h01m09s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3466 / 3454 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 18 dB + ACOM : 43 dB + + + 75 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 932 (2131) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h52m41s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 76 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 929 (2128) + calling : 486120510, called : 27641432 + setup time: 11/01/23 18h50m41s + connexion time: 11/01/23 18h50m47s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:18 + PDD duration: 296 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17704 /Dest ip :212.224.167.110 rtp:25708 + Play time (voice) : 00h01m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3889 / 3880 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 22 dB + ACOM : 54 dB + + + 77 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 930 (2129) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h50m54s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 78 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 928 (2127) + calling : 498477443, called : 27643630 + setup time: 11/01/23 18h50m23s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 1195 msec + advice-of-charge: free + call priority: 100 + + + 79 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 927 (2126) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h47m06s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 80 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 926 (2125) + calling : 352621177808, called : 27642344 + setup time: 11/01/23 18h45m34s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 225 msec + advice-of-charge: free + call priority: 100 + + + 81 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 925 (2124) + calling : 475515111, called : 27648080 + setup time: 11/01/23 18h44m31s + connexion time: 11/01/23 18h44m38s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:01:01 + PDD duration: 262 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17702 /Dest ip :212.224.167.110 rtp:22556 + Play time (voice) : 00h01m01s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 3057 / 3027 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 16 dB + ACOM : 45 dB + + + 82 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 924 (2123) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h40m44s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 83 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 923 (2122) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h39m56s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 84 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 922 (2121) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h37m00s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 921 (2120) + calling : 81708185, called : 27641111 + setup time: 11/01/23 18h34m48s + connexion time: 11/01/23 18h34m48s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:01:28 + PDD duration: 43 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17700 /Dest ip :212.224.167.110 rtp:24584 + Play time (voice) : 00h01m28s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 4365 / 4370 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 51 dB + ACOM : 78 dB + + + 86 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 920 (2119) + calling : 488388210, called : 27648848 + setup time: 11/01/23 18h34m28s + connexion time: --- + disconnected by local port: 5/1 cause :(17)[User busy] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 87 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 916 (2115) + calling : 498274158, called : 27642050 + setup time: 11/01/23 18h31m34s + connexion time: 11/01/23 18h31m47s + B channel (from B1..) : B1 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:02:35 + PDD duration: 623 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17696 /Dest ip :212.224.167.110 rtp:24788 + Play time (voice) : 00h02m35s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 7737 / 7734 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 20 dB + ACOM : 48 dB + + + 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 919 (2118) + calling : 474682949, called : 27647820 + setup time: 11/01/23 18h33m19s + connexion time: 11/01/23 18h33m22s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:00:26 + PDD duration: 208 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17698 /Dest ip :212.224.167.110 rtp:25580 + Play time (voice) : 00h00m26s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1327 / 1325 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 29 dB + ACOM : 53 dB + + + 89 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 917 (2116) + calling : 477893610, called : 27640675 + setup time: 11/01/23 18h31m43s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 168 msec + advice-of-charge: free + call priority: 100 + + + 90 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 918 (2117) + calling : 466290063, called : 27642121 + setup time: 11/01/23 18h32m42s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 62 msec + advice-of-charge: free + call priority: 100 + + + 91 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 915 (2114) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h31m13s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 92 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 914 (2113) + calling : 474746373, called : 27641623 + setup time: 11/01/23 18h28m50s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 259 msec + advice-of-charge: free + call priority: 100 + + + 93 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 909 (2108) + calling : 495603607, called : 27640631 + setup time: 11/01/23 18h18m39s + connexion time: 11/01/23 18h18m49s + B channel (from B1..) : B2 + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:09:59 + PDD duration: 308 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17692 /Dest ip :212.224.167.110 rtp:22596 + Play time (voice) : 00h09m59s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 29964 / 29961 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 25 dB + ACOM : 62 dB + + + 94 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 906 (2105) + calling : 479090112, called : 27647043 + setup time: 11/01/23 18h17m36s + connexion time: 11/01/23 18h17m38s + B channel (from B1..) : B1 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:08:49 + PDD duration: 325 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17688 /Dest ip :212.224.167.110 rtp:26678 + Play time (voice) : 00h08m49s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 26453 / 26448 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 19 dB + ACOM : 42 dB + + + 95 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 913 (2112) + calling : 484156371, called : 27641826 + setup time: 11/01/23 18h26m06s + connexion time: --- + disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] + call duration: 00:00:00 + PDD duration: 102 msec + advice-of-charge: free + call priority: 100 + + + 96 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 912 (2111) + calling : 460215424, called : 27645555 + setup time: 11/01/23 18h24m30s + connexion time: 11/01/23 18h24m38s + B channel (from B1..) : B2 + disconnected by local port: 5/1 cause :(16)[Normal call clearing] + call duration: 00:00:18 + PDD duration: 392 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17694 /Dest ip :212.224.167.110 rtp:26426 + Play time (voice) : 00h00m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 788 / 905 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.33 / 4.39 + ERL : 21 dB + ACOM : 59 dB + + + 97 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 907 (2106) + calling : 465195352, called : 27641111 + setup time: 11/01/23 18h17m50s + connexion time: 11/01/23 18h17m50s + B channel (from B1..) : B1 + disconnected by local port: 5/0 cause :(16)[Normal call clearing] + call duration: 00:06:31 + PDD duration: 47 msec + advice-of-charge: free + call priority: 100 + + RTP Source ip :94.105.56.196 rtp:17690 /Dest ip :212.224.167.110 rtp:24994 + Play time (voice) : 00h06m31s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 19530 / 19541 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 25 dB + ACOM : 63 dB + + + 98 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 911 (2110) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h23m50s + connexion time: --- + disconnected by local port: 5/0 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 99 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 910 (2109) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h21m34s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 + + + 100 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 908 (2107) + calling : 27207387, called : 27640314 + setup time: 11/01/23 18h18m04s + connexion time: --- + disconnected by local port: 5/1 cause :(27)[Destination out of order] + call duration: 00:00:00 + PDD duration: - + advice-of-charge: free + call priority: 100 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] From b32d1b217e16d8c3a8e232f63de1c73f7be99c51 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 11 Jan 2023 23:53:38 +0100 Subject: [PATCH 11/31] updates for passing tests --- ntc_templates/templates/index | 4 ++-- .../cat_bsa_bsaboot.inf.raw} | 0 .../cat_bsa_bsaboot.inf.yml} | 0 .../show_voice_voip-call_active_all.plug103.yml | 2 ++ .../show_voice_voip-call_active_all.plug212.yml | 2 ++ .../show_voice_voip-call_active_all.plug401.yml | 2 ++ 6 files changed, 8 insertions(+), 2 deletions(-) rename tests/oneaccess_oneos/{cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw => cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw} (100%) rename tests/oneaccess_oneos/{cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml => cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml} (100%) create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml create mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 6226f8a8f1..a89bab9db2 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -687,6 +687,7 @@ mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset +oneaccess_oneos_show_voice_voip-call_active_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment oneaccess_oneos_show_voice_voice-port_pri_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route @@ -696,7 +697,6 @@ oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp -oneaccess_oneos_show_voice_voip-call_active.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief @@ -708,7 +708,7 @@ oneaccess_oneos_show_isdn_led-status.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn oneaccess_oneos_show_isdn_status_all.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn status all oneaccess_oneos_show_reboot_counters.textfsm, .*, oneaccess_oneos, sh[[ow]] reboot counters oneaccess_oneos_show_system_hardware.textfsm, .*, oneaccess_oneos, sh[[ow]] system hardware -oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)BSA(\/| )bsaBoot.inf +oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)(BSA|bsa)(\/| )bsa(B|b)oot.inf oneaccess_oneos_show_ip_bgp_summary.textfsm, .*, oneaccess_oneos, sh[[ow]] ip bgp summary oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] diff --git a/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw b/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw similarity index 100% rename from tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.raw rename to tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw diff --git a/tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml b/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml similarity index 100% rename from tests/oneaccess_oneos/cat_BSA_bsaBoot.inf/cat_BSA_bsaBoot.inf.yml rename to tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] From 44962680b571aa31419aec43b67b060b20315879 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 12 Jan 2023 09:59:13 +0000 Subject: [PATCH 12/31] oneos updates to voice templates --- .../oneaccess_oneos_show_isdn_active.textfsm | 13 +- ...eaccess_oneos_show_isdn_status_all.textfsm | 6 +- ...how_voice_voice-port_pri_all_histo.textfsm | 4 - ...os_show_voice_voip-call_active_all.textfsm | 62 +- ...oneos_show_voice_voip-call_any_all.textfsm | 66 +- .../show_isdn_active.plug401.raw | 47 +- .../show_isdn_active.plug401.yml | 398 +- .../show_isdn_status_all.plug103.yml | 9 +- .../show_isdn_status_all.plug212.yml | 9 +- .../show_isdn_status_all.plug401.raw | 195 +- .../show_isdn_status_all.plug401.yml | 126 +- ...voice_dial-peer_voice_voip_all.plug401.raw | 157 +- ...voice_dial-peer_voice_voip_all.plug401.yml | 66 +- ...how_voice_voip-call_active_all.plug401.raw | 434 +++ ...how_voice_voip-call_active_all.plug401.yml | 1321 ++++++- .../show_voice_voip-call_any_all.plug103.yml | 3295 ++++++++++++++++- .../show_voice_voip-call_any_all.plug212.yml | 3287 +++++++++++++++- .../show_voice_voip-call_any_all.plug401.yml | 3250 +++++++++++++++- 18 files changed, 12512 insertions(+), 233 deletions(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm index 0a476636c1..000a791f82 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm @@ -1,4 +1,13 @@ -Value TODO (.*) +Value Required APP (\S+) +Value CALL_TYPE (\S+) +Value CALLING_NBR (\S+) +Value CALLED_NBR (\S+) +Value DURATION (\d+:\d+:\d+) +Value PORT (\S+) +Value BCHANNEL (\d+) +Value CALL_REF (\d+) +Value CALL_ID (\d+) Start - ^.* \ No newline at end of file + ^${APP}\s+${CALL_TYPE}\s+${CALLING_NBR}\s+${CALLED_NBR}\s+${DURATION}\s+${PORT}\s+${BCHANNEL}\s+${CALL_REF}\s+${CALL_ID} -> Record + ^.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm index 99005147c9..6ec83fe805 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm @@ -15,7 +15,8 @@ Value PRI_RDI_OCCURRENCES (\d+) Value L2_STATUS (\S+) Value L2_TXFRAMES_DCHANNEL (\d+) Value L2_RXFRAMES_DCHANNEL (\d+) -Value L3_STATUS (no active call) +Value L3_ACTIVE_CALLS (\d+|no active call) +Value List L3_CALL_DETAILS (.*) @@ -44,6 +45,7 @@ ISDNLINE ^\s*isdn\sline\s+${ISDN_LINE} -> ISDNLINE L3Status - ^\s*${L3_STATUS} + ^\s*(active\scall\s*|)${L3_ACTIVE_CALLS} + ^\s*->\s${L3_CALL_DETAILS} ^\s*$$ -> Record ISDNLINE diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm index feac194e55..2ff4d66b92 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm @@ -6,10 +6,6 @@ Value DATE_LAST_RESET (.*) Value MAX_CHANNELS_USED (\d+) Value MAX_CHANNELS_AVAILABLE (\d+) - - - - Start ^\s*voice\sport\s+${PORT} -> VoicePort ^\s*$$ diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm index 0a476636c1..aa3380f850 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm @@ -1,4 +1,62 @@ -Value TODO (.*) +Value Required CALL_IDX (\d+) +Value CALLING_FROM (.*) +Value CALLING_TO (.*) +Value CALL_ID (.*\S) +Value CALL_STATUS (\S+) +Value CALLING_NUMBER (\S+) +Value CALLED_NUMBER (\S+) +Value SETUP_TIME (.*\S) +Value CONNEXION_TIME (.*\S) +Value List B_CHANNELS (\S+) +Value PDD_DURATION (.*) +Value ADVICE_OF_CHARGE (.*) +Value CALL_PRIORITY (\d+) +Value RTP_SRC_IP (\d+\.\d+\.\d+\.\d+) +Value RTP_SRC_PORT (\d+) +Value RTP_DST_IP (\d+\.\d+\.\d+\.\d+) +Value RTP_DST_PORT (\d+) +Value RTP_PLAY_TIME (\S+) +Value RTP_TX_CODER (.*\S) +Value RTP_RX_CODER (.*\S) +Value RTP_PKTS_RX (\d+) +Value RTP_PKTS_TX (\d+) +Value RTP_PKTS_LOST_RX (\d+) +Value RTP_PKTS_LOST_TX (\d+) +Value RTP_EXCESSIVE_JITTER (\d+) +Value RTP_MOS_CQ (\d+\.\d+) +Value RTP_MOS_LQ (\d+\.\d+) +Value RTP_ERL_DB (\d+) +Value RTP_ACOM_DB (\d+) + Start - ^.* \ No newline at end of file + # start record example: 41 - Call from + ^\s*\d+\s-\s -> Continue.Record + ^\s*\d+\/\d+\/\d+\s\d + ^\s*${CALL_IDX}\s-\sCall\sfrom\s${CALLING_FROM},\sto\s${CALLING_TO}\scall-id:\s${CALL_ID}\s${CALL_STATUS} -> NewCall + ^\s*$$ + ^.* -> Error + +NewCall + ^\s*calling\s*:\s*${CALLING_NUMBER},\s*called\s*:\s*${CALLED_NUMBER} + ^\s*setup\stime:\s*${SETUP_TIME} + ^\s*connexion\stime:\s*${CONNEXION_TIME} -> BChannels + ^\s*advice-of-charge:\s*${ADVICE_OF_CHARGE} + ^\s*call\spriority:\s${CALL_PRIORITY} + ^\s*RTP\sSource\sip\s*:${RTP_SRC_IP}\srtp:${RTP_SRC_PORT}\s*\/\s*Dest\sip\s*:${RTP_DST_IP}\srtp:${RTP_DST_PORT} -> RTP + ^\s*$$ -> Start + +BChannels + ^\s*B\schannel\s\(from\s\S+\)\s:\s${B_CHANNELS} + ^\s*PDD\sduration:\s*${PDD_DURATION} -> NewCall + +RTP + ^\s*Play\stime\s\(voice\)\s*:\s*${RTP_PLAY_TIME} + ^\s*Tx\sCoder\s*:\s*${RTP_TX_CODER}\s*;\s*Rx\sCoder\s*:\s*${RTP_RX_CODER} + ^\s*RTP\sPackets\sRX\s*\/\s*TX\s*:\s*${RTP_PKTS_RX}\s*\/\s*${RTP_PKTS_TX} + ^\s*RTP\sPacket\slost.*RX\s*\/\s*TX\s\(RTCP\sreported\)\s*:\s*(${RTP_PKTS_LOST_RX}|\-+)\s*\/\s*(${RTP_PKTS_LOST_TX}|\-+) + ^\s*Number\sof\sExcessive\sJitter\sevents\s*:\s*${RTP_EXCESSIVE_JITTER} + ^\s*MOS-CQ\s*\/\s*MOS-LQ\s*:\s*${RTP_MOS_CQ}\s*\/\s*${RTP_MOS_LQ} + ^\s*ERL\s*:\s*${RTP_ERL_DB} + ^\s*ACOM\s*:\s*${RTP_ACOM_DB} + ^\s*$$ -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm index 0a476636c1..0dc63aea74 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm @@ -1,4 +1,66 @@ -Value TODO (.*) +Value Required CALL_IDX (\d+) +Value CALLING_FROM (.*) +Value CALLING_TO (.*) +Value CALL_ID (.*\S) +Value CALLING_NUMBER (\S+) +Value CALLED_NUMBER (\S+) +Value SETUP_TIME (.*\S) +Value CONNEXION_TIME (.*\S) +Value List B_CHANNELS (\S+) +Value DISCONNECTED_BY (.*\S) +Value DISCONNECT_CAUSE_CODE (\d+) +Value DISCONNECT_CAUSE_TEXT (.*) +Value CALL_DURATION (\S+) +Value PDD_DURATION (.*) +Value ADVICE_OF_CHARGE (.*) +Value CALL_PRIORITY (\d+) +Value RTP_SRC_IP (\d+\.\d+\.\d+\.\d+) +Value RTP_SRC_PORT (\d+) +Value RTP_DST_IP (\d+\.\d+\.\d+\.\d+) +Value RTP_DST_PORT (\d+) +Value RTP_PLAY_TIME (\S+) +Value RTP_TX_CODER (.*\S) +Value RTP_RX_CODER (.*\S) +Value RTP_PKTS_RX (\d+) +Value RTP_PKTS_TX (\d+) +Value RTP_PKTS_LOST_RX (\d+) +Value RTP_PKTS_LOST_TX (\d+) +Value RTP_EXCESSIVE_JITTER (\d+) +Value RTP_MOS_CQ (\d+\.\d+) +Value RTP_MOS_LQ (\d+\.\d+) +Value RTP_ERL_DB (\d+) +Value RTP_ACOM_DB (\d+) + Start - ^.* \ No newline at end of file + ^\s*\d+\s-\s -> Continue.Record + ^\s*\d+\/\d+\/\d+\s\d + ^\s*${CALL_IDX}\s-\sCall\sfrom\s${CALLING_FROM},\sto\s${CALLING_TO}\scall-id:\s${CALL_ID} -> NewCall + ^\s*RTP\sSource\sip\s*:${RTP_SRC_IP}\srtp:${RTP_SRC_PORT}\s*\/\s*Dest\sip\s*:${RTP_DST_IP}\srtp:${RTP_DST_PORT} -> RTP + ^\s*$$ + ^.* -> Error + +NewCall + ^\s*calling\s*:\s*${CALLING_NUMBER},\s*called\s*:\s*${CALLED_NUMBER} + ^\s*setup\stime:\s*${SETUP_TIME} + ^\s*connexion\stime:\s*${CONNEXION_TIME} -> BChannels + ^\s*call\sduration:\s*${CALL_DURATION} + ^\s*PDD\sduration:\s*${PDD_DURATION} + ^\s*advice-of-charge:\s*${ADVICE_OF_CHARGE} + ^\s*call\spriority:\s${CALL_PRIORITY} + ^\s*$$ -> Start + +BChannels + ^\s*B\schannel\s\(from\s\S+\)\s:\s${B_CHANNELS} + ^\s*disconnected\sby\s${DISCONNECTED_BY}\scause\s*:\(${DISCONNECT_CAUSE_CODE}\)\[${DISCONNECT_CAUSE_TEXT}\] -> NewCall + +RTP + ^\s*Play\stime\s\(voice\)\s*:\s*${RTP_PLAY_TIME} + ^\s*Tx\sCoder\s*:\s*${RTP_TX_CODER}\s*;\s*Rx\sCoder\s*:\s*${RTP_RX_CODER} + ^\s*RTP\sPackets\sRX\s*\/\s*TX\s*:\s*${RTP_PKTS_RX}\s*\/\s*${RTP_PKTS_TX} + ^\s*RTP\sPacket\slost.*RX\s*\/\s*TX\s\(RTCP\sreported\)\s*:\s*(${RTP_PKTS_LOST_RX}|\-+)\s*\/\s*(${RTP_PKTS_LOST_TX}|\-+) + ^\s*Number\sof\sExcessive\sJitter\sevents\s*:\s*${RTP_EXCESSIVE_JITTER} + ^\s*MOS-CQ\s*\/\s*MOS-LQ\s*:\s*${RTP_MOS_CQ}\s*\/\s*${RTP_MOS_LQ} + ^\s*ERL\s*:\s*${RTP_ERL_DB} + ^\s*ACOM\s*:\s*${RTP_ACOM_DB} + ^\s*$$ -> Start diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw index 872b24aafb..5c569536bf 100644 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw @@ -4,5 +4,48 @@ App. Call Calling Called Call Port BChan Call-ref call-id Type Number Number Duration -------------------------------------------------------------------------------- -no isdn active calls... --------------------------------------------------------------------------------- +Voice In 38719004 027239004 19:33:37 5/0 5 22175 284 +Voice Out 15241987 32472111 00:09:50 5/0 20 14020 839 +Voice Out 14212131 32475576 00:00:22 5/0 15 22212 951 +Voice Out 36532583 32475565 00:00:36 5/0 14 21956 948 +Voice Out 24264348 32472111 00:00:46 5/0 13 21700 945 +Voice Out 89356749 32472885 00:01:14 5/0 12 20932 936 +Voice Out 477439715 32474606 00:00:50 5/0 11 21444 942 +Voice Out 14540755 32475561 00:09:24 5/0 2 14532 845 +Voice Out 32410896 32472111 00:01:32 5/0 9 20420 930 +Voice Out 89714969 32472111 00:02:02 5/0 8 19396 917 +Voice Out 50390141 32472111 00:02:21 5/0 7 19140 914 +Voice Out 93837200 32475498 00:01:39 5/0 1 20164 927 +Voice Out 32038511 32472111 00:03:32 5/0 3 18372 904 +Voice In 38719014 027239024 00:03:50 5/1 18 23786 901 +Voice In 27730100 089656580 00:06:36 5/1 4 23784 876 +Voice In 32472111 32038300 00:01:42 5/1 13 23787 926 +Voice In 32473113 0472246687 00:11:57 5/1 15 23780 799 +Voice Out 67411600 38719001 00:01:38 5/1 14 27314 928 +Voice Out 479583380 38719014 00:03:50 5/1 17 25266 900 +Voice Out 36586363 32472921 00:00:19 5/1 3 28338 952 +Voice Out 489903858 38719004 19:27:12 5/1 6 13189 331 +Voice Out 474478482 32475500 00:01:50 5/1 12 27058 924 +Voice Out 35002121 32472111 00:01:54 5/1 11 26802 921 +Voice Out 488266068 32472334 00:02:01 5/1 9 26546 918 +Voice Out 36900190 32475200 00:06:15 5/1 7 23986 881 +Voice Out 474301373 32472921 00:00:56 5/1 5 27826 937 +Voice Out 22693377 32472616 00:05:31 5/1 10 24498 888 +Voice Out 14828220 32472243 00:00:31 5/1 2 28082 949 +Voice In 38719004 027239004 19:27:12 5/3 12 22164 332 +Voice Out 53662430 32475260 00:00:50 5/3 18 14788 944 +Voice Out 37705742 32472111 00:01:54 5/3 14 12996 922 +Voice Out 92352220 32475500 00:00:50 5/3 17 14532 941 +Voice Out 494722995 32472906 00:04:39 5/3 20 10948 892 +Voice Out 32038511 32474650 00:01:37 5/3 13 13508 929 +Voice Out 34402102 32475562 00:00:55 5/3 15 14276 938 +Voice Out 27344360 32472705 00:00:17 5/3 11 15556 953 +Voice Out 11648572 32474606 00:01:14 5/3 5 14020 935 +Voice Out 22693377 32475578 00:00:27 5/3 8 15300 950 +Voice Out 499353710 38719004 19:33:37 5/3 4 18067 283 +Voice Out 25241614 32472111 00:01:44 5/3 3 13252 925 +Voice Out 32869211 32472714 00:07:43 5/3 7 8900 864 +Voice Out 14828220 32475260 00:01:29 5/3 10 13764 932 +Voice Out 495583389 32475500 00:02:07 5/3 6 12484 916 +Voice Out 33543653 32475464 00:00:43 5/3 2 15044 947 +-------------------------------------------------------------------------------- \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml index e77add67ed..d07a43e69a 100644 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml +++ b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml @@ -1,2 +1,398 @@ --- -parsed_sample: [] +parsed_sample: + - app: "Voice" + call_type: "In" + calling_nbr: "38719004" + called_nbr: "027239004" + duration: "19:33:37" + port: "5/0" + bchannel: "5" + call_ref: "22175" + call_id: "284" + - app: "Voice" + call_type: "Out" + calling_nbr: "15241987" + called_nbr: "32472111" + duration: "00:09:50" + port: "5/0" + bchannel: "20" + call_ref: "14020" + call_id: "839" + - app: "Voice" + call_type: "Out" + calling_nbr: "14212131" + called_nbr: "32475576" + duration: "00:00:22" + port: "5/0" + bchannel: "15" + call_ref: "22212" + call_id: "951" + - app: "Voice" + call_type: "Out" + calling_nbr: "36532583" + called_nbr: "32475565" + duration: "00:00:36" + port: "5/0" + bchannel: "14" + call_ref: "21956" + call_id: "948" + - app: "Voice" + call_type: "Out" + calling_nbr: "24264348" + called_nbr: "32472111" + duration: "00:00:46" + port: "5/0" + bchannel: "13" + call_ref: "21700" + call_id: "945" + - app: "Voice" + call_type: "Out" + calling_nbr: "89356749" + called_nbr: "32472885" + duration: "00:01:14" + port: "5/0" + bchannel: "12" + call_ref: "20932" + call_id: "936" + - app: "Voice" + call_type: "Out" + calling_nbr: "477439715" + called_nbr: "32474606" + duration: "00:00:50" + port: "5/0" + bchannel: "11" + call_ref: "21444" + call_id: "942" + - app: "Voice" + call_type: "Out" + calling_nbr: "14540755" + called_nbr: "32475561" + duration: "00:09:24" + port: "5/0" + bchannel: "2" + call_ref: "14532" + call_id: "845" + - app: "Voice" + call_type: "Out" + calling_nbr: "32410896" + called_nbr: "32472111" + duration: "00:01:32" + port: "5/0" + bchannel: "9" + call_ref: "20420" + call_id: "930" + - app: "Voice" + call_type: "Out" + calling_nbr: "89714969" + called_nbr: "32472111" + duration: "00:02:02" + port: "5/0" + bchannel: "8" + call_ref: "19396" + call_id: "917" + - app: "Voice" + call_type: "Out" + calling_nbr: "50390141" + called_nbr: "32472111" + duration: "00:02:21" + port: "5/0" + bchannel: "7" + call_ref: "19140" + call_id: "914" + - app: "Voice" + call_type: "Out" + calling_nbr: "93837200" + called_nbr: "32475498" + duration: "00:01:39" + port: "5/0" + bchannel: "1" + call_ref: "20164" + call_id: "927" + - app: "Voice" + call_type: "Out" + calling_nbr: "32038511" + called_nbr: "32472111" + duration: "00:03:32" + port: "5/0" + bchannel: "3" + call_ref: "18372" + call_id: "904" + - app: "Voice" + call_type: "In" + calling_nbr: "38719014" + called_nbr: "027239024" + duration: "00:03:50" + port: "5/1" + bchannel: "18" + call_ref: "23786" + call_id: "901" + - app: "Voice" + call_type: "In" + calling_nbr: "27730100" + called_nbr: "089656580" + duration: "00:06:36" + port: "5/1" + bchannel: "4" + call_ref: "23784" + call_id: "876" + - app: "Voice" + call_type: "In" + calling_nbr: "32472111" + called_nbr: "32038300" + duration: "00:01:42" + port: "5/1" + bchannel: "13" + call_ref: "23787" + call_id: "926" + - app: "Voice" + call_type: "In" + calling_nbr: "32473113" + called_nbr: "0472246687" + duration: "00:11:57" + port: "5/1" + bchannel: "15" + call_ref: "23780" + call_id: "799" + - app: "Voice" + call_type: "Out" + calling_nbr: "67411600" + called_nbr: "38719001" + duration: "00:01:38" + port: "5/1" + bchannel: "14" + call_ref: "27314" + call_id: "928" + - app: "Voice" + call_type: "Out" + calling_nbr: "479583380" + called_nbr: "38719014" + duration: "00:03:50" + port: "5/1" + bchannel: "17" + call_ref: "25266" + call_id: "900" + - app: "Voice" + call_type: "Out" + calling_nbr: "36586363" + called_nbr: "32472921" + duration: "00:00:19" + port: "5/1" + bchannel: "3" + call_ref: "28338" + call_id: "952" + - app: "Voice" + call_type: "Out" + calling_nbr: "489903858" + called_nbr: "38719004" + duration: "19:27:12" + port: "5/1" + bchannel: "6" + call_ref: "13189" + call_id: "331" + - app: "Voice" + call_type: "Out" + calling_nbr: "474478482" + called_nbr: "32475500" + duration: "00:01:50" + port: "5/1" + bchannel: "12" + call_ref: "27058" + call_id: "924" + - app: "Voice" + call_type: "Out" + calling_nbr: "35002121" + called_nbr: "32472111" + duration: "00:01:54" + port: "5/1" + bchannel: "11" + call_ref: "26802" + call_id: "921" + - app: "Voice" + call_type: "Out" + calling_nbr: "488266068" + called_nbr: "32472334" + duration: "00:02:01" + port: "5/1" + bchannel: "9" + call_ref: "26546" + call_id: "918" + - app: "Voice" + call_type: "Out" + calling_nbr: "36900190" + called_nbr: "32475200" + duration: "00:06:15" + port: "5/1" + bchannel: "7" + call_ref: "23986" + call_id: "881" + - app: "Voice" + call_type: "Out" + calling_nbr: "474301373" + called_nbr: "32472921" + duration: "00:00:56" + port: "5/1" + bchannel: "5" + call_ref: "27826" + call_id: "937" + - app: "Voice" + call_type: "Out" + calling_nbr: "22693377" + called_nbr: "32472616" + duration: "00:05:31" + port: "5/1" + bchannel: "10" + call_ref: "24498" + call_id: "888" + - app: "Voice" + call_type: "Out" + calling_nbr: "14828220" + called_nbr: "32472243" + duration: "00:00:31" + port: "5/1" + bchannel: "2" + call_ref: "28082" + call_id: "949" + - app: "Voice" + call_type: "In" + calling_nbr: "38719004" + called_nbr: "027239004" + duration: "19:27:12" + port: "5/3" + bchannel: "12" + call_ref: "22164" + call_id: "332" + - app: "Voice" + call_type: "Out" + calling_nbr: "53662430" + called_nbr: "32475260" + duration: "00:00:50" + port: "5/3" + bchannel: "18" + call_ref: "14788" + call_id: "944" + - app: "Voice" + call_type: "Out" + calling_nbr: "37705742" + called_nbr: "32472111" + duration: "00:01:54" + port: "5/3" + bchannel: "14" + call_ref: "12996" + call_id: "922" + - app: "Voice" + call_type: "Out" + calling_nbr: "92352220" + called_nbr: "32475500" + duration: "00:00:50" + port: "5/3" + bchannel: "17" + call_ref: "14532" + call_id: "941" + - app: "Voice" + call_type: "Out" + calling_nbr: "494722995" + called_nbr: "32472906" + duration: "00:04:39" + port: "5/3" + bchannel: "20" + call_ref: "10948" + call_id: "892" + - app: "Voice" + call_type: "Out" + calling_nbr: "32038511" + called_nbr: "32474650" + duration: "00:01:37" + port: "5/3" + bchannel: "13" + call_ref: "13508" + call_id: "929" + - app: "Voice" + call_type: "Out" + calling_nbr: "34402102" + called_nbr: "32475562" + duration: "00:00:55" + port: "5/3" + bchannel: "15" + call_ref: "14276" + call_id: "938" + - app: "Voice" + call_type: "Out" + calling_nbr: "27344360" + called_nbr: "32472705" + duration: "00:00:17" + port: "5/3" + bchannel: "11" + call_ref: "15556" + call_id: "953" + - app: "Voice" + call_type: "Out" + calling_nbr: "11648572" + called_nbr: "32474606" + duration: "00:01:14" + port: "5/3" + bchannel: "5" + call_ref: "14020" + call_id: "935" + - app: "Voice" + call_type: "Out" + calling_nbr: "22693377" + called_nbr: "32475578" + duration: "00:00:27" + port: "5/3" + bchannel: "8" + call_ref: "15300" + call_id: "950" + - app: "Voice" + call_type: "Out" + calling_nbr: "499353710" + called_nbr: "38719004" + duration: "19:33:37" + port: "5/3" + bchannel: "4" + call_ref: "18067" + call_id: "283" + - app: "Voice" + call_type: "Out" + calling_nbr: "25241614" + called_nbr: "32472111" + duration: "00:01:44" + port: "5/3" + bchannel: "3" + call_ref: "13252" + call_id: "925" + - app: "Voice" + call_type: "Out" + calling_nbr: "32869211" + called_nbr: "32472714" + duration: "00:07:43" + port: "5/3" + bchannel: "7" + call_ref: "8900" + call_id: "864" + - app: "Voice" + call_type: "Out" + calling_nbr: "14828220" + called_nbr: "32475260" + duration: "00:01:29" + port: "5/3" + bchannel: "10" + call_ref: "13764" + call_id: "932" + - app: "Voice" + call_type: "Out" + calling_nbr: "495583389" + called_nbr: "32475500" + duration: "00:02:07" + port: "5/3" + bchannel: "6" + call_ref: "12484" + call_id: "916" + - app: "Voice" + call_type: "Out" + calling_nbr: "33543653" + called_nbr: "32475464" + duration: "00:00:43" + port: "5/3" + bchannel: "2" + call_ref: "15044" + call_id: "947" diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml index 83992f1511..9f60aa84f9 100644 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml @@ -17,7 +17,8 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] - isdn_line: "5/1" physical_type: "" proto_descriptor: "BRI_NT" @@ -35,7 +36,8 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] - isdn_line: "5/2" physical_type: "" proto_descriptor: "BRI_NT" @@ -53,4 +55,5 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml index b48473eeb2..d53b0969c6 100644 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml @@ -17,7 +17,8 @@ parsed_sample: l2_status: "activated" l2_txframes_dchannel: "50" l2_rxframes_dchannel: "50" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] - isdn_line: "5/1" physical_type: "" proto_descriptor: "BRI_NT" @@ -35,7 +36,8 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] - isdn_line: "5/2" physical_type: "" proto_descriptor: "BRI_NT" @@ -53,4 +55,5 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw index be39b0c760..3e35a52f8d 100644 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw @@ -1,79 +1,122 @@ - isdn line 5/0 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state up - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) ON - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call + isdn line 5/0 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state up + loop state down + -layer 1 status activated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RDI occurrence(s) 0 + -layer 2 status activated + ces= 1 , tei= 0 , state= established + Tx frames on D channel 1775901 + Rx frames on D channel 1775901 + -layer 3 status + active call 10 + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 5 , call-ref= 22175 , call-id= 284, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref= 14020 , call-id= 839, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref= 22212 , call-id= 951, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref= 21956 , call-id= 948, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=13 , call-ref= 21700 , call-id= 945, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref= 20932 , call-id= 936, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 14532 , call-id= 845, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 20420 , call-id= 930, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 19140 , call-id= 914, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 22724 , call-id= 957, IsmConnect. - isdn line 5/1 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state down - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call + isdn line 5/1 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state up + loop state down + -layer 1 status activated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RDI occurrence(s) 0 + -layer 2 status activated + ces= 1 , tei= 0 , state= established + Tx frames on D channel 1760092 + Rx frames on D channel 1760092 + -layer 3 status + active call 14 + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=18 , call-ref= 23786 , call-id= 901, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 4 , call-ref= 23784 , call-id= 876, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=15 , call-ref= 23780 , call-id= 799, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref= 25266 , call-id= 900, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref= 28338 , call-id= 952, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 13189 , call-id= 331, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref= 27058 , call-id= 924, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref= 26802 , call-id= 921, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 26546 , call-id= 918, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 23986 , call-id= 881, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref= 28850 , call-id= 958, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref= 27826 , call-id= 937, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 28082 , call-id= 949, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref= 28594 , call-id= 955, IsmConnect. - isdn line 5/2 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state down - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call + isdn line 5/2 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state down + loop state down + -layer 1 status deactivated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 0 + pri RDI occurrence(s) 0 + -layer 2 status deactivated + Tx frames on D channel 0 + Rx frames on D channel 0 + -layer 3 status + no active call - isdn line 5/3 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state down - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call + isdn line 5/3 + physical type E1 + protocol descriptor E1_PRI + linecode hdb3 + framing DF + config state up + loop state down + -layer 1 status activated + Alarm Indication Signal (AIS) OFF + Loss Off Signal (LOS) OFF + Remote Indication Signal (RAI) OFF + pri AIS occurrence(s) 0 + pri LOS occurrence(s) 1 + pri RDI occurrence(s) 0 + -layer 2 status activated + ces= 1 , tei= 0 , state= established + Tx frames on D channel 1775555 + Rx frames on D channel 1775555 + -layer 3 status + active call 16 + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=12 , call-ref= 22164 , call-id= 332, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref= 15812 , call-id= 956, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=18 , call-ref= 14788 , call-id= 944, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref= 12996 , call-id= 922, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref= 14532 , call-id= 941, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref= 10948 , call-id= 892, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref= 14276 , call-id= 938, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref= 15556 , call-id= 953, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref= 14020 , call-id= 935, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref= 15300 , call-id= 950, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 4 , call-ref= 18067 , call-id= 283, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref= 13252 , call-id= 925, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 8900 , call-id= 864, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 16068 , call-id= 959, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 12484 , call-id= 916, IsmConnect. + -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 15044 , call-id= 947, IsmConnect. \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml index 7058a1efdb..f459745286 100644 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml +++ b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml @@ -7,35 +7,85 @@ parsed_sample: proto_framing: "DF" config_state: "up" loop_state: "down" - l1_status: "deactivated" + l1_status: "activated" ais: "OFF" - los: "ON" + los: "OFF" rai: "OFF" pri_ais_occurrences: "0" pri_los_occurrences: "1" pri_rdi_occurrences: "0" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_status: "no active call" + l2_status: "activated" + l2_txframes_dchannel: "1775901" + l2_rxframes_dchannel: "1775901" + l3_active_calls: "10" + l3_call_details: + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 5 , call-ref=\ + \ 22175 , call-id= 284, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref=\ + \ 14020 , call-id= 839, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref=\ + \ 22212 , call-id= 951, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref=\ + \ 21956 , call-id= 948, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=13 , call-ref=\ + \ 21700 , call-id= 945, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref=\ + \ 20932 , call-id= 936, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ + \ 14532 , call-id= 845, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ + \ 20420 , call-id= 930, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ + \ 19140 , call-id= 914, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ + \ 22724 , call-id= 957, IsmConnect." - isdn_line: "5/1" physical_type: "E1" proto_descriptor: "E1_PRI" proto_linecode: "hdb3" proto_framing: "DF" - config_state: "down" + config_state: "up" loop_state: "down" - l1_status: "deactivated" + l1_status: "activated" ais: "OFF" los: "OFF" rai: "OFF" pri_ais_occurrences: "0" - pri_los_occurrences: "0" + pri_los_occurrences: "1" pri_rdi_occurrences: "0" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_status: "no active call" + l2_status: "activated" + l2_txframes_dchannel: "1760092" + l2_rxframes_dchannel: "1760092" + l3_active_calls: "14" + l3_call_details: + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=18 , call-ref=\ + \ 23786 , call-id= 901, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 4 , call-ref=\ + \ 23784 , call-id= 876, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=15 , call-ref=\ + \ 23780 , call-id= 799, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref=\ + \ 25266 , call-id= 900, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref=\ + \ 28338 , call-id= 952, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ + \ 13189 , call-id= 331, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref=\ + \ 27058 , call-id= 924, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref=\ + \ 26802 , call-id= 921, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ + \ 26546 , call-id= 918, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ + \ 23986 , call-id= 881, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref=\ + \ 28850 , call-id= 958, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref=\ + \ 27826 , call-id= 937, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ + \ 28082 , call-id= 949, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref=\ + \ 28594 , call-id= 955, IsmConnect." - isdn_line: "5/2" physical_type: "E1" proto_descriptor: "E1_PRI" @@ -53,22 +103,56 @@ parsed_sample: l2_status: "deactivated" l2_txframes_dchannel: "0" l2_rxframes_dchannel: "0" - l3_status: "no active call" + l3_active_calls: "no active call" + l3_call_details: [] - isdn_line: "5/3" physical_type: "E1" proto_descriptor: "E1_PRI" proto_linecode: "hdb3" proto_framing: "DF" - config_state: "down" + config_state: "up" loop_state: "down" - l1_status: "deactivated" + l1_status: "activated" ais: "OFF" los: "OFF" rai: "OFF" pri_ais_occurrences: "0" - pri_los_occurrences: "0" + pri_los_occurrences: "1" pri_rdi_occurrences: "0" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_status: "no active call" + l2_status: "activated" + l2_txframes_dchannel: "1775555" + l2_rxframes_dchannel: "1775555" + l3_active_calls: "16" + l3_call_details: + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=12 , call-ref=\ + \ 22164 , call-id= 332, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref=\ + \ 15812 , call-id= 956, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=18 , call-ref=\ + \ 14788 , call-id= 944, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref=\ + \ 12996 , call-id= 922, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref=\ + \ 14532 , call-id= 941, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref=\ + \ 10948 , call-id= 892, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref=\ + \ 14276 , call-id= 938, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref=\ + \ 15556 , call-id= 953, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref=\ + \ 14020 , call-id= 935, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref=\ + \ 15300 , call-id= 950, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 4 , call-ref=\ + \ 18067 , call-id= 283, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref=\ + \ 13252 , call-id= 925, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ + \ 8900 , call-id= 864, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ + \ 16068 , call-id= 959, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ + \ 12484 , call-id= 916, IsmConnect." + - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ + \ 15044 , call-id= 947, IsmConnect." diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw index a815d12759..432d3cfd47 100644 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw @@ -1,78 +1,79 @@ - Dial Peer 0 - Config state up - Operstatus up - Registration status unused - Current protocol sip (UDP) - lastOK 0 - User Agent (null) - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Current sip-protocol-mode ipv4 (config : ipv4) - Current Calls 0 - Outgoing Calls - Outgoing Calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Outgoing calls failures 0 - Q931 Call failures 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Incoming Calls - Incoming calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Incoming calls failures 0 - Local Port Call failures 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Unknown number 0 - Channel / port unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Voice & Fax statistics - Number of real dsp switching 0 - RTP statistics - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of excessive jitter events 0 - Number of lost packets 0 - Number of invalid packets 0 - Number of calls with frame error rate - total <0.01% <0.1% <0.5% <1% <5% >=5% - 0 0 0 0 0 0 0 - Modem passthrough - Number of switching to modem mode 0 - T38 FAX Calls - Number of outgoing fax 0 - Number of incoming fax 0 - Number of failures 0 - Request Mode failure 0 - Pre-message procedure failure 0 - Page failure 0 - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of lost packets 0 + Dial Peer 0 + Config state up + Operstatus up + Registration status unused + Current protocol sip (UDP) + lastOK 0 + User Agent (null) + Bandwidth really used/CAC value/unused 4664800 / 4664800/ 2142818847 bps + Current sip-protocol-mode ipv4 (config : ipv4) + Current Calls 49 + Outgoing Calls + Outgoing Calls 71441 + Bandwidth really used/CAC value/unused 571200 / 571200/ 2142818847 bps + Outgoing calls failures 960 + Q931 Call failures 960 + Cause Class 0 (normal event) 3 + Cause Class 1 (normal event) 903 + Normal Cause (16) 0 + User busy (17) 581 + No answer (18) 0 + Cause Class 2 (unavailable resources) 0 + Cause Class 3 (unavailable service) 0 + Cause Class 4 (service not provided) 0 + Cause Class 5 (invalid message) 0 + Cause Class 6 (protocol error) 0 + Cause Class 7 (interworking) 54 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Incoming Calls + Incoming calls 272250 + Bandwidth really used/CAC value/unused 4093600 / 4093600/ 2142818847 bps + Incoming calls failures 20158 + Local Port Call failures 20158 + SIP Call failures 0 + Incompatible capabilities 0 + Protocol errors 0 + Internal call failures 0 + DSP unavailable 0 + Unknown number 0 + Channel / port unavailable 0 + Max-bandwidth exceeded 0 + Max-connection exceeded 0 + RTP dynamic-payload error 0 + Not specified 0 + Voice & Fax statistics + Number of real dsp switching 0 + RTP statistics + Number of transmitted packets 3036357385 + Number of received packets 3025812387 + Number of transmitted bytes 2524133572 + Number of received bytes 700131267 + Number of excessive jitter events 631523 + Number of lost packets 38066146 + Number of invalid packets 0 + Number of calls with frame error rate + total <0.01% <0.1% <0.5% <1% <5% >=5% + 314464 223376 37054 38300 7658 7128 948 + Modem passthrough + Number of switching to modem mode 0 + T38 FAX Calls + Number of outgoing fax 0 + Number of incoming fax 0 + Number of failures 0 + Request Mode failure 0 + Pre-message procedure failure 0 + Page failure 0 + Number of transmitted packets 0 + Number of received packets 0 + Number of transmitted bytes 0 + Number of received bytes 0 + Number of lost packets 0 + \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml index ff0c22dfd9..ba8a83bd0b 100644 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml +++ b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml @@ -7,29 +7,29 @@ parsed_sample: current_protocol: "sip" last_ok: "0" user_agent: "null" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" + bw_used: "4664800" + cac: "4664800" + bw_unused: "2142818847" sip_protocol_mode: "ipv4" sip_protocol_configured: "ipv4" - current_calls: "0" - outgoing_calls: "0" - outgoing_bw_used: "0" - outgoing_cac: "0" - outgoing_bw_unused: "2147483647" - outgoing_failures: "0" - outgoing_failures_q931: "0" - outgoing_failures_q931_0_normal: "0" - outgoing_failures_q931_1_normal: "0" + current_calls: "49" + outgoing_calls: "71441" + outgoing_bw_used: "571200" + outgoing_cac: "571200" + outgoing_bw_unused: "2142818847" + outgoing_failures: "960" + outgoing_failures_q931: "960" + outgoing_failures_q931_0_normal: "3" + outgoing_failures_q931_1_normal: "3" outgoing_failures_q931_16_normal: "0" - outgoing_failures_q931_17_busy: "0" + outgoing_failures_q931_17_busy: "581" outgoing_failures_q931_18_no_answer: "0" outgoing_failures_q931_2_unavailable_resources: "0" outgoing_failures_q931_3_unavailable_service: "0" outgoing_failures_q931_4_service_not_provided: "0" outgoing_failures_q931_5_invalid_message: "0" outgoing_failures_q931_6_protocol: "0" - outgoing_failures_q931_7_interworking: "0" + outgoing_failures_q931_7_interworking: "4" outgoing_failures_sip_call: "0" outgoing_failures_capabilities: "0" outgoing_failures_protocol: "0" @@ -39,12 +39,12 @@ parsed_sample: outgoing_failures_max_conn_exceeded: "0" outgoing_failures_rtp_payload: "0" outgoing_failures_not_specified: "0" - incoming_calls: "0" - incoming_bw_used: "0" - incoming_cac: "0" - incoming_bw_unused: "2147483647" - incoming_failures: "0" - incoming_failures_local_port: "0" + incoming_calls: "272250" + incoming_bw_used: "4093600" + incoming_cac: "4093600" + incoming_bw_unused: "2142818847" + incoming_failures: "20158" + incoming_failures_local_port: "20158" incoming_failures_sip_call: "0" incoming_failures_capabilities: "0" incoming_failures_protocol: "0" @@ -57,20 +57,20 @@ parsed_sample: incoming_failures_rtp_payload: "0" incoming_failures_not_specified: "0" voice_fax_real_dsp_switching: "0" - rtp_pkts_transmitted: "0" - rtp_pkts_received: "0" - rtp_bytes_transmitted: "0" - rtp_bytes_received: "0" - rtp_excessive_jitter_events: "0" - rtp_pkts_lost: "0" + rtp_pkts_transmitted: "3036357385" + rtp_pkts_received: "3025812387" + rtp_bytes_transmitted: "2524133572" + rtp_bytes_received: "700131267" + rtp_excessive_jitter_events: "631523" + rtp_pkts_lost: "38066146" rtp_pkts_invalid: "0" - frame_error_rate_total: "0" - frame_error_rate_lt_0_01: "0" - frame_error_rate_lt_0_1: "0" - frame_error_rate_lt_0_5: "0" - frame_error_rate_lt_1: "0" - frame_error_rate_lt_5: "0" - frame_error_rate_ge_5: "0" + frame_error_rate_total: "314464" + frame_error_rate_lt_0_01: "223376" + frame_error_rate_lt_0_1: "37054" + frame_error_rate_lt_0_5: "38300" + frame_error_rate_lt_1: "7658" + frame_error_rate_lt_5: "7128" + frame_error_rate_ge_5: "948" modem_switches: "0" fax_outgoing: "0" fax_incoming: "0" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw index e69de29bb2..b53e725e94 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw +++ b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw @@ -0,0 +1,434 @@ + + 1 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1001 (8100) active + calling : 93761462, called : 32472700 + setup time: 12/01/23 10h13m07s + connexion time: 12/01/23 10h13m09s + B channel (from B1..) : B15 + PDD duration: 282 msec + advice-of-charge: free + call priority: 100 + + 2 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1000 (8099) active + calling : 58518383, called : 32472362 + setup time: 12/01/23 10h13m07s + connexion time: --- + PDD duration: 170 msec + advice-of-charge: free + call priority: 100 + + 3 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 999 (8098) active + calling : 23742398, called : 38719001 + setup time: 12/01/23 10h13m05s + connexion time: 12/01/23 10h13m08s + B channel (from B1..) : B8 + PDD duration: 88 msec + advice-of-charge: free + call priority: 100 + + 4 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 998 (8097) active + calling : 14815190, called : 32472703 + setup time: 12/01/23 10h12m54s + connexion time: 12/01/23 10h12m57s + B channel (from B1..) : B13 + PDD duration: 88 msec + advice-of-charge: free + call priority: 100 + + 5 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 995 (8094) active + calling : 3232472111, called : 3232038555 + setup time: 12/01/23 10h12m48s + connexion time: 12/01/23 10h12m48s + B channel (from B1..) : B11 + PDD duration: 639 msec + advice-of-charge: free + call priority: 100 + + 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 993 (8092) active + calling : 3232475500, called : 3226457231 + setup time: 12/01/23 10h12m43s + connexion time: 12/01/23 10h13m03s + B channel (from B1..) : B2 + PDD duration: 1787 msec + advice-of-charge: free + call priority: 100 + + 7 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 994 (8093) active + calling : 3232472281, called : 3232177260 + setup time: 12/01/23 10h12m41s + connexion time: 12/01/23 10h12m53s + B channel (from B1..) : B2 + PDD duration: 1275 msec + advice-of-charge: free + call priority: 100 + + 8 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 992 (8091) active + calling : 3232475463, called : 3292202401 + setup time: 12/01/23 10h12m37s + connexion time: 12/01/23 10h12m38s + B channel (from B1..) : B5 + PDD duration: 1067 msec + advice-of-charge: free + call priority: 100 + + 9 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 991 (8090) active + calling : 32038511, called : 32472111 + setup time: 12/01/23 10h12m33s + connexion time: 12/01/23 10h12m36s + B channel (from B1..) : B7 + PDD duration: 100 msec + advice-of-charge: free + call priority: 100 + + 10 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 990 (8089) active + calling : 473440651, called : 32472111 + setup time: 12/01/23 10h12m24s + connexion time: 12/01/23 10h12m26s + B channel (from B1..) : B4 + PDD duration: 90 msec + advice-of-charge: free + call priority: 100 + + 11 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 988 (8087) active + calling : 32038511, called : 32474650 + setup time: 12/01/23 10h12m24s + connexion time: 12/01/23 10h12m27s + B channel (from B1..) : B5 + PDD duration: 86 msec + advice-of-charge: free + call priority: 100 + + 12 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 987 (8086) active + calling : 465869399, called : 32472111 + setup time: 12/01/23 10h12m06s + connexion time: 12/01/23 10h12m08s + B channel (from B1..) : B2 + PDD duration: 86 msec + advice-of-charge: free + call priority: 100 + + 13 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 986 (8085) active + calling : 14828220, called : 32472111 + setup time: 12/01/23 10h12m01s + connexion time: 12/01/23 10h12m04s + B channel (from B1..) : B14 + PDD duration: 41 msec + advice-of-charge: free + call priority: 100 + + 14 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 985 (8084) active + calling : 485930250, called : 32472111 + setup time: 12/01/23 10h12m01s + connexion time: 12/01/23 10h12m02s + B channel (from B1..) : B3 + PDD duration: 55 msec + advice-of-charge: free + call priority: 100 + + 15 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 984 (8083) active + calling : 486372736, called : 32472706 + setup time: 12/01/23 10h11m58s + connexion time: 12/01/23 10h12m01s + B channel (from B1..) : B3 + PDD duration: 91 msec + advice-of-charge: free + call priority: 100 + + 16 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 982 (8081) active + calling : 52212121, called : 32472705 + setup time: 12/01/23 10h11m38s + connexion time: 12/01/23 10h11m41s + B channel (from B1..) : B24 + PDD duration: 99 msec + advice-of-charge: free + call priority: 100 + + 17 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 981 (8080) active + calling : 479992249, called : 32472868 + setup time: 12/01/23 10h11m37s + connexion time: 12/01/23 10h11m45s + B channel (from B1..) : B1 + PDD duration: 87 msec + advice-of-charge: free + call priority: 100 + + 18 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 979 (8078) active + calling : 13461955, called : 32473116 + setup time: 12/01/23 10h11m14s + connexion time: 12/01/23 10h11m33s + B channel (from B1..) : B13 + PDD duration: 88 msec + advice-of-charge: free + call priority: 100 + + 19 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 976 (8075) active + calling : 479583380, called : 32429260 + setup time: 12/01/23 10h11m10s + connexion time: 12/01/23 10h11m12s + B channel (from B1..) : B14 + PDD duration: 101 msec + advice-of-charge: free + call priority: 100 + + 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 975 (8074) active + calling : 33122838, called : 32472243 + setup time: 12/01/23 10h11m10s + connexion time: 12/01/23 10h11m13s + B channel (from B1..) : B11 + PDD duration: 114 msec + advice-of-charge: free + call priority: 100 + + 21 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 974 (8073) active + calling : 3232472761, called : 3234912779 + setup time: 12/01/23 10h11m09s + connexion time: 12/01/23 10h11m10s + B channel (from B1..) : B7 + PDD duration: 1389 msec + advice-of-charge: free + call priority: 100 + + 22 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 973 (8072) active + calling : 32175452, called : 32472243 + setup time: 12/01/23 10h11m08s + connexion time: 12/01/23 10h11m10s + B channel (from B1..) : B22 + PDD duration: 88 msec + advice-of-charge: free + call priority: 100 + + 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 971 (8070) active + calling : 55301616, called : 32472262 + setup time: 12/01/23 10h11m03s + connexion time: 12/01/23 10h11m07s + B channel (from B1..) : B10 + PDD duration: 109 msec + advice-of-charge: free + call priority: 100 + + 24 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 970 (8069) active + calling : 3232473510, called : 3289565826 + setup time: 12/01/23 10h11m03s + connexion time: 12/01/23 10h11m04s + B channel (from B1..) : B21 + PDD duration: 1305 msec + advice-of-charge: free + call priority: 100 + + 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 967 (8066) active + calling : 51816176, called : 32472111 + setup time: 12/01/23 10h10m50s + connexion time: 12/01/23 10h10m52s + B channel (from B1..) : B8 + PDD duration: 89 msec + advice-of-charge: free + call priority: 100 + + 26 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 965 (8064) active + calling : 14564412, called : 32472703 + setup time: 12/01/23 10h10m44s + connexion time: 12/01/23 10h10m46s + B channel (from B1..) : B10 + PDD duration: 86 msec + advice-of-charge: free + call priority: 100 + + 27 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 964 (8063) active + calling : 15220539, called : 32473171 + setup time: 12/01/23 10h10m42s + connexion time: 12/01/23 10h10m45s + B channel (from B1..) : B4 + PDD duration: 87 msec + advice-of-charge: free + call priority: 100 + + 28 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 963 (8062) active + calling : 3238719004, called : 3227239004 + setup time: 12/01/23 10h10m33s + connexion time: 12/01/23 10h10m34s + B channel (from B1..) : B3 + PDD duration: 768 msec + advice-of-charge: free + call priority: 100 + + 29 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 962 (8061) active + calling : 496550200, called : 38719004 + setup time: 12/01/23 10h10m33s + connexion time: 12/01/23 10h10m34s + B channel (from B1..) : B10 + PDD duration: 166 msec + advice-of-charge: free + call priority: 100 + + 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 960 (8059) active + calling : , called : 32472989 + setup time: 12/01/23 10h10m28s + connexion time: 12/01/23 10h10m40s + B channel (from B1..) : B1 + PDD duration: 86 msec + advice-of-charge: free + call priority: 100 + + 31 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 959 (8058) active + calling : 50506058, called : 32472924 + setup time: 12/01/23 10h10m20s + connexion time: 12/01/23 10h10m26s + B channel (from B1..) : B9 + PDD duration: 84 msec + advice-of-charge: free + call priority: 100 + + 32 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 958 (8057) active + calling : 498165779, called : 32472111 + setup time: 12/01/23 10h10m13s + connexion time: 12/01/23 10h10m15s + B channel (from B1..) : B8 + PDD duration: 87 msec + advice-of-charge: free + call priority: 100 + + 33 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 956 (8055) active + calling : 92512180, called : 32472111 + setup time: 12/01/23 10h09m50s + connexion time: 12/01/23 10h09m53s + B channel (from B1..) : B1 + PDD duration: 89 msec + advice-of-charge: free + call priority: 100 + + 34 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 941 (8040) active + calling : 92352220, called : 32475500 + setup time: 12/01/23 10h08m39s + connexion time: 12/01/23 10h08m40s + B channel (from B1..) : B17 + PDD duration: 93 msec + advice-of-charge: free + call priority: 100 + + 35 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 938 (8037) active + calling : 34402102, called : 32475562 + setup time: 12/01/23 10h08m34s + connexion time: 12/01/23 10h08m37s + B channel (from B1..) : B15 + PDD duration: 89 msec + advice-of-charge: free + call priority: 100 + + 36 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 924 (8023) active + calling : 474478482, called : 32475500 + setup time: 12/01/23 10h07m39s + connexion time: 12/01/23 10h07m42s + B channel (from B1..) : B12 + PDD duration: 87 msec + advice-of-charge: free + call priority: 100 + + 37 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 922 (8021) active + calling : 37705742, called : 32472111 + setup time: 12/01/23 10h07m35s + connexion time: 12/01/23 10h07m38s + B channel (from B1..) : B14 + PDD duration: 85 msec + advice-of-charge: free + call priority: 100 + + 38 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 918 (8017) active + calling : 488266068, called : 32472334 + setup time: 12/01/23 10h07m28s + connexion time: 12/01/23 10h07m43s + B channel (from B1..) : B9 + PDD duration: 87 msec + advice-of-charge: free + call priority: 100 + + 39 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 916 (8015) active + calling : 495583389, called : 32475500 + setup time: 12/01/23 10h07m22s + connexion time: 12/01/23 10h07m24s + B channel (from B1..) : B6 + PDD duration: 85 msec + advice-of-charge: free + call priority: 100 + + 40 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 914 (8013) active + calling : 50390141, called : 32472111 + setup time: 12/01/23 10h07m08s + connexion time: 12/01/23 10h07m12s + B channel (from B1..) : B7 + PDD duration: 93 msec + advice-of-charge: free + call priority: 100 + + 41 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 332 (1499) active + calling : 3238719004, called : 3227239004 + setup time: 04/01/23 14h42m17s + connexion time: 04/01/23 14h42m17s + B channel (from B1..) : B12 + PDD duration: 791 msec + advice-of-charge: free + call priority: 100 + RTP Source ip :94.105.56.57 rtp:17648 /Dest ip :212.224.167.110 rtp:51728 (active) + Play time (voice) : 19h30m54s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1108 / 33752688 + RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.30 / 4.39 + ERL : 50 dB + ACOM : 73 dB + + + 42 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 331 (1498) active + calling : 489903858, called : 38719004 + setup time: 04/01/23 14h42m17s + connexion time: 04/01/23 14h42m18s + B channel (from B1..) : B6 + PDD duration: 167 msec + advice-of-charge: free + call priority: 100 + RTP Source ip :94.105.56.57 rtp:17650 /Dest ip :212.224.167.110 rtp:52852 (active) + Play time (voice) : 19h30m53s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 1186 / 33752673 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : -- dB + ACOM : 255 dB + + + 43 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 284 (1451) active + calling : 3238719004, called : 3227239004 + setup time: 04/01/23 14h35m52s + connexion time: 04/01/23 14h35m53s + B channel (from B1..) : B5 + PDD duration: 875 msec + advice-of-charge: free + call priority: 100 + RTP Source ip :94.105.56.57 rtp:17552 /Dest ip :212.224.167.110 rtp:52942 (active) + Play time (voice) : 19h37m19s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 20024 / 33771922 + RTP Packet lost&discarded RX / TX (RTCP reported) : 313 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.21 / 4.28 + ERL : 18 dB + ACOM : 42 dB + + + 44 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 283 (1450) active + calling : 499353710, called : 38719004 + setup time: 04/01/23 14h35m52s + connexion time: 04/01/23 14h35m53s + B channel (from B1..) : B4 + PDD duration: 142 msec + advice-of-charge: free + call priority: 100 + RTP Source ip :94.105.56.57 rtp:17556 /Dest ip :212.224.167.110 rtp:51594 (active) + Play time (voice) : 19h37m18s + Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law + RTP Packets RX / TX : 20422 / 33771907 + RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 + Number of Excessive Jitter events : 0 + MOS-CQ / MOS-LQ : 4.34 / 4.39 + ERL : 37 dB + ACOM : 64 dB diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml index e77add67ed..03aeeac3a2 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml +++ b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml @@ -1,2 +1,1321 @@ --- -parsed_sample: [] +parsed_sample: + - call_idx: "1" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "1001 (8100)" + call_status: "active" + calling_number: "93761462" + called_number: "32472700" + setup_time: "12/01/23 10h13m07s" + connexion_time: "12/01/23 10h13m09s" + b_channels: + - "B15" + pdd_duration: "282 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "2" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "1000 (8099)" + call_status: "active" + calling_number: "58518383" + called_number: "32472362" + setup_time: "12/01/23 10h13m07s" + connexion_time: "---" + b_channels: [] + pdd_duration: "170 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "3" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "999 (8098)" + call_status: "active" + calling_number: "23742398" + called_number: "38719001" + setup_time: "12/01/23 10h13m05s" + connexion_time: "12/01/23 10h13m08s" + b_channels: + - "B8" + pdd_duration: "88 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "4" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "998 (8097)" + call_status: "active" + calling_number: "14815190" + called_number: "32472703" + setup_time: "12/01/23 10h12m54s" + connexion_time: "12/01/23 10h12m57s" + b_channels: + - "B13" + pdd_duration: "88 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "5" + calling_from: "local port: 5/1" + calling_to: "remote voip: 0 (UDP)" + call_id: "995 (8094)" + call_status: "active" + calling_number: "3232472111" + called_number: "3232038555" + setup_time: "12/01/23 10h12m48s" + connexion_time: "12/01/23 10h12m48s" + b_channels: + - "B11" + pdd_duration: "639 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "6" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "993 (8092)" + call_status: "active" + calling_number: "3232475500" + called_number: "3226457231" + setup_time: "12/01/23 10h12m43s" + connexion_time: "12/01/23 10h13m03s" + b_channels: + - "B2" + pdd_duration: "1787 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "7" + calling_from: "local port: 5/3" + calling_to: "remote voip: 0 (UDP)" + call_id: "994 (8093)" + call_status: "active" + calling_number: "3232472281" + called_number: "3232177260" + setup_time: "12/01/23 10h12m41s" + connexion_time: "12/01/23 10h12m53s" + b_channels: + - "B2" + pdd_duration: "1275 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "8" + calling_from: "local port: 5/1" + calling_to: "remote voip: 0 (UDP)" + call_id: "992 (8091)" + call_status: "active" + calling_number: "3232475463" + called_number: "3292202401" + setup_time: "12/01/23 10h12m37s" + connexion_time: "12/01/23 10h12m38s" + b_channels: + - "B5" + pdd_duration: "1067 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "9" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "991 (8090)" + call_status: "active" + calling_number: "32038511" + called_number: "32472111" + setup_time: "12/01/23 10h12m33s" + connexion_time: "12/01/23 10h12m36s" + b_channels: + - "B7" + pdd_duration: "100 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "10" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "990 (8089)" + call_status: "active" + calling_number: "473440651" + called_number: "32472111" + setup_time: "12/01/23 10h12m24s" + connexion_time: "12/01/23 10h12m26s" + b_channels: + - "B4" + pdd_duration: "90 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "11" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "988 (8087)" + call_status: "active" + calling_number: "32038511" + called_number: "32474650" + setup_time: "12/01/23 10h12m24s" + connexion_time: "12/01/23 10h12m27s" + b_channels: + - "B5" + pdd_duration: "86 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "12" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "987 (8086)" + call_status: "active" + calling_number: "465869399" + called_number: "32472111" + setup_time: "12/01/23 10h12m06s" + connexion_time: "12/01/23 10h12m08s" + b_channels: + - "B2" + pdd_duration: "86 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "13" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "986 (8085)" + call_status: "active" + calling_number: "14828220" + called_number: "32472111" + setup_time: "12/01/23 10h12m01s" + connexion_time: "12/01/23 10h12m04s" + b_channels: + - "B14" + pdd_duration: "41 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "14" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "985 (8084)" + call_status: "active" + calling_number: "485930250" + called_number: "32472111" + setup_time: "12/01/23 10h12m01s" + connexion_time: "12/01/23 10h12m02s" + b_channels: + - "B3" + pdd_duration: "55 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "15" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "984 (8083)" + call_status: "active" + calling_number: "486372736" + called_number: "32472706" + setup_time: "12/01/23 10h11m58s" + connexion_time: "12/01/23 10h12m01s" + b_channels: + - "B3" + pdd_duration: "91 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "16" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "982 (8081)" + call_status: "active" + calling_number: "52212121" + called_number: "32472705" + setup_time: "12/01/23 10h11m38s" + connexion_time: "12/01/23 10h11m41s" + b_channels: + - "B24" + pdd_duration: "99 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "17" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "981 (8080)" + call_status: "active" + calling_number: "479992249" + called_number: "32472868" + setup_time: "12/01/23 10h11m37s" + connexion_time: "12/01/23 10h11m45s" + b_channels: + - "B1" + pdd_duration: "87 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "18" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "979 (8078)" + call_status: "active" + calling_number: "13461955" + called_number: "32473116" + setup_time: "12/01/23 10h11m14s" + connexion_time: "12/01/23 10h11m33s" + b_channels: + - "B13" + pdd_duration: "88 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "19" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "976 (8075)" + call_status: "active" + calling_number: "479583380" + called_number: "32429260" + setup_time: "12/01/23 10h11m10s" + connexion_time: "12/01/23 10h11m12s" + b_channels: + - "B14" + pdd_duration: "101 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "20" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "975 (8074)" + call_status: "active" + calling_number: "33122838" + called_number: "32472243" + setup_time: "12/01/23 10h11m10s" + connexion_time: "12/01/23 10h11m13s" + b_channels: + - "B11" + pdd_duration: "114 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "21" + calling_from: "local port: 5/1" + calling_to: "remote voip: 0 (UDP)" + call_id: "974 (8073)" + call_status: "active" + calling_number: "3232472761" + called_number: "3234912779" + setup_time: "12/01/23 10h11m09s" + connexion_time: "12/01/23 10h11m10s" + b_channels: + - "B7" + pdd_duration: "1389 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "22" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "973 (8072)" + call_status: "active" + calling_number: "32175452" + called_number: "32472243" + setup_time: "12/01/23 10h11m08s" + connexion_time: "12/01/23 10h11m10s" + b_channels: + - "B22" + pdd_duration: "88 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "23" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "971 (8070)" + call_status: "active" + calling_number: "55301616" + called_number: "32472262" + setup_time: "12/01/23 10h11m03s" + connexion_time: "12/01/23 10h11m07s" + b_channels: + - "B10" + pdd_duration: "109 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "24" + calling_from: "local port: 5/3" + calling_to: "remote voip: 0 (UDP)" + call_id: "970 (8069)" + call_status: "active" + calling_number: "3232473510" + called_number: "3289565826" + setup_time: "12/01/23 10h11m03s" + connexion_time: "12/01/23 10h11m04s" + b_channels: + - "B21" + pdd_duration: "1305 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "25" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "967 (8066)" + call_status: "active" + calling_number: "51816176" + called_number: "32472111" + setup_time: "12/01/23 10h10m50s" + connexion_time: "12/01/23 10h10m52s" + b_channels: + - "B8" + pdd_duration: "89 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "26" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "965 (8064)" + call_status: "active" + calling_number: "14564412" + called_number: "32472703" + setup_time: "12/01/23 10h10m44s" + connexion_time: "12/01/23 10h10m46s" + b_channels: + - "B10" + pdd_duration: "86 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "27" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "964 (8063)" + call_status: "active" + calling_number: "15220539" + called_number: "32473171" + setup_time: "12/01/23 10h10m42s" + connexion_time: "12/01/23 10h10m45s" + b_channels: + - "B4" + pdd_duration: "87 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "28" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "963 (8062)" + call_status: "active" + calling_number: "3238719004" + called_number: "3227239004" + setup_time: "12/01/23 10h10m33s" + connexion_time: "12/01/23 10h10m34s" + b_channels: + - "B3" + pdd_duration: "768 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "29" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "962 (8061)" + call_status: "active" + calling_number: "496550200" + called_number: "38719004" + setup_time: "12/01/23 10h10m33s" + connexion_time: "12/01/23 10h10m34s" + b_channels: + - "B10" + pdd_duration: "166 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "30" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "960 (8059)" + call_status: "active" + calling_number: "" + called_number: "" + setup_time: "12/01/23 10h10m28s" + connexion_time: "12/01/23 10h10m40s" + b_channels: + - "B1" + pdd_duration: "86 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "31" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "959 (8058)" + call_status: "active" + calling_number: "50506058" + called_number: "32472924" + setup_time: "12/01/23 10h10m20s" + connexion_time: "12/01/23 10h10m26s" + b_channels: + - "B9" + pdd_duration: "84 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "32" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "958 (8057)" + call_status: "active" + calling_number: "498165779" + called_number: "32472111" + setup_time: "12/01/23 10h10m13s" + connexion_time: "12/01/23 10h10m15s" + b_channels: + - "B8" + pdd_duration: "87 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "33" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "956 (8055)" + call_status: "active" + calling_number: "92512180" + called_number: "32472111" + setup_time: "12/01/23 10h09m50s" + connexion_time: "12/01/23 10h09m53s" + b_channels: + - "B1" + pdd_duration: "89 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "34" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "941 (8040)" + call_status: "active" + calling_number: "92352220" + called_number: "32475500" + setup_time: "12/01/23 10h08m39s" + connexion_time: "12/01/23 10h08m40s" + b_channels: + - "B17" + pdd_duration: "93 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "35" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "938 (8037)" + call_status: "active" + calling_number: "34402102" + called_number: "32475562" + setup_time: "12/01/23 10h08m34s" + connexion_time: "12/01/23 10h08m37s" + b_channels: + - "B15" + pdd_duration: "89 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "36" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "924 (8023)" + call_status: "active" + calling_number: "474478482" + called_number: "32475500" + setup_time: "12/01/23 10h07m39s" + connexion_time: "12/01/23 10h07m42s" + b_channels: + - "B12" + pdd_duration: "87 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "37" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "922 (8021)" + call_status: "active" + calling_number: "37705742" + called_number: "32472111" + setup_time: "12/01/23 10h07m35s" + connexion_time: "12/01/23 10h07m38s" + b_channels: + - "B14" + pdd_duration: "85 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "38" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "918 (8017)" + call_status: "active" + calling_number: "488266068" + called_number: "32472334" + setup_time: "12/01/23 10h07m28s" + connexion_time: "12/01/23 10h07m43s" + b_channels: + - "B9" + pdd_duration: "87 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "39" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "916 (8015)" + call_status: "active" + calling_number: "495583389" + called_number: "32475500" + setup_time: "12/01/23 10h07m22s" + connexion_time: "12/01/23 10h07m24s" + b_channels: + - "B6" + pdd_duration: "85 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "40" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "914 (8013)" + call_status: "active" + calling_number: "50390141" + called_number: "32472111" + setup_time: "12/01/23 10h07m08s" + connexion_time: "12/01/23 10h07m12s" + b_channels: + - "B7" + pdd_duration: "93 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "41" + calling_from: "local port: 5/3" + calling_to: "remote voip: 0 (UDP)" + call_id: "332 (1499)" + call_status: "active" + calling_number: "3238719004" + called_number: "3227239004" + setup_time: "04/01/23 14h42m17s" + connexion_time: "04/01/23 14h42m17s" + b_channels: + - "B12" + pdd_duration: "791 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.57" + rtp_src_port: "17648" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "51728" + rtp_play_time: "19h30m54s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1108" + rtp_pkts_tx: "33752688" + rtp_pkts_lost_rx: "2" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.39" + rtp_erl_db: "50" + rtp_acom_db: "73" + - call_idx: "42" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "331 (1498)" + call_status: "active" + calling_number: "489903858" + called_number: "38719004" + setup_time: "04/01/23 14h42m17s" + connexion_time: "04/01/23 14h42m18s" + b_channels: + - "B6" + pdd_duration: "167 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.57" + rtp_src_port: "17650" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "52852" + rtp_play_time: "19h30m53s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1186" + rtp_pkts_tx: "33752673" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "43" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "284 (1451)" + call_status: "active" + calling_number: "3238719004" + called_number: "3227239004" + setup_time: "04/01/23 14h35m52s" + connexion_time: "04/01/23 14h35m53s" + b_channels: + - "B5" + pdd_duration: "875 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.57" + rtp_src_port: "17552" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "52942" + rtp_play_time: "19h37m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "20024" + rtp_pkts_tx: "33771922" + rtp_pkts_lost_rx: "313" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.21" + rtp_mos_lq: "4.28" + rtp_erl_db: "18" + rtp_acom_db: "42" + - call_idx: "44" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/3" + call_id: "283 (1450)" + call_status: "active" + calling_number: "499353710" + called_number: "38719004" + setup_time: "04/01/23 14h35m52s" + connexion_time: "04/01/23 14h35m53s" + b_channels: + - "B4" + pdd_duration: "142 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.57" + rtp_src_port: "17556" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "51594" + rtp_play_time: "19h37m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "20422" + rtp_pkts_tx: "33771907" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "37" + rtp_acom_db: "64" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml index e77add67ed..c34bddfb24 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml @@ -1,2 +1,3295 @@ --- -parsed_sample: [] +parsed_sample: + - call_idx: "1" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "151 (390)" + calling_number: "490446941" + called_number: "55335275" + setup_time: "11/01/23 21h52m53s" + connexion_time: "11/01/23 21h53m07s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:31" + pdd_duration: "283 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23394" + rtp_play_time: "00h02m31s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7544" + rtp_pkts_tx: "7531" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "14" + rtp_acom_db: "43" + - call_idx: "2" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "150 (389)" + calling_number: "490446941" + called_number: "55335275" + setup_time: "11/01/23 21h27m06s" + connexion_time: "11/01/23 21h27m33s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:36" + pdd_duration: "270 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23492" + rtp_play_time: "00h01m36s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4814" + rtp_pkts_tx: "4807" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "13" + rtp_acom_db: "40" + - call_idx: "3" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "149 (388)" + calling_number: "488313757" + called_number: "55337751" + setup_time: "11/01/23 20h25m09s" + connexion_time: "11/01/23 20h25m09s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "102 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16448" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23440" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "244" + rtp_pkts_tx: "245" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "4" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "148 (387)" + calling_number: "488313757" + called_number: "55337751" + setup_time: "11/01/23 20h24m56s" + connexion_time: "11/01/23 20h24m56s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:06" + pdd_duration: "155 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16446" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23418" + rtp_play_time: "00h00m06s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "272" + rtp_pkts_tx: "273" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "5" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "147 (386)" + calling_number: "3255335278" + called_number: "3250703433" + setup_time: "11/01/23 16h33m08s" + connexion_time: "11/01/23 16h33m09s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:11" + pdd_duration: "847 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16444" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23192" + rtp_play_time: "00h02m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6529" + rtp_pkts_tx: "6529" + rtp_pkts_lost_rx: "13" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "40" + rtp_acom_db: "66" + - call_idx: "6" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "144 (383)" + calling_number: "3255335278" + called_number: "3250703433" + setup_time: "11/01/23 16h15m11s" + connexion_time: "11/01/23 16h15m12s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:13:29" + pdd_duration: "708 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16438" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23156" + rtp_play_time: "00h13m29s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "40459" + rtp_pkts_tx: "40459" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "37" + rtp_acom_db: "64" + - call_idx: "7" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "146 (385)" + calling_number: "32491169975" + called_number: "32490661143" + setup_time: "11/01/23 16h22m35s" + connexion_time: "11/01/23 16h22m39s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:48" + pdd_duration: "599 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16440" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23196" + rtp_play_time: "00h02m48s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "8567" + rtp_pkts_tx: "8567" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "73" + - call_idx: "8" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "145 (384)" + calling_number: "491169975" + called_number: "55337505" + setup_time: "11/01/23 16h22m35s" + connexion_time: "11/01/23 16h22m39s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:48" + pdd_duration: "852 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16442" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23180" + rtp_play_time: "00h02m48s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "8390" + rtp_pkts_tx: "8382" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "32" + rtp_acom_db: "58" + - call_idx: "9" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "143 (382)" + calling_number: "492819960" + called_number: "55335206" + setup_time: "11/01/23 16h06m05s" + connexion_time: "11/01/23 16h06m08s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "377 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16436" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23128" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "943" + rtp_pkts_tx: "929" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "42" + rtp_acom_db: "67" + - call_idx: "10" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "142 (381)" + calling_number: "3255335346" + called_number: "32490661137" + setup_time: "11/01/23 16h04m09s" + connexion_time: "11/01/23 16h04m17s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:10" + pdd_duration: "2088 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16434" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23122" + rtp_play_time: "00h00m10s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "801" + rtp_pkts_tx: "801" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "51" + - call_idx: "11" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "141 (380)" + calling_number: "3255335241" + called_number: "32498178799" + setup_time: "11/01/23 15h59m31s" + connexion_time: "11/01/23 15h59m55s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "1422 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16432" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23074" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1182" + rtp_pkts_tx: "1199" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "66" + rtp_acom_db: "90" + - call_idx: "12" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "140 (379)" + calling_number: "3255335278" + called_number: "32492819960" + setup_time: "11/01/23 15h42m36s" + connexion_time: "11/01/23 15h43m00s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:04" + pdd_duration: "967 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16430" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23008" + rtp_play_time: "00h00m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1318" + rtp_pkts_tx: "1334" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "67" + rtp_acom_db: "91" + - call_idx: "13" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "139 (378)" + calling_number: "3255335278" + called_number: "32492819960" + setup_time: "11/01/23 15h41m50s" + connexion_time: "11/01/23 15h42m14s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "1041 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16428" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23006" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1379" + rtp_pkts_tx: "1391" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "67" + rtp_acom_db: "91" + - call_idx: "14" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "138 (377)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 15h10m36s" + connexion_time: "11/01/23 15h10m48s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:17" + pdd_duration: "1464 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16426" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22878" + rtp_play_time: "00h00m17s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1356" + rtp_pkts_tx: "1373" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "54" + - call_idx: "15" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "137 (376)" + calling_number: "3255337739" + called_number: "32491169927" + setup_time: "11/01/23 15h07m19s" + connexion_time: "11/01/23 15h07m43s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:07" + pdd_duration: "1515 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16424" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22890" + rtp_play_time: "00h00m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1458" + rtp_pkts_tx: "1462" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "41" + rtp_acom_db: "71" + - call_idx: "16" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "136 (375)" + calling_number: "490661133" + called_number: "55335206" + setup_time: "11/01/23 15h02m05s" + connexion_time: "11/01/23 15h02m07s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:04" + pdd_duration: "361 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16422" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22866" + rtp_play_time: "00h01m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3199" + rtp_pkts_tx: "3187" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "38" + rtp_acom_db: "65" + - call_idx: "17" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "135 (374)" + calling_number: "495914834" + called_number: "55335241" + setup_time: "11/01/23 14h58m35s" + connexion_time: "11/01/23 14h58m38s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:05" + pdd_duration: "321 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16420" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22838" + rtp_play_time: "00h02m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6214" + rtp_pkts_tx: "6200" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "18" + rtp_acom_db: "42" + - call_idx: "18" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "134 (373)" + calling_number: "3255337758" + called_number: "32490661150" + setup_time: "11/01/23 14h54m36s" + connexion_time: "11/01/23 14h54m49s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:51" + pdd_duration: "3148 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16418" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22826" + rtp_play_time: "00h01m51s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6031" + rtp_pkts_tx: "6066" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.38" + rtp_mos_lq: "4.39" + rtp_erl_db: "40" + rtp_acom_db: "59" + - call_idx: "19" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "133 (372)" + calling_number: "32499172658" + called_number: "32490446941" + setup_time: "11/01/23 14h53m42s" + connexion_time: "11/01/23 14h54m06s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "1136 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16414" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22808" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1758" + rtp_pkts_tx: "1760" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "66" + - call_idx: "20" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "132 (371)" + calling_number: "499172658" + called_number: "55335361" + setup_time: "11/01/23 14h53m42s" + connexion_time: "11/01/23 14h54m06s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "1393 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16416" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22802" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "598" + rtp_pkts_tx: "602" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "20" + rtp_acom_db: "75" + - call_idx: "21" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "131 (370)" + calling_number: "3255335346" + called_number: "32490661134" + setup_time: "11/01/23 14h41m09s" + connexion_time: "11/01/23 14h41m21s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:30" + pdd_duration: "2115 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16412" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22776" + rtp_play_time: "00h00m30s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2003" + rtp_pkts_tx: "2004" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "53" + - call_idx: "22" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "130 (369)" + calling_number: "32490661150" + called_number: "32479844827" + setup_time: "11/01/23 14h12m45s" + connexion_time: "11/01/23 14h12m46s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:23" + pdd_duration: "1109 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16410" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22630" + rtp_play_time: "00h00m23s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1140" + rtp_pkts_tx: "1141" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "2" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "48" + rtp_acom_db: "77" + - call_idx: "23" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "129 (368)" + calling_number: "490661150" + called_number: "55337758" + setup_time: "11/01/23 14h12m45s" + connexion_time: "11/01/23 14h12m46s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:22" + pdd_duration: "1401 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "24" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "128 (367)" + calling_number: "495504138" + called_number: "55335211" + setup_time: "11/01/23 14h07m36s" + connexion_time: "11/01/23 14h07m43s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:20" + pdd_duration: "263 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16408" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22634" + rtp_play_time: "00h02m20s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7005" + rtp_pkts_tx: "7003" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "44" + rtp_acom_db: "68" + - call_idx: "25" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "127 (366)" + calling_number: "475453097" + called_number: "55335278" + setup_time: "11/01/23 13h31m44s" + connexion_time: "11/01/23 13h31m51s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:05:38" + pdd_duration: "254 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16406" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22452" + rtp_play_time: "00h05m38s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "16865" + rtp_pkts_tx: "16867" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "46" + rtp_acom_db: "73" + - call_idx: "26" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "126 (365)" + calling_number: "3255337741" + called_number: "32492819960" + setup_time: "11/01/23 13h18m28s" + connexion_time: "11/01/23 13h18m38s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:33" + pdd_duration: "899 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16404" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22392" + rtp_play_time: "00h00m33s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2118" + rtp_pkts_tx: "2136" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "20" + rtp_acom_db: "52" + - call_idx: "27" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "125 (364)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 13h16m15s" + connexion_time: "11/01/23 13h16m27s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:14" + pdd_duration: "1409 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16402" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22348" + rtp_play_time: "00h00m15s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1217" + rtp_pkts_tx: "1234" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "47" + rtp_acom_db: "78" + - call_idx: "28" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "123 (362)" + calling_number: "32039693" + called_number: "55337755" + setup_time: "11/01/23 12h36m17s" + connexion_time: "11/01/23 12h36m22s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:48" + pdd_duration: "1241 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16400" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22232" + rtp_play_time: "00h00m48s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2365" + rtp_pkts_tx: "2362" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "30" + rtp_acom_db: "54" + - call_idx: "29" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "124 (363)" + calling_number: "3232039693" + called_number: "32495914860" + setup_time: "11/01/23 12h36m17s" + connexion_time: "11/01/23 12h36m22s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:48" + pdd_duration: "1020 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16398" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22160" + rtp_play_time: "00h00m48s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2574" + rtp_pkts_tx: "2574" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "30" + rtp_acom_db: "57" + - call_idx: "30" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "122 (361)" + calling_number: "3255335206" + called_number: "32492136378" + setup_time: "11/01/23 12h11m38s" + connexion_time: "11/01/23 12h11m52s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "3277 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16396" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22132" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1107" + rtp_pkts_tx: "1112" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "39" + rtp_acom_db: "62" + - call_idx: "31" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "121 (360)" + calling_number: "3255335206" + called_number: "32495914834" + setup_time: "11/01/23 12h10m24s" + connexion_time: "11/01/23 12h10m27s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:27" + pdd_duration: "1219 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16394" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22136" + rtp_play_time: "00h00m27s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1444" + rtp_pkts_tx: "1444" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "37" + rtp_acom_db: "63" + - call_idx: "32" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "120 (359)" + calling_number: "3255335206" + called_number: "32490661154" + setup_time: "11/01/23 12h09m51s" + connexion_time: "11/01/23 12h10m18s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "3375 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16392" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22142" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1287" + rtp_pkts_tx: "1290" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "60" + rtp_acom_db: "89" + - call_idx: "33" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "119 (358)" + calling_number: "3255335241" + called_number: "32491169975" + setup_time: "11/01/23 12h02m16s" + connexion_time: "11/01/23 12h02m24s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "1208 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16390" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22090" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1323" + rtp_pkts_tx: "1323" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "21" + rtp_acom_db: "41" + - call_idx: "34" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "118 (357)" + calling_number: "3255337741" + called_number: "32470635841" + setup_time: "11/01/23 11h48m06s" + connexion_time: "11/01/23 11h48m16s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:55" + pdd_duration: "1406 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16388" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21946" + rtp_play_time: "00h01m55s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6164" + rtp_pkts_tx: "6170" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "47" + - call_idx: "35" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "117 (356)" + calling_number: "470635841" + called_number: "55335211" + setup_time: "11/01/23 11h46m22s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "258 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "36" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "116 (355)" + calling_number: "495914834" + called_number: "55335395" + setup_time: "11/01/23 11h41m18s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "343 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "37" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "115 (354)" + calling_number: "495914834" + called_number: "55335395" + setup_time: "11/01/23 11h41m15s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "38" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "114 (353)" + calling_number: "495914834" + called_number: "55335395" + setup_time: "11/01/23 11h38m56s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "302 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "39" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "113 (352)" + calling_number: "495914834" + called_number: "55335395" + setup_time: "11/01/23 11h36m21s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "356 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "40" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "111 (350)" + calling_number: "476215202" + called_number: "55335234" + setup_time: "11/01/23 11h30m51s" + connexion_time: "11/01/23 11h31m03s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:13" + pdd_duration: "3942 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16386" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21918" + rtp_play_time: "00h00m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "646" + rtp_pkts_tx: "644" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "52" + - call_idx: "41" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "112 (351)" + calling_number: "32476215202" + called_number: "32490661131" + setup_time: "11/01/23 11h30m51s" + connexion_time: "11/01/23 11h31m03s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:13" + pdd_duration: "3646 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16384" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21936" + rtp_play_time: "00h00m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1060" + rtp_pkts_tx: "1065" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "41" + rtp_acom_db: "65" + - call_idx: "42" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "110 (349)" + calling_number: "490661150" + called_number: "55335241" + setup_time: "11/01/23 11h23m17s" + connexion_time: "11/01/23 11h23m44s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "301 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16454" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21848" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "76" + rtp_pkts_tx: "62" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "27" + rtp_acom_db: "82" + - call_idx: "43" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "109 (348)" + calling_number: "55218750" + called_number: "55335241" + setup_time: "11/01/23 11h21m13s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "355 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "44" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "108 (347)" + calling_number: "3255335334" + called_number: "32475638295" + setup_time: "11/01/23 11h17m51s" + connexion_time: "11/01/23 11h17m57s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:24" + pdd_duration: "814 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21814" + rtp_play_time: "00h01m24s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4463" + rtp_pkts_tx: "4464" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "20" + rtp_acom_db: "53" + - call_idx: "45" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "107 (346)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 11h16m33s" + connexion_time: "11/01/23 11h16m46s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:11" + pdd_duration: "900 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21764" + rtp_play_time: "00h00m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1159" + rtp_pkts_tx: "1177" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "40" + rtp_acom_db: "64" + - call_idx: "46" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "106 (345)" + calling_number: "3255335278" + called_number: "32492819960" + setup_time: "11/01/23 11h13m41s" + connexion_time: "11/01/23 11h13m51s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:58" + pdd_duration: "1332 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16448" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21776" + rtp_play_time: "00h01m58s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6322" + rtp_pkts_tx: "6335" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "57" + - call_idx: "47" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "104 (343)" + calling_number: "3255335241" + called_number: "32491169975" + setup_time: "11/01/23 11h09m16s" + connexion_time: "11/01/23 11h09m21s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:01" + pdd_duration: "1464 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16444" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21738" + rtp_play_time: "00h03m01s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9207" + rtp_pkts_tx: "9207" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "62" + - call_idx: "48" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "105 (344)" + calling_number: "3255335278" + called_number: "32474810035" + setup_time: "11/01/23 11h10m19s" + connexion_time: "11/01/23 11h10m26s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:38" + pdd_duration: "1209 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16446" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21724" + rtp_play_time: "00h01m38s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5201" + rtp_pkts_tx: "5202" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "31" + rtp_acom_db: "61" + - call_idx: "49" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "103 (342)" + calling_number: "55218750" + called_number: "55335241" + setup_time: "11/01/23 11h05m39s" + connexion_time: "11/01/23 11h06m06s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "350 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16442" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21744" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "102" + rtp_pkts_tx: "106" + rtp_pkts_lost_rx: "1" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "28" + rtp_acom_db: "83" + - call_idx: "50" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "102 (341)" + calling_number: "3255335278" + called_number: "32479790455" + setup_time: "11/01/23 11h04m18s" + connexion_time: "11/01/23 11h04m30s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:04" + pdd_duration: "1099 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16440" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21706" + rtp_play_time: "00h00m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "732" + rtp_pkts_tx: "761" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "53" + - call_idx: "51" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "101 (340)" + calling_number: "3255335241" + called_number: "3255218750" + setup_time: "11/01/23 11h03m15s" + connexion_time: "11/01/23 11h03m15s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:43" + pdd_duration: "554 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16438" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21686" + rtp_play_time: "00h00m43s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2131" + rtp_pkts_tx: "2148" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "2" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "48" + rtp_acom_db: "71" + - call_idx: "52" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "100 (339)" + calling_number: "3255335241" + called_number: "32495914834" + setup_time: "11/01/23 11h01m29s" + connexion_time: "11/01/23 11h01m33s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:24" + pdd_duration: "1491 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16436" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21718" + rtp_play_time: "00h01m24s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4315" + rtp_pkts_tx: "4315" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "32" + rtp_acom_db: "64" + - call_idx: "53" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "98 (337)" + calling_number: "3255335241" + called_number: "32486141517" + setup_time: "11/01/23 10h59m16s" + connexion_time: "11/01/23 10h59m30s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:53" + pdd_duration: "1433 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16432" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21672" + rtp_play_time: "00h01m53s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6280" + rtp_pkts_tx: "6281" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "43" + rtp_acom_db: "77" + - call_idx: "54" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "99 (338)" + calling_number: "3255335275" + called_number: "32495914834" + setup_time: "11/01/23 11h00m11s" + connexion_time: "11/01/23 11h00m15s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:22" + pdd_duration: "998 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16434" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21662" + rtp_play_time: "00h00m22s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1256" + rtp_pkts_tx: "1256" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "14" + rtp_acom_db: "53" + - call_idx: "55" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "97 (336)" + calling_number: "3255335241" + called_number: "3255235858" + setup_time: "11/01/23 10h58m23s" + connexion_time: "11/01/23 10h58m25s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:41" + pdd_duration: "1643 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16430" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21684" + rtp_play_time: "00h00m41s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2053" + rtp_pkts_tx: "2080" + rtp_pkts_lost_rx: "7" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.32" + rtp_mos_lq: "4.38" + rtp_erl_db: "45" + rtp_acom_db: "76" + - call_idx: "56" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "96 (335)" + calling_number: "3255335241" + called_number: "32495914834" + setup_time: "11/01/23 10h57m17s" + connexion_time: "11/01/23 10h57m21s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:40" + pdd_duration: "1310 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16428" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21618" + rtp_play_time: "00h00m40s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2136" + rtp_pkts_tx: "2136" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "54" + rtp_acom_db: "88" + - call_idx: "57" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "95 (334)" + calling_number: "3255335241" + called_number: "3256303372" + setup_time: "11/01/23 10h54m14s" + connexion_time: "11/01/23 10h54m16s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:57" + pdd_duration: "1601 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16426" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21642" + rtp_play_time: "00h02m57s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "8815" + rtp_pkts_tx: "8872" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "14" + rtp_acom_db: "40" + - call_idx: "58" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "93 (332)" + calling_number: "3255335334" + called_number: "32475638295" + setup_time: "11/01/23 10h52m58s" + connexion_time: "11/01/23 10h53m22s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:03" + pdd_duration: "1153 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16422" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21632" + rtp_play_time: "00h03m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "10275" + rtp_pkts_tx: "10276" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "29" + rtp_acom_db: "54" + - call_idx: "59" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "94 (333)" + calling_number: "3255337755" + called_number: "32474718109" + setup_time: "11/01/23 10h53m32s" + connexion_time: "11/01/23 10h53m36s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:06" + pdd_duration: "1327 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16424" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21612" + rtp_play_time: "00h01m06s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3428" + rtp_pkts_tx: "3428" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "33" + rtp_acom_db: "59" + - call_idx: "60" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "92 (331)" + calling_number: "3255335241" + called_number: "3256627111" + setup_time: "11/01/23 10h52m03s" + connexion_time: "11/01/23 10h52m05s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:57" + pdd_duration: "649 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16420" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21634" + rtp_play_time: "00h01m57s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5846" + rtp_pkts_tx: "5893" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "2.87" + rtp_mos_lq: "4.39" + rtp_erl_db: "49" + rtp_acom_db: "76" + - call_idx: "61" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "91 (330)" + calling_number: "3255335241" + called_number: "3255218750" + setup_time: "11/01/23 10h47m31s" + connexion_time: "11/01/23 10h47m31s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:04:05" + pdd_duration: "566 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16418" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21590" + rtp_play_time: "00h04m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "12176" + rtp_pkts_tx: "12215" + rtp_pkts_lost_rx: "10786" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "1.00" + rtp_mos_lq: "1.00" + rtp_erl_db: "37" + rtp_acom_db: "65" + - call_idx: "62" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "90 (329)" + calling_number: "3255335346" + called_number: "32490661135" + setup_time: "11/01/23 10h47m26s" + connexion_time: "11/01/23 10h47m36s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:37" + pdd_duration: "1731 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16416" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21586" + rtp_play_time: "00h00m37s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2283" + rtp_pkts_tx: "2283" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "31" + rtp_acom_db: "55" + - call_idx: "63" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "89 (328)" + calling_number: "3255335346" + called_number: "32490661135" + setup_time: "11/01/23 10h44m55s" + connexion_time: "11/01/23 10h44m58s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "2197 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16414" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21574" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "166" + rtp_pkts_tx: "168" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "64" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "88 (327)" + calling_number: "3255337741" + called_number: "31228355612" + setup_time: "11/01/23 10h39m59s" + connexion_time: "11/01/23 10h40m06s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:09" + pdd_duration: "1017 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16412" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21570" + rtp_play_time: "00h01m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3717" + rtp_pkts_tx: "3723" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.29" + rtp_mos_lq: "4.39" + rtp_erl_db: "35" + rtp_acom_db: "61" + - call_idx: "65" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "87 (326)" + calling_number: "32491169975" + called_number: "32490661134" + setup_time: "11/01/23 10h37m30s" + connexion_time: "11/01/23 10h37m41s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:14" + pdd_duration: "2045 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16408" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21544" + rtp_play_time: "00h03m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "10140" + rtp_pkts_tx: "10141" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "18" + rtp_acom_db: "44" + - call_idx: "66" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "86 (325)" + calling_number: "491169975" + called_number: "55335341" + setup_time: "11/01/23 10h37m30s" + connexion_time: "11/01/23 10h37m41s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:14" + pdd_duration: "2247 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16410" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21532" + rtp_play_time: "00h03m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9688" + rtp_pkts_tx: "9681" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "20" + rtp_acom_db: "48" + - call_idx: "67" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "84 (323)" + calling_number: "3255218750" + called_number: "32495914836" + setup_time: "11/01/23 10h32m20s" + connexion_time: "11/01/23 10h32m35s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:18" + pdd_duration: "1840 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16402" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21520" + rtp_play_time: "00h00m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1560" + rtp_pkts_tx: "1561" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "51" + rtp_acom_db: "75" + - call_idx: "68" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "83 (322)" + calling_number: "55218750" + called_number: "55335241" + setup_time: "11/01/23 10h32m20s" + connexion_time: "11/01/23 10h32m35s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:18" + pdd_duration: "2104 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16406" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21528" + rtp_play_time: "00h00m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "884" + rtp_pkts_tx: "896" + rtp_pkts_lost_rx: "1" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "42" + rtp_acom_db: "73" + - call_idx: "69" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "85 (324)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 10h32m23s" + connexion_time: "11/01/23 10h32m31s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:10" + pdd_duration: "931 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16404" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21542" + rtp_play_time: "00h00m10s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "817" + rtp_pkts_tx: "835" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "36" + rtp_acom_db: "64" + - call_idx: "70" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "82 (321)" + calling_number: "3255335334" + called_number: "32490661126" + setup_time: "11/01/23 10h31m03s" + connexion_time: "11/01/23 10h31m16s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:07" + pdd_duration: "3170 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16400" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21498" + rtp_play_time: "00h00m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "811" + rtp_pkts_tx: "847" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "34" + rtp_acom_db: "59" + - call_idx: "71" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "81 (320)" + calling_number: "3255335346" + called_number: "32495914836" + setup_time: "11/01/23 10h23m33s" + connexion_time: "11/01/23 10h23m46s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:14" + pdd_duration: "678 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16398" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21460" + rtp_play_time: "00h02m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7352" + rtp_pkts_tx: "7352" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "29" + rtp_acom_db: "62" + - call_idx: "72" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "80 (319)" + calling_number: "32460973920" + called_number: "32495914836" + setup_time: "11/01/23 10h23m24s" + connexion_time: "11/01/23 10h23m31s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:13" + pdd_duration: "1492 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16394" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21454" + rtp_play_time: "00h00m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "936" + rtp_pkts_tx: "937" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "29" + rtp_acom_db: "54" + - call_idx: "73" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "79 (318)" + calling_number: "460973920" + called_number: "55335241" + setup_time: "11/01/23 10h23m24s" + connexion_time: "11/01/23 10h23m31s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:13" + pdd_duration: "1727 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16396" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21452" + rtp_play_time: "00h00m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "652" + rtp_pkts_tx: "657" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "55" + - call_idx: "74" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "78 (317)" + calling_number: "3255335346" + called_number: "32490661124" + setup_time: "11/01/23 10h19m03s" + connexion_time: "11/01/23 10h19m19s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:22" + pdd_duration: "3237 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16392" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21438" + rtp_play_time: "00h01m22s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4726" + rtp_pkts_tx: "4729" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "31" + rtp_acom_db: "56" + - call_idx: "75" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "77 (316)" + calling_number: "3255335346" + called_number: "32474718109" + setup_time: "11/01/23 10h18m16s" + connexion_time: "11/01/23 10h18m20s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:39" + pdd_duration: "919 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16390" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21450" + rtp_play_time: "00h00m39s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2137" + rtp_pkts_tx: "2137" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "27" + rtp_acom_db: "51" + - call_idx: "76" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "76 (315)" + calling_number: "3255335346" + called_number: "32490661135" + setup_time: "11/01/23 10h16m51s" + connexion_time: "11/01/23 10h17m05s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:11" + pdd_duration: "2327 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16388" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21430" + rtp_play_time: "00h00m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1166" + rtp_pkts_tx: "1166" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "53" + - call_idx: "77" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "75 (314)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 10h07m53s" + connexion_time: "11/01/23 10h08m17s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "1453 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16386" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21352" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1224" + rtp_pkts_tx: "1239" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "66" + rtp_acom_db: "90" + - call_idx: "78" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "73 (312)" + calling_number: "491169975" + called_number: "55335354" + setup_time: "11/01/23 10h05m41s" + connexion_time: "11/01/23 10h05m55s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:35" + pdd_duration: "2467 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16384" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21354" + rtp_play_time: "00h00m35s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1746" + rtp_pkts_tx: "1738" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "17" + rtp_acom_db: "44" + - call_idx: "79" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "74 (313)" + calling_number: "32491169975" + called_number: "32490661135" + setup_time: "11/01/23 10h05m41s" + connexion_time: "11/01/23 10h05m54s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:35" + pdd_duration: "2259 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16454" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21356" + rtp_play_time: "00h00m35s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2294" + rtp_pkts_tx: "2295" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "17" + rtp_acom_db: "60" + - call_idx: "80" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "72 (311)" + calling_number: "3255335346" + called_number: "32495914834" + setup_time: "11/01/23 09h58m30s" + connexion_time: "11/01/23 09h58m53s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:04" + pdd_duration: "961 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21314" + rtp_play_time: "00h00m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1305" + rtp_pkts_tx: "1307" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "60" + rtp_acom_db: "90" + - call_idx: "81" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "71 (310)" + calling_number: "3255335346" + called_number: "32495914834" + setup_time: "11/01/23 09h57m58s" + connexion_time: "11/01/23 09h58m22s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "1369 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21324" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1261" + rtp_pkts_tx: "1263" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "60" + rtp_acom_db: "90" + - call_idx: "82" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "70 (309)" + calling_number: "3255337741" + called_number: "3256232940" + setup_time: "11/01/23 09h49m37s" + connexion_time: "11/01/23 09h49m38s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:02" + pdd_duration: "1118 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16448" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21266" + rtp_play_time: "00h01m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "622" + rtp_pkts_tx: "3093" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "3998976" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "33" + rtp_acom_db: "58" + - call_idx: "83" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "69 (308)" + calling_number: "3255337741" + called_number: "3256232940" + setup_time: "11/01/23 09h49m34s" + connexion_time: "11/01/23 09h49m36s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:04" + pdd_duration: "1325 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16446" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21262" + rtp_play_time: "00h01m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "628" + rtp_pkts_tx: "3220" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "2684106" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "84" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "68 (307)" + calling_number: "3255337741" + called_number: "3256232940" + setup_time: "11/01/23 09h48m47s" + connexion_time: "11/01/23 09h48m48s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:34" + pdd_duration: "1098 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16444" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21252" + rtp_play_time: "00h00m34s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "619" + rtp_pkts_tx: "1707" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "1121577" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "34" + rtp_acom_db: "61" + - call_idx: "85" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "67 (306)" + calling_number: "495914834" + called_number: "55335241" + setup_time: "11/01/23 09h48m07s" + connexion_time: "11/01/23 09h48m23s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:17" + pdd_duration: "308 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16442" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21268" + rtp_play_time: "00h00m17s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "824" + rtp_pkts_tx: "813" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "23" + rtp_acom_db: "72" + - call_idx: "86" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "66 (305)" + calling_number: "3255335241" + called_number: "32495914834" + setup_time: "11/01/23 09h41m58s" + connexion_time: "11/01/23 09h42m00s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:13" + pdd_duration: "1335 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16440" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21216" + rtp_play_time: "00h00m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "678" + rtp_pkts_tx: "680" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "87" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "65 (304)" + calling_number: "31113760035" + called_number: "55335278" + setup_time: "11/01/23 09h36m21s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "263 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "88" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "64 (303)" + calling_number: "460973920" + called_number: "55335241" + setup_time: "11/01/23 09h21m11s" + connexion_time: "11/01/23 09h21m14s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:46" + pdd_duration: "311 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16438" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "21108" + rtp_play_time: "00h01m46s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5330" + rtp_pkts_tx: "5332" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "19" + rtp_acom_db: "44" + - call_idx: "89" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "63 (302)" + calling_number: "3255337741" + called_number: "32492819960" + setup_time: "11/01/23 09h02m42s" + connexion_time: "11/01/23 09h02m51s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "1052 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16436" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20998" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1336" + rtp_pkts_tx: "1356" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "35" + rtp_acom_db: "57" + - call_idx: "90" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "62 (301)" + calling_number: "3255337741" + called_number: "3292349010" + setup_time: "11/01/23 08h55m10s" + connexion_time: "11/01/23 08h55m13s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:07:20" + pdd_duration: "1490 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16434" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20990" + rtp_play_time: "00h07m20s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "17752" + rtp_pkts_tx: "22075" + rtp_pkts_lost_rx: "1" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "32" + rtp_acom_db: "58" + - call_idx: "91" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "61 (300)" + calling_number: "3255337741" + called_number: "32492819960" + setup_time: "11/01/23 08h51m58s" + connexion_time: "11/01/23 08h52m22s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:04" + pdd_duration: "1153 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16432" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20970" + rtp_play_time: "00h00m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1298" + rtp_pkts_tx: "1315" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "73" + - call_idx: "92" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "60 (299)" + calling_number: "3255337741" + called_number: "32492819960" + setup_time: "11/01/23 08h44m49s" + connexion_time: "11/01/23 08h45m13s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "1285 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16430" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20888" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1243" + rtp_pkts_tx: "1262" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "56" + rtp_acom_db: "75" + - call_idx: "93" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "59 (298)" + calling_number: "3255335206" + called_number: "32492819960" + setup_time: "11/01/23 08h42m47s" + connexion_time: "11/01/23 08h42m59s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:09" + pdd_duration: "1183 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16428" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20902" + rtp_play_time: "00h00m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "994" + rtp_pkts_tx: "1009" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "33" + rtp_acom_db: "58" + - call_idx: "94" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "58 (297)" + calling_number: "3255335286" + called_number: "32490661144" + setup_time: "11/01/23 08h27m13s" + connexion_time: "11/01/23 08h27m26s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:21" + pdd_duration: "2148 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16426" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20874" + rtp_play_time: "00h00m21s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1600" + rtp_pkts_tx: "1600" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "95" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "57 (296)" + calling_number: "3255337758" + called_number: "32490661150" + setup_time: "11/01/23 08h26m27s" + connexion_time: "11/01/23 08h26m36s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:06" + pdd_duration: "3073 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16424" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20882" + rtp_play_time: "00h01m06s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3578" + rtp_pkts_tx: "3611" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.24" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "50" + - call_idx: "96" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "56 (295)" + calling_number: "3255335241" + called_number: "32490446941" + setup_time: "11/01/23 08h12m33s" + connexion_time: "11/01/23 08h12m42s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:31" + pdd_duration: "1404 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16422" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20840" + rtp_play_time: "00h03m32s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "10973" + rtp_pkts_tx: "10974" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "12" + rtp_acom_db: "45" + - call_idx: "97" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "55 (294)" + calling_number: "32491169927" + called_number: "32490446941" + setup_time: "11/01/23 07h58m45s" + connexion_time: "11/01/23 07h59m09s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "1072 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16418" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20780" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1377" + rtp_pkts_tx: "1378" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "49" + rtp_acom_db: "78" + - call_idx: "98" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "54 (293)" + calling_number: "491169927" + called_number: "55335361" + setup_time: "11/01/23 07h58m45s" + connexion_time: "11/01/23 07h59m09s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "1343 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16420" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20778" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "227" + rtp_pkts_tx: "216" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "20" + rtp_acom_db: "65" + - call_idx: "99" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "53 (292)" + calling_number: "3255335286" + called_number: "32490661144" + setup_time: "11/01/23 07h04m54s" + connexion_time: "11/01/23 07h05m00s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:44" + pdd_duration: "2156 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16416" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20716" + rtp_play_time: "00h00m44s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2416" + rtp_pkts_tx: "2417" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "15" + rtp_acom_db: "42" + - call_idx: "100" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "51 (290)" + calling_number: "476215202" + called_number: "55335234" + setup_time: "11/01/23 07h04m14s" + connexion_time: "11/01/23 07h04m27s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "3735 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.114" + rtp_src_port: "16414" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "20682" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "577" + rtp_pkts_tx: "575" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "26" + rtp_acom_db: "50" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml index e77add67ed..83c63eb6e6 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml @@ -1,2 +1,3287 @@ --- -parsed_sample: [] +parsed_sample: + - call_idx: "1" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "9 (44)" + calling_number: "3232041212" + called_number: "32499572278" + setup_time: "11/01/23 22h24m31s" + connexion_time: "11/01/23 22h24m38s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:15" + pdd_duration: "1012 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16402" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15638" + rtp_play_time: "00h00m15s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1017" + rtp_pkts_tx: "1018" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "19" + rtp_acom_db: "46" + - call_idx: "2" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "8 (43)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 22h06m46s" + connexion_time: "11/01/23 22h07m09s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:07" + pdd_duration: "851 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16400" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15644" + rtp_play_time: "00h00m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1464" + rtp_pkts_tx: "1465" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "23" + rtp_acom_db: "56" + - call_idx: "3" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "7 (42)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 22h05m48s" + connexion_time: "11/01/23 22h06m12s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "1451 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16398" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15642" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1370" + rtp_pkts_tx: "1371" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "59" + - call_idx: "4" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "6 (41)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 21h59m56s" + connexion_time: "11/01/23 22h00m21s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:08" + pdd_duration: "1211 msec" + advice_of_charge: "free " + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16396" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15636" + rtp_play_time: "00h00m08s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1564" + rtp_pkts_tx: "1566" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "64" + - call_idx: "5" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "5 (40)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 21h55m39s" + connexion_time: "11/01/23 21h56m03s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:08" + pdd_duration: "1301 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16394" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15632" + rtp_play_time: "00h00m08s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1526" + rtp_pkts_tx: "1526" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "19" + rtp_acom_db: "61" + - call_idx: "6" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "4 (39)" + calling_number: "3232041212" + called_number: "32499572278" + setup_time: "11/01/23 21h18m43s" + connexion_time: "11/01/23 21h18m45s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:31" + pdd_duration: "921 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16392" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15634" + rtp_play_time: "00h02m31s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7608" + rtp_pkts_tx: "7609" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "22" + rtp_acom_db: "53" + - call_idx: "7" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "3 (38)" + calling_number: "3232041212" + called_number: "32499572278" + setup_time: "11/01/23 21h16m55s" + connexion_time: "11/01/23 21h17m03s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:18" + pdd_duration: "1211 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16390" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15630" + rtp_play_time: "00h00m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1224" + rtp_pkts_tx: "1226" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "18" + rtp_acom_db: "58" + - call_idx: "8" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "2 (37)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 21h14m01s" + connexion_time: "11/01/23 21h14m14s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:44" + pdd_duration: "1751 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16388" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15628" + rtp_play_time: "00h00m44s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2733" + rtp_pkts_tx: "2735" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "19" + rtp_acom_db: "46" + - call_idx: "9" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "1 (36)" + calling_number: "3232041212" + called_number: "32499565390" + setup_time: "11/01/23 21h10m37s" + connexion_time: "11/01/23 21h10m46s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:23" + pdd_duration: "3701 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16386" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15626" + rtp_play_time: "00h00m23s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1355" + rtp_pkts_tx: "1425" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.35" + rtp_erl_db: "29" + rtp_acom_db: "73" + - call_idx: "10" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "0 (35)" + calling_number: "3232041212" + called_number: "32499572278" + setup_time: "11/01/23 20h58m02s" + connexion_time: "11/01/23 20h58m08s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:40" + pdd_duration: "951 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16384" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15622" + rtp_play_time: "00h00m40s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2235" + rtp_pkts_tx: "2236" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "17" + rtp_acom_db: "49" + - call_idx: "11" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "35 (34)" + calling_number: "3232041212" + called_number: "32499565392" + setup_time: "11/01/23 20h54m34s" + connexion_time: "11/01/23 20h54m52s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:27" + pdd_duration: "3621 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16454" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15624" + rtp_play_time: "00h00m27s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1990" + rtp_pkts_tx: "2038" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "2" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "40" + rtp_acom_db: "66" + - call_idx: "12" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "34 (33)" + calling_number: "3232041212" + called_number: "32499572283" + setup_time: "11/01/23 20h22m04s" + connexion_time: "11/01/23 20h22m05s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "561 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15620" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "931" + rtp_pkts_tx: "931" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "37" + rtp_acom_db: "68" + - call_idx: "13" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "33 (32)" + calling_number: "3232041212" + called_number: "32499572283" + setup_time: "11/01/23 20h21m36s" + connexion_time: "11/01/23 20h22m00s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "1111 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15618" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1218" + rtp_pkts_tx: "1217" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "34" + rtp_acom_db: "63" + - call_idx: "14" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "31 (30)" + calling_number: "33091465" + called_number: "32041214" + setup_time: "11/01/23 19h35m29s" + connexion_time: "11/01/23 19h35m33s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:18:52" + pdd_duration: "62 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16446" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15614" + rtp_play_time: "00h18m52s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "56596" + rtp_pkts_tx: "56592" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "22" + rtp_acom_db: "51" + - call_idx: "15" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "32 (31)" + calling_number: "3232041212" + called_number: "032" + setup_time: "11/01/23 19h43m07s" + connexion_time: "11/01/23 19h43m07s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "182 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16448" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15616" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "91" + rtp_pkts_tx: "98" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "16" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "30 (29)" + calling_number: "3232041212" + called_number: "3233091465" + setup_time: "11/01/23 19h34m53s" + connexion_time: "11/01/23 19h34m54s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "471 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16444" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15612" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "127" + rtp_pkts_tx: "126" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "17" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "29 (28)" + calling_number: "3232041212" + called_number: "3233091465" + setup_time: "11/01/23 19h02m09s" + connexion_time: "11/01/23 19h02m09s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "459 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16442" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15610" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "134" + rtp_pkts_tx: "134" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "18" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "28 (27)" + calling_number: "33320148410" + called_number: "32048595" + setup_time: "11/01/23 18h59m25s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "58 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "19" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "26 (25)" + calling_number: "31610669704" + called_number: "32041212" + setup_time: "11/01/23 18h40m17s" + connexion_time: "11/01/23 18h40m19s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:17:56" + pdd_duration: "55 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16438" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15602" + rtp_play_time: "00h17m56s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "53819" + rtp_pkts_tx: "53806" + rtp_pkts_lost_rx: "2" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "47" + - call_idx: "20" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "27 (26)" + calling_number: "31651915707" + called_number: "32041212" + setup_time: "11/01/23 18h54m45s" + connexion_time: "11/01/23 18h54m47s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:03" + pdd_duration: "55 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16440" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15606" + rtp_play_time: "00h01m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3155" + rtp_pkts_tx: "3142" + rtp_pkts_lost_rx: "6" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.28" + rtp_mos_lq: "4.33" + rtp_erl_db: "23" + rtp_acom_db: "56" + - call_idx: "21" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "23 (22)" + calling_number: "31610669704" + called_number: "32041212" + setup_time: "11/01/23 18h39m07s" + connexion_time: "11/01/23 18h39m09s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:00" + pdd_duration: "59 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16436" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15604" + rtp_play_time: "00h01m00s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2993" + rtp_pkts_tx: "2991" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "50" + rtp_acom_db: "82" + - call_idx: "22" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "21 (20)" + calling_number: "33761671482" + called_number: "32041212" + setup_time: "11/01/23 18h23m01s" + connexion_time: "11/01/23 18h23m03s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:51" + pdd_duration: "56 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16432" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15596" + rtp_play_time: "00h03m52s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "11558" + rtp_pkts_tx: "11564" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "51" + rtp_acom_db: "76" + - call_idx: "23" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "22 (21)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 18h23m21s" + connexion_time: "11/01/23 18h23m24s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:30" + pdd_duration: "418 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16434" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15600" + rtp_play_time: "00h03m30s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "10646" + rtp_pkts_tx: "10644" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "30" + rtp_acom_db: "60" + - call_idx: "24" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "20 (19)" + calling_number: "478047439" + called_number: "32041212" + setup_time: "11/01/23 18h14m02s" + connexion_time: "11/01/23 18h14m04s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:38" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16430" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15594" + rtp_play_time: "00h01m38s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4867" + rtp_pkts_tx: "4868" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "23" + rtp_acom_db: "52" + - call_idx: "25" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "19 (18)" + calling_number: "51280120" + called_number: "32048635" + setup_time: "11/01/23 18h09m57s" + connexion_time: "11/01/23 18h10m14s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "69 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16428" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15592" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "205" + rtp_pkts_tx: "216" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "26" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "18 (17)" + calling_number: "3232041212" + called_number: "32499565392" + setup_time: "11/01/23 18h08m18s" + connexion_time: "11/01/23 18h08m31s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:31" + pdd_duration: "4061 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16426" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15590" + rtp_play_time: "00h00m31s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1958" + rtp_pkts_tx: "2007" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.35" + rtp_erl_db: "26" + rtp_acom_db: "54" + - call_idx: "27" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "17 (16)" + calling_number: "3232041212" + called_number: "32499565391" + setup_time: "11/01/23 18h08m06s" + connexion_time: "11/01/23 18h08m07s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:06" + pdd_duration: "941 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16424" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15588" + rtp_play_time: "00h00m06s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "287" + rtp_pkts_tx: "286" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "28" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "16 (15)" + calling_number: "3232041212" + called_number: "32499572269" + setup_time: "11/01/23 18h02m50s" + connexion_time: "11/01/23 18h02m51s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:03" + pdd_duration: "251 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16422" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15586" + rtp_play_time: "00h00m03s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "146" + rtp_pkts_tx: "146" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "29" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "14 (13)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 17h49m16s" + connexion_time: "11/01/23 17h49m19s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:09:21" + pdd_duration: "427 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16418" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15580" + rtp_play_time: "00h09m21s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "28173" + rtp_pkts_tx: "28178" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "52" + rtp_acom_db: "76" + - call_idx: "30" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "13 (12)" + calling_number: "477920299" + called_number: "32041212" + setup_time: "11/01/23 17h48m48s" + connexion_time: "11/01/23 17h48m50s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:09:50" + pdd_duration: "73 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16416" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15584" + rtp_play_time: "00h09m50s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "29483" + rtp_pkts_tx: "29480" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "46" + rtp_acom_db: "64" + - call_idx: "31" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "15 (14)" + calling_number: "477649116" + called_number: "32041212" + setup_time: "11/01/23 17h51m38s" + connexion_time: "11/01/23 17h51m40s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:42" + pdd_duration: "66 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16420" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15582" + rtp_play_time: "00h01m41s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5057" + rtp_pkts_tx: "5059" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "50" + - call_idx: "32" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "12 (11)" + calling_number: "3232041212" + called_number: "32499572263" + setup_time: "11/01/23 17h46m16s" + connexion_time: "11/01/23 17h46m23s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:15" + pdd_duration: "1331 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16412" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15576" + rtp_play_time: "00h02m15s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7019" + rtp_pkts_tx: "7026" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "45" + rtp_acom_db: "70" + - call_idx: "33" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "11 (10)" + calling_number: "16314545049" + called_number: "32041229" + setup_time: "11/01/23 17h46m16s" + connexion_time: "11/01/23 17h46m23s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:15" + pdd_duration: "73 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16414" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15578" + rtp_play_time: "00h02m15s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6749" + rtp_pkts_tx: "6746" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "27" + rtp_acom_db: "51" + - call_idx: "34" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "6 (5)" + calling_number: "34935479692" + called_number: "32041212" + setup_time: "11/01/23 17h25m55s" + connexion_time: "11/01/23 17h25m57s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:08:20" + pdd_duration: "62 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16406" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15572" + rtp_play_time: "00h08m20s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "24993" + rtp_pkts_tx: "24989" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "21" + rtp_acom_db: "49" + - call_idx: "35" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "9 (8)" + calling_number: "495471646" + called_number: "32041212" + setup_time: "11/01/23 17h29m28s" + connexion_time: "11/01/23 17h29m30s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:42" + pdd_duration: "55 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16408" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15560" + rtp_play_time: "00h01m42s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5113" + rtp_pkts_tx: "5113" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "29" + rtp_acom_db: "56" + - call_idx: "36" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "10 (9)" + calling_number: "3232041212" + called_number: "32499572264" + setup_time: "11/01/23 17h30m14s" + connexion_time: "11/01/23 17h30m16s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "1900 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16410" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15558" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "267" + rtp_pkts_tx: "266" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "37" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "8 (7)" + calling_number: "473608618" + called_number: "32048398" + setup_time: "11/01/23 17h27m00s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "38" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "7 (6)" + calling_number: "473608618" + called_number: "32048398" + setup_time: "11/01/23 17h26m53s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "39" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "4 (3)" + calling_number: "34935479692" + called_number: "32048281" + setup_time: "11/01/23 17h25m42s" + connexion_time: "11/01/23 17h25m45s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:08" + pdd_duration: "69 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16404" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15566" + rtp_play_time: "00h00m08s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "385" + rtp_pkts_tx: "394" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "40" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "5 (4)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 17h25m42s" + connexion_time: "11/01/23 17h25m45s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:08" + pdd_duration: "358 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16402" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15568" + rtp_play_time: "00h00m08s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "550" + rtp_pkts_tx: "550" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "41" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "3 (2)" + calling_number: "3232041212" + called_number: "32499572263" + setup_time: "11/01/23 17h10m47s" + connexion_time: "11/01/23 17h10m54s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:32" + pdd_duration: "1171 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16400" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15564" + rtp_play_time: "00h00m32s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1901" + rtp_pkts_tx: "1900" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "27" + rtp_acom_db: "67" + - call_idx: "42" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "2 (1)" + calling_number: "12137889760" + called_number: "32048690" + setup_time: "11/01/23 17h09m49s" + connexion_time: "11/01/23 17h09m55s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16398" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15562" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "251" + rtp_pkts_tx: "259" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "43" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "1 (0)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 16h59m23s" + connexion_time: "11/01/23 16h59m27s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:05:19" + pdd_duration: "408 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16396" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15556" + rtp_play_time: "00h05m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "16125" + rtp_pkts_tx: "16130" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "13" + rtp_acom_db: "43" + - call_idx: "44" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "0 (395)" + calling_number: "13022615018" + called_number: "32041212" + setup_time: "11/01/23 16h59m05s" + connexion_time: "11/01/23 16h59m07s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:05:39" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16394" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15554" + rtp_play_time: "00h05m39s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "16551" + rtp_pkts_tx: "16933" + rtp_pkts_lost_rx: "3" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "35" + rtp_mos_cq: "4.32" + rtp_mos_lq: "4.35" + rtp_erl_db: "49" + rtp_acom_db: "73" + - call_idx: "45" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "35 (394)" + calling_number: "38216459" + called_number: "32041206" + setup_time: "11/01/23 16h54m41s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "46" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "30 (389)" + calling_number: "34935479693" + called_number: "32048281" + setup_time: "11/01/23 16h34m56s" + connexion_time: "11/01/23 16h34m59s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:15:14" + pdd_duration: "74 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16386" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15542" + rtp_play_time: "00h15m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "45674" + rtp_pkts_tx: "45681" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "53" + rtp_acom_db: "78" + - call_idx: "47" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "31 (390)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 16h34m56s" + connexion_time: "11/01/23 16h34m59s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:15:14" + pdd_duration: "458 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16384" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15544" + rtp_play_time: "00h15m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "45828" + rtp_pkts_tx: "45827" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "15" + rtp_acom_db: "40" + - call_idx: "48" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "34 (393)" + calling_number: "31202008260" + called_number: "32041212" + setup_time: "11/01/23 16h44m02s" + connexion_time: "11/01/23 16h44m05s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:04:46" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16392" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15550" + rtp_play_time: "00h04m46s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "14339" + rtp_pkts_tx: "14327" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "26" + rtp_acom_db: "54" + - call_idx: "49" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "33 (392)" + calling_number: "31202008260" + called_number: "32041212" + setup_time: "11/01/23 16h39m00s" + connexion_time: "11/01/23 16h39m02s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:16" + pdd_duration: "64 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16390" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15548" + rtp_play_time: "00h03m15s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9763" + rtp_pkts_tx: "9745" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "26" + rtp_acom_db: "67" + - call_idx: "50" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "32 (391)" + calling_number: "3232041212" + called_number: "32499565390" + setup_time: "11/01/23 16h36m15s" + connexion_time: "11/01/23 16h36m25s" + b_channels: + - "B3" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:51" + pdd_duration: "3610 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16388" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15546" + rtp_play_time: "00h00m51s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2825" + rtp_pkts_tx: "2873" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.32" + rtp_mos_lq: "4.35" + rtp_erl_db: "19" + rtp_acom_db: "59" + - call_idx: "51" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "29 (388)" + calling_number: "3232041212" + called_number: "3234433533" + setup_time: "11/01/23 16h26m42s" + connexion_time: "11/01/23 16h26m43s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:56" + pdd_duration: "678 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16454" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15540" + rtp_play_time: "00h02m56s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "8767" + rtp_pkts_tx: "8812" + rtp_pkts_lost_rx: "25" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.28" + rtp_mos_lq: "4.33" + rtp_erl_db: "26" + rtp_acom_db: "55" + - call_idx: "52" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "28 (387)" + calling_number: "496407383" + called_number: "32041212" + setup_time: "11/01/23 16h10m46s" + connexion_time: "11/01/23 16h10m48s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:01" + pdd_duration: "56 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15538" + rtp_play_time: "00h02m01s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6061" + rtp_pkts_tx: "6049" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "21" + rtp_acom_db: "51" + - call_idx: "53" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "27 (386)" + calling_number: "3232041212" + called_number: "32499572271" + setup_time: "11/01/23 16h05m31s" + connexion_time: "11/01/23 16h05m41s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:07" + pdd_duration: "3401 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15536" + rtp_play_time: "00h00m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "648" + rtp_pkts_tx: "695" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "26" + rtp_acom_db: "53" + - call_idx: "54" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "26 (385)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 15h59m07s" + connexion_time: "11/01/23 15h59m10s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:17" + pdd_duration: "428 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16448" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15534" + rtp_play_time: "00h00m17s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "959" + rtp_pkts_tx: "957" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.29" + rtp_mos_lq: "4.34" + rtp_erl_db: "18" + rtp_acom_db: "41" + - call_idx: "55" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "25 (384)" + calling_number: "3232041212" + called_number: "32499565392" + setup_time: "11/01/23 15h55m56s" + connexion_time: "11/01/23 15h56m11s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "5451 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16446" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15532" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1397" + rtp_pkts_tx: "1448" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "18" + rtp_acom_db: "43" + - call_idx: "56" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "24 (383)" + calling_number: "3232041212" + called_number: "3222724802" + setup_time: "11/01/23 15h53m25s" + connexion_time: "11/01/23 15h53m29s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:19" + pdd_duration: "389 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16444" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15530" + rtp_play_time: "00h00m19s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1100" + rtp_pkts_tx: "1105" + rtp_pkts_lost_rx: "2" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "2.82" + rtp_mos_lq: "4.33" + rtp_erl_db: "13" + rtp_acom_db: "57" + - call_idx: "57" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "23 (382)" + calling_number: "3232041212" + called_number: "3222724802" + setup_time: "11/01/23 15h52m56s" + connexion_time: "11/01/23 15h53m00s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:14" + pdd_duration: "447 msec " + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16442" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15528" + rtp_play_time: "00h00m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "897" + rtp_pkts_tx: "898" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "14" + rtp_acom_db: "60" + - call_idx: "58" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "22 (381)" + calling_number: "3232041212" + called_number: "3222724802" + setup_time: "11/01/23 15h52m31s" + connexion_time: "11/01/23 15h52m35s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:11" + pdd_duration: "416 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16440" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15520" + rtp_play_time: "00h00m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "714" + rtp_pkts_tx: "716" + rtp_pkts_lost_rx: "1" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.28" + rtp_mos_lq: "4.33" + rtp_erl_db: "14" + rtp_acom_db: "56" + - call_idx: "59" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "14 (373)" + calling_number: "479252454" + called_number: "32041212" + setup_time: "11/01/23 15h28m45s" + connexion_time: "11/01/23 15h28m47s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:08:02" + pdd_duration: "66 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16424" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15512" + rtp_play_time: "00h08m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "24050" + rtp_pkts_tx: "24058" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "55" + rtp_acom_db: "79" + - call_idx: "60" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "15 (374)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 15h28m54s" + connexion_time: "11/01/23 15h28m57s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:07:52" + pdd_duration: "467 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16426" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15510" + rtp_play_time: "00h07m52s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "23722" + rtp_pkts_tx: "23721" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "25" + rtp_acom_db: "42" + - call_idx: "61" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "16 (375)" + calling_number: "475276840" + called_number: "32048281" + setup_time: "11/01/23 15h29m29s" + connexion_time: "11/01/23 15h29m32s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:59" + pdd_duration: "75 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16430" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15514" + rtp_play_time: "00h03m59s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "11932" + rtp_pkts_tx: "11944" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "53" + rtp_acom_db: "77" + - call_idx: "62" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "17 (376)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 15h29m29s" + connexion_time: "11/01/23 15h29m32s" + b_channels: + - "B4" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:59" + pdd_duration: "397 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16428" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15516" + rtp_play_time: "00h03m59s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "12062" + rtp_pkts_tx: "12063" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "2.84" + rtp_mos_lq: "4.35" + rtp_erl_db: "35" + rtp_acom_db: "64" + - call_idx: "63" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "20 (379)" + calling_number: "31202008260" + called_number: "32041212" + setup_time: "11/01/23 15h31m25s" + connexion_time: "11/01/23 15h31m27s" + b_channels: + - "B5" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:30" + pdd_duration: "58 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16436" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15524" + rtp_play_time: "00h01m30s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4524" + rtp_pkts_tx: "4510" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "21" + rtp_acom_db: "53" + - call_idx: "64" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "21 (380)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 15h32m21s" + connexion_time: "11/01/23 15h32m24s" + b_channels: + - "B6" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "395 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16438" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15526" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "713" + rtp_pkts_tx: "712" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "65" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "18 (377)" + calling_number: "31202008260" + called_number: "32048281" + setup_time: "11/01/23 15h31m14s" + connexion_time: "11/01/23 15h31m17s" + b_channels: + - "B5" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "75 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16434" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15518" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "214" + rtp_pkts_tx: "220" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "66" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "19 (378)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 15h31m14s" + connexion_time: "11/01/23 15h31m17s" + b_channels: + - "B6" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "406 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16432" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15522" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "357" + rtp_pkts_tx: "356" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "67" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "13 (372)" + calling_number: "31614310606" + called_number: "32041212" + setup_time: "11/01/23 15h23m03s" + connexion_time: "11/01/23 15h23m05s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:13" + pdd_duration: "59 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16422" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15508" + rtp_play_time: "00h03m13s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9666" + rtp_pkts_tx: "9655" + rtp_pkts_lost_rx: "2" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "17" + rtp_acom_db: "40" + - call_idx: "68" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "12 (371)" + calling_number: "33648251574" + called_number: "32048627" + setup_time: "11/01/23 15h21m29s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "56 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "69" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "11 (370)" + calling_number: "31202050443" + called_number: "32041212" + setup_time: "11/01/23 15h07m12s" + connexion_time: "11/01/23 15h07m14s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:30" + pdd_duration: "62 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16420" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15506" + rtp_play_time: "00h02m30s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7512" + rtp_pkts_tx: "7496" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "18" + rtp_acom_db: "47" + - call_idx: "70" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "10 (369)" + calling_number: "51280120" + called_number: "32048470" + setup_time: "11/01/23 14h56m52s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "71" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "8 (367)" + calling_number: "3232041212" + called_number: "3222724802" + setup_time: "11/01/23 14h53m16s" + connexion_time: "11/01/23 14h53m25s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:10" + pdd_duration: "395 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16418" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15498" + rtp_play_time: "00h00m10s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "935" + rtp_pkts_tx: "934" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "18" + rtp_acom_db: "75" + - call_idx: "72" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "9 (368)" + calling_number: "51280120" + called_number: "32048364" + setup_time: "11/01/23 14h53m24s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "73" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "7 (366)" + calling_number: "51280120" + called_number: "32048468" + setup_time: "11/01/23 14h53m08s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "74" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "6 (365)" + calling_number: "3232041212" + called_number: "3222724802" + setup_time: "11/01/23 14h52m31s" + connexion_time: "11/01/23 14h52m46s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:20" + pdd_duration: "451 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16416" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15494" + rtp_play_time: "00h00m20s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1718" + rtp_pkts_tx: "1719" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "13" + rtp_acom_db: "60" + - call_idx: "75" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "5 (364)" + calling_number: "51280120" + called_number: "32048599" + setup_time: "11/01/23 14h51m50s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "76" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "4 (363)" + calling_number: "3232041212" + called_number: "32499565390" + setup_time: "11/01/23 14h50m20s" + connexion_time: "11/01/23 14h50m36s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:11" + pdd_duration: "1221 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16414" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15492" + rtp_play_time: "00h00m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1273" + rtp_pkts_tx: "1279" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.29" + rtp_mos_lq: "4.34" + rtp_erl_db: "20" + rtp_acom_db: "49" + - call_idx: "77" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "3 (362)" + calling_number: "3232041212" + called_number: "32499565390" + setup_time: "11/01/23 14h48m57s" + connexion_time: "11/01/23 14h49m06s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:26" + pdd_duration: "3360 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16412" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15488" + rtp_play_time: "00h01m26s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4548" + rtp_pkts_tx: "4600" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "2" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.35" + rtp_erl_db: "28" + rtp_acom_db: "53" + - call_idx: "78" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "2 (361)" + calling_number: "3232041212" + called_number: "32491928186" + setup_time: "11/01/23 14h48m16s" + connexion_time: "11/01/23 14h48m23s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:37" + pdd_duration: "961 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16410" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15486" + rtp_play_time: "00h00m37s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2129" + rtp_pkts_tx: "2145" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "19" + rtp_acom_db: "48" + - call_idx: "79" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "0 (359)" + calling_number: "499572283" + called_number: "32041216" + setup_time: "11/01/23 14h43m30s" + connexion_time: "11/01/23 14h43m35s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:23" + pdd_duration: "74 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16408" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15482" + rtp_play_time: "00h00m23s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1187" + rtp_pkts_tx: "1180" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "16" + rtp_acom_db: "41" + - call_idx: "80" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "34 (357)" + calling_number: "448081648741" + called_number: "32041212" + setup_time: "11/01/23 14h41m29s" + connexion_time: "11/01/23 14h41m31s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:11" + pdd_duration: "61 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16406" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15476" + rtp_play_time: "00h02m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6535" + rtp_pkts_tx: "6516" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "41" + - call_idx: "81" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "1 (360)" + calling_number: "51280120" + called_number: "32048500" + setup_time: "11/01/23 14h43m35s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "82" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "35 (358)" + calling_number: "51280120" + called_number: "32048606" + setup_time: "11/01/23 14h43m12s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "83" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "33 (356)" + calling_number: "51280120" + called_number: "32048312" + setup_time: "11/01/23 14h40m58s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "84" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "32 (355)" + calling_number: "51280120" + called_number: "32048465" + setup_time: "11/01/23 14h40m18s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "85" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "31 (354)" + calling_number: "51280120" + called_number: "32048562" + setup_time: "11/01/23 14h38m17s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "86" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "30 (353)" + calling_number: "3232041212" + called_number: "32499565392" + setup_time: "11/01/23 14h33m07s" + connexion_time: "11/01/23 14h33m18s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "3521 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16404" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15470" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "945" + rtp_pkts_tx: "997" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "36" + rtp_acom_db: "64" + - call_idx: "87" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "29 (352)" + calling_number: "3232041212" + called_number: "32499572283" + setup_time: "11/01/23 14h32m12s" + connexion_time: "11/01/23 14h32m22s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:12" + pdd_duration: "1341 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16402" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15468" + rtp_play_time: "00h00m12s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1041" + rtp_pkts_tx: "1041" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "28" + rtp_acom_db: "53" + - call_idx: "88" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "28 (351)" + calling_number: "441189817377" + called_number: "32041220" + setup_time: "11/01/23 14h28m13s" + connexion_time: "11/01/23 14h28m15s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:50" + pdd_duration: "63 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16400" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15466" + rtp_play_time: "00h01m50s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5531" + rtp_pkts_tx: "5533" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "16" + rtp_acom_db: "42" + - call_idx: "89" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "27 (350)" + calling_number: "31628113204" + called_number: "32041212" + setup_time: "11/01/23 14h26m01s" + connexion_time: "11/01/23 14h26m03s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:09" + pdd_duration: "57 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16398" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15464" + rtp_play_time: "00h03m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9422" + rtp_pkts_tx: "9424" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "20" + rtp_acom_db: "45" + - call_idx: "90" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "25 (348)" + calling_number: "31653732902" + called_number: "32041212" + setup_time: "11/01/23 14h18m18s" + connexion_time: "11/01/23 14h18m20s" + b_channels: + - "B3" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:05:02" + pdd_duration: "71 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16394" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15460" + rtp_play_time: "00h05m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "15094" + rtp_pkts_tx: "15088" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "54" + rtp_acom_db: "79" + - call_idx: "91" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "26 (349)" + calling_number: "3232041212" + called_number: "3227106308" + setup_time: "11/01/23 14h18m29s" + connexion_time: "11/01/23 14h18m31s" + b_channels: + - "B4" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:04:51" + pdd_duration: "406 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16396" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15462" + rtp_play_time: "00h04m51s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "14644" + rtp_pkts_tx: "14644" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.31" + rtp_mos_lq: "4.35" + rtp_erl_db: "49" + rtp_acom_db: "77" + - call_idx: "92" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "24 (347)" + calling_number: "3232041212" + called_number: "32499572263" + setup_time: "11/01/23 14h18m17s" + connexion_time: "11/01/23 14h18m29s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:58" + pdd_duration: "1111 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16392" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15458" + rtp_play_time: "00h01m58s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6432" + rtp_pkts_tx: "6432" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "31" + rtp_acom_db: "48" + - call_idx: "93" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "23 (346)" + calling_number: "478291430" + called_number: "32048280" + setup_time: "11/01/23 14h18m08s" + connexion_time: "11/01/23 14h18m12s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:34" + pdd_duration: "73 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16390" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15456" + rtp_play_time: "00h01m34s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4693" + rtp_pkts_tx: "4696" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "22" + rtp_acom_db: "59" + - call_idx: "94" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "22 (345)" + calling_number: "3232041212" + called_number: "32490653442" + setup_time: "11/01/23 14h16m39s" + connexion_time: "11/01/23 14h16m46s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:11" + pdd_duration: "1237 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16388" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15454" + rtp_play_time: "00h00m11s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "810" + rtp_pkts_tx: "809" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "29" + rtp_acom_db: "52" + - call_idx: "95" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "21 (344)" + calling_number: "3232041212" + called_number: "32491928186" + setup_time: "11/01/23 14h04m42s" + connexion_time: "11/01/23 14h04m49s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:45" + pdd_duration: "1311 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16386" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15452" + rtp_play_time: "00h00m45s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2526" + rtp_pkts_tx: "2544" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "26" + rtp_acom_db: "54" + - call_idx: "96" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "20 (343)" + calling_number: "3232041212" + called_number: "32499572268" + setup_time: "11/01/23 14h03m15s" + connexion_time: "11/01/23 14h03m16s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:09" + pdd_duration: "861 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16384" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15450" + rtp_play_time: "00h00m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "489" + rtp_pkts_tx: "488" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "97" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "19 (342)" + calling_number: "3232041212" + called_number: "3233552818" + setup_time: "11/01/23 13h49m52s" + connexion_time: "11/01/23 13h50m02s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:48" + pdd_duration: "412 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16454" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15448" + rtp_play_time: "00h01m48s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5887" + rtp_pkts_tx: "5904" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.29" + rtp_mos_lq: "4.35" + rtp_erl_db: "31" + rtp_acom_db: "58" + - call_idx: "98" + calling_from: "local port: 5/0" + calling_to: "remote voip: 0 (UDP)" + call_id: "18 (341)" + calling_number: "3232041212" + called_number: "32499572273" + setup_time: "11/01/23 13h43m19s" + connexion_time: "11/01/23 13h43m46s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "3741 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16452" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15446" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1207" + rtp_pkts_tx: "1259" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "3" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "30" + rtp_acom_db: "58" + - call_idx: "99" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "16 (339)" + calling_number: "487347844" + called_number: "32048280" + setup_time: "11/01/23 13h41m11s" + connexion_time: "11/01/23 13h41m18s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:02" + pdd_duration: "59 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.10" + rtp_src_port: "16450" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "15442" + rtp_play_time: "00h01m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3108" + rtp_pkts_tx: "3106" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.30" + rtp_mos_lq: "4.35" + rtp_erl_db: "29" + rtp_acom_db: "62" + - call_idx: "100" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "17 (340)" + calling_number: "51280120" + called_number: "32048312" + setup_time: "11/01/23 13h42m09s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "28" + disconnect_cause_text: "Invalid number format (address incomplete)" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml index e77add67ed..3f160b2eb5 100644 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml +++ b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml @@ -1,2 +1,3250 @@ --- -parsed_sample: [] +parsed_sample: + - call_idx: "1" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "1005 (2204)" + calling_number: "465868145" + called_number: "27649014" + setup_time: "11/01/23 22h45m58s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "2" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "1004 (2203)" + calling_number: "465868145" + called_number: "27649014" + setup_time: "11/01/23 22h45m55s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "3" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "1003 (2202)" + calling_number: "465868145" + called_number: "27649014" + setup_time: "11/01/23 22h45m54s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "4" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "1002 (2201)" + calling_number: "465868145" + called_number: "27649014" + setup_time: "11/01/23 22h45m39s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "5" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "1001 (2200)" + calling_number: "472765918" + called_number: "27641602" + setup_time: "11/01/23 22h30m32s" + connexion_time: "11/01/23 22h30m32s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:12:08" + pdd_duration: "41 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17782" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25690" + rtp_play_time: "00h12m08s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "36400" + rtp_pkts_tx: "36385" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "19" + rtp_acom_db: "46" + - call_idx: "6" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "1000 (2199)" + calling_number: "476883166" + called_number: "27642734" + setup_time: "11/01/23 22h17m19s" + connexion_time: "11/01/23 22h17m25s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:50" + pdd_duration: "217 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17780" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26202" + rtp_play_time: "00h00m50s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2530" + rtp_pkts_tx: "2529" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "31" + rtp_acom_db: "84" + - call_idx: "7" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "999 (2198)" + calling_number: "468429012" + called_number: "27649393" + setup_time: "11/01/23 22h11m32s" + connexion_time: "11/01/23 22h11m41s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:44" + pdd_duration: "69 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17778" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24530" + rtp_play_time: "00h00m44s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2212" + rtp_pkts_tx: "2203" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "35" + rtp_acom_db: "59" + - call_idx: "8" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "998 (2197)" + calling_number: "24207829" + called_number: "27641111" + setup_time: "11/01/23 22h02m49s" + connexion_time: "11/01/23 22h02m49s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:41" + pdd_duration: "41 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17776" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25118" + rtp_play_time: "00h01m41s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5059" + rtp_pkts_tx: "5058" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "49" + rtp_acom_db: "63" + - call_idx: "9" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "997 (2196)" + calling_number: "487112012" + called_number: "27643203" + setup_time: "11/01/23 21h54m38s" + connexion_time: "11/01/23 21h55m11s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:49" + pdd_duration: "626 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17774" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26092" + rtp_play_time: "00h00m49s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2467" + rtp_pkts_tx: "2465" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "48" + - call_idx: "10" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "996 (2195)" + calling_number: "456545176" + called_number: "27642723" + setup_time: "11/01/23 21h43m45s" + connexion_time: "11/01/23 21h43m59s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:05:14" + pdd_duration: "633 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17772" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23004" + rtp_play_time: "00h05m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "15697" + rtp_pkts_tx: "15699" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "18" + rtp_acom_db: "43" + - call_idx: "11" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "995 (2194)" + calling_number: "10885259" + called_number: "27641602" + setup_time: "11/01/23 21h43m28s" + connexion_time: "11/01/23 21h43m28s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:23" + pdd_duration: "44 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17770" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25888" + rtp_play_time: "00h01m23s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4136" + rtp_pkts_tx: "4137" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "23" + rtp_acom_db: "56" + - call_idx: "12" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "994 (2193)" + calling_number: "473211404" + called_number: "27647027" + setup_time: "11/01/23 21h30m07s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "13" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "992 (2191)" + calling_number: "483598429" + called_number: "27642753" + setup_time: "11/01/23 21h26m22s" + connexion_time: "11/01/23 21h26m31s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:56" + pdd_duration: "612 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17768" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25432" + rtp_play_time: "00h02m56s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "8827" + rtp_pkts_tx: "8805" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "38" + rtp_acom_db: "64" + - call_idx: "14" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "993 (2192)" + calling_number: "496106073" + called_number: "27642702" + setup_time: "11/01/23 21h27m32s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "506 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "15" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "991 (2190)" + calling_number: "27724672" + called_number: "27642733" + setup_time: "11/01/23 21h21m42s" + connexion_time: "11/01/23 21h21m52s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:54" + pdd_duration: "561 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17766" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25278" + rtp_play_time: "00h00m55s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2717" + rtp_pkts_tx: "2715" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "21" + rtp_acom_db: "45" + - call_idx: "16" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "989 (2188)" + calling_number: "" + called_number: "" + setup_time: "11/01/23 21h08m40s" + connexion_time: "11/01/23 21h08m47s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:04" + pdd_duration: "124 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17764" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25640" + rtp_play_time: "00h01m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3155" + rtp_pkts_tx: "3159" + rtp_pkts_lost_rx: "7" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "17" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "990 (2189)" + calling_number: "465786907" + called_number: "27649603" + setup_time: "11/01/23 21h08m41s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "633 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "18" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "988 (2187)" + calling_number: "" + called_number: "" + setup_time: "11/01/23 21h07m16s" + connexion_time: "11/01/23 21h07m24s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:02" + pdd_duration: "118 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17762" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25122" + rtp_play_time: "00h01m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3063" + rtp_pkts_tx: "3074" + rtp_pkts_lost_rx: "7" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "1" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "19" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "987 (2186)" + calling_number: "472207590" + called_number: "27647097" + setup_time: "11/01/23 20h49m27s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "20" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "986 (2185)" + calling_number: "22720800" + called_number: "27641111" + setup_time: "11/01/23 20h42m09s" + connexion_time: "11/01/23 20h42m10s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:04:09" + pdd_duration: "43 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17760" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26722" + rtp_play_time: "00h04m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "12474" + rtp_pkts_tx: "12479" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "12" + rtp_acom_db: "47" + - call_idx: "21" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "983 (2182)" + calling_number: "22219275" + called_number: "27641602" + setup_time: "11/01/23 20h39m00s" + connexion_time: "11/01/23 20h39m00s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "19" + disconnect_cause_text: "No answer from user (user alerted)" + call_duration: "00:03:53" + pdd_duration: "46 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17756" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26832" + rtp_play_time: "00h03m53s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "11625" + rtp_pkts_tx: "11625" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "52" + rtp_acom_db: "82" + - call_idx: "22" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "984 (2183)" + calling_number: "477531031" + called_number: "27641602" + setup_time: "11/01/23 20h39m16s" + connexion_time: "11/01/23 20h39m16s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:03:02" + pdd_duration: "60 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17758" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25738" + rtp_play_time: "00h03m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "9078" + rtp_pkts_tx: "9076" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "27" + rtp_acom_db: "62" + - call_idx: "23" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "985 (2184)" + calling_number: "492458256" + called_number: "27642840" + setup_time: "11/01/23 20h41m04s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "176 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "24" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "982 (2181)" + calling_number: "498089031" + called_number: "27640286" + setup_time: "11/01/23 20h36m15s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "138 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "25" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "981 (2180)" + calling_number: "393288948408" + called_number: "27641867" + setup_time: "11/01/23 20h34m52s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "257 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "26" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "980 (2179)" + calling_number: "473258393" + called_number: "27645603" + setup_time: "11/01/23 20h31m12s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "21" + disconnect_cause_text: "Call rejected" + call_duration: "00:00:00" + pdd_duration: "734 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "27" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "979 (2178)" + calling_number: "93985010" + called_number: "27646930" + setup_time: "11/01/23 20h28m11s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "125 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "28" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "978 (2177)" + calling_number: "93985010" + called_number: "27646930" + setup_time: "11/01/23 20h27m07s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "131 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "29" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "976 (2175)" + calling_number: "488268009" + called_number: "27649103" + setup_time: "11/01/23 20h26m43s" + connexion_time: "11/01/23 20h27m00s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:04" + pdd_duration: "877 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17752" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24704" + rtp_play_time: "00h01m04s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3225" + rtp_pkts_tx: "3224" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "24" + rtp_acom_db: "51" + - call_idx: "30" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "977 (2176)" + calling_number: "466253631" + called_number: "27649603" + setup_time: "11/01/23 20h27m01s" + connexion_time: "11/01/23 20h27m04s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:10" + pdd_duration: "688 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17754" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22762" + rtp_play_time: "00h00m10s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "478" + rtp_pkts_tx: "486" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "31" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "975 (2174)" + calling_number: "473111057" + called_number: "27643203" + setup_time: "11/01/23 20h26m31s" + connexion_time: "11/01/23 20h26m38s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:33" + pdd_duration: "881 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17750" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "28060" + rtp_play_time: "00h00m33s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1606" + rtp_pkts_tx: "1606" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "23" + rtp_acom_db: "47" + - call_idx: "32" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "974 (2173)" + calling_number: "27362673" + called_number: "27641111" + setup_time: "11/01/23 20h26m21s" + connexion_time: "11/01/23 20h26m21s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:07" + pdd_duration: "42 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17748" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25330" + rtp_play_time: "00h00m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "309" + rtp_pkts_tx: "312" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "33" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "971 (2170)" + calling_number: "473658327" + called_number: "27641602" + setup_time: "11/01/23 20h15m10s" + connexion_time: "11/01/23 20h15m10s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:06:58" + pdd_duration: "49 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17744" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25234" + rtp_play_time: "00h06m58s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "20881" + rtp_pkts_tx: "20879" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "15" + rtp_acom_db: "40" + - call_idx: "34" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "970 (2169)" + calling_number: "22219275" + called_number: "27641602" + setup_time: "11/01/23 20h14m48s" + connexion_time: "11/01/23 20h14m48s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:06:56" + pdd_duration: "52 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17742" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24802" + rtp_play_time: "00h06m56s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "20829" + rtp_pkts_tx: "20829" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "22" + rtp_acom_db: "57" + - call_idx: "35" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "973 (2172)" + calling_number: "93985010" + called_number: "27646930" + setup_time: "11/01/23 20h16m06s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "127 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "36" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "972 (2171)" + calling_number: "494086485" + called_number: "27645303" + setup_time: "11/01/23 20h15m23s" + connexion_time: "11/01/23 20h15m30s" + b_channels: + - "B2" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:53" + pdd_duration: "939 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17746" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25840" + rtp_play_time: "00h00m54s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2654" + rtp_pkts_tx: "2641" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "18" + rtp_acom_db: "44" + - call_idx: "37" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "968 (2167)" + calling_number: "476882711" + called_number: "27648203" + setup_time: "11/01/23 20h03m36s" + connexion_time: "11/01/23 20h03m47s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:06:05" + pdd_duration: "931 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17738" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "23572" + rtp_play_time: "00h06m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "18277" + rtp_pkts_tx: "18275" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "33" + rtp_acom_db: "60" + - call_idx: "38" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "969 (2168)" + calling_number: "65971863" + called_number: "27642713" + setup_time: "11/01/23 20h05m35s" + connexion_time: "11/01/23 20h05m45s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:55" + pdd_duration: "757 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17740" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26740" + rtp_play_time: "00h01m55s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "5767" + rtp_pkts_tx: "5761" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.35" + rtp_mos_lq: "4.39" + rtp_erl_db: "49" + rtp_acom_db: "73" + - call_idx: "39" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "967 (2166)" + calling_number: "478342433" + called_number: "27646403" + setup_time: "11/01/23 20h00m13s" + connexion_time: "11/01/23 20h00m21s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:52" + pdd_duration: "878 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17736" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "27464" + rtp_play_time: "00h00m52s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2592" + rtp_pkts_tx: "2595" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "15" + rtp_acom_db: "43" + - call_idx: "40" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "966 (2165)" + calling_number: "473934233" + called_number: "27642743" + setup_time: "11/01/23 19h58m24s" + connexion_time: "11/01/23 19h58m37s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:07" + pdd_duration: "372 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17734" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24682" + rtp_play_time: "00h01m07s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3309" + rtp_pkts_tx: "3306" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "26" + rtp_acom_db: "60" + - call_idx: "41" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "965 (2164)" + calling_number: "476332293" + called_number: "27649393" + setup_time: "11/01/23 19h52m03s" + connexion_time: "11/01/23 19h52m12s" + b_channels: + - "B2" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:33" + pdd_duration: "67 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17732" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25110" + rtp_play_time: "00h01m33s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4629" + rtp_pkts_tx: "4628" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "29" + rtp_acom_db: "57" + - call_idx: "42" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "963 (2162)" + calling_number: "493878372" + called_number: "27641111" + setup_time: "11/01/23 19h50m30s" + connexion_time: "11/01/23 19h50m30s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:02" + pdd_duration: "46 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17730" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26584" + rtp_play_time: "00h02m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "6072" + rtp_pkts_tx: "6062" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "60" + - call_idx: "43" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "964 (2163)" + calling_number: "472290857" + called_number: "27648251" + setup_time: "11/01/23 19h51m43s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "271 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "44" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "962 (2161)" + calling_number: "478773565" + called_number: "27642723" + setup_time: "11/01/23 19h49m59s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "604 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "45" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "961 (2160)" + calling_number: "488569589" + called_number: "27641800" + setup_time: "11/01/23 19h42m41s" + connexion_time: "11/01/23 19h42m41s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:02" + pdd_duration: "46 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17728" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24876" + rtp_play_time: "00h01m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3073" + rtp_pkts_tx: "3093" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "46" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "960 (2159)" + calling_number: "14697951355" + called_number: "27649177" + setup_time: "11/01/23 19h38m16s" + connexion_time: "11/01/23 19h38m24s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:40" + pdd_duration: "119 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17726" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26622" + rtp_play_time: "00h00m40s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1984" + rtp_pkts_tx: "1985" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "47" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "959 (2158)" + calling_number: "495200394" + called_number: "27641920" + setup_time: "11/01/23 19h38m01s" + connexion_time: "11/01/23 19h38m01s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:14" + pdd_duration: "58 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17724" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26572" + rtp_play_time: "00h00m14s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "698" + rtp_pkts_tx: "688" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "48" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "957 (2156)" + calling_number: "24772048" + called_number: "27641111" + setup_time: "11/01/23 19h28m41s" + connexion_time: "11/01/23 19h28m42s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:07:43" + pdd_duration: "43 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17722" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24714" + rtp_play_time: "00h07m43s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "23133" + rtp_pkts_tx: "23129" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "28" + rtp_acom_db: "53" + - call_idx: "49" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "958 (2157)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 19h29m59s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "50" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "955 (2154)" + calling_number: "470983656" + called_number: "27641111" + setup_time: "11/01/23 19h21m16s" + connexion_time: "11/01/23 19h21m16s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:04:05" + pdd_duration: "50 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17718" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26002" + rtp_play_time: "00h04m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "12234" + rtp_pkts_tx: "12232" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "21" + rtp_acom_db: "62" + - call_idx: "51" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "956 (2155)" + calling_number: "477366037" + called_number: "27642812" + setup_time: "11/01/23 19h23m37s" + connexion_time: "11/01/23 19h23m38s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:05" + pdd_duration: "46 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17720" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24998" + rtp_play_time: "00h00m05s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "264" + rtp_pkts_tx: "265" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "52" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "954 (2153)" + calling_number: "476239129" + called_number: "27648076" + setup_time: "11/01/23 19h19m35s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "470 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "53" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "953 (2152)" + calling_number: "479078031" + called_number: "27646203" + setup_time: "11/01/23 19h19m28s" + connexion_time: "11/01/23 19h19m34s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:02" + pdd_duration: "836 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17716" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26838" + rtp_play_time: "00h00m02s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "73" + rtp_pkts_tx: "89" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "255" + - call_idx: "54" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "952 (2151)" + calling_number: "473399322" + called_number: "27643700" + setup_time: "11/01/23 19h15m13s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "390 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "55" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "951 (2150)" + calling_number: "483598429" + called_number: "27642753" + setup_time: "11/01/23 19h09m10s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "232 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "56" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "945 (2144)" + calling_number: "19325073" + called_number: "27640287" + setup_time: "11/01/23 19h07m16s" + connexion_time: "11/01/23 19h07m29s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:33" + pdd_duration: "137 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17714" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25244" + rtp_play_time: "00h02m33s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7646" + rtp_pkts_tx: "7649" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "17" + rtp_acom_db: "47" + - call_idx: "57" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "950 (2149)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 19h08m18s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "58" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "949 (2148)" + calling_number: "25135994" + called_number: "27646021" + setup_time: "11/01/23 19h08m02s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "59" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "948 (2147)" + calling_number: "25135994" + called_number: "27646021" + setup_time: "11/01/23 19h08m01s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "60" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "947 (2146)" + calling_number: "25135994" + called_number: "27646021" + setup_time: "11/01/23 19h07m59s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "61" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "946 (2145)" + calling_number: "25135994" + called_number: "27646021" + setup_time: "11/01/23 19h07m58s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "62" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "944 (2143)" + calling_number: "497257441" + called_number: "27646056" + setup_time: "11/01/23 19h07m16s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "239 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "63" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "943 (2142)" + calling_number: "477738093" + called_number: "27641483" + setup_time: "11/01/23 19h06m36s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "64" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "942 (2141)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 19h06m31s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "65" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "941 (2140)" + calling_number: "477738093" + called_number: "27641483" + setup_time: "11/01/23 19h05m27s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "20" + disconnect_cause_text: "Subscriber absent" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "66" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "940 (2139)" + calling_number: "472509100" + called_number: "27641610" + setup_time: "11/01/23 19h03m58s" + connexion_time: "11/01/23 19h04m04s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:26" + pdd_duration: "200 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17712" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26548" + rtp_play_time: "00h00m26s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1326" + rtp_pkts_tx: "1323" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "34" + rtp_acom_db: "59" + - call_idx: "67" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "939 (2138)" + calling_number: "478792136" + called_number: "27648150" + setup_time: "11/01/23 19h03m57s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "68" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "938 (2137)" + calling_number: "478792136" + called_number: "27648150" + setup_time: "11/01/23 19h03m48s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "69" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "934 (2133)" + calling_number: "33671050013" + called_number: "27641111" + setup_time: "11/01/23 18h59m27s" + connexion_time: "11/01/23 18h59m27s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:21" + pdd_duration: "46 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17708" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25090" + rtp_play_time: "00h02m21s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7044" + rtp_pkts_tx: "7058" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "22" + rtp_acom_db: "43" + - call_idx: "70" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "937 (2136)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 19h01m41s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "71" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "935 (2134)" + calling_number: "" + called_number: "" + setup_time: "11/01/23 19h00m02s" + connexion_time: "11/01/23 19h00m02s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:54" + pdd_duration: "42 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17710" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25882" + rtp_play_time: "00h00m54s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "2658" + rtp_pkts_tx: "2660" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "53" + rtp_acom_db: "76" + - call_idx: "72" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "936 (2135)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 19h00m35s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "73" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "933 (2132)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h56m10s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "74" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "931 (2130)" + calling_number: "33784557704" + called_number: "27642100" + setup_time: "11/01/23 18h52m16s" + connexion_time: "11/01/23 18h52m19s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:09" + pdd_duration: "357 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17706" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26266" + rtp_play_time: "00h01m09s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3466" + rtp_pkts_tx: "3454" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "18" + rtp_acom_db: "43" + - call_idx: "75" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "932 (2131)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h52m41s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "76" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "929 (2128)" + calling_number: "486120510" + called_number: "27641432" + setup_time: "11/01/23 18h50m41s" + connexion_time: "11/01/23 18h50m47s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:18" + pdd_duration: "296 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17704" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25708" + rtp_play_time: "00h01m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3889" + rtp_pkts_tx: "3880" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "22" + rtp_acom_db: "54" + - call_idx: "77" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "930 (2129)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h50m54s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "78" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "928 (2127)" + calling_number: "498477443" + called_number: "27643630" + setup_time: "11/01/23 18h50m23s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "1195 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "79" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "927 (2126)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h47m06s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "80" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "926 (2125)" + calling_number: "352621177808" + called_number: "27642344" + setup_time: "11/01/23 18h45m34s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "225 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "81" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "925 (2124)" + calling_number: "475515111" + called_number: "27648080" + setup_time: "11/01/23 18h44m31s" + connexion_time: "11/01/23 18h44m38s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:01" + pdd_duration: "262 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17702" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22556" + rtp_play_time: "00h01m01s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "3057" + rtp_pkts_tx: "3027" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "16" + rtp_acom_db: "45" + - call_idx: "82" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "924 (2123)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h40m44s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "83" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "923 (2122)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h39m56s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "84" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "922 (2121)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h37m00s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "85" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "921 (2120)" + calling_number: "81708185" + called_number: "27641111" + setup_time: "11/01/23 18h34m48s" + connexion_time: "11/01/23 18h34m48s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:01:28" + pdd_duration: "43 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17700" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24584" + rtp_play_time: "00h01m28s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "4365" + rtp_pkts_tx: "4370" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "51" + rtp_acom_db: "78" + - call_idx: "86" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "920 (2119)" + calling_number: "488388210" + called_number: "27648848" + setup_time: "11/01/23 18h34m28s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "17" + disconnect_cause_text: "User busy" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "87" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "916 (2115)" + calling_number: "498274158" + called_number: "27642050" + setup_time: "11/01/23 18h31m34s" + connexion_time: "11/01/23 18h31m47s" + b_channels: + - "B1" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:02:35" + pdd_duration: "623 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17696" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24788" + rtp_play_time: "00h02m35s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "7737" + rtp_pkts_tx: "7734" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "20" + rtp_acom_db: "48" + - call_idx: "88" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "919 (2118)" + calling_number: "474682949" + called_number: "27647820" + setup_time: "11/01/23 18h33m19s" + connexion_time: "11/01/23 18h33m22s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:26" + pdd_duration: "208 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17698" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "25580" + rtp_play_time: "00h00m26s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "1327" + rtp_pkts_tx: "1325" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "29" + rtp_acom_db: "53" + - call_idx: "89" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "917 (2116)" + calling_number: "477893610" + called_number: "27640675" + setup_time: "11/01/23 18h31m43s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "168 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "90" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "918 (2117)" + calling_number: "466290063" + called_number: "27642121" + setup_time: "11/01/23 18h32m42s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "62 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "91" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "915 (2114)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h31m13s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "92" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "914 (2113)" + calling_number: "474746373" + called_number: "27641623" + setup_time: "11/01/23 18h28m50s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "259 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "93" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "909 (2108)" + calling_number: "495603607" + called_number: "27640631" + setup_time: "11/01/23 18h18m39s" + connexion_time: "11/01/23 18h18m49s" + b_channels: + - "B2" + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:09:59" + pdd_duration: "308 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17692" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "22596" + rtp_play_time: "00h09m59s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "29964" + rtp_pkts_tx: "29961" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "62" + - call_idx: "94" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "906 (2105)" + calling_number: "479090112" + called_number: "27647043" + setup_time: "11/01/23 18h17m36s" + connexion_time: "11/01/23 18h17m38s" + b_channels: + - "B1" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:08:49" + pdd_duration: "325 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17688" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26678" + rtp_play_time: "00h08m49s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "26453" + rtp_pkts_tx: "26448" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "19" + rtp_acom_db: "42" + - call_idx: "95" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "913 (2112)" + calling_number: "484156371" + called_number: "27641826" + setup_time: "11/01/23 18h26m06s" + connexion_time: "---" + b_channels: [] + disconnected_by: "remote voip: 0 (UDP)" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:00" + pdd_duration: "102 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "96" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "912 (2111)" + calling_number: "460215424" + called_number: "27645555" + setup_time: "11/01/23 18h24m30s" + connexion_time: "11/01/23 18h24m38s" + b_channels: + - "B2" + disconnected_by: "local port: 5/1" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:00:18" + pdd_duration: "392 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17694" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "26426" + rtp_play_time: "00h00m18s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "788" + rtp_pkts_tx: "905" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.33" + rtp_mos_lq: "4.39" + rtp_erl_db: "21" + rtp_acom_db: "59" + - call_idx: "97" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "907 (2106)" + calling_number: "465195352" + called_number: "27641111" + setup_time: "11/01/23 18h17m50s" + connexion_time: "11/01/23 18h17m50s" + b_channels: + - "B1" + disconnected_by: "local port: 5/0" + disconnect_cause_code: "16" + disconnect_cause_text: "Normal call clearing" + call_duration: "00:06:31" + pdd_duration: "47 msec" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "94.105.56.196" + rtp_src_port: "17690" + rtp_dst_ip: "212.224.167.110" + rtp_dst_port: "24994" + rtp_play_time: "00h06m31s" + rtp_tx_coder: "G711 A Law / 20 ms" + rtp_rx_coder: "G711 A Law" + rtp_pkts_rx: "19530" + rtp_pkts_tx: "19541" + rtp_pkts_lost_rx: "0" + rtp_pkts_lost_tx: "0" + rtp_excessive_jitter: "0" + rtp_mos_cq: "4.34" + rtp_mos_lq: "4.39" + rtp_erl_db: "25" + rtp_acom_db: "63" + - call_idx: "98" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/0" + call_id: "911 (2110)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h23m50s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/0" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "99" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "910 (2109)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h21m34s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" + - call_idx: "100" + calling_from: "remote voip: 0 (UDP)" + calling_to: "local port: 5/1" + call_id: "908 (2107)" + calling_number: "27207387" + called_number: "27640314" + setup_time: "11/01/23 18h18m04s" + connexion_time: "---" + b_channels: [] + disconnected_by: "local port: 5/1" + disconnect_cause_code: "27" + disconnect_cause_text: "Destination out of order" + call_duration: "00:00:00" + pdd_duration: "-" + advice_of_charge: "free" + call_priority: "100" + rtp_src_ip: "" + rtp_src_port: "" + rtp_dst_ip: "" + rtp_dst_port: "" + rtp_play_time: "" + rtp_tx_coder: "" + rtp_rx_coder: "" + rtp_pkts_rx: "" + rtp_pkts_tx: "" + rtp_pkts_lost_rx: "" + rtp_pkts_lost_tx: "" + rtp_excessive_jitter: "" + rtp_mos_cq: "" + rtp_mos_lq: "" + rtp_erl_db: "" + rtp_acom_db: "" From 6b436896369d9ce0f2d9075d548898865e61cc3e Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 12 Jan 2023 16:00:03 +0000 Subject: [PATCH 13/31] add extra oneaccess_oneos and ciena_saos templates --- .../ciena_saos_lldp_show_neighbors.textfsm | 39 ++++++++++ ...ena_saos_port_show_ethernet-config.textfsm | 21 ++++++ ...iena_saos_port_show_network-config.textfsm | 20 +++++ .../ciena_saos_port_show_status.textfsm | 19 +++++ .../ciena_saos_port_xcvr_show.textfsm | 15 ++++ ntc_templates/templates/index | 8 ++ .../ciena_saos_lldp_show_neighbors.3916.raw | 34 +++++++++ .../ciena_saos_lldp_show_neighbors.3916.yml | 44 +++++++++++ ...na_saos_port_show_ethernet-config.3916.raw | 12 +++ ...na_saos_port_show_ethernet-config.3916.yml | 74 +++++++++++++++++++ ...ena_saos_port_show_network-config.3916.raw | 12 +++ ...ena_saos_port_show_network-config.3916.yml | 68 +++++++++++++++++ .../ciena_saos_port_show_status.3916.raw | 11 +++ .../ciena_saos_port_show_status.3916.yml | 56 ++++++++++++++ .../ciena_saos_port_xcvr_show.3916.raw | 11 +++ .../ciena_saos_port_xcvr_show.3916.yml | 44 +++++++++++ 16 files changed, 488 insertions(+) create mode 100644 ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm create mode 100644 ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm create mode 100644 ntc_templates/templates/ciena_saos_port_show_network-config.textfsm create mode 100644 ntc_templates/templates/ciena_saos_port_show_status.textfsm create mode 100644 ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm create mode 100644 tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw create mode 100644 tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml create mode 100644 tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw create mode 100644 tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml create mode 100644 tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw create mode 100644 tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml create mode 100644 tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw create mode 100644 tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml create mode 100644 tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw create mode 100644 tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml diff --git a/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm b/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm new file mode 100644 index 0000000000..9cf3c8bd44 --- /dev/null +++ b/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm @@ -0,0 +1,39 @@ +Value List,Filldown REMOTE_ADDR_IPV4 (\d+\.\d+\.\d+\.\d+) +Value List,Filldown REMOTE_ADDR_IPV6 ([a-f0-9:]+) +Value Filldown SYSTEM_NAME (\S+) +Value Filldown SYSTEM_DESCRIPTION (.*\S) +Value Required LOCAL_PORT (\S+) +Value REMOTE_PORT (\S+) +Value REMOTE_CHASSIS_ID (\S+) +Value List REMOTE_MGMT_ADDR_IPV4 (\d+\.\d+\.\d+\.\d+) +Value List REMOTE_MGMT_ADDR_IPV6 ([a-f0-9:]+) +Value REMOTE_SYSTEM_NAME (\S+) +Value REMOTE_SYSTEM_DESCRIPTION (.*\S) +Value REMOTE_SYNCE_SUPPORT (.*\S) +Value REMOTE_SYNCE_CONFIG (.*\S) + +Start + ^\+\-+ + ^\|\sRemote\sAddr:\s${REMOTE_ADDR_IPV4} + ^\|\sRemote\sAddr:\s${REMOTE_ADDR_IPV6} + ^\|\sSystem\sName:\s${SYSTEM_NAME}\s+\| + ^\|\sSystem\sDesc:\s${SYSTEM_DESCRIPTION}\s+\| + # neighbor record + ^\|${LOCAL_PORT}\s*\|${REMOTE_PORT}\s*\|\s*Chassis\sId:\s*${REMOTE_CHASSIS_ID} -> Neighbor + ^\|.* + ^\s*$$ + ^. -> Error + +Neighbor + ^\|\s*\|\s*\|\s*Mgmt\sAddr:\s${REMOTE_MGMT_ADDR_IPV4}\s+\| -> NeighborMgmt + ^\|\s*\|\s*\|\s*Mgmt\sAddr:\s${REMOTE_MGMT_ADDR_IPV6}\s+\| -> NeighborMgmt + ^\|\s*\|\s*\|\s*System\sName:\s${REMOTE_SYSTEM_NAME} -> Neighbor + ^\|\s*\|\s*\|\s*System\sDesc:\s${REMOTE_SYSTEM_DESCRIPTION}\s+\| + ^\|\s*\|\s*\|\s*SyncE\sSuppt:\s${REMOTE_SYNCE_SUPPORT}\s+\| + ^\|\s*\|\s*\|\s*SyncE\sConfg:\s${REMOTE_SYNCE_CONFIG}\s+\| + ^\+\-+ -> Record Start + +NeighborMgmt + ^\|\s*\|\s*\|\s+${REMOTE_MGMT_ADDR_IPV4}\s+\|$$ + ^\|\s*\|\s*\|\s+${REMOTE_MGMT_ADDR_IPV6}\s+\|$$ + ^\|\s*\|\s*\|\s*System\sName:\s${REMOTE_SYSTEM_NAME} -> Neighbor diff --git a/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm b/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm new file mode 100644 index 0000000000..826c324978 --- /dev/null +++ b/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm @@ -0,0 +1,21 @@ +Value NAME (\S+) +Value TYPE (\S+) +Value ADMIN_STATUS (\S+) +Value SPEED (\S+) +Value DUPLEX (\S+) +Value FLOW_CONTROL (\S+) +Value FLOW_CONTROL_ADV (\S+) +Value AUTONEG (\S+) +Value MTU (\d+) +Value MIRROR_STATE (\S+) +Value MIRROR_EG (\d+) +Value MIRROR_IG (\d+) + +Start + ^\+-+\s*PORT\s*ETHERNET\s*CONFIGURATION\s*-+\+ + ^\+-+ + ^\|\s*${NAME}\s*\|\s*${TYPE}\s*\|\s*${ADMIN_STATUS}\s*\|\s*${SPEED}\s*\|\s*(${DUPLEX}|\s+)\s*\|\s*${FLOW_CONTROL}\s*\|\s*${FLOW_CONTROL_ADV}\s*\|\s*${AUTONEG}\s*\|\s*${MTU}\s*\|\s*${MIRROR_STATE}\s*\|\s*${MIRROR_EG}\s*\|\s*${MIRROR_IG}\s*\| -> Record + ^\|.* + ^\s*$$ + ^. -> Error + \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm b/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm new file mode 100644 index 0000000000..e7deddc4fb --- /dev/null +++ b/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm @@ -0,0 +1,20 @@ +Value NAME (\S+) +Value PVID (\S+) +Value ACCPT_FRAME_TYPE (\S+) +Value UNTAG_INGRESS_VID (\S+) +Value VLAN_INGRESS_FILTER (\S+) +Value VS_INGRESS_FILTER (\S+) +Value EGRESS_UNTAG_VLAN (\S+) +Value VS_EGRESS_FILTER (\S+) +Value INGRESS_COS_POLICY (\S+) +Value VPLS_PORT_TYPE (\S+) +Value ETH_VC_ETHERTYPE (\d+) + +Start + ^\+-+\s*PORT\s*ETHERNET\s*CONFIGURATION\s*-+\+ + ^\+-+ + ^\|\s*${NAME}\s*\|\s*${PVID}\s*\|\s*${ACCPT_FRAME_TYPE}\s*\|\s*${UNTAG_INGRESS_VID}\s*\|\s*(${VLAN_INGRESS_FILTER}|\s+)\s*\|\s*${VS_INGRESS_FILTER}\s*\|\s*${EGRESS_UNTAG_VLAN}\s*\|\s*${VS_EGRESS_FILTER}\s*\|\s*${INGRESS_COS_POLICY}\s*\|\s*${VPLS_PORT_TYPE}\s*\|\s*${ETH_VC_ETHERTYPE}\s*\| -> Record + ^\|.* + ^\s*$$ + ^. -> Error + \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_show_status.textfsm b/ntc_templates/templates/ciena_saos_port_show_status.textfsm new file mode 100644 index 0000000000..52f85c6530 --- /dev/null +++ b/ntc_templates/templates/ciena_saos_port_show_status.textfsm @@ -0,0 +1,19 @@ +Value NAME (\S+) +Value DESCR (\S*) +Value LINK (Up|Down) +Value DURATION ([^\|]+) +Value XCVR (\S+) +Value STP (\w+) +Value SPEED_DUPLEX (\S+) +Value MTU (\d+) +Value FLOWCTRL (\S+) + + +Start + ^\+-+\s*PORT\s*OPERATIONAL\s*STATUS\s*-+\+ + ^\+-+ + ^\|${NAME}\s*\|${DESCR}\s*\|\s*${LINK}\s*\|\s*${DURATION}\s*\|\s*(${XCVR}|\s+)\s*\|\s*${STP}\s*\|\s*(${SPEED_DUPLEX}|\s+)\s*\|\s*${MTU}\s*\|\s*(${FLOWCTRL}|\s+)\s*\| -> Record + ^\|.* + ^\s*$$ + ^. -> Error + \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm b/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm new file mode 100644 index 0000000000..95c59db797 --- /dev/null +++ b/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm @@ -0,0 +1,15 @@ +Value PORT (\S+) +Value ADMIN_STATE (\S+) +Value OPER_STATE (\S+) +Value VENDOR (\S.*\S) +Value CIENA_REV (\S+) +Value CONNECTOR_TYPE (\S+) +Value DIAG (\S+) + +Start + ^\+-+ + ^\|\s*${PORT}\s*\|${ADMIN_STATE}\s*\|(${OPER_STATE}|)\s*\|(${VENDOR}|)\s*\|(${CIENA_REV}|)\s*\|(${CONNECTOR_TYPE}|)\s*\|(${DIAG}|)\s*\| -> Record + ^\|.* + ^\s*$$ + ^. -> Error + \ No newline at end of file diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index a89bab9db2..87ddcd2fc6 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -170,13 +170,21 @@ checkpoint_gaia_show_lom.textfsm, .*, checkpoint_gaia, show lom checkpoint_gaia_fw_stat.textfsm, .*, checkpoint_gaia, fw stat ciena_saos_traffic-profiling_standard-profile_show.textfsm, .*, ciena_saos, traffic-p[[rofiling]] st[[andard-profile]] sh[[ow]] +ciena_saos_port_show_ethernet-config.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] ethernet-config ciena_saos_chassis_show_temperature.textfsm, .*, ciena_saos, ch[[assis]] sh[[ow]] te[[mperature]] +ciena_saos_port_show_network-config.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] network-config +ciena_saos_lldp_show_neighbors.textfsm, .*, ciena_saos, lldp sh[[ow]] nei[[ghbors]] ciena_saos_ssh_server_show_key.textfsm, .*, ciena_saos, ssh se[[rver]] sh[[ow]] k[[ey]] +ciena_saos_port_show_status.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] status +ciena_saos_port_xcvr_show.textfsm, .*, ciena_saos, po[[rt]] xcvr sh[[ow]] ciena_saos_software_show.textfsm, .*, ciena_saos, so[[ftware]] sh[[ow]] ciena_saos_port_show.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] ciena_saos_rstp_show.textfsm, .*, ciena_saos, rs[[tp]] sh[[ow]] ciena_saos_vlan_show.textfsm, .*, ciena_saos, vl[[an]] sh[[ow]] + + + cisco_apic_fabric_show_vlan_extended.textfsm, .*, cisco_apic, fabric sh[[ow]] vlan ex[[tended]] cisco_asa_show_module.textfsm:cisco_asa_show_module_details.textfsm:cisco_asa_show_module_status.textfsm, .*, cisco_asa, sh[[ow]] modu[[le]] diff --git a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw new file mode 100644 index 0000000000..6f48de5f92 --- /dev/null +++ b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw @@ -0,0 +1,34 @@ ++--------------------------------------------------------------------------------------------------------------+ +| LLDP Neighbors | ++--------------------------------------------------------------------------------------------------------------+ +| Remote Addr: 10.8.91.1 | +| Remote Addr: 10.8.128.39 | +| Remote Addr: fe80::9e7a:3ff:fed1:cd1 | +| Remote Addr: fe80::9e7a:3ff:fed1:cdf | +| System Name: LAB_00009-SDS39-100 | +| System Desc: Ciena 3916 Service Delivery Switch | ++-------------+------------------------------------------------------------------------------------------------+ +|Local | Remote | ++-------------+--------------------------------+---------------------------------------------------------------+ +|Port |Port |Info | ++-------------+--------------------------------+---------------------------------------------------------------+ +|5 |6 | Chassis Id: 9C7A03A10D60 | +| | | Mgmt Addr: 10.8.91.2 | +| | | 10.8.128.40 | +| | | fe80::9e7a:3ff:fed1:d61 | +| | | fe80::9e7a:3ff:fed1:d6f | +| | | System Name: LAB_SDS39-200 | +| | | System Desc: Ciena 3916 Service Delivery Switch | +| | | SyncE Suppt: Not Supported | +| | | SyncE Confg: Not Configured | ++-------------+--------------------------------+---------------------------------------------------------------+ +|6 |3 | Chassis Id: 9C7A03B86040 | +| | | Mgmt Addr: 10.8.90.250 | +| | | 10.8.130.1 | +| | | fe80::9e7a:3ff:fec8:6040 | +| | | fe80::9e7a:3ff:fec8:6041 | +| | | System Name: LAB_SAS51-100 | +| | | System Desc: Ciena 5142 Service Aggregation Switch | +| | | SyncE Suppt: Input and Output | +| | | SyncE Confg: Not Configured | ++-------------+--------------------------------+---------------------------------------------------------------+ diff --git a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml new file mode 100644 index 0000000000..ca68330c41 --- /dev/null +++ b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml @@ -0,0 +1,44 @@ +--- +parsed_sample: + - remote_addr_ipv4: + - "10.8.91.1" + - "10.8.128.39" + remote_addr_ipv6: + - "fe80::9e7a:3ff:fed1:cd1" + - "fe80::9e7a:3ff:fed1:cdf" + system_name: "LAB_00009-SDS39-100" + system_description: "Ciena 3916 Service Delivery Switch" + local_port: "5" + remote_port: "6" + remote_chassis_id: "9C7A03A10D60" + remote_mgmt_addr_ipv4: + - "10.8.91.2" + - "10.8.128.40" + remote_mgmt_addr_ipv6: + - "fe80::9e7a:3ff:fed1:d61" + - "fe80::9e7a:3ff:fed1:d6f" + remote_system_name: "LAB_SDS39-200" + remote_system_description: "Ciena 3916 Service Delivery Switch" + remote_synce_support: "Not Supported" + remote_synce_config: "Not Configured" + - remote_addr_ipv4: + - "10.8.91.1" + - "10.8.128.39" + remote_addr_ipv6: + - "fe80::9e7a:3ff:fed1:cd1" + - "fe80::9e7a:3ff:fed1:cdf" + system_name: "LAB_00009-SDS39-100" + system_description: "Ciena 3916 Service Delivery Switch" + local_port: "6" + remote_port: "3" + remote_chassis_id: "9C7A03B86040" + remote_mgmt_addr_ipv4: + - "10.8.90.250" + - "10.8.130.1" + remote_mgmt_addr_ipv6: + - "fe80::9e7a:3ff:fec8:6040" + - "fe80::9e7a:3ff:fec8:6041" + remote_system_name: "LAB_SAS51-100" + remote_system_description: "Ciena 5142 Service Aggregation Switch" + remote_synce_support: "Input and Output" + remote_synce_config: "Not Configured" diff --git a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw new file mode 100644 index 0000000000..dd5ca74c12 --- /dev/null +++ b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw @@ -0,0 +1,12 @@ ++------------------------ PORT ETHERNET CONFIGURATION -------------------------+ +| | | | | | | | | | Mirror | +| Port | Port | Admin | | | | FC | Auto| MTU | Status | +| Name | Type | Status| Speed| Dplx| FC | Adv| Neg | Size |State| Eg | Ig | ++--------+---------+-------+------+-----+----+----+-----+------+-----+----+----+ +| 1 | 10/100/G| Dis | Auto | ?? |off |off | On | 9100 | Off | 0 | 0 | +| 2 | 10/100/G| Ena | Auto | ?? |off |off | On | 9100 | Off | 0 | 0 | +| 3 | 100/G | Ena | 100 | ?? |off |off | Off | 9100 | Off | 0 | 0 | +| 4 | 100/G | Ena | 1000 | ?? |off |off | On | 9100 | Off | 0 | 0 | +| 5 | Gig | Ena | 1000 | Full|off |off | Off | 9216 | Off | 0 | 0 | +| 6 | Gig | Ena | 1000 | Full|off |off | Off | 9216 | Off | 0 | 0 | ++--------+---------+-------+------+-----+----+----+-----+------+-----+----+----+ \ No newline at end of file diff --git a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml new file mode 100644 index 0000000000..54fd4ceb9c --- /dev/null +++ b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml @@ -0,0 +1,74 @@ +--- +parsed_sample: + - name: "1" + type: "10/100/G" + admin_status: "Dis" + speed: "Auto" + duplex: "??" + flow_control: "off" + flow_control_adv: "off" + autoneg: "On" + mtu: "9100" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" + - name: "2" + type: "10/100/G" + admin_status: "Ena" + speed: "Auto" + duplex: "??" + flow_control: "off" + flow_control_adv: "off" + autoneg: "On" + mtu: "9100" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" + - name: "3" + type: "100/G" + admin_status: "Ena" + speed: "100" + duplex: "??" + flow_control: "off" + flow_control_adv: "off" + autoneg: "Off" + mtu: "9100" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" + - name: "4" + type: "100/G" + admin_status: "Ena" + speed: "1000" + duplex: "??" + flow_control: "off" + flow_control_adv: "off" + autoneg: "On" + mtu: "9100" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" + - name: "5" + type: "Gig" + admin_status: "Ena" + speed: "1000" + duplex: "Full" + flow_control: "off" + flow_control_adv: "off" + autoneg: "Off" + mtu: "9216" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" + - name: "6" + type: "Gig" + admin_status: "Ena" + speed: "1000" + duplex: "Full" + flow_control: "off" + flow_control_adv: "off" + autoneg: "Off" + mtu: "9216" + mirror_state: "Off" + mirror_eg: "0" + mirror_ig: "0" diff --git a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw new file mode 100644 index 0000000000..4446d2b9b5 --- /dev/null +++ b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw @@ -0,0 +1,12 @@ ++----------------------------- PORT NETWORK CONFIGURATION ------------------------------+ +| | | Accpt |Untag |VLAN |VS |Egress |VS |Ingress| VPLS |Eth VC| +| Port | | Frame |Ingress|Ingress|Ingress|Untag |Egress |CoS | Port |Ether-| +| Name |PVID | Type |Vid |Filter |Filter |VLAN |Filter |Policy | Type |Type | ++---------+-----+--------+-------+-------+-------+-------+-------+-------+-------+------+ +| 1 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | +| 2 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | +| 3 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | +| 4 | 1 | All | 0 | Ena | Ena | 1 | Dis | leave | Subsc | 8100 | +| 5 | 1 | All | 0 | Ena | Ena | 1 | Dis | leave | Ntwrk | 8100 | +| 6 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Ntwrk | 8100 | ++---------+-----+--------+-------+-------+-------+-------+-------+-------+-------+------+ \ No newline at end of file diff --git a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml new file mode 100644 index 0000000000..4f892d16f5 --- /dev/null +++ b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml @@ -0,0 +1,68 @@ +--- +parsed_sample: + - name: "1" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Dis" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Subsc" + eth_vc_ethertype: "8100" + - name: "2" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Dis" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Subsc" + eth_vc_ethertype: "8100" + - name: "3" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Dis" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Subsc" + eth_vc_ethertype: "8100" + - name: "4" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Ena" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Subsc" + eth_vc_ethertype: "8100" + - name: "5" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Ena" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Ntwrk" + eth_vc_ethertype: "8100" + - name: "6" + pvid: "1" + accpt_frame_type: "All" + untag_ingress_vid: "0" + vlan_ingress_filter: "Ena" + vs_ingress_filter: "Dis" + egress_untag_vlan: "1" + vs_egress_filter: "Dis" + ingress_cos_policy: "leave" + vpls_port_type: "Ntwrk" + eth_vc_ethertype: "8100" diff --git a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw new file mode 100644 index 0000000000..437aa26631 --- /dev/null +++ b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw @@ -0,0 +1,11 @@ ++---------------------------- PORT OPERATIONAL STATUS ----------------------------+ +| | | |Link State| | |Speed/ |MTU |Flow | +| ## | Description |Link|Duration |XCVR|STP|Duplex |Size |Ctrl | ++----+-------------------------------+----+----------+----+---+-------+-----+-----+ +|1 |ACL_3360610_71CHA |Down| 0h 0m 0s| |Dis| | 9100| | +|2 |UNI-Port2 |Down| 0h 0m 0s| |Dis| | 9100| | +|3 |UNI-Port3 |Down| 0h 0m 0s| |Dis| | 9100| | +|4 |NNI-Ringport |Down| 0h 0m 0s| |Dis| | 9100| | +|5 |NNI-Ringport | Up |268d 1h12m|Ena |FWD|1000/FD| 9216|off | +|6 |NNI-Ringport | Up |268d 1h14m|Ena |FWD|1000/FD| 9216|off | ++----+-------------------------------+----+----------+----+---+-------+-----+-----+ diff --git a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml new file mode 100644 index 0000000000..f9822ca0dd --- /dev/null +++ b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml @@ -0,0 +1,56 @@ +--- +parsed_sample: + - name: "1" + descr: "ACL_3360610_71CHA" + link: "Down" + duration: "0h 0m 0s" + xcvr: "" + stp: "Dis" + speed_duplex: "" + mtu: "9100" + flowctrl: "" + - name: "2" + descr: "UNI-Port2" + link: "Down" + duration: "0h 0m 0s" + xcvr: "" + stp: "Dis" + speed_duplex: "" + mtu: "9100" + flowctrl: "" + - name: "3" + descr: "UNI-Port3" + link: "Down" + duration: "0h 0m 0s" + xcvr: "" + stp: "Dis" + speed_duplex: "" + mtu: "9100" + flowctrl: "" + - name: "4" + descr: "NNI-Ringport" + link: "Down" + duration: "0h 0m 0s" + xcvr: "" + stp: "Dis" + speed_duplex: "" + mtu: "9100" + flowctrl: "" + - name: "5" + descr: "NNI-Ringport" + link: "Up" + duration: "268d 1h12m" + xcvr: "Ena" + stp: "FWD" + speed_duplex: "1000/FD" + mtu: "9216" + flowctrl: "off" + - name: "6" + descr: "NNI-Ringport" + link: "Up" + duration: "268d 1h14m" + xcvr: "Ena" + stp: "FWD" + speed_duplex: "1000/FD" + mtu: "9216" + flowctrl: "off" diff --git a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw new file mode 100644 index 0000000000..32db3870b6 --- /dev/null +++ b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw @@ -0,0 +1,11 @@ ++----+-----+-----+---------Transceiver-Status------------+-----+----------------+----+ +| |Admin| Oper| |Ciena|Ether Medium & |Diag| +|Port|State|State| Vendor Name & Part Number | Rev |Connector Type |Data| ++----+-----+-----+---------------------------------------+-----+----------------+----+ +|1 |Empty| | | | | | +|2 |Empty| | | | | | +|3 |Empty| | | | | | +|4 |Empty| | | | | | +|5 |Ena |Ena |CIENA-LMT XCVR-A40Y31 Rev0003 |A |1000BASE-LX/LC |Yes | +|6 |Ena |Ena |CIENA-LMT XCVR-A40Y31 Rev0003 |A |1000BASE-LX/LC |Yes | ++----+-----+-----+---------------------------------------+-----+----------------+----+ \ No newline at end of file diff --git a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml new file mode 100644 index 0000000000..cf94731373 --- /dev/null +++ b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml @@ -0,0 +1,44 @@ +--- +parsed_sample: + - port: "1" + admin_state: "Empty" + oper_state: "" + vendor: "" + ciena_rev: "" + connector_type: "" + diag: "" + - port: "2" + admin_state: "Empty" + oper_state: "" + vendor: "" + ciena_rev: "" + connector_type: "" + diag: "" + - port: "3" + admin_state: "Empty" + oper_state: "" + vendor: "" + ciena_rev: "" + connector_type: "" + diag: "" + - port: "4" + admin_state: "Empty" + oper_state: "" + vendor: "" + ciena_rev: "" + connector_type: "" + diag: "" + - port: "5" + admin_state: "Ena" + oper_state: "Ena" + vendor: "CIENA-LMT XCVR-A40Y31 Rev0003" + ciena_rev: "A" + connector_type: "1000BASE-LX/LC" + diag: "Yes" + - port: "6" + admin_state: "Ena" + oper_state: "Ena" + vendor: "CIENA-LMT XCVR-A40Y31 Rev0003" + ciena_rev: "A" + connector_type: "1000BASE-LX/LC" + diag: "Yes" From 27ee25f86fe3306763bc7b1a83e27824869ad131 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Mon, 23 Jan 2023 19:43:16 +0100 Subject: [PATCH 14/31] add oneaccess_oneos show_transceiver_equipment and show_policy-interface_output --- ntc_templates/templates/index | 2 + ...oneos_show_policy-interface_output.textfsm | 72 ++ ...s_oneos_show_transceiver_equipment.textfsm | 121 ++++ .../show_policy-interface_output.lbb_140.raw | 446 ++++++++++++ .../show_policy-interface_output.lbb_140.yml | 667 ++++++++++++++++++ .../show_policy-interface_output.lbb_150.raw | 427 +++++++++++ .../show_policy-interface_output.lbb_150.yml | 632 +++++++++++++++++ ...how_transceiver_equipment.lbb140_empty.raw | 2 + ...how_transceiver_equipment.lbb140_empty.yml | 2 + .../show_transceiver_equipment.lbb150.raw | 64 ++ .../show_transceiver_equipment.lbb150.yml | 54 ++ ...how_transceiver_equipment.lbb150_empty.raw | 2 + ...how_transceiver_equipment.lbb150_empty.yml | 2 + .../show_transceiver_equipment.lbb320.raw | 33 + .../show_transceiver_equipment.lbb320.yml | 54 ++ 15 files changed, 2580 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm create mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw create mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml create mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw create mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw create mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 87ddcd2fc6..aad612b1b6 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -698,6 +698,7 @@ oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos oneaccess_oneos_show_voice_voip-call_active_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment oneaccess_oneos_show_voice_voice-port_pri_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all +oneaccess_oneos_show_policy-interface_output.textfsm, .*, oneaccess_oneos, sh[[ow]] policy-interface output oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route oneaccess_oneos_show_voice_sip-gateway_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice sip-gateway reset oneaccess_oneos_show_voice_voip-call_any_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call any all @@ -705,6 +706,7 @@ oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp +oneaccess_oneos_show_transceiver_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] transceiver equipment oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief diff --git a/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm b/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm new file mode 100644 index 0000000000..59cf1334c8 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm @@ -0,0 +1,72 @@ +Value Filldown INTERFACE (.*) +Value Filldown SERVICE_POLICY_OUT_PARENT (\S+) +Value Filldown CLASS_PARENT (\S+) +Value Filldown CLASS_PARENT_PRIO (.*\S) +Value Filldown SERVICE_POLICY_OUT_CHILD (\S+) +Value CLASS_CHILD (\S+) +Value PACKETS (\d+) +Value Required BYTES (\d+) +Value DSCP_REMARKED (\d+) +Value MEAN_INTPUT_RATE_BITS_SECOND (\d+) +Value Fillup TOTAL_BW_KBS (\d+) +Value Fillup TOTAL_QUEUE_LENGTH (\d+) +Value Fillup TOTAL_MEAN_INPUT_RATE_BPS (\d+) +Value Fillup TOTAL_MEAN_OUTPUT_RATE_BPS (\d+) +Value Fillup TOTAL_OUTPUT_PACKETS (\d+) +Value Fillup TOTAL_OUTPUT_PACKETS_DROPPED (\d+) +Value Fillup TOTAL_OUTPUT_PACKETS_DROPPED_PCT (\d+) +Value Fillup TOTAL_OUTPUT_BYTES (\d+) +Value Fillup TOTAL_OUTPUT_BYTES_DROPPED (\d+) +Value Fillup TOTAL_OUTPUT_BYTES_DROPPED_PCT (\d+) +Value QOS_BYTES_OUT (\d+) +Value QOS_BYTES_DROPPED (\d+) +Value QOS_BYTES_DROPPED_PCT (\d+) +Value QOS_AVG_INPUT_BPS (\d+) +Value QOS_AVG_OUTPUT_BPS (\d+) +Value QOS_PKTS_OUT (\d+) +Value QOS_PKTS_DROPPED (\d+) +Value QOS_PKTS_DROPPED_PCT (\d+) +Value QOS_BW_KB (\d+) +Value QOS_BURST_B (\d+) +Value QOS_Q_LENGTH (\d+) +Value QOS_Q_LIMIT (\d+) +Value Fillup QOS_REMAINING_BW_SHARE (\d+) +Value Fillup QOS_EXCESS_RATE_PRIO (\d+) +Value Fillup QOS_EXCESS_PACKETS (\d+) + +# each record is either part of the traffic stats output +# these records do not have any QOS values filled in +# or the queueing output +# these records will have QOS values filled in +Start + ^${INTERFACE}:\sservice-policy\soutput\s${SERVICE_POLICY_OUT_PARENT} + ^traffic\sstatistics: -> TrafficStats + ^output\squeuing\sstatistics: -> OutputQueuingStats + ^.* + + +TrafficStats + ^\s\sClass\s'${CLASS_PARENT}': + ^\s\s\s\s${PACKETS}\spackets,\s${BYTES}\sbytes,\s${DSCP_REMARKED}\sdscp\sremarked,\smean\sinput\srate\s${MEAN_INTPUT_RATE_BITS_SECOND}\sbits/s -> Record + ^\s\s\s\sService-policy\s${SERVICE_POLICY_OUT_CHILD}\s: + ^\s\s\s\s\s\sClass\s'${CLASS_CHILD}': + ^\s\s\s\s\s\s\s\s${PACKETS}\spackets,\s${BYTES}\sbytes,\s${DSCP_REMARKED}\sdscp\sremarked,\smean\sinput\srate\s${MEAN_INTPUT_RATE_BITS_SECOND}\sbits/s -> Record + ^\s*$$ -> Start + +OutputQueuingStats + ^\s\s(\s\s\s\s)?Class\s'${CLASS_PARENT}':\s${CLASS_PARENT_PRIO} + ^\s\s\s\s(\s\s\s\s)?bandwidth\s${QOS_BW_KB}\skb/s,\sburst\s${QOS_BURST_B}\sbytes,\squeue\slength/limit\s${QOS_Q_LENGTH}/${QOS_Q_LIMIT} + ^\s\s\s\s(\s\s\s\s)?mean\sinput\srate\s${QOS_AVG_INPUT_BPS}\sbits/s,\smean\soutput\srate\s${QOS_AVG_OUTPUT_BPS}\sbits/s + ^\s\s\s\s(\s\s\s\s)?packets\soutput\s${QOS_PKTS_OUT},\spackets\sdropped\s${QOS_PKTS_DROPPED}\s\(${QOS_PKTS_DROPPED_PCT}%\) + ^\s\s\s\s(\s\s\s\s)?remaining-bandwidth\sshare\s${QOS_REMAINING_BW_SHARE},\sexcess-rate-priority\s${QOS_EXCESS_RATE_PRIO},\sexcess\spackets\ssent\s${QOS_EXCESS_PACKETS} + ^\s\s\s\s(\s\s\s\s)?bytes\soutput\s${QOS_BYTES_OUT},\sbytes\sdropped\s${QOS_BYTES_DROPPED}\s\(${QOS_BYTES_DROPPED_PCT}%\) -> Continue + ^\s\s\s\s(\s\s\s\s)?bytes\soutput\s${BYTES},\sbytes\sdropped\s\d+\s\(\d+%\) -> Record + ^\s\sInterface\stotal: -> StatsInterfaceTotal + ^.* + +StatsInterfaceTotal + ^\s+bandwidth\s${TOTAL_BW_KBS}\skb/s,\squeue\slength\s${TOTAL_QUEUE_LENGTH} + ^\s+mean\sinput\srate\s${TOTAL_MEAN_INPUT_RATE_BPS}\sbits/s,\smean\soutput\srate\s${TOTAL_MEAN_OUTPUT_RATE_BPS}\sbits/s + ^\s+packets\soutput\s${TOTAL_OUTPUT_PACKETS},\spackets\sdropped\s${TOTAL_OUTPUT_PACKETS_DROPPED}\s\(${TOTAL_OUTPUT_PACKETS_DROPPED_PCT}%\) + ^\s+bytes\soutput\s${TOTAL_OUTPUT_BYTES},\sbytes\sdropped\s${TOTAL_OUTPUT_BYTES_DROPPED}\s\(${TOTAL_OUTPUT_BYTES_DROPPED_PCT}%\) + ^\s*$$ -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm b/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm new file mode 100644 index 0000000000..d72ab72d8d --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm @@ -0,0 +1,121 @@ +Value Filldown PORT (\S+) +Value Required PHYSICAL_DEVICE (.*\S) +Value CONNECTOR (\S+) +Value VENDOR_NAME (.*\S) +Value VENDOR_ID (.*\S) +Value VENDOR_PARTNR (.*\S) +Value VENDOR_REVISION (.*\S) +Value VENDOR_DATECODE (.*\S) +Value TCVR_ETHER_COMPLIANCE (.*\S) +Value TCVR_10G_ETHER_COMPLIANCE (.*\S) +Value TCVR_FIBER_LINKLEN (.*\S) +Value TCVR_FIBER_TECH (.*\S) +Value TCVR_FIBER_TXMEDIA (.*\S) +Value TCVR_FIBER_SPEED (.*\S) +Value WAVELENGTH (.*\S) +Value ENCODING (.*\S) +Value NOMINAL_BITRATE (.*\S) +Value LINKLEN_SM (.*\S) +Value LINKLEN_50_MM (.*\S) +Value LINKLEN_625_MM (.*\S) +Value LINKLEN_COPPER (.*\S) +Value List OPTIONS (\S.*\S) +Value MAX_BIT_RATE (\S.*\S) +Value MIN_BIT_RATE (\S.*\S) +Value TEMP_HIGH_ALARM (\S.*\S) +Value TEMP_LOW_ALARM (\S.*\S) +Value TEMP_HIGH_WARNING (\S.*\S) +Value TEMP_LOW_WARNING (\S.*\S) +Value VOLTAGE_HIGH_ALARM (\S.*\S) +Value VOLTAGE_LOW_ALARM (\S.*\S) +Value VOLTAGE_HIGH_WARNING (\S.*\S) +Value VOLTAGE_LOW_WARNING (\S.*\S) +Value BIAS_HIGH_ALARM (\S.*\S) +Value BIAS_LOW_ALARM (\S.*\S) +Value BIAS_HIGH_WARNING (\S.*\S) +Value BIAS_LOW_WARNING (\S.*\S) +Value TX_POWER_HIGH_ALARM (\S.*\S) +Value TX_POWER_LOW_ALARM (\S.*\S) +Value TX_POWER_HIGH_WARNING (\S.*\S) +Value TX_POWER_LOW_WARNING (\S.*\S) +Value RX_POWER_HIGH_ALARM (\S.*\S) +Value RX_POWER_LOW_ALARM (\S.*\S) +Value RX_POWER_HIGH_WARNING (\S.*\S) +Value RX_POWER_LOW_WARNING (\S.*\S) +Value MEASURED_MODULE_TEMP (\S.*\S) +Value MEASURED_SUPPLY_VOLTAGE (\S.*\S) +Value MEASURED_TX_BIAS_CURRENT (\S.*\S) +Value MEASURED_TX_OUTPUT_POWER (\S.*\S) +Value MEASURED_RX_INPUT_POWER (\S.*\S) + +Start + ^SFP\s${PORT}: -> Record + ^\s*Physical\sdevice\s+=\s+${PHYSICAL_DEVICE} + ^\s*connector\s+=\s+${CONNECTOR} + ^\s*vendor: -> VENDOR + ^\s*wavelength\s+=\s+${WAVELENGTH} + ^\s*encoding\s+=\s+${ENCODING} + ^\s*nominalBitRate\s+=\s+${NOMINAL_BITRATE} + ^\s*Link\slength\sin: -> LINK_LENGTH + ^\s*[mM]in\sbit\srate\s+=\s+${MIN_BIT_RATE} + ^\s*Diagnostics\scalibration\sis\sinternal -> DIAGNOSTICS + ^.* + ^. -> Error + +VENDOR + ^\s*name\s+=\s+${VENDOR_NAME} + ^\s*id\s+=\s+${VENDOR_ID} + ^\s*partNumber\s+=\s+${VENDOR_PARTNR} + ^\s*revision\s+=\s+${VENDOR_REVISION} + ^\s*dateCode\s+=\s+${VENDOR_DATECODE} + ^\s*transceiver: -> TRANSCEIVER + +TRANSCEIVER + ^\s*ethernetComplianceCode\s+=\s+${TCVR_ETHER_COMPLIANCE} + ^\s*10G\sethernetComplianceCode\s+=\s+${TCVR_10G_ETHER_COMPLIANCE} + ^\s*fiberLinkLen\s+=\s+${TCVR_FIBER_LINKLEN} + ^\s*fiberTech\s+=\s+${TCVR_FIBER_TECH} + ^\s*fiberTxMedia\s+=\s+${TCVR_FIBER_TXMEDIA} + ^\s*fiberSpeed\s+=\s+${TCVR_FIBER_SPEED} -> Continue + ^\s*fiberSpeed -> Start + +LINK_LENGTH + ^\s*single\sfiber\smode\s+=\s+${LINKLEN_SM} + ^\s*50u\smulti-mode\sfiber\s+=\s+${LINKLEN_50_MM} + ^\s*62\.5u\smulti-mode\sfiber\s+=\s+${LINKLEN_625_MM} + ^\s*copper\scable\s+=\s+${LINKLEN_COPPER} -> Continue + ^\s*copper\scable -> OPTIONS + +OPTIONS + ^\s*Max\sbit\srate\s+=\s+${MAX_BIT_RATE} -> Start + ^\s*options\s+=\s${OPTIONS} + ^\s+${OPTIONS} + +DIAGNOSTICS + ^\s*Temp\sHigh\sAlarm\s+=\s+${TEMP_HIGH_ALARM} + ^\s*Temp\sLow\sAlarm\s+=\s+${TEMP_LOW_ALARM} + ^\s*Temp\sHigh\sWarning\s+=\s+${TEMP_HIGH_WARNING} + ^\s*Temp\sLow\sWarning\s+=\s+${TEMP_LOW_WARNING} + ^\s*Voltage\sHigh\sAlarm\s+=\s+${VOLTAGE_HIGH_ALARM} + ^\s*Voltage\sLow\sAlarm\s+=\s+${VOLTAGE_LOW_ALARM} + ^\s*Voltage\sHigh\sWarning\s+=\s+${VOLTAGE_HIGH_WARNING} + ^\s*Voltage\sLow\sWarning\s+=\s+${VOLTAGE_LOW_WARNING} + ^\s*Bias\sHigh\sAlarm\s+=\s+${BIAS_HIGH_ALARM} + ^\s*Bias\sLow\sAlarm\s+=\s+${BIAS_LOW_ALARM} + ^\s*Bias\sHigh\sWarning\s+=\s+${BIAS_HIGH_WARNING} + ^\s*Bias\sLow\sWarning\s+=\s+${BIAS_LOW_WARNING} + ^\s*TX\sPower\sHigh\sAlarm\s+=\s+${TX_POWER_HIGH_ALARM} + ^\s*TX\sPower\sLow\sAlarm\s+=\s+${TX_POWER_LOW_ALARM} + ^\s*TX\sPower\sHigh\sWarning\s+=\s+${TX_POWER_HIGH_WARNING} + ^\s*TX\sPower\sLow\sWarning\s+=\s+${TX_POWER_LOW_WARNING} + ^\s*RX\sPower\sHigh\sAlarm\s+=\s+${RX_POWER_HIGH_ALARM} + ^\s*RX\sPower\sLow\sAlarm\s+=\s+${RX_POWER_LOW_ALARM} + ^\s*RX\sPower\sHigh\sWarning\s+=\s+${RX_POWER_HIGH_WARNING} + ^\s*RX\sPower\sLow\sWarning\s+=\s+${RX_POWER_LOW_WARNING} + ^\s*Internally\sMeasured\sModule\sTemperature\s+=\s+${MEASURED_MODULE_TEMP} + ^\s*Internally\sMeasured\sSupply\sVoltage\s+=\s+${MEASURED_SUPPLY_VOLTAGE} + ^\s*Internally\sMeasured\sTx\sBias\sCurrent\s+=\s+${MEASURED_TX_BIAS_CURRENT} + ^\s*Measured\sTx\sOutput\sPower\s+=\s+${MEASURED_TX_OUTPUT_POWER} + ^\s*Measured\sRx\sInput\sPower\s+=\s+${MEASURED_RX_INPUT_POWER} + ^SFP\s${PORT}: -> Record Start + ^.* -> Start diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw new file mode 100644 index 0000000000..ed41bf9278 --- /dev/null +++ b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw @@ -0,0 +1,446 @@ +FastEthernet 1/0: service-policy output L3VPN_SHARED_VLAN_SHAPE_CE_OUT +traffic statistics: + Class 'CLASS_ANY': + 705455781 packets, 202655648081 bytes, 0 dscp remarked, mean input rate 76250 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Service-policy L3VPN_SHARED_QOS_CE_OUT : + Class 'REAL-TIME': color-blind mode + 82440 packets, 22296428 bytes, mean input rate 0 bits/s + cir 512 kbits/s, cbs 6400 bytes + conformed 79705 packets, 20216566 bytes; action: set-dscp-transmit 46 + exceeded 2735 packets, 2079862 bytes; action: drop + Class 'MANAGEMENT': + 3881496 packets, 352515276 bytes, 0 dscp remarked, mean input rate 76250 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'ROUTING': + 94685677 packets, 20577282182 bytes, 0 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'PREMIUM': + 866614 packets, 336167380 bytes, 17 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'GOLD': + 45391 packets, 15054274 bytes, 111 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'SILVER': + 5160082 packets, 2081326098 bytes, 968 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'BRONZE': + 76569 packets, 28162916 bytes, 70513 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'class-default': + 600657514 packets, 179242844271 bytes, 0 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + Class 'class-default': + 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s + Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 + +output queuing statistics: + Class 'CLASS_ANY': medium priority (no excess allowed) + bandwidth 33250 kb/s, burst 81872 bytes + mean input rate 73400 bits/s, mean output rate 73400 bits/s + packets output 700594742, packets dropped 707805 (0%) + bytes output 222578689918, bytes dropped 939630669 (0%) + Service-policy L3VPN_SHARED_QOS_CE_OUT : + Class 'REAL-TIME': high priority + bandwidth 512 kb/s, burst 32249 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 79705, packets dropped 0 (0%) + bytes output 22607716, bytes dropped 0 (0%) + Class 'MANAGEMENT': medium priority + bandwidth 9 kb/s, burst 1870 bytes, queue length/limit 0/50 + mean input rate 73200 bits/s, mean output rate 73200 bits/s + packets output 3881341, packets dropped 0 (0%) + bytes output 468946094, bytes dropped 0 (0%) + remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 222911 + Class 'ROUTING': medium priority + bandwidth 9 kb/s, burst 1870 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 94685677, packets dropped 0 (0%) + bytes output 23417852492, bytes dropped 0 (0%) + remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 83405404 + Class 'PREMIUM': medium priority + bandwidth 11452 kb/s, burst 28624 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 866614, packets dropped 0 (0%) + bytes output 362165800, bytes dropped 0 (0%) + remaining-bandwidth share 34, excess-rate-priority 0, excess packets sent 279 + weight random early detection: + exponential weight: 9 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'GOLD': medium priority + bandwidth 8180 kb/s, burst 29750 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 45391, packets dropped 0 (0%) + bytes output 16416004, bytes dropped 0 (0%) + remaining-bandwidth share 24, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 9 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'SILVER': medium priority + bandwidth 4908 kb/s, burst 30749 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 5160082, packets dropped 0 (0%) + bytes output 2236128558, bytes dropped 0 (0%) + remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 42 + weight random early detection: + exponential weight: 9 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'BRONZE': medium priority + bandwidth 3272 kb/s, burst 31249 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 76493, packets dropped 76 (0%) + bytes output 30364562, bytes dropped 95424 (0%) + remaining-bandwidth share 9, excess-rate-priority 0, excess packets sent 10772 + weight random early detection: + exponential weight: 7 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'class-default': medium priority + bandwidth 4908 kb/s, burst 30749 bytes, queue length/limit 0/60 + mean input rate 96 bits/s, mean output rate 96 bits/s + packets output 595799441, packets dropped 707729 (0%) + bytes output 196024209496, bytes dropped 939535245 (0%) + remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 52266475 + weight random early detection: + exponential weight: 9 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 119931 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 41 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 3 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 2 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'class-default': medium priority + bandwidth 66750 kb/s, burst 163868 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 66, excess-rate-priority 0, excess packets sent 0 + Interface total: + bandwidth 100000 kb/s + mean input rate 104400 bits/s, mean output rate 104400 bits/s + packets output 704745364, packets dropped 707805 (0%) + bytes output 222877578682, bytes dropped 939630669 (0%) diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml new file mode 100644 index 0000000000..ce8436f96d --- /dev/null +++ b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml @@ -0,0 +1,667 @@ +--- +parsed_sample: + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "" + class_child: "" + packets: "705455781" + bytes: "202655648081" + dscp_remarked: "0" + mean_intput_rate_bits_second: "76250" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "MANAGEMENT" + packets: "3881496" + bytes: "352515276" + dscp_remarked: "0" + mean_intput_rate_bits_second: "76250" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "ROUTING" + packets: "94685677" + bytes: "20577282182" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "PREMIUM" + packets: "866614" + bytes: "336167380" + dscp_remarked: "17" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "GOLD" + packets: "45391" + bytes: "15054274" + dscp_remarked: "111" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "SILVER" + packets: "5160082" + bytes: "2081326098" + dscp_remarked: "968" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "BRONZE" + packets: "76569" + bytes: "28162916" + dscp_remarked: "70513" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "class-default" + packets: "600657514" + bytes: "179242844271" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "0" + bytes: "0" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "medium priority (no excess allowed)" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "222578689918" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "222578689918" + qos_bytes_dropped: "939630669" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "73400" + qos_avg_output_bps: "73400" + qos_pkts_out: "700594742" + qos_pkts_dropped: "707805" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "REAL-TIME" + class_parent_prio: "high priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "22607716" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "22607716" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "79705" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "512" + qos_burst_b: "32249" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "MANAGEMENT" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "468946094" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "468946094" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "73200" + qos_avg_output_bps: "73200" + qos_pkts_out: "3881341" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "9" + qos_burst_b: "1870" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "ROUTING" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "23417852492" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "23417852492" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "94685677" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "9" + qos_burst_b: "1870" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "222911" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "PREMIUM" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "362165800" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "362165800" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "866614" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "11452" + qos_burst_b: "28624" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "83405404" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "GOLD" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "16416004" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "16416004" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "45391" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "8180" + qos_burst_b: "29750" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "34" + qos_excess_rate_prio: "0" + qos_excess_packets: "279" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "SILVER" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "2236128558" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "2236128558" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "5160082" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "4908" + qos_burst_b: "30749" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "24" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "BRONZE" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "30364562" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "30364562" + qos_bytes_dropped: "95424" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "76493" + qos_pkts_dropped: "76" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "3272" + qos_burst_b: "31249" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "14" + qos_excess_rate_prio: "0" + qos_excess_packets: "42" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "196024209496" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "196024209496" + qos_bytes_dropped: "939535245" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "96" + qos_avg_output_bps: "96" + qos_pkts_out: "595799441" + qos_pkts_dropped: "707729" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "4908" + qos_burst_b: "30749" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "9" + qos_excess_rate_prio: "0" + qos_excess_packets: "10772" + - interface: "FastEthernet 1/0" + service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "medium priority" + service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "" + total_queue_length: "" + total_mean_input_rate_bps: "104400" + total_mean_output_rate_bps: "104400" + total_output_packets: "704745364" + total_output_packets_dropped: "707805" + total_output_packets_dropped_pct: "0" + total_output_bytes: "222877578682" + total_output_bytes_dropped: "939630669" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "66750" + qos_burst_b: "163868" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "14" + qos_excess_rate_prio: "0" + qos_excess_packets: "52266475" diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw new file mode 100644 index 0000000000..9185f600aa --- /dev/null +++ b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw @@ -0,0 +1,427 @@ +GigabitEthernet 1/0: service-policy output L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT +traffic statistics: + Class 'CLASS_ANY': + 17116556 packets, 2997937810 bytes, 0 dscp remarked, mean input rate 8290 bits/s + Service-policy VDSL_QOS_4M_OUT : + Class 'MANAGEMENT': + 3526876 packets, 284813499 bytes, 0 dscp remarked, mean input rate 8290 bits/s + Class 'ROUTING': + 72309 packets, 4451262 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'PREMIUM': + 19374 packets, 13810113 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'GOLD': + 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'SILVER': + 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'BRONZE': + 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'class-default': + 13497997 packets, 2694862936 bytes, 0 dscp remarked, mean input rate 0 bits/s + Class 'class-default': + 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s + +output queuing statistics: + Class 'CLASS_ANY': medium priority (no excess allowed) + bandwidth 3800 kb/s, burst 34368 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 14594313, packets dropped 0 (0%) + bytes output 3139710008, bytes dropped 0 (0%) + Service-policy VDSL_QOS_4M_OUT : + Class 'MANAGEMENT': medium priority + bandwidth 9 kb/s, burst 7104 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 1077447, packets dropped 0 (0%) + bytes output 133680047, bytes dropped 0 (0%) + remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 58982 + Class 'ROUTING': medium priority + bandwidth 9 kb/s, burst 7104 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 0 + Class 'PREMIUM': medium priority + bandwidth 1323 kb/s, burst 34496 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 19374, packets dropped 0 (0%) + bytes output 14236341, bytes dropped 0 (0%) + remaining-bandwidth share 34, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 7 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'GOLD': medium priority + bandwidth 945 kb/s, burst 34496 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 24, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 7 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'SILVER': medium priority + bandwidth 567 kb/s, burst 34496 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 6 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'BRONZE': medium priority + bandwidth 378 kb/s, burst 7104 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 9, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 6 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'class-default': medium priority + bandwidth 569 kb/s, burst 34496 bytes, queue length/limit 0/60 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 13497492, packets dropped 0 (0%) + bytes output 2991793620, bytes dropped 0 (0%) + remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 0 + weight random early detection: + exponential weight: 6 + + Dscp Random drop Tail drop Min/Max Mark + pkts pkts threshold probability + 0 0 0 30/60 1/10 + 1 0 0 33/60 1/10 + 2 0 0 36/60 1/10 + 3 0 0 39/60 1/10 + 4 0 0 42/60 1/10 + 5 0 0 45/60 1/10 + 6 0 0 48/60 1/10 + 7 0 0 51/60 1/10 + 8 0 0 33/60 1/10 + 9 0 0 33/60 1/10 + 10 0 0 36/60 1/10 + 11 0 0 39/60 1/10 + 12 0 0 42/60 1/10 + 13 0 0 45/60 1/10 + 14 0 0 48/60 1/10 + 15 0 0 51/60 1/10 + 16 0 0 36/60 1/10 + 17 0 0 33/60 1/10 + 18 0 0 36/60 1/10 + 19 0 0 39/60 1/10 + 20 0 0 42/60 1/10 + 21 0 0 45/60 1/10 + 22 0 0 48/60 1/10 + 23 0 0 51/60 1/10 + 24 0 0 39/60 1/10 + 25 0 0 33/60 1/10 + 26 0 0 36/60 1/10 + 27 0 0 39/60 1/10 + 28 0 0 42/60 1/10 + 29 0 0 45/60 1/10 + 30 0 0 48/60 1/10 + 31 0 0 51/60 1/10 + 32 0 0 42/60 1/10 + 33 0 0 33/60 1/10 + 34 0 0 36/60 1/10 + 35 0 0 39/60 1/10 + 36 0 0 42/60 1/10 + 37 0 0 45/60 1/10 + 38 0 0 48/60 1/10 + 39 0 0 51/60 1/10 + 40 0 0 45/60 1/10 + 41 0 0 33/60 1/10 + 42 0 0 36/60 1/10 + 43 0 0 39/60 1/10 + 44 0 0 42/60 1/10 + 45 0 0 45/60 1/10 + 46 0 0 48/60 1/10 + 47 0 0 51/60 1/10 + 48 0 0 48/60 1/10 + 49 0 0 33/60 1/10 + 50 0 0 36/60 1/10 + 51 0 0 39/60 1/10 + 52 0 0 42/60 1/10 + 53 0 0 45/60 1/10 + 54 0 0 48/60 1/10 + 55 0 0 51/60 1/10 + 56 0 0 51/60 1/10 + 57 0 0 33/60 1/10 + 58 0 0 36/60 1/10 + 59 0 0 39/60 1/10 + 60 0 0 42/60 1/10 + 61 0 0 45/60 1/10 + 62 0 0 48/60 1/10 + 63 0 0 51/60 1/10 + Class 'class-default': medium priority + bandwidth 996200 kb/s, burst 12928 bytes, queue length/limit 0/50 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 0, packets dropped 0 (0%) + bytes output 0, bytes dropped 0 (0%) + remaining-bandwidth share 100, excess-rate-priority 0, excess packets sent 0 + Interface total: + bandwidth 1000000 kb/s, queue length 0 + mean input rate 0 bits/s, mean output rate 0 bits/s + packets output 14594313, packets dropped 0 (0%) + bytes output 3139710008, bytes dropped 0 (0%) diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml new file mode 100644 index 0000000000..136b38f0c9 --- /dev/null +++ b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml @@ -0,0 +1,632 @@ +--- +parsed_sample: + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "" + class_child: "" + packets: "17116556" + bytes: "2997937810" + dscp_remarked: "0" + mean_intput_rate_bits_second: "8290" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "MANAGEMENT" + packets: "3526876" + bytes: "284813499" + dscp_remarked: "0" + mean_intput_rate_bits_second: "8290" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "ROUTING" + packets: "72309" + bytes: "4451262" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "PREMIUM" + packets: "19374" + bytes: "13810113" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "GOLD" + packets: "0" + bytes: "0" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "SILVER" + packets: "0" + bytes: "0" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "BRONZE" + packets: "0" + bytes: "0" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "class-default" + packets: "13497997" + bytes: "2694862936" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "0" + bytes: "0" + dscp_remarked: "0" + mean_intput_rate_bits_second: "0" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "" + qos_bytes_dropped: "" + qos_bytes_dropped_pct: "" + qos_avg_input_bps: "" + qos_avg_output_bps: "" + qos_pkts_out: "" + qos_pkts_dropped: "" + qos_pkts_dropped_pct: "" + qos_bw_kb: "" + qos_burst_b: "" + qos_q_length: "" + qos_q_limit: "" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "CLASS_ANY" + class_parent_prio: "medium priority (no excess allowed)" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "3139710008" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "3139710008" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "14594313" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "3800" + qos_burst_b: "34368" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "MANAGEMENT" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "133680047" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "133680047" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "1077447" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "9" + qos_burst_b: "7104" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "ROUTING" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "9" + qos_burst_b: "7104" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "58982" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "PREMIUM" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "14236341" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "14236341" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "19374" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "1323" + qos_burst_b: "34496" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "1" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "GOLD" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "945" + qos_burst_b: "34496" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "34" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "SILVER" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "567" + qos_burst_b: "34496" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "24" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "BRONZE" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "378" + qos_burst_b: "7104" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "14" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "2991793620" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "2991793620" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "13497492" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "569" + qos_burst_b: "34496" + qos_q_length: "0" + qos_q_limit: "60" + qos_remaining_bw_share: "9" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" + - interface: "GigabitEthernet 1/0" + service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" + class_parent: "class-default" + class_parent_prio: "medium priority" + service_policy_out_child: "VDSL_QOS_4M_OUT" + class_child: "" + packets: "" + bytes: "0" + dscp_remarked: "" + mean_intput_rate_bits_second: "" + total_bw_kbs: "1000000" + total_queue_length: "0" + total_mean_input_rate_bps: "0" + total_mean_output_rate_bps: "0" + total_output_packets: "14594313" + total_output_packets_dropped: "0" + total_output_packets_dropped_pct: "0" + total_output_bytes: "3139710008" + total_output_bytes_dropped: "0" + total_output_bytes_dropped_pct: "0" + qos_bytes_out: "0" + qos_bytes_dropped: "0" + qos_bytes_dropped_pct: "0" + qos_avg_input_bps: "0" + qos_avg_output_bps: "0" + qos_pkts_out: "0" + qos_pkts_dropped: "0" + qos_pkts_dropped_pct: "0" + qos_bw_kb: "996200" + qos_burst_b: "12928" + qos_q_length: "0" + qos_q_limit: "50" + qos_remaining_bw_share: "14" + qos_excess_rate_prio: "0" + qos_excess_packets: "0" diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw new file mode 100644 index 0000000000..e6592b6160 --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw @@ -0,0 +1,2 @@ + +No SFP module present diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw new file mode 100644 index 0000000000..5596295293 --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw @@ -0,0 +1,64 @@ +SFP 1/0: + Physical device = SFP transceiver + connector = LC + vendor: + name = ONE ACCESS + id = unspecified + partNumber = OA40681 + revision = A + serialNumber = F79B0FE + dateCode = 191218 + transceiver: + sonetOc48 = not available + sonetOc12_3 = not available + ethernetComplianceCode = 1000BASE-SX + 10G ethernetComplianceCode = not available + fiberLinkLen = intermediate distance + fiberTech = Shortwave laser w/o OFC + fiberTxMedia = not available + fiberSpeed = 100 MBytes/Sec + wavelength = 20995 nm + encoding = 8B10B + nominalBitRate = 1300 Mbps + Link length in: + single fiber mode = 0 m + 50u multi-mode fiber = 550 m + 62.5u multi-mode fiber = 270 m + copper cable = Not supported + options = Loss of Signal + TX_FAULT signal + TX_DISABLE signal + Max bit rate = not specified + Min bit rate = not specified + + Diagnostics calibration is internal + Temp High Alarm = 85.0 C + Temp Low Alarm = -10.0 C + Temp High Warning = 80.0 C + Temp Low Warning = -5.0 C + Voltage High Alarm = 3.60 V + Voltage Low Alarm = 2.90 V + Voltage High Warning = 3.50 V + Voltage Low Warning = 3.00 V + Bias High Alarm = 50.000 mA + Bias Low Alarm = 0.500 mA + Bias High Warning = 40.000 mA + Bias Low Warning = 0.100 mA + TX Power High Alarm = 0.7943 mW + TX Power Low Alarm = 0.0631 mW + TX Power High Warning = 0.6310 mW + TX Power Low Warning = 0.0794 mW + RX Power High Alarm = 1.2589 mW + RX Power Low Alarm = 0.0100 mW + RX Power High Warning = 1.0000 mW + RX Power Low Warning = 0.0126 mW + Internally Measured Module Temperature = 57.4 C + Internally Measured Supply Voltage = 3.30 V + Internally Measured Tx Bias Current = 10.700 mA + Measured Tx Output Power = 0.2153 mW (-6.67 dBm) + Measured Rx Input Power = 0.1287 mW (-8.90 dBm) + Optional Status Control Reg = 0x00 + Alarm and Warning Flag Reg offset 112 = 0x00 + Alarm and Warning Flag Reg offset 113 = 0x00 + Alarm and Warning Flag Reg offset 116 = 0x00 + Alarm and Warning Flag Reg offset 117 = 0x00 diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml new file mode 100644 index 0000000000..05b136efca --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml @@ -0,0 +1,54 @@ +--- +parsed_sample: + - port: "1/0" + physical_device: "SFP transceiver" + connector: "LC" + vendor_name: "ONE ACCESS" + vendor_id: "unspecified" + vendor_partnr: "OA40681" + vendor_revision: "A" + vendor_datecode: "191218" + tcvr_ether_compliance: "1000BASE-SX" + tcvr_10g_ether_compliance: "not available" + tcvr_fiber_linklen: "intermediate distance" + tcvr_fiber_tech: "Shortwave laser w/o OFC" + tcvr_fiber_txmedia: "not available" + tcvr_fiber_speed: "100 MBytes/Sec" + wavelength: "20995 nm" + encoding: "8B10B" + nominal_bitrate: "1300 Mbps" + linklen_sm: "0 m" + linklen_50_mm: "550 m" + linklen_625_mm: "270 m" + linklen_copper: "Not supported" + options: + - "Loss of Signal" + - "TX_FAULT signal" + - "TX_DISABLE signal" + max_bit_rate: "not specified" + min_bit_rate: "not specified" + temp_high_alarm: "85.0 C" + temp_low_alarm: "-10.0 C" + temp_high_warning: "80.0 C" + temp_low_warning: "-5.0 C" + voltage_high_alarm: "3.60 V" + voltage_low_alarm: "2.90 V" + voltage_high_warning: "3.50 V" + voltage_low_warning: "3.00 V" + bias_high_alarm: "50.000 mA" + bias_low_alarm: "0.500 mA" + bias_high_warning: "40.000 mA" + bias_low_warning: "0.100 mA" + tx_power_high_alarm: "0.7943 mW" + tx_power_low_alarm: "0.0631 mW" + tx_power_high_warning: "0.6310 mW" + tx_power_low_warning: "0.0794 mW" + rx_power_high_alarm: "1.2589 mW" + rx_power_low_alarm: "0.0100 mW" + rx_power_high_warning: "1.0000 mW" + rx_power_low_warning: "0.0126 mW" + measured_module_temp: "57.4 C" + measured_supply_voltage: "3.30 V" + measured_tx_bias_current: "10.700 mA" + measured_tx_output_power: "0.2153 mW (-6.67 dBm)" + measured_rx_input_power: "0.1287 mW (-8.90 dBm)" diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw new file mode 100644 index 0000000000..656b14740f --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw @@ -0,0 +1,2 @@ +SFP 1/0: + No Inventory data available diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml new file mode 100644 index 0000000000..e77add67ed --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml @@ -0,0 +1,2 @@ +--- +parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw new file mode 100644 index 0000000000..9c39489f5a --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw @@ -0,0 +1,33 @@ + +SFP module inventory information: +Physical device = SFP transceiver +connector = LC +vendor: + name = Hisense + id = unspecified + partNumber = LTD1302-BC+1 + revision = V1.2 + serialNumber = J233C006326 + dateCode = 131217 +transceiver: + sonetOc48 = not available + sonetOc12_3 = not available + ethernetComplianceCode = 1000BASE-LX + fiberLinkLen = long distance + fiberTech = Longwave laser (LL) + fiberTxMedia = Single Mode + fiberSpeed = 100 MBytes/Sec +wavelength = 1310 nm +encoding = NRZ +nominalBitRate = 1200 Mbps +Link length in: + single fiber mode = 10000 m + 50u multi-mode fiber = 0 m + 62.5u multi-mode fiber = 0 m + copper cable = 0 m +options = Loss of Signal + TX_FAULT signal + TX_DISABLE signal +Max bit rate = not specified +min bit rate = not specified + diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml new file mode 100644 index 0000000000..58c7fd316a --- /dev/null +++ b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml @@ -0,0 +1,54 @@ +--- +parsed_sample: + - port: "" + physical_device: "SFP transceiver" + connector: "LC" + vendor_name: "Hisense" + vendor_id: "unspecified" + vendor_partnr: "LTD1302-BC+1" + vendor_revision: "V1.2" + vendor_datecode: "131217" + tcvr_ether_compliance: "1000BASE-LX" + tcvr_10g_ether_compliance: "" + tcvr_fiber_linklen: "long distance" + tcvr_fiber_tech: "Longwave laser (LL)" + tcvr_fiber_txmedia: "Single Mode" + tcvr_fiber_speed: "100 MBytes/Sec" + wavelength: "1310 nm" + encoding: "NRZ" + nominal_bitrate: "1200 Mbps" + linklen_sm: "10000 m" + linklen_50_mm: "0 m" + linklen_625_mm: "0 m" + linklen_copper: "0 m" + options: + - "Loss of Signal" + - "TX_FAULT signal" + - "TX_DISABLE signal" + max_bit_rate: "not specified" + min_bit_rate: "not specified" + temp_high_alarm: "" + temp_low_alarm: "" + temp_high_warning: "" + temp_low_warning: "" + voltage_high_alarm: "" + voltage_low_alarm: "" + voltage_high_warning: "" + voltage_low_warning: "" + bias_high_alarm: "" + bias_low_alarm: "" + bias_high_warning: "" + bias_low_warning: "" + tx_power_high_alarm: "" + tx_power_low_alarm: "" + tx_power_high_warning: "" + tx_power_low_warning: "" + rx_power_high_alarm: "" + rx_power_low_alarm: "" + rx_power_high_warning: "" + rx_power_low_warning: "" + measured_module_temp: "" + measured_supply_voltage: "" + measured_tx_bias_current: "" + measured_tx_output_power: "" + measured_rx_input_power: "" From 34e8b3dddcfd596e91f47496645c882bc15ba373 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 27 Jan 2023 15:36:23 +0100 Subject: [PATCH 15/31] Update oneaccess_oneos_show_software-image.textfsm --- .../templates/oneaccess_oneos_show_software-image.textfsm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm index e9425b431c..00e8e78fe0 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm @@ -5,6 +5,7 @@ Value CHECKSUM (\S+) Start ^-+\s${BANK}\sbank\s-+ -> BANK + ^Installation status.* ^.*$$ ^. -> Error @@ -14,5 +15,6 @@ BANK ^Header\schecksum\s+:\s${CHECKSUM} ^-+ -> Continue.Record ^-+\s${BANK}\sbank\s-+ -> BANK + ^Installation status.* ^$$ ^. -> Error From f43d995e708040eadcceefd5b7b863c3478d5c0f Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 27 Jan 2023 15:37:25 +0100 Subject: [PATCH 16/31] Update oneaccess_oneos_show_software-image.textfsm --- .../templates/oneaccess_oneos_show_software-image.textfsm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm index 00e8e78fe0..048bd3e470 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm @@ -5,7 +5,6 @@ Value CHECKSUM (\S+) Start ^-+\s${BANK}\sbank\s-+ -> BANK - ^Installation status.* ^.*$$ ^. -> Error @@ -15,6 +14,6 @@ BANK ^Header\schecksum\s+:\s${CHECKSUM} ^-+ -> Continue.Record ^-+\s${BANK}\sbank\s-+ -> BANK - ^Installation status.* + ^Installation\sstatus.* ^$$ ^. -> Error From 9b45aca59cf7b1ffe4e480cf88683e568f0d172d Mon Sep 17 00:00:00 2001 From: mwallraf Date: Mon, 30 Jan 2023 08:07:42 +0000 Subject: [PATCH 17/31] oneaccess_oneos add secure crashlog command --- ntc-templates | 1 + ntc_templates/templates/index | 1 + ..._oneos_show_system_secure-crashlog.textfsm | 40 ++++ .../show_reboot_counters.plug103.raw | 12 + .../show_reboot_counters.plug103.yml | 13 ++ .../show_reboot_counters.plug212.raw | 13 ++ .../show_reboot_counters.plug212.yml | 13 ++ .../show_system_secure-crashlog.plug103.raw | 87 +++++++ .../show_system_secure-crashlog.plug103.yml | 21 ++ .../show_system_secure-crashlog.plug212.raw | 23 ++ .../show_system_secure-crashlog.plug212.yml | 21 ++ .../show_system_secure-crashlog.plug401.raw | 212 ++++++++++++++++++ .../show_system_secure-crashlog.plug401.yml | 22 ++ 13 files changed, 479 insertions(+) create mode 120000 ntc-templates create mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw create mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw create mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml diff --git a/ntc-templates b/ntc-templates new file mode 120000 index 0000000000..b3cd12ad08 --- /dev/null +++ b/ntc-templates @@ -0,0 +1 @@ +ntc-templates/ \ No newline at end of file diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index aad612b1b6..e1654c11fc 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -706,6 +706,7 @@ oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp +oneaccess_oneos_show_system_secure-crashlog.textfsm, .*, oneaccess_oneos, sh[[ow]] system secure-crashlog oneaccess_oneos_show_transceiver_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] transceiver equipment oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm new file mode 100644 index 0000000000..cbbd0a71f1 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm @@ -0,0 +1,40 @@ +Value COREDUMP_FILE (coredump.*txt) +Value CRASH_CAUSED_BY (.*\S) +Value CRASH_TIME (.*\S) +Value CRASH_FILENAME (.*\S) +Value List SERIAL (\w+) +Value DEVICEID (\S+) +Value SOFTWARE (.+) +Value BOOT_VERSION (.+) +Value RECOVERY_VERSION (.+) +Value RESTARTED (.*) +Value RELOAD_REASON (.*) +Value UPTIME (.*) +Value UPTIME_SECONDS (\d+) +Value UPTIME_MINUTES (\d+) +Value UPTIME_HOURS (\d+) +Value UPTIME_DAYS (\d+) +Value VERSION (\d) +Value CORE_GENERATED_BY (\S+) + + +Start + ^${COREDUMP_FILE}$$ + ^\-+ + ^Last\sRaw\sLog\ssaved\sin\sFlash + ^=+ + ^Crash\scaused\sby\s+:\s+${CRASH_CAUSED_BY} + ^Crash\stime\s+:\s+${CRASH_TIME} + ^Crash\s(filename|file\sname)\s+:\s+${CRASH_FILENAME} + ^Device\sidentifier\s+:\s+${DEVICEID}\sS\/N\s${SERIAL} + ^Software\Wversion\W+:\W+${SOFTWARE} -> Continue + ^Software\Wversion\W+:\W+.*\-V?${VERSION}\..* + ^Boot\Wversion\W+:\W${BOOT_VERSION} + ^Recovery\Wversion\W+:\W+${RECOVERY_VERSION} + ^System\Wstarted\W+:\W+${RESTARTED} + ^Start\Wcaused\Wby\W+:\W+${RELOAD_REASON} + ^Sys\WUp\Wtime\W+:\W+(?:${UPTIME_DAYS}d)? ?(?:${UPTIME_HOURS}h)? ?(?:${UPTIME_MINUTES}m)? ?(?:${UPTIME_SECONDS}s)? -> Continue + ^Sys\sUp\s[tT]ime\s+:\s+${UPTIME} + ^Core\swas\sgenerated\sby\s'${CORE_GENERATED_BY}' + ^.*$$ + ^. -> Error diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw new file mode 100644 index 0000000000..f4616e0350 --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw @@ -0,0 +1,12 @@ + +Reboot status for device PBXPLUG_103 S/N T2137008344020891 + +Last Reboot Cause : Generic software reboot request + +Reboot Counters : +Reboot on hardware reset : 0 +Power Fail detection : 7 +Total Software Requested Reboots : 21 + Generic software reboot request : 16 + System defense - reboot after crash : 1 + Administrator requested reboot : 4 diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml new file mode 100644 index 0000000000..2afad18cee --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - device: "PBXPLUG_103" + serial: "T2137008344020891" + reboot_cause: "Generic software reboot request" + hardware_reset: "0" + power_fail_detection: "7" + total_software_reboots: "21" + system_defense: "1" + generic_software_reboot: "16" + admin_requested_reboot: "4" + admin_delayed_reboot: "" + spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw new file mode 100644 index 0000000000..0e856a4f29 --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw @@ -0,0 +1,13 @@ + +Reboot status for device MBPBX30NT2BLUZ S/N T1938004830030157 + +Last Reboot Cause : Unknown reboot cause / Power On Reset (Power Fail or External Watchdog) + +Reboot Counters : +Reboot on hardware reset : 6 +Total Software Requested Reboots : 41 + System defense - reboot after crash : 18 + Administrator requested reboot : 16 + Administrator requested delayed reboot : 7 + +Since startup, spurious Power Fail has occured 0 time(s) diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml new file mode 100644 index 0000000000..d3b70ef4ad --- /dev/null +++ b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml @@ -0,0 +1,13 @@ +--- +parsed_sample: + - device: "MBPBX30NT2BLUZ" + serial: "T1938004830030157" + reboot_cause: "Unknown reboot cause / Power On Reset (Power Fail or External Watchdog)" + hardware_reset: "6" + power_fail_detection: "" + total_software_reboots: "41" + system_defense: "18" + generic_software_reboot: "" + admin_requested_reboot: "16" + admin_delayed_reboot: "7" + spurious_power_fails: "0" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw new file mode 100644 index 0000000000..273fcad6f0 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw @@ -0,0 +1,87 @@ +coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.txt +------------------------------------------------------ +Crash caused by : Program terminated with signal SIGABRT, Aborted. +Crash time : 2022-02-25 2003 +Crash filename : /BSA/dump/coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.xz +Device identifier : PBXPLUG_103 S/N T2137008344020891 + +Software version : OneOS-pCPE-ARM_pi2-6.7.1m2 (integci_r1_1pa290b4_dev_photo116) +Software created on : 2021-10-08 15:30:45 +Boot version : BOOT-ARM_hw2-3.1.3 (integ_r1_1pa4b1_dev_b313std (CFE r1_3pa4)) +Boot created on : 2019-05-27 11:12:53 +Recovery version : OneOs-RCY-ARM_pi2-1.3.6 (integ_r1_1pa19b1_dev_b136std) +Recovery created on : 2019-10-11 09:21:48 + +System started : 2022-01-28 03:00:51 +Start caused by : Generic software reboot request +Sys Up time : 28d 17h 4m 3s +Core was generated by '/usr/bin/cp_voice' +* Backtrace +* +#0 0xb55a9ab4 in raise () from /lib/libc.so.6 +No symbol table info available. +#1 0xb55ad774 in abort () from /lib/libc.so.6 +No symbol table info available. +#2 0xb55a259c in __assert_fail_base () from /lib/libc.so.6 +No symbol table info available. +#3 0xb55a2678 in __assert_fail () from /lib/libc.so.6 +No symbol table info available. +#4 0xb56c2e4c in pthread_mutex_lock () from /lib/libpthread.so.0 +No symbol table info available. +#5 0xb54a034c in wdog_valid () from /usr/lib/libv2lin.so +No symbol table info available. +#6 0xb54a0434 in process_tick_for () from /usr/lib/libv2lin.so +No symbol table info available. +#7 0xb54a068c in process_timer_list () from /usr/lib/libv2lin.so +No symbol table info available. +#8 0xb5494774 in exception_task () from /usr/lib/libv2lin.so +No symbol table info available. +#9 0xb549524c in task_wrapper () from /usr/lib/libv2lin.so +No symbol table info available. +#10 0xb56bff20 in start_thread () from /lib/libpthread.so.0 +No symbol table info available. +#11 0xb5651e30 in ?? () from /lib/libc.so.6 +* +* Registers +* +r0 0x0 0 +r1 0x708 1800 +r2 0x6 6 +r3 0xb48678b0 3028711600 +r4 0x2 2 +r5 0xb56b70a4 3043717284 +r6 0xb48673f0 3028710384 +r7 0x10c 268 +r8 0x0 0 +r9 0xb4866864 3028707428 +r10 0x1 1 +r11 0x134170 1261936 +r12 0x0 0 +sp 0xb486685c 0xb486685c +lr 0xb55ad774 3042629492 +pc 0xb55a9ab4 0xb55a9ab4 +cpsr 0x20030010 537067536 +* +* Current instructions +* +=> 0xb55a9ab4 : cmn r0, #4096 ; 0x1000 + 0xb55a9ab8 : pop {r7} ; (ldr r7, [sp], #4) + 0xb55a9abc : ldrhi r2, [pc, #44] ; 0xb55a9af0 + 0xb55a9ac0 : rsbhi r1, r0, #0 + 0xb55a9ac4 : mvnhi r0, #0 + 0xb55a9ac8 : ldrhi r2, [pc, r2] + 0xb55a9acc : strhi r1, [r3, r2] + 0xb55a9ad0 : bx lr + 0xb55a9ad4 : cmp r0, #0 + 0xb55a9ad8 : bgt 0xb55a9aac + 0xb55a9adc : bic r12, r0, #-2147483648 ; 0x80000000 + 0xb55a9ae0 : cmp r12, #0 + 0xb55a9ae4 : rsbne r0, r0, #0 + 0xb55a9ae8 : moveq r0, r1 + 0xb55a9aec : b 0xb55a9aac + 0xb55a9af0 : andseq r12, r0, r12, ror #11 + +* +* End of file +* + diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml new file mode 100644 index 0000000000..07669fdff0 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml @@ -0,0 +1,21 @@ +--- +parsed_sample: + - coredump_file: "coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.txt" + crash_caused_by: "Program terminated with signal SIGABRT, Aborted." + crash_time: "2022-02-25 2003" + crash_filename: "/BSA/dump/coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.xz" + serial: + - "T2137008344020891" + deviceid: "PBXPLUG_103" + software: "OneOS-pCPE-ARM_pi2-6.7.1m2 (integci_r1_1pa290b4_dev_photo116)" + boot_version: "BOOT-ARM_hw2-3.1.3 (integ_r1_1pa4b1_dev_b313std (CFE r1_3pa4))" + recovery_version: "OneOs-RCY-ARM_pi2-1.3.6 (integ_r1_1pa19b1_dev_b136std)" + restarted: "2022-01-28 03:00:51" + reload_reason: "Generic software reboot request" + uptime: "28d 17h 4m 3s" + uptime_seconds: "3" + uptime_minutes: "4" + uptime_hours: "17" + uptime_days: "28" + version: "6" + core_generated_by: "/usr/bin/cp_voice" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw new file mode 100644 index 0000000000..63760eb5b2 --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw @@ -0,0 +1,23 @@ + +Last Raw Log saved in Flash : +=========================== + +Device identifier : MBPBX30NT2BLUZ S/N T19380048300 +Software version : ONEOS9-MONO_FT-V5.2R2E13 +Software created on : 22/12/20 16:31:56 +Boot version : BOOT9-SEC-V3.4R3E38 +Boot created on : 12/06/18 14:43:32 +License token : None + +Crash time : 05/01/23 19:42:30 +Crash file name : crash_000019/crashLog_050123_194230 +Sys Up Time : 38710060 ticks (774201 sec.) + +FATAL ERROR + +code : 0 +message : Assertion failed: inuse(p) in function do_check_inuse_chunk +file /tmp/gnutools/1802/target/config/comps/src/oaComps/system/memoryMgr/oaSysMemMgr.c, line 2635 + + oaSysMemMgr.c + 0 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml new file mode 100644 index 0000000000..247122df7d --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml @@ -0,0 +1,21 @@ +--- +parsed_sample: + - coredump_file: "" + crash_caused_by: "" + crash_time: "05/01/23 19:42:30" + crash_filename: "crash_000019/crashLog_050123_194230" + serial: + - "T19380048300" + deviceid: "MBPBX30NT2BLUZ" + software: "ONEOS9-MONO_FT-V5.2R2E13" + boot_version: "BOOT9-SEC-V3.4R3E38" + recovery_version: "" + restarted: "" + reload_reason: "" + uptime: "38710060 ticks (774201 sec.)" + uptime_seconds: "" + uptime_minutes: "" + uptime_hours: "" + uptime_days: "" + version: "5" + core_generated_by: "" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw new file mode 100644 index 0000000000..f844586e9c --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw @@ -0,0 +1,212 @@ +coredump_01482_2022-09-25T0404_poscrash1-10-7651-0-0.txt +-------------------------------------------------------- +Crash caused by : POS CRASH: Data TLB interrupt +Crash time : 2022-09-25 0404 +Crash filename : No coredumpfile (intentionally) +Device identifier : PBXPLUG_401 S/N T1817008168000443 + +Software version : OneOS-pCPE-PPC_pi2-6.6.1m3 (integci_r1_1pa266b5_dev_photo104) +Software created on : 2021-03-26 11:13:55 +Boot version : BOOT-PPC_hw2-2.0.5 (integ_r1_1pa16b1_dev_b205std (U-Boot 2014.01-oatools-r3_5pa7 )) +Boot created on : 2017-11-14 10:33:17 +Recovery version : OneOs-RCY-PPC_pi2-1.2.1 (integci_r1_1pa10b3_dev_photo2) +Recovery created on : 2017-10-13 16:47:13 + +System started : 2022-09-25 01:00:40 +Start caused by : Generic software reboot request +Sys Up time : 0d 3h 3m 53s +============================================================================= +======= CORE DUMP @ CORE 1 =====(V00.07) +============================================================================= +======= System information ================================================= +======= -> CORE 1 +======= -> System version 85280011 +======= -> System-up time 10954867 ms +======= Exception information ============================================== +======= -> Type "Data TLB interrupt" (0000000E) +============================================================================= +======= -> Registers Stack +============================================================================= +r0....0031EAC4 r8....00000000 r16...44000022 r24...8FC20A4C |SP-> 2C04FEE4 +r1....2C04FE74 r9....00700000 r17...0031AD44 r25...00000000 |+004 0031EAC4 +r2....00560308 r10...DDDDDDDD r18...00324FF0 r26...2C04FF50 |+008 00000000 +r3....00540CF0 r11...00000000 r19...FE0610B0 r27...FFFFFFFF |+00C 00000000 +r4....00000000 r12...0000000F r20...2C01F5C0 r28...2C04FF4C |+010 2C04D680 +r5....00000000 r13...00507FF0 r21...10008000 r29...00540CB8 |+014 00010000 +r6....0000003F r14...00000DF9 r22...00000000 r30...2C04FF54 |+018 00000000 +r7....0000000D r15...00000000 r23...00000000 r31...2C04FEEC |+01C 00000000 +-------------------------------------------------------------- |+020 00000000 +XER...20000000 LR....0031EAF0 CTR...00000000 CR ...44000028 |+024 00000000 +-------------------------------------------------------------- |+028 00000000 +SRR0..0031BAE0 SRR1..1002BB00 DEAR..DDDDDDE1 |+02C 00000000 +GSRR0.0031AD44 GSRR1.1002BB00 GDEAR.00000000 |+030 00000000 +-------------------------------------------------------------- |+034 00000000 +SPRG0.............70076E80 GSPRG0.............2C04D680 |+038 00000000 +SPRG1.............70076E80 GSPRG1.............2C01F5C0 |+03C FFFFFFFF +SPRG2.............00000000 GSPRG2.............00005764 |+040 002BEAF4 +SPRG3.............AF14900C GSPRG3.............00507FF0 |+044 00560308 +SPRG4.............00000000 |+048 2C04FECC +SPRG5.............44000022 |+04C 00005E1C +SPRG6.............0031AD44 |+050 00325E10 +SPRG7.............00324FF0 |+054 00400C70 +SPRG8.............00000000 |+058 00000000 +SPRG9.............FE0610B0 |+05C 2C04FF54 +============================================================================= +======= -> Instructions (HV) |+060 00540680 +============================================================== |+064 2C04FF50 +[0031BA84]:.41DE000C..beq- cr7,0x000000000031ba90 |+068 2C04FF4C +[0031BA88]:.39000000..li r8,0 |+06C 00540680 +[0031BA8C]:.910A0004..stw r8,4(r10) |+070 2C04FF44 +[0031BA90]:.39400000..li r10,0 |+074 00321E88 +[0031BA94]:.7D234B78..mr r3,r9 |+078 00000000 +[0031BA98]:.91440004..stw r10,4(r4) |+07C 00000000 +[0031BA9C]:.91440000..stw r10,0(r4) |+080 00000002 +[0031BAA0]:.4E800020..blr |+084 00000005 +[0031BAA4]:.81490004..lwz r10,4(r9) |+088 01000000 +[0031BAA8]:.39000000..li r8,0 |+08C 000A0BB8 +[0031BAAC]:.91430004..stw r10,4(r3) |+090 00000000 +[0031BAB0]:.910A0000..stw r8,0(r10) |+094 2C04FF50 +[0031BAB4]:.4BFFFF90..b 0x000000000031ba44 |+098 00000000 +[0031BAB8]:.60000000..nop |+09C 00000000 +[0031BABC]:.60000000..nop |+0A0 00000000 +[0031BAC0]:.81230000..lwz r9,0(r3) |+0A4 00000000 +[0031BAC4]:.2F890000..cmpwi cr7,r9,0 |+0A8 00000000 +[0031BAC8]:.41DE0028..beq- cr7,0x000000000031baf0 |+0AC 8FC20A20 +[0031BACC]:.81490000..lwz r10,0(r9) |+0B0 2C04FF44 +[0031BAD0]:.2F8A0000..cmpwi cr7,r10,0 |+0B4 0031AE6C +[0031BAD4]:.91430000..stw r10,0(r3) |+0B8 00000000 +[0031BAD8]:.41DE000C..beq- cr7,0x000000000031bae4 |+0BC 00400C24 +[0031BADC]:.39000000..li r8,0 |+0C0 00400CF8 +[0031BAE0]:.910A0004..stw r8,4(r10) |+0C4 00000003 +============================================================================= +======= -> Instructions (SV) |+0C8 00501BC4 +============================================================== |+0CC 00500350 +[0031ACE8]:.913B0000..stw r9,0(r27) |+0D0 2C04FF84 +[0031ACEC]:.83810010..lwz r28,16(r1) |+0D4 002BEAF4 +[0031ACF0]:.7C0803A6..mtlr r0 |+0D8 00000000 +[0031ACF4]:.8361000C..lwz r27,12(r1) |+0DC 8FC20A4C +[0031ACF8]:.83A10014..lwz r29,20(r1) |+0E0 00000001 +[0031ACFC]:.83C10018..lwz r30,24(r1) |+0E4 002BEA50 +[0031AD00]:.83E1001C..lwz r31,28(r1) |+0E8 00000000 +[0031AD04]:.38210020..addi r1,r1,32 |+0EC 00000007 +[0031AD08]:.4E800020..blr |+0F0 00000000 +[0031AD0C]:.00000000...long 0x0 |+0F4 00000000 +[0031AD10]:.2C040000..cmpwi r4,0 |+0F8 00000000 +[0031AD14]:.4DC20020..beqlr- |+0FC 00000000 +[0031AD18]:.9421FFE0..stwu r1,-32(r1) |+100 00000000 +[0031AD1C]:.7C0802A6..mflr r0 |+104 00000000 +[0031AD20]:.90010024..stw r0,36(r1) |+108 00000000 +[0031AD24]:.93810010..stw r28,16(r1) |+10C 00000000 +[0031AD28]:.7C7C1B78..mr r28,r3 |+110 00000000 +[0031AD2C]:.93A10014..stw r29,20(r1) |+114 00000000 +[0031AD30]:.7C9D2378..mr r29,r4 |+118 00000000 +[0031AD34]:.93C10018..stw r30,24(r1) |+11C 00000000 +[0031AD38]:.3FC00054..lis r30,84 |+120 00000000 +[0031AD3C]:.93E1001C..stw r31,28(r1) |+124 00000000 +[0031AD40]:.48027049..bl 0x0000000000341d88 |+128 00000000 +[0031AD44]:.48027045..bl 0x0000000000341d88 |+12C 00000000 +============================================================================= +======= -> Current thread " CP2DP_IPSEC_COM" ID=0x2C04D680 +============================================================================= +Stack pointer : 0x2C04FDE8 +Program counter: 0x0031BAE0 +Stack start : 0x2C04D898 controlword 0x37510000 +Stack end : 0x2C04FFA4 controlword 0xEEEEEEEE +Stack frame below 0x2C04FDE8 +....0000 SRR0 0x0000006A +....0004 SRR1 0x8FC1A458 +....0008 LR 0x00000000 +....000C XER 0x2C04FE24 +....0010 CR 0x002BEDA4 +....0014 CTR 0x00000001 +....0018 R31 0x00000014 +....001C R30 0x2C04FE24 +....0020 R29 0x002BEC5C +....0024 R28 0x00000001 +....0028 R27 0x8FC1A44C +....002C R26 0x00400CF8 +....0030 R25 0x00000003 +....0034 R24 0x8FC20A58 +....0038 R23 0x8FC1A458 +....003C R22 0x2C04FF44 +....0040 R12 0x002A47F0 +....0044 R11 0x00000000 +....0048 R10 0x00000000 +....004C R9 0x00000002 +....0050 R8 0x1002BB00 +....0054 R7 0x0000000E +....0058 R6 0x0000003F +....005C R5 0x00000000 +....0060 R4 0xFFFFFFFF +....0064 R3 0x005429A0 +....0068 R0 0x00000000 +....006C -- 0xFFFFFFFF +....0070 - 0xFFFFFFFF +....0074 - 0xFFFFFFFF +============================================================================= +======= -> List of threads +============================================================================= + Sat Comms (0x2C067DF0) asleep + System@C1-SV (0x2C018C88) awake + OAMCAPI_DISP (0x2C01727C) awake + OAMCAPI_MEMPRX (0x2C015870) asleep + OAMCAPI_CTRL (0x2C013E64) asleep + MCAPI_CP2DPc1 (0x2C012458) asleep + MGMT_CP2DPc1 (0x2C010A4C) asleep + MCAPI_RIB2DP (0x2C03E620) asleep + MCAPI_MCPIM2DP (0x2C03CC14) asleep + MCAPI_MCIGMP2DP (0x2C03B208) asleep +IPI:Pos@C2->Pos@C1 (0x2C0397FC) asleep +IPI:Pos@C3->Pos@C1 (0x2C037DF0) asleep + Qos_shaper_0 (0x2C0363E4) asleep + IPSEC_SW_CE_Main (0x2C033A38) asleep + IPSEC_SW_CEc0 (0x2C03108C) asleep + CP2DP_IPSEC_COM (0x2C04D680) awake + Datapath@C1 (0x2C048B08) asleep + LocalTraffic@C1 (0x2C0470FC) asleep + Message parser@C1 (0x2C0456F0) asleep + Intf_Comms (0x2C04BC74) asleep + Arp_Comms (0x2C043CE4) asleep + Ipv4_Comms (0x2C0422D8) asleep + Ipv6_Comms (0x2C05E620) asleep + L2_Comms (0x2C05CC14) asleep + Multilink_Comms (0x2C05B208) asleep + Acl_Comms (0x2C0597FC) asleep + Nat_Comms (0x2C057DF0) asleep + Fap_Comms (0x2C0563E4) asleep + IpAcc_Comms (0x2C0549D8) asleep + DP2CP_NETFLOW (0x2C052FCC) asleep + NetApm_Comms (0x2C0515C0) asleep + Zbfw_Comms (0x2C06E620) asleep + Tic_Comms (0x2C06CC14) asleep + TicDb_Comms (0x2C06B208) asleep + TICDB_CP2DP_COM (0x2C0697FC) asleep +============================================================================= +======= -> Callstack +============================================================================= +Current..................Stacked +0031BAE0.................00321E88 +0031EAF0.................002BEAF4 +FFFFFFFF.................00000000 +FFFFFFFF.................00000000 +FFFFFFFF.................00000000 +============================================================================= +Current +============================================================================= +[0] 0X0031BAE0 oamcapi_dequeue_entry+0x20 +llist.c:163 + +[1] 0X0031EAF0 oamcapi_pkt_recv+0x90 +pkt_recv.c:56 + +============================================================================= +Stacked +============================================================================= +[0] 0X00321E88 mcapi_pktchan_recv+0x148 +mcapi_pktchan_recv.c:68 + +[1] 0X002BEAF4 ipsecmsg_ProcessMsgs+0xa4 +ipsec_msg.c:229 + +============================================================================= + diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml new file mode 100644 index 0000000000..ca5c40ea6c --- /dev/null +++ b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml @@ -0,0 +1,22 @@ +--- +parsed_sample: + - coredump_file: "coredump_01482_2022-09-25T0404_poscrash1-10-7651-0-0.txt" + crash_caused_by: "POS CRASH: Data TLB interrupt" + crash_time: "2022-09-25 0404" + crash_filename: "No coredumpfile (intentionally)" + serial: + - "T1817008168000443" + deviceid: "PBXPLUG_401" + software: "OneOS-pCPE-PPC_pi2-6.6.1m3 (integci_r1_1pa266b5_dev_photo104)" + boot_version: "BOOT-PPC_hw2-2.0.5 (integ_r1_1pa16b1_dev_b205std (U-Boot 2014.01-oatools-r3_5pa7\ + \ ))" + recovery_version: "OneOs-RCY-PPC_pi2-1.2.1 (integci_r1_1pa10b3_dev_photo2)" + restarted: "2022-09-25 01:00:40" + reload_reason: "Generic software reboot request" + uptime: "0d 3h 3m 53s" + uptime_seconds: "53" + uptime_minutes: "3" + uptime_hours: "3" + uptime_days: "0" + version: "6" + core_generated_by: "" From b1bb6f33e389f6f1612ac95b7233cc2a6c82d42c Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 1 Mar 2023 10:30:45 +0000 Subject: [PATCH 18/31] add oneaccess commands --- ntc_templates/templates/index | 4 + .../oneaccess_oneos_show_interfaces.textfsm | 116 + .../oneaccess_oneos_show_track_all.textfsm | 22 + ...neaccess_oneos_show_vrrp_interface.textfsm | 27 + .../show_interfaces.lbb140.raw | 211 ++ .../show_interfaces.lbb140.yml | 833 +++++++ .../show_interfaces.lbb150.raw | 154 ++ .../show_interfaces.lbb150.yml | 623 +++++ .../show_interfaces.lbb154.raw | 472 ++++ .../show_interfaces.lbb154.yml | 2006 +++++++++++++++++ .../show_interfaces/show_interfaces.lbb4g.raw | 209 ++ .../show_interfaces/show_interfaces.lbb4g.yml | 901 ++++++++ .../show_track_all/show_track_all.lbb320.raw | 51 + .../show_track_all/show_track_all.lbb320.yml | 46 + .../show_vrrp_interface.lbb320.raw | 36 + .../show_vrrp_interface.lbb320.yml | 58 + .../show_vrrp_interface.lbb4g.raw | 9 + .../show_vrrp_interface.lbb4g.yml | 16 + 18 files changed, 5794 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw create mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml create mode 100644 tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw create mode 100644 tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml create mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw create mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml create mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw create mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index e1654c11fc..3efdd719e2 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -725,11 +725,14 @@ oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip pr oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] oneaccess_oneos_show_soft-file_info.textfsm, .*, oneaccess_oneos, sh[[ow]] soft\-file info.* oneaccess_oneos_show_software-image.textfsm, .*, oneaccess_oneos, sh[[ow]] software-image +oneaccess_oneos_show_vrrp_interface.textfsm, .*, oneaccess_oneos, sh[[ow]] vrrp int[[erface]] oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief oneaccess_oneos_show_isdn_active.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn active +oneaccess_oneos_show_interfaces.textfsm, .*, oneaccess_oneos, sh[[ow]] interfaces oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map +oneaccess_oneos_show_track_all.textfsm, .*, oneaccess_oneos, sh[[ow]] track all oneaccess_oneos_show_voice_mos.textfsm, .*, oneaccess_oneos, sh[[ow]] voice mos oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, sh[[ow]] helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh @@ -739,6 +742,7 @@ oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* + paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm b/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm new file mode 100644 index 0000000000..27182c8bd6 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm @@ -0,0 +1,116 @@ +Value Required INTERFACE (\S+(?:\s\S+)?) +Value FLAGS (.*) +Value IFINDEX (\d+) +Value DESCRIPTION (.*) +Value LINK_STATUS (up|down) +Value PROTOCOL_STATUS (up|down) +Value PROMISCUOUS_MODE (\S+) +Value ENCAPSULATION (.+?) +Value VLANID (\d+) +Value IPV4_MTU (\d+) +Value IPV6_MTU (\d+) +Value UPTIME (\S+) +Value DOWNTIME (\S+) +Value STATUS_CHANGES (\d+) +Value IPV4 (\d+\.\d+\.\d+\.\d+\/\d+|unnumbered) +Value IPV4_UNNUMBERED_INTF (.*) +Value IPV4_UNNUMBERED_IP (\S+) +Value IPV4_GW (\d+\.\d+\.\d+\.\d+) +Value IPV4_BROADCAST (\d+\.\d+\.\d+\.\d+) +Value List IPV4_SECONDARY (\d+\.\d+\.\d+\.\d+\/\d+) +Value List IPV6 (\S+) +Value TUNNEL_SOURCE (\S+) +Value TUNNEL_DESTINATION (\S+) +Value TUNNEL_PROTOCOL (\S+) +Value TUNNEL_TRANSPORT (\S+) +Value TUNNEL_PROTECTION_MODE (\S+) +Value TUNNEL_PROTECTION_PROFILE (\S+) +Value TUNNEL_VRF (\S+) +Value FIREWALL_ZONE (.*) +Value MACADDRESS ([a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}) +Value ARP_TIMEOUT (\d+) +Value BANDWIDTH_KBPS (\d+|unknown) +Value BANDWIDTH_LIMIT_KBPS (\d+) +Value SFP_MEDIATYPE (\S+) +Value INPUT_RATE (\d+) +Value OUTPUT_RATE (\d+) +Value INPUT_PPS (\d+) +Value OUTPUT_PPS (\d+) +Value INPUT_LOAD_PCT (\d+(\.\d+)?) +Value OUTPUT_LOAD_PCT (\d+(\.\d+)?) +Value CONGESTION_DROPPED_RX (\d+) +Value CONGESTION_DROPPED_CPU (\d+) +Value CONGESTION_DROPPED_TOTAL (\d+) +Value BRIDGE_GROUP (\d+) +Value OUT_QUEUE_STRATEGY (.+) +Value OUT_QUEUE_LENGTH (\d+) +Value OUT_QUEUE_DEPTH (\d+) +Value SHAPER_PKTS_DEQUEUED (\-?\d+) +Value SHAPER_BURST_CURRENT (\d+) +Value SHAPER_BURST_MAX (\d+) +Value RELIABILITY_VALUE (\d+) +Value RELIABILITY_MAX (\d+) +Value IN_PKTS (\d+) +Value IN_BYTES (\d+) +Value IN_QDROPS (\d+) +Value IN_BROADCASTS (\d+) +Value IN_MULTICASTS (\d+) +Value IN_ERRORS (\d+) +Value IN_DISCARDS (\d+) +Value IN_MAC_ACL_DISCARDS (\d+) +Value IN_UNKNOWN_PROTOCOLS (\d+) +Value OUT_PKTS (\d+) +Value OUT_BYTES (\d+) +Value OUT_QDROPS (\d+) +Value OUT_BROADCASTS (\d+) +Value OUT_MULTICASTS (\d+) +Value OUT_ERRORS (\d+) +Value OUT_DISCARDS (\d+) +Value VRF (\S+) + + +Start + ^\S+(?:\s\S+)?\s+is\s+(?:up|down),\s+line\s+protocol.*$$ -> Continue.Record + ^${INTERFACE}\s+is\s+${LINK_STATUS},\s+line\s+protocol\s+is\s+${PROTOCOL_STATUS}\s*$$ + ^\s+Flags:\s\(\S+\)\s${FLAGS},\sinterface\sindex\sis\s${IFINDEX} + ^\s+Description:\s*${DESCRIPTION} + ^\s+Promiscuous\smode\s${PROMISCUOUS_MODE} + ^\s+Encapsulation:\s${ENCAPSULATION}\sVirtual\sLAN,\sVLAN\sID\s${VLANID} -> Continue + ^\s+Encapsulation:\s${ENCAPSULATION},\s -> Continue + ^.*\sIPv4\sMTU\s${IPV4_MTU}\sbytes -> Continue + ^.*\sIPv6\sMTU\s${IPV6_MTU}\sbytes -> Continue + ^.*\s+MTU\s${IPV4_MTU}\sbytes + ^\s+Firewalls\szone:\s${FIREWALL_ZONE} + ^\s+This\sinterface\sis\sassociated\sto\sVRF\s${VRF} + ^\s+Up-time\s${UPTIME},\sstatus\schange\scount\s${STATUS_CHANGES} + ^\s+Down-time\s${DOWNTIME},\sstatus\schange\scount\s${STATUS_CHANGES} + ^\s+Internet\saddress\sis\s${IPV4},\sdestination\saddress\sis\s${IPV4_GW} + ^\s+Internet\saddress\sis\s${IPV4},\sbroadcast\saddress\sis\s${IPV4_BROADCAST} + ^\s+Internet\saddress\sis\s${IPV4} + ^\s+Secondary\saddress\sis\s${IPV4_SECONDARY} + ^\s+Interface\sis\s${IPV4},\suse\saddress\sof\s${IPV4_UNNUMBERED_INTF}\(${IPV4_UNNUMBERED_IP}\) + ^\s+IPv6\saddress\sis\s${IPV6} + ^\s+Hardware\saddress\sis\s${MACADDRESS},\sARP\stimeout\s${ARP_TIMEOUT}\ssec + ^\s+Line\sspeed\s${BANDWIDTH_KBPS}\skbps(,\sbandwidth\slimit\s${BANDWIDTH_LIMIT_KBPS}\skbps)? + ^\s+Media\-type\s${SFP_MEDIATYPE} + ^\s+Mean\sinput/output\srate\s+${INPUT_RATE}/${OUTPUT_RATE}\sbits/s,\s${INPUT_PPS}/${OUTPUT_PPS}\s.* + ^\s+Mean\sinput/output\sload\spercentage\s+${INPUT_LOAD_PCT}/${OUTPUT_LOAD_PCT}\spercent.* + ^\s+Congestion\sManagement\sDropped\spackets:\s+RX:${CONGESTION_DROPPED_RX},\s*CPU:${CONGESTION_DROPPED_CPU},\s*Total:${CONGESTION_DROPPED_TOTAL} + ^\s+Bridged\sto\sgroup\s${BRIDGE_GROUP} + ^\s+Tunnel\ssource\s${TUNNEL_SOURCE},\sdestination\s${TUNNEL_DESTINATION} + ^\s+Tunnel\sprotocol/transport\s${TUNNEL_PROTOCOL}/${TUNNEL_TRANSPORT} + ^\s+Tunnel\sprotection\svia\s${TUNNEL_PROTECTION_MODE}\s\(profile\s\"${TUNNEL_PROTECTION_PROFILE}\"\) + ^\s+This\sinterface\sis\sassociated\sto\sTunnel\sVRF\s${TUNNEL_VRF} + ^\s+Output\squeuing\sstrategy:\s*${OUT_QUEUE_STRATEGY},\s*output\squeue\slength/depth\s${OUT_QUEUE_LENGTH}/${OUT_QUEUE_DEPTH} + ^\s+Output\squeuing\sstrategy:\s*${OUT_QUEUE_STRATEGY} + ^\s+Shaper:\spackets\sdequeued\s${SHAPER_PKTS_DEQUEUED},\sburst\(current/max\)\s${SHAPER_BURST_CURRENT}/${SHAPER_BURST_MAX} + ^\s+Reliability:\s*${RELIABILITY_VALUE}/${RELIABILITY_MAX} + ^\s+IN:\s*${IN_PKTS}\spackets,\s${IN_BYTES}\sbytes,\s${IN_QDROPS}\squeue\sdrops -> IN + ^\s+OUT:\s*${OUT_PKTS}\spackets,\s${OUT_BYTES}\sbytes,\s${OUT_QDROPS}\squeue\sdrops -> OUT + +IN + ^\s+${IN_BROADCASTS}\sbroadcasts,\s*${IN_MULTICASTS}\smulticasts,\s*${IN_ERRORS}\serrors,\s*${IN_DISCARDS}\sdiscards(,\s*${IN_MAC_ACL_DISCARDS}\smac\sacl\sdiscards)? + ^\s+${IN_UNKNOWN_PROTOCOLS}\sunknown\sprotocols -> Start + +OUT + ^\s+${OUT_BROADCASTS}\sbroadcasts,\s*${OUT_MULTICASTS}\smulticasts,\s*${OUT_ERRORS}\serrors,\s*${OUT_DISCARDS}\sdiscards -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm new file mode 100644 index 0000000000..05ce14675c --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm @@ -0,0 +1,22 @@ +Value Required ID (\d+) +Value CATEGORY (\S+) +Value INTERFACE (\S+(?:\s\S+)?) +Value VRRP_ID (\d+) +Value VRF (\S+) +Value STATE (\S+) +Value STATE_CHANGES (\d+) +Value LAST_CHANGE (\S+) +Value UP_DELAY (\d+) +Value DOWN_DELAY (\d+) +Value POLL_INTERVAL (\d+) + +Start + ^\s*Track\s -> Continue.Record + ^\s*Track\s${ID} + ^\s*interface\s${INTERFACE}\s${CATEGORY} + ^\s*${CATEGORY}\sId\s${VRRP_ID}(\svrf\s${VRF}) + ^\s*\S+\sis\s${STATE} + ^\s*${STATE_CHANGES}\sChange,\sLast\sChange\s${LAST_CHANGE} + ^\s*Up\sDelay\s${UP_DELAY},\sDown\sDelay\s${DOWN_DELAY} + ^\s*Poll\sInterval\s\(in\smsec\)\s${POLL_INTERVAL} + ^\s*$$ diff --git a/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm b/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm new file mode 100644 index 0000000000..31d61df7a7 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm @@ -0,0 +1,27 @@ +Value Required IFACE (\S+(?:\s\S+)?) +Value GROUP (\d+) +Value STATE (\S+) +Value VERSION (\d+) +Value VIRTUALIP ([a-fA-F\d\.\:]+) +Value VIRTUALNETMASK ([a-fA-F\d\.\:]+) +Value VIRTUAL_MAC ([a-fA-F\d\.\:]+) +Value ADV_INTERVAL (\S+) +Value PREEMPT (\w+) +Value PREEMPT_MIN_DELAY (\d+) +Value PRIORITY (\d+) +Value MASTER_IP (\S+) +Value MASTER_PRIORITY (\S+) +Value MASTER_STATE (\S+) + + +Start + ^\S+.*\s\-\sGroup -> Continue.Record + ^${IFACE}\s\-\sGroup\s${GROUP} + ^\s+State\sis\s${STATE} + ^\s+Version\s${VERSION} + ^\s+Virtual\sIP\saddress\s${VIRTUALIP},\sNetmask\s${VIRTUALNETMASK} + ^\s+Virtual\sMAC\saddress\sis\s${VIRTUAL_MAC} + ^\s+Advertisement\sinterval\sis\s${ADV_INTERVAL}\ssec + ^\s+Preemption\sis\s${PREEMPT}(,\smin\sdelay\sis\s${PREEMPT_MIN_DELAY}\ssec)? + ^\s+Priority\s${PRIORITY} + ^\s+Master\srouter\sis\s${MASTER_IP}\s\(${MASTER_STATE}\),\spriority\sis\s${MASTER_PRIORITY} \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw new file mode 100644 index 0000000000..574cc5fe0e --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw @@ -0,0 +1,211 @@ +GigabitEthernet 0/0 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 111 + Promiscuous mode active + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 396d21h16m, status change count 3 + Hardware address is 70:fc:8c:02:bb:4f, ARP timeout 7200 sec + Auto-negotiation, full-duplex, flowcontrol disabled + Line speed 1000000 kbps + Mean input/output rate 504776/397392 bits/s, 226/198 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.050/0.039 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 1 + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 4578563266 packets, 2133875155484 bytes, 0 queue drops + 735617600 broadcasts, 136187244 multicasts, 0 errors, 164 discards, 0 mac acl discards + 0 unknown protocols + OUT: 3838465524 packets, 2752454327149 bytes, 3357 queue drops + 20941718 broadcasts, 0 multicasts, 0 errors, 1 discards, 0 collisions +GigabitEthernet 0/1 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 112 + Promiscuous mode active + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 11d21h45m, status change count 31 + Hardware address is 70:fc:8c:06:bb:4f, ARP timeout 7200 sec + Auto-negotiation, full-duplex, flowcontrol disabled + Line speed 1000000 kbps + Mean input/output rate 243736/256456 bits/s, 152/114 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.024/0.025 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 2 + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 1125009328 packets, 189632230943 bytes, 0 queue drops + 745390714 broadcasts, 123018268 multicasts, 0 errors, 887632010 discards, 0 mac acl discards + 887631923 unknown protocols + OUT: 351229701 packets, 302436379177 bytes, 23658 queue drops + 2298782 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +GigabitEthernet 0/2 is up, line protocol is down + Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 113 + Promiscuous mode active + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 448d10h36m, status change count 0 + Hardware address is 70:fc:8c:0a:bb:4f, ARP timeout 7200 sec + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 1 + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +GigabitEthernet 0/3 is up, line protocol is down + Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 114 + Promiscuous mode active + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 448d10h36m, status change count 0 + Hardware address is 70:fc:8c:0e:bb:4f, ARP timeout 7200 sec + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 1 + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +FastEthernet 1/0 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 106 + Description: *** WAN INTERFACE *** + Encapsulation: Ethernet v2, MTU 1546 bytes + Up-time 448d10h36m, status change count 1 + Hardware address is 70:fc:8c:12:bb:4f, ARP timeout 7200 sec + Auto-negotiation, full-duplex, flowcontrol enabled + Line speed 100000 kbps + Media-type rj45 + Mean input/output rate 229312/237176 bits/s, 104/102 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.229/0.237 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: cbq + Reliability: 255/255 + IN: 3777818556 packets, 2813130486707 bytes, 0 queue drops + 608769 broadcasts, 0 multicasts, 0 errors, 608769 discards, 0 mac acl discards + 608769 unknown protocols + OUT: 3537518750 packets, 1904299986411 bytes, 1944226 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 114820 discards, 0 collisions +FastEthernet 1/0.10 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 22017 + Description: *** VDSL2 SHARED VLAN *** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 10, MTU 1500 bytes + Up-time 448d10h36m, status change count 1 + Hardware address is 70:fc:8c:12:bb:4f, ARP timeout 7200 sec + Line speed 100000 kbps + Mean input/output rate 229312/237176 bits/s, 104/102 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.229/0.237 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 3777209791 packets, 2812914388764 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 3539577808 packets, 1907203054251 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 3 errors, 0 discards, 0 collisions +Dialer 1 is up, line protocol is up + Flags: (0x90f1) POINT-TO-POINT MULTICAST, interface index is 11101 + Description: *** VT096413 - GS99999941512 - IP-VPN - ['VDSL2 SHARED VLAN'] - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK + Encapsulation: Point-to-Point Protocol, MTU 1492 bytes + Up-time 196d20h26m, status change count 7 + Internet address is 94.105.238.194/32, destination address is 94.105.238.193 + Line speed 100000 kbps, bandwidth limit 70000 kbps + Mean input/output rate 240208/217472 bits/s, 104/102 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.240/0.310 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: fifo+shaper, output queue length/depth 0/126 + Shaper: packets dequeued -763131925, burst(current/max) 874602/875000 + Reliability: 255/255 + IN: 3769467815 packets, 2899812744256 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 3531835372 packets, 1821912521847 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 0 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9902 + MTU 32768 bytes + Up-time 448d10h36m, status change count 0 + Internet address is 127.0.0.1/32 + IPv6 address is ::1/128 + IPv6 address is fe80::1/64 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 1749 packets, 164332 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 1749 packets, 164332 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 1 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9903 + Firewall zone: management + Description: *** VT096413 - GS99999941512 *** + MTU 32768 bytes + Up-time 448d10h36m, status change count 0 + Internet address is 94.105.25.111/32 + Line speed unknown + Mean input/output rate 6280/6280 bits/s, 9/9 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 6346421 packets, 472102678 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 6346427 packets, 472103054 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Bvi 1 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 9501 + Description: Connection to Customer LAN + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 396d21h16m, status change count 3 + Hardware address is 70:fc:8c:02:bb:4f, ARP timeout 7200 sec + Internet address is 192.168.5.1/24, broadcast address is 192.168.5.255 + Line speed 1000000 kbps + Mean input/output rate 504776/397352 bits/s, 226/198 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 1 + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 4578208775 packets, 2133846516522 bytes, 0 queue drops + 735617627 broadcasts, 136187246 multicasts, 0 errors, 0 discards, 0 mac acl discards + 683928098 unknown protocols + OUT: 3814474945 packets, 2750982891198 bytes, 0 queue drops + 20941724 broadcasts, 0 multicasts, 1 errors, 22341208 discards +Bvi 55 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 9555 + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 11d21h45m, status change count 31 + Hardware address is 70:fc:8c:06:bb:4f, ARP timeout 7200 sec + Internet address is 192.168.55.1/24, broadcast address is 192.168.55.255 + Line speed 1000000 kbps + Mean input/output rate 186144/256456 bits/s, 113/114 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Bridged to group 2 + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 237375069 packets, 58811387749 bytes, 0 queue drops + 182857 broadcasts, 19575274 multicasts, 0 errors, 0 discards, 0 mac acl discards + 18243239 unknown protocols + OUT: 351253527 packets, 302442538460 bytes, 0 queue drops + 2298786 broadcasts, 0 multicasts, 1 errors, 2496554 discards +Null 0 is up, line protocol is up + Flags: (0x80e1) MULTICAST, interface index is 9901 + MTU 32768 bytes + Up-time 448d10h36m, status change count 0 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Congestion Management Dropped packets: RX:0, CPU:0, Total:0 + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml new file mode 100644 index 0000000000..38227ee779 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml @@ -0,0 +1,833 @@ +--- +parsed_sample: + - interface: "GigabitEthernet 0/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "111" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "396d21h16m" + downtime: "" + status_changes: "3" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:02:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "504776" + output_rate: "397392" + input_pps: "226" + output_pps: "198" + input_load_pct: "0.050" + output_load_pct: "0.039" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "4578563266" + in_bytes: "2133875155484" + in_qdrops: "0" + in_broadcasts: "735617600" + in_multicasts: "136187244" + in_errors: "0" + in_discards: "164" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "3838465524" + out_bytes: "2752454327149" + out_qdrops: "3357" + out_broadcasts: "20941718" + out_multicasts: "0" + out_errors: "0" + out_discards: "1" + vrf: "" + - interface: "GigabitEthernet 0/1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "112" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "11d21h45m" + downtime: "" + status_changes: "31" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:06:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "243736" + output_rate: "256456" + input_pps: "152" + output_pps: "114" + input_load_pct: "0.024" + output_load_pct: "0.025" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "2" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1125009328" + in_bytes: "189632230943" + in_qdrops: "0" + in_broadcasts: "745390714" + in_multicasts: "123018268" + in_errors: "0" + in_discards: "887632010" + in_mac_acl_discards: "0" + in_unknown_protocols: "887631923" + out_pkts: "351229701" + out_bytes: "302436379177" + out_qdrops: "23658" + out_broadcasts: "2298782" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/2" + flags: "BROADCAST MULTICAST ARP" + ifindex: "113" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "448d10h36m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:0a:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/3" + flags: "BROADCAST MULTICAST ARP" + ifindex: "114" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "448d10h36m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:0e:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "FastEthernet 1/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "106" + description: "*** WAN INTERFACE ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1546" + ipv6_mtu: "" + uptime: "448d10h36m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:12:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "100000" + bandwidth_limit_kbps: "" + sfp_mediatype: "rj45" + input_rate: "229312" + output_rate: "237176" + input_pps: "104" + output_pps: "102" + input_load_pct: "0.229" + output_load_pct: "0.237" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "cbq" + out_queue_length: "" + out_queue_depth: "" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "3777818556" + in_bytes: "2813130486707" + in_qdrops: "0" + in_broadcasts: "608769" + in_multicasts: "0" + in_errors: "0" + in_discards: "608769" + in_mac_acl_discards: "0" + in_unknown_protocols: "608769" + out_pkts: "3537518750" + out_bytes: "1904299986411" + out_qdrops: "1944226" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "114820" + vrf: "" + - interface: "FastEthernet 1/0.10" + flags: "BROADCAST MULTICAST ARP" + ifindex: "22017" + description: "*** VDSL2 SHARED VLAN ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "10" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "448d10h36m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:12:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "100000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "229312" + output_rate: "237176" + input_pps: "104" + output_pps: "102" + input_load_pct: "0.229" + output_load_pct: "0.237" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "3777209791" + in_bytes: "2812914388764" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "3539577808" + out_bytes: "1907203054251" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "3" + out_discards: "0" + vrf: "" + - interface: "Dialer 1" + flags: "POINT-TO-POINT MULTICAST" + ifindex: "11101" + description: "*** VT096413 - GS99999941512 - IP-VPN - ['VDSL2 SHARED VLAN'] -\ + \ NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Point-to-Point Protocol" + vlanid: "" + ipv4_mtu: "1492" + ipv6_mtu: "" + uptime: "196d20h26m" + downtime: "" + status_changes: "7" + ipv4: "94.105.238.194/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "94.105.238.193" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "100000" + bandwidth_limit_kbps: "70000" + sfp_mediatype: "" + input_rate: "240208" + output_rate: "217472" + input_pps: "104" + output_pps: "102" + input_load_pct: "0.240" + output_load_pct: "0.310" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "fifo+shaper" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "-763131925" + shaper_burst_current: "874602" + shaper_burst_max: "875000" + reliability_value: "255" + reliability_max: "255" + in_pkts: "3769467815" + in_bytes: "2899812744256" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "3531835372" + out_bytes: "1821912521847" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 0" + flags: "LOOPBACK MULTICAST" + ifindex: "9902" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "448d10h36m" + downtime: "" + status_changes: "0" + ipv4: "127.0.0.1/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: + - "::1/128" + - "fe80::1/64" + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "1749" + in_bytes: "164332" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "1749" + out_bytes: "164332" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 1" + flags: "LOOPBACK MULTICAST" + ifindex: "9903" + description: "*** VT096413 - GS99999941512 ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "448d10h36m" + downtime: "" + status_changes: "0" + ipv4: "94.105.25.111/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "6280" + output_rate: "6280" + input_pps: "9" + output_pps: "9" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "6346421" + in_bytes: "472102678" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "6346427" + out_bytes: "472103054" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "9501" + description: "Connection to Customer LAN" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "396d21h16m" + downtime: "" + status_changes: "3" + ipv4: "192.168.5.1/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "192.168.5.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:02:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "504776" + output_rate: "397352" + input_pps: "226" + output_pps: "198" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "4578208775" + in_bytes: "2133846516522" + in_qdrops: "0" + in_broadcasts: "735617627" + in_multicasts: "136187246" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "683928098" + out_pkts: "3814474945" + out_bytes: "2750982891198" + out_qdrops: "0" + out_broadcasts: "20941724" + out_multicasts: "0" + out_errors: "1" + out_discards: "22341208" + vrf: "" + - interface: "Bvi 55" + flags: "BROADCAST MULTICAST ARP" + ifindex: "9555" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "11d21h45m" + downtime: "" + status_changes: "31" + ipv4: "192.168.55.1/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "192.168.55.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:06:bb:4f" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "186144" + output_rate: "256456" + input_pps: "113" + output_pps: "114" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "2" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "237375069" + in_bytes: "58811387749" + in_qdrops: "0" + in_broadcasts: "182857" + in_multicasts: "19575274" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "18243239" + out_pkts: "351253527" + out_bytes: "302442538460" + out_qdrops: "0" + out_broadcasts: "2298786" + out_multicasts: "0" + out_errors: "1" + out_discards: "2496554" + vrf: "" + - interface: "Null 0" + flags: "MULTICAST" + ifindex: "9901" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "448d10h36m" + downtime: "" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "0" + congestion_dropped_cpu: "0" + congestion_dropped_total: "0" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw new file mode 100644 index 0000000000..bfc6f5df69 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw @@ -0,0 +1,154 @@ +GigabitEthernet 0/0 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524288 + Description: *** LAN INTERFACE *** + Promiscuous mode active + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 7d16h18m, status change count 3 + Hardware address is 70:fc:8c:0f:f4:56, ARP timeout 7200 sec + Auto-negotiation, full-duplex + Line speed 1000000 kbps + media-type rj45 + Bridged to group 1 + Mean input/output rate 175872/174288 bits/s, 104/103 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 32071720 packets, 6390984357 bytes, 0 queue drops + 223105 broadcasts, 485683 multicasts, 0 errors, 25 discards + 0 unknown protocols + OUT: 29278879 packets, 5037622271 bytes, 0 queue drops + 19550 broadcasts, 2 multicasts, 0 errors, 0 discards +GigabitEthernet 0/1 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 528384 + Description: *** LAN INTERFACE *** + Promiscuous mode active + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 46d22h7m, status change count 0 + Hardware address is 70:fc:8c:13:f4:56, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Bridged to group 1 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 0/2 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 532480 + Description: *** LAN INTERFACE *** + Promiscuous mode active + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 46d22h7m, status change count 0 + Hardware address is 70:fc:8c:17:f4:56, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Bridged to group 1 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 0/3 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 536576 + Description: *** LAN INTERFACE *** + Promiscuous mode active + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 46d22h7m, status change count 0 + Hardware address is 70:fc:8c:1b:f4:56, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Bridged to group 1 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 1/0 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 589824 + Description: *** WAN INTERFACE *** + Encapsulation: Ethernet v2, IPv4 MTU 1550 bytes, IPv6 MTU 1500 bytes + Up-time 46d22h7m, status change count 1 + Hardware address is 70:fc:8c:1f:f4:56, ARP timeout 7200 sec + Auto-negotiation, full-duplex + Line speed 1000000 kbps + media-type rj45 + Mean input/output rate 186728/186520 bits/s, 115/113 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: cbq, output queue length/depth 0/0 + IN: 35088705 packets, 5965567349 bytes, 0 queue drops + 1328658 broadcasts, 2036367 multicasts, 0 errors, 3366651 discards + 0 unknown protocols + OUT: 35167795 packets, 6548403039 bytes, 11 queue drops + 942 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 1/0.300 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 590124 + Description: *** To NOS-ASR-01 Bundle-Ether1006.1041 VT111387 *** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 300, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 46d22h6m, status change count 1 + Hardware address is 70:fc:8c:1f:f4:56, ARP timeout 7200 sec + Internet address is 94.105.164.78/30, broadcast address is 94.105.164.79 + Line speed 1000000 kbps, bandwidth limit 2000 kbps + Mean input/output rate 185544/186520 bits/s, 114/113 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 31722054 packets, 5352095889 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 35167806 packets, 6548407077 bytes, 0 queue drops + 942 broadcasts, 0 multicasts, 0 errors, 4 discards +Bvi 1 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268439552 + Description: ***LAN*** + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 7d16h18m, status change count 3 + Hardware address is 70:fc:8c:0f:f4:56, ARP timeout 7200 sec + Internet address is 172.16.2.1/24, broadcast address is 172.16.2.255 + Line speed 1000000 kbps + Bridged to group 1 + Mean input/output rate 175864/174288 bits/s, 104/103 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 32071564 packets, 6387759974 bytes, 0 queue drops + 222958 broadcasts, 485677 multicasts, 0 errors, 202589 discards + 0 unknown protocols + OUT: 29278879 packets, 5037622271 bytes, 0 queue drops + 19550 broadcasts, 2 multicasts, 0 errors, 52 discards +Null 0 is up, line protocol is up + Flags: (0x1000) BROADCAST MULTICAST ARP, interface index is 1879048192 + Description: Null 0 + Up-time 46d22h7m, status change count 0 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 1 is up, line protocol is up + Flags: (0x41) LOOPBACK ARP, interface index is 1912602625 + Description: * VT111387 - - GS20210143583 * + IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes + Up-time 46d22h6m, status change count 1 + Internet address is 94.105.13.199/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml new file mode 100644 index 0000000000..2e5f38f197 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml @@ -0,0 +1,623 @@ +--- +parsed_sample: + - interface: "GigabitEthernet 0/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524288" + description: "*** LAN INTERFACE *** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "7d16h18m" + downtime: "" + status_changes: "3" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:0f:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "175872" + output_rate: "174288" + input_pps: "104" + output_pps: "103" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "32071720" + in_bytes: "6390984357" + in_qdrops: "0" + in_broadcasts: "223105" + in_multicasts: "485683" + in_errors: "0" + in_discards: "25" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "29278879" + out_bytes: "5037622271" + out_qdrops: "0" + out_broadcasts: "19550" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "528384" + description: "*** LAN INTERFACE *** " + link_status: "up" + protocol_status: "down" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "46d22h7m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:13:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/2" + flags: "BROADCAST MULTICAST ARP" + ifindex: "532480" + description: "*** LAN INTERFACE *** " + link_status: "up" + protocol_status: "down" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "46d22h7m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:17:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/3" + flags: "BROADCAST MULTICAST ARP" + ifindex: "536576" + description: "*** LAN INTERFACE *** " + link_status: "up" + protocol_status: "down" + promiscuous_mode: "active" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "46d22h7m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:1b:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 1/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "589824" + description: "*** WAN INTERFACE *** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "46d22h7m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:1f:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "186728" + output_rate: "186520" + input_pps: "115" + output_pps: "113" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "cbq" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "35088705" + in_bytes: "5965567349" + in_qdrops: "0" + in_broadcasts: "1328658" + in_multicasts: "2036367" + in_errors: "0" + in_discards: "3366651" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "35167795" + out_bytes: "6548403039" + out_qdrops: "11" + out_broadcasts: "942" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 1/0.300" + flags: "BROADCAST MULTICAST ARP" + ifindex: "590124" + description: "*** To NOS-ASR-01 Bundle-Ether1006.1041 VT111387 *** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "300" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "46d22h6m" + downtime: "" + status_changes: "1" + ipv4: "94.105.164.78/30" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "94.105.164.79" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:1f:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "2000" + sfp_mediatype: "" + input_rate: "185544" + output_rate: "186520" + input_pps: "114" + output_pps: "113" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "31722054" + in_bytes: "5352095889" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "35167806" + out_bytes: "6548407077" + out_qdrops: "0" + out_broadcasts: "942" + out_multicasts: "0" + out_errors: "0" + out_discards: "4" + vrf: "" + - interface: "Bvi 1" + flags: "BROADCAST MULTICAST" + ifindex: "268439552" + description: "***LAN*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "7d16h18m" + downtime: "" + status_changes: "3" + ipv4: "172.16.2.1/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "172.16.2.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:0f:f4:56" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "175864" + output_rate: "174288" + input_pps: "104" + output_pps: "103" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "1" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "32071564" + in_bytes: "6387759974" + in_qdrops: "0" + in_broadcasts: "222958" + in_multicasts: "485677" + in_errors: "0" + in_discards: "202589" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "29278879" + out_bytes: "5037622271" + out_qdrops: "0" + out_broadcasts: "19550" + out_multicasts: "2" + out_errors: "0" + out_discards: "52" + vrf: "" + - interface: "Null 0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "1879048192" + description: "Null 0 " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "" + ipv6_mtu: "" + uptime: "46d22h7m" + downtime: "" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 1" + flags: "LOOPBACK ARP" + ifindex: "1912602625" + description: "* VT111387 - - GS20210143583 * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "32768" + uptime: "46d22h6m" + downtime: "" + status_changes: "1" + ipv4: "94.105.13.199/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw new file mode 100644 index 0000000000..f913925730 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw @@ -0,0 +1,472 @@ +GigabitEthernet 0/0 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524288 + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Auto-negotiation, full-duplex + Line speed 1000000 kbps + media-type rj45 + Mean input/output rate 10376/0 bits/s, 9/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 12518391 packets, 1271686154 bytes, 0 queue drops + 3484256 broadcasts, 8964165 multicasts, 0 errors, 739144 discards + 0 unknown protocols + OUT: 18391 packets, 4319614 bytes, 0 queue drops + 6040 broadcasts, 10366 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.11 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524299 + Description: ***New-VLAN*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 11, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 11 + Mean input/output rate 912/0 bits/s, 1/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 2006169 packets, 147626481 bytes, 0 queue drops + 697829 broadcasts, 1297736 multicasts, 0 errors, 90 discards + 0 unknown protocols + OUT: 10959 packets, 3637675 bytes, 0 queue drops + 452 broadcasts, 10075 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.16 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524304 + Description: ***IoT-VLAN*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 16, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 16 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 951933 packets, 60291014 bytes, 0 queue drops + 2916 broadcasts, 948052 multicasts, 0 errors, 92 discards + 0 unknown protocols + OUT: 890 packets, 57830 bytes, 0 queue drops + 820 broadcasts, 28 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.30 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524318 + Description: ***Wired-Data*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 30, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 30 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1067723 packets, 83911652 bytes, 0 queue drops + 75977 broadcasts, 985997 multicasts, 0 errors, 3641 discards + 0 unknown protocols + OUT: 2150 packets, 137293 bytes, 0 queue drops + 2020 broadcasts, 56 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.32 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524320 + Description: ***Wireless-Data*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 32, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 32 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1224347 packets, 97452034 bytes, 0 queue drops + 183480 broadcasts, 1011526 multicasts, 0 errors, 28132 discards + 0 unknown protocols + OUT: 1498 packets, 352048 bytes, 0 queue drops + 401 broadcasts, 195 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.100 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524388 + Description: ***Detron management*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 100, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 100 + Mean input/output rate 6984/0 bits/s, 2/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 3423184 packets, 584129862 bytes, 0 queue drops + 2482067 broadcasts, 940888 multicasts, 0 errors, 8 discards + 0 unknown protocols + OUT: 313 packets, 14422 bytes, 0 queue drops + 124 broadcasts, 2 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.111 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524399 + Description: ***VLAN Voice*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 111, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 111 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 946934 packets, 58999003 bytes, 0 queue drops + 3578 broadcasts, 941005 multicasts, 0 errors, 1175 discards + 0 unknown protocols + OUT: 1210 packets, 57232 bytes, 0 queue drops + 1175 broadcasts, 6 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.255 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524543 + Description: ***Renewi-internet-only*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 255, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 255 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 958692 packets, 63289510 bytes, 0 queue drops + 905 broadcasts, 957262 multicasts, 0 errors, 1 discards + 0 unknown protocols + OUT: 313 packets, 14422 bytes, 0 queue drops + 155 broadcasts, 2 multicasts, 0 errors, 0 discards +GigabitEthernet 0/0.256 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524544 + Description: ***Guest-internet-only*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 256, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Line speed 1000000 kbps + Bridged to group 256 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1200265 packets, 104533834 bytes, 0 queue drops + 37427 broadcasts, 1142644 multicasts, 0 errors, 16925 discards + 0 unknown protocols + OUT: 1058 packets, 48692 bytes, 0 queue drops + 893 broadcasts, 2 multicasts, 0 errors, 0 discards +GigabitEthernet 0/1 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 528384 + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 15d13h58m, status change count 0 + Hardware address is 70:fc:8c:18:74:86, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 0/2 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 532480 + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 15d13h58m, status change count 0 + Hardware address is 70:fc:8c:1c:74:86, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 0/3 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 536576 + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 15d13h58m, status change count 0 + Hardware address is 70:fc:8c:20:74:86, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +GigabitEthernet 1/0 is up, line protocol is down + Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 589824 + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Down-time 15d13h58m, status change count 0 + Hardware address is 70:fc:8c:24:74:86, ARP timeout 7200 sec + Unknown negotiation, duplex-unknown + Line speed unknown + media-type rj45 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Bvi 11 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268480512 + Description: ***New-VLAN*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 11, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 192.168.113.8/24, broadcast address is 192.168.113.255 + Secondary address is 1.35.8.3/28 + Line speed 1000000 kbps + Bridged to group 11 + Mean input/output rate 912/0 bits/s, 1/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 2006079 packets, 147611735 bytes, 0 queue drops + 697827 broadcasts, 1297732 multicasts, 0 errors, 746458 discards + 0 unknown protocols + OUT: 10959 packets, 3637675 bytes, 0 queue drops + 452 broadcasts, 10075 multicasts, 0 errors, 0 discards +Bvi 16 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268500992 + Description: ***IoT-VLAN*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 16, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.16.7/24, broadcast address is 10.133.16.255 + Line speed 1000000 kbps + Bridged to group 16 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 951841 packets, 60270731 bytes, 0 queue drops + 2916 broadcasts, 948051 multicasts, 0 errors, 675839 discards + 0 unknown protocols + OUT: 890 packets, 57830 bytes, 0 queue drops + 820 broadcasts, 28 multicasts, 0 errors, 0 discards +Bvi 30 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268558336 + Description: ***Wired-Data*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 30, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.30.7/24, broadcast address is 10.133.30.255 + Line speed 1000000 kbps + Bridged to group 30 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1064082 packets, 83308854 bytes, 0 queue drops + 75977 broadcasts, 985996 multicasts, 0 errors, 705770 discards + 0 unknown protocols + OUT: 2150 packets, 137293 bytes, 0 queue drops + 2020 broadcasts, 56 multicasts, 0 errors, 0 discards +Bvi 32 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268566528 + Description: ***Wireless-Data*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 32, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.32.7/24, broadcast address is 10.133.32.255 + Line speed 1000000 kbps + Bridged to group 32 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1196215 packets, 93448622 bytes, 0 queue drops + 183480 broadcasts, 1011526 multicasts, 0 errors, 711906 discards + 0 unknown protocols + OUT: 1498 packets, 352048 bytes, 0 queue drops + 401 broadcasts, 195 multicasts, 0 errors, 0 discards +Bvi 100 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268845056 + Description: ***Detron management*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 100, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.100.7/24, broadcast address is 10.133.100.255 + Line speed 1000000 kbps + Bridged to group 100 + Mean input/output rate 6984/0 bits/s, 2/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 3423176 packets, 584129223 bytes, 0 queue drops + 2482062 broadcasts, 940885 multicasts, 0 errors, 3122704 discards + 0 unknown protocols + OUT: 313 packets, 14422 bytes, 0 queue drops + 124 broadcasts, 2 multicasts, 0 errors, 0 discards +Bvi 111 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268890112 + Description: ***VLAN Voice*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 111, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.111.7/24, broadcast address is 10.133.111.255 + Line speed 1000000 kbps + Bridged to group 111 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 945759 packets, 58912718 bytes, 0 queue drops + 3578 broadcasts, 941004 multicasts, 0 errors, 671817 discards + 0 unknown protocols + OUT: 1210 packets, 57232 bytes, 0 queue drops + 1175 broadcasts, 6 multicasts, 0 errors, 0 discards +Bvi 255 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 269479936 + Description: ***Renewi-internet-only*** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 255, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h58m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 10.133.255.7/24, broadcast address is 10.133.255.255 + Line speed 1000000 kbps + Bridged to group 255 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 958691 packets, 63289446 bytes, 0 queue drops + 905 broadcasts, 957261 multicasts, 0 errors, 672044 discards + 0 unknown protocols + OUT: 313 packets, 14422 bytes, 0 queue drops + 155 broadcasts, 2 multicasts, 0 errors, 0 discards +Bvi 256 is up, line protocol is up + Flags: (0x10c1) BROADCAST MULTICAST, interface index is 269484032 + Description: ***Guest-internet-only *** + Encapsulation: 802.1Q Virtual LAN, VLAN ID 256, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 15d13h57m, status change count 1 + Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec + Internet address is 172.31.133.7/24, broadcast address is 172.31.133.255 + Line speed 1000000 kbps + Bridged to group 256 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 1183340 packets, 102663453 bytes, 0 queue drops + 37427 broadcasts, 1142643 multicasts, 0 errors, 790937 discards + 0 unknown protocols + OUT: 1058 packets, 48692 bytes, 0 queue drops + 893 broadcasts, 2 multicasts, 0 errors, 0 discards +Virtual-Ethernet 1 is up, line protocol is up + Flags: (0x10d3) BROADCAST MULTICAST ARP, interface index is 402657280 + Description: * - VT113486obile access 4G - UNTRUST - IP-VPN - 4G * + This interface is associated to VRF UNTRUST + Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes + Up-time 7d18h14m, status change count 13 + Internet address is 10.94.60.60/29, broadcast address is 10.94.60.63 + Line speed 50000 kbps + Mean input/output rate 13104/13400 bits/s, 11/8 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 503303 packets, 68017904 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 6 discards + 0 unknown protocols + OUT: 577910 packets, 95350536 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 2 discards +Null 0 is up, line protocol is up + Flags: (0x1000) BROADCAST MULTICAST ARP, interface index is 1879048192 + Description: Null 0 + Up-time 15d13h58m, status change count 0 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 1 is up, line protocol is up + Flags: (0x41) LOOPBACK ARP, interface index is 1912602625 + Description: * VT113486 - GS20220145291 * + IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes + Up-time 15d13h57m, status change count 1 + Internet address is 94.105.15.186/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 2 is up, line protocol is up + Flags: (0x41) LOOPBACK ARP, interface index is 1912602626 + Description: * Customer * + IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes + Up-time 15d13h57m, status change count 1 + Internet address is 172.18.2.133/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 21 is up, line protocol is up + Flags: (0x41) LOOPBACK ARP, interface index is 1912602645 + Description: * - Mobile access 4G - ANT BGP peer ip * + IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes + Up-time 15d13h57m, status change count 1 + Internet address is 192.4.21.8/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 91 is up, line protocol is up + Flags: (0x41) LOOPBACK ARP, interface index is 1912602715 + Description: * - Mobile access 4G - NOS BGP peer ip * + IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes + Up-time 15d13h57m, status change count 1 + Internet address is 192.4.91.8/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Tunnel 21 is up, line protocol is up + Flags: (0x10d3) POINT-TO-POINT MULTICAST, interface index is 1912668181 + Description: * VT113486 - Mobile access 4G - Tunnel to ANT-IPSEC-02 - IP-VPN - 4G * + Encapsulation: TUNNEL, IPv4 MTU 1434 bytes, IPv6 MTU 1476 bytes + Tunnel source 10.94.60.60, destination 94.105.25.2 + Tunnel protocol/transport GRE/IP + Tunnel protection via IPsec (profile "CM-VPN-ANT1") + This interface is associated to Tunnel VRF UNTRUST + Up-time 7d18h14m, status change count 21 + Interface is unnumbered, use address of Loopback 1(94.105.15.186) + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 95951 packets, 11888424 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards + 0 unknown protocols + OUT: 97372 packets, 11696336 bytes, 0 queue drops + 99 broadcasts, 0 multicasts, 0 errors, 2 discards +Tunnel 91 is up, line protocol is up + Flags: (0x10d3) POINT-TO-POINT MULTICAST, interface index is 1912668251 + Description: * VT113486 - Mobile access 4G - Tunnel to NOS-IPSEC-02 - IP-VPN - 4G * + Encapsulation: TUNNEL, IPv4 MTU 1434 bytes, IPv6 MTU 1476 bytes + Tunnel source 10.94.60.60, destination 94.105.25.9 + Tunnel protocol/transport GRE/IP + Tunnel protection via IPsec (profile "CM-VPN-NOS1") + This interface is associated to Tunnel VRF UNTRUST + Up-time 1d15h45m, status change count 45 + Interface is unnumbered, use address of Loopback 1(94.105.15.186) + Line speed unknown + Mean input/output rate 13088/13392 bits/s, 11/8 packets/s (over the last 4 seconds) + Reliability: 255/255 + Output queuing strategy: fifo, output queue length/depth 0/0 + IN: 379133 packets, 51559304 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 1 discards + 0 unknown protocols + OUT: 444480 packets, 78321920 bytes, 0 queue drops + 40046 broadcasts, 15 multicasts, 0 errors, 52 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml new file mode 100644 index 0000000000..5209d3b45b --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml @@ -0,0 +1,2006 @@ +--- +parsed_sample: + - interface: "GigabitEthernet 0/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524288" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "10376" + output_rate: "0" + input_pps: "9" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "12518391" + in_bytes: "1271686154" + in_qdrops: "0" + in_broadcasts: "3484256" + in_multicasts: "8964165" + in_errors: "0" + in_discards: "739144" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "18391" + out_bytes: "4319614" + out_qdrops: "0" + out_broadcasts: "6040" + out_multicasts: "10366" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.11" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524299" + description: "***New-VLAN*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "11" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "912" + output_rate: "0" + input_pps: "1" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "11" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "2006169" + in_bytes: "147626481" + in_qdrops: "0" + in_broadcasts: "697829" + in_multicasts: "1297736" + in_errors: "0" + in_discards: "90" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "10959" + out_bytes: "3637675" + out_qdrops: "0" + out_broadcasts: "452" + out_multicasts: "10075" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.16" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524304" + description: "***IoT-VLAN*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "16" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "16" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "951933" + in_bytes: "60291014" + in_qdrops: "0" + in_broadcasts: "2916" + in_multicasts: "948052" + in_errors: "0" + in_discards: "92" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "890" + out_bytes: "57830" + out_qdrops: "0" + out_broadcasts: "820" + out_multicasts: "28" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.30" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524318" + description: "***Wired-Data*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "30" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "30" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1067723" + in_bytes: "83911652" + in_qdrops: "0" + in_broadcasts: "75977" + in_multicasts: "985997" + in_errors: "0" + in_discards: "3641" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "2150" + out_bytes: "137293" + out_qdrops: "0" + out_broadcasts: "2020" + out_multicasts: "56" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.32" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524320" + description: "***Wireless-Data*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "32" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "32" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1224347" + in_bytes: "97452034" + in_qdrops: "0" + in_broadcasts: "183480" + in_multicasts: "1011526" + in_errors: "0" + in_discards: "28132" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1498" + out_bytes: "352048" + out_qdrops: "0" + out_broadcasts: "401" + out_multicasts: "195" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.100" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524388" + description: "***Detron management*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "100" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "6984" + output_rate: "0" + input_pps: "2" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "100" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "3423184" + in_bytes: "584129862" + in_qdrops: "0" + in_broadcasts: "2482067" + in_multicasts: "940888" + in_errors: "0" + in_discards: "8" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "313" + out_bytes: "14422" + out_qdrops: "0" + out_broadcasts: "124" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.111" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524399" + description: "***VLAN Voice*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "111" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "111" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "946934" + in_bytes: "58999003" + in_qdrops: "0" + in_broadcasts: "3578" + in_multicasts: "941005" + in_errors: "0" + in_discards: "1175" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1210" + out_bytes: "57232" + out_qdrops: "0" + out_broadcasts: "1175" + out_multicasts: "6" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.255" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524543" + description: "***Renewi-internet-only*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "255" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "255" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "958692" + in_bytes: "63289510" + in_qdrops: "0" + in_broadcasts: "905" + in_multicasts: "957262" + in_errors: "0" + in_discards: "1" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "313" + out_bytes: "14422" + out_qdrops: "0" + out_broadcasts: "155" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/0.256" + flags: "BROADCAST MULTICAST ARP" + ifindex: "524544" + description: "***Guest-internet-only*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "256" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "256" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1200265" + in_bytes: "104533834" + in_qdrops: "0" + in_broadcasts: "37427" + in_multicasts: "1142644" + in_errors: "0" + in_discards: "16925" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1058" + out_bytes: "48692" + out_qdrops: "0" + out_broadcasts: "893" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "528384" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "15d13h58m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:18:74:86" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/2" + flags: "BROADCAST MULTICAST ARP" + ifindex: "532480" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "15d13h58m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:1c:74:86" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/3" + flags: "BROADCAST MULTICAST ARP" + ifindex: "536576" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "15d13h58m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:20:74:86" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 1/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "589824" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "" + downtime: "15d13h58m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:24:74:86" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 11" + flags: "BROADCAST MULTICAST" + ifindex: "268480512" + description: "***New-VLAN*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "11" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "192.168.113.8/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "192.168.113.255" + ipv4_secondary: + - "1.35.8.3/28" + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "912" + output_rate: "0" + input_pps: "1" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "11" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "2006079" + in_bytes: "147611735" + in_qdrops: "0" + in_broadcasts: "697827" + in_multicasts: "1297732" + in_errors: "0" + in_discards: "746458" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "10959" + out_bytes: "3637675" + out_qdrops: "0" + out_broadcasts: "452" + out_multicasts: "10075" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 16" + flags: "BROADCAST MULTICAST" + ifindex: "268500992" + description: "***IoT-VLAN*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "16" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.16.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.16.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "16" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "951841" + in_bytes: "60270731" + in_qdrops: "0" + in_broadcasts: "2916" + in_multicasts: "948051" + in_errors: "0" + in_discards: "675839" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "890" + out_bytes: "57830" + out_qdrops: "0" + out_broadcasts: "820" + out_multicasts: "28" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 30" + flags: "BROADCAST MULTICAST" + ifindex: "268558336" + description: "***Wired-Data*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "30" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.30.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.30.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "30" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1064082" + in_bytes: "83308854" + in_qdrops: "0" + in_broadcasts: "75977" + in_multicasts: "985996" + in_errors: "0" + in_discards: "705770" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "2150" + out_bytes: "137293" + out_qdrops: "0" + out_broadcasts: "2020" + out_multicasts: "56" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 32" + flags: "BROADCAST MULTICAST" + ifindex: "268566528" + description: "***Wireless-Data*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "32" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.32.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.32.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "32" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1196215" + in_bytes: "93448622" + in_qdrops: "0" + in_broadcasts: "183480" + in_multicasts: "1011526" + in_errors: "0" + in_discards: "711906" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1498" + out_bytes: "352048" + out_qdrops: "0" + out_broadcasts: "401" + out_multicasts: "195" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 100" + flags: "BROADCAST MULTICAST" + ifindex: "268845056" + description: "***Detron management*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "100" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.100.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.100.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "6984" + output_rate: "0" + input_pps: "2" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "100" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "3423176" + in_bytes: "584129223" + in_qdrops: "0" + in_broadcasts: "2482062" + in_multicasts: "940885" + in_errors: "0" + in_discards: "3122704" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "313" + out_bytes: "14422" + out_qdrops: "0" + out_broadcasts: "124" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 111" + flags: "BROADCAST MULTICAST" + ifindex: "268890112" + description: "***VLAN Voice*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "111" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.111.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.111.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "111" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "945759" + in_bytes: "58912718" + in_qdrops: "0" + in_broadcasts: "3578" + in_multicasts: "941004" + in_errors: "0" + in_discards: "671817" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1210" + out_bytes: "57232" + out_qdrops: "0" + out_broadcasts: "1175" + out_multicasts: "6" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 255" + flags: "BROADCAST MULTICAST" + ifindex: "269479936" + description: "***Renewi-internet-only*** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "255" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h58m" + downtime: "" + status_changes: "1" + ipv4: "10.133.255.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.133.255.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "255" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "958691" + in_bytes: "63289446" + in_qdrops: "0" + in_broadcasts: "905" + in_multicasts: "957261" + in_errors: "0" + in_discards: "672044" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "313" + out_bytes: "14422" + out_qdrops: "0" + out_broadcasts: "155" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Bvi 256" + flags: "BROADCAST MULTICAST" + ifindex: "269484032" + description: "***Guest-internet-only *** " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "802.1Q Virtual LAN" + vlanid: "256" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "172.31.133.7/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "172.31.133.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:14:74:86" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "256" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1183340" + in_bytes: "102663453" + in_qdrops: "0" + in_broadcasts: "37427" + in_multicasts: "1142643" + in_errors: "0" + in_discards: "790937" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "1058" + out_bytes: "48692" + out_qdrops: "0" + out_broadcasts: "893" + out_multicasts: "2" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Virtual-Ethernet 1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "402657280" + description: "* - VT113486obile access 4G - UNTRUST - IP-VPN - 4G * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "1500" + uptime: "7d18h14m" + downtime: "" + status_changes: "13" + ipv4: "10.94.60.60/29" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.94.60.63" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "50000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "13104" + output_rate: "13400" + input_pps: "11" + output_pps: "8" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "503303" + in_bytes: "68017904" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "6" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "577910" + out_bytes: "95350536" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "2" + vrf: "UNTRUST" + - interface: "Null 0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "1879048192" + description: "Null 0 " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "" + ipv6_mtu: "" + uptime: "15d13h58m" + downtime: "" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 1" + flags: "LOOPBACK ARP" + ifindex: "1912602625" + description: "* VT113486 - GS20220145291 * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "32768" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "94.105.15.186/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 2" + flags: "LOOPBACK ARP" + ifindex: "1912602626" + description: "* Customer * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "32768" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "172.18.2.133/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 21" + flags: "LOOPBACK ARP" + ifindex: "1912602645" + description: "* - Mobile access 4G - ANT BGP peer ip * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "32768" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "192.4.21.8/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 91" + flags: "LOOPBACK ARP" + ifindex: "1912602715" + description: "* - Mobile access 4G - NOS BGP peer ip * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "32768" + uptime: "15d13h57m" + downtime: "" + status_changes: "1" + ipv4: "192.4.91.8/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Tunnel 21" + flags: "POINT-TO-POINT MULTICAST" + ifindex: "1912668181" + description: "* VT113486 - Mobile access 4G - Tunnel to ANT-IPSEC-02 - IP-VPN\ + \ - 4G * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "TUNNEL" + vlanid: "" + ipv4_mtu: "1476" + ipv6_mtu: "1476" + uptime: "7d18h14m" + downtime: "" + status_changes: "21" + ipv4: "unnumbered" + ipv4_unnumbered_intf: "Loopback 1" + ipv4_unnumbered_ip: "94.105.15.186" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "10.94.60.60" + tunnel_destination: "94.105.25.2" + tunnel_protocol: "GRE" + tunnel_transport: "IP" + tunnel_protection_mode: "IPsec" + tunnel_protection_profile: "CM-VPN-ANT1" + tunnel_vrf: "UNTRUST" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "95951" + in_bytes: "11888424" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "97372" + out_bytes: "11696336" + out_qdrops: "0" + out_broadcasts: "99" + out_multicasts: "0" + out_errors: "0" + out_discards: "2" + vrf: "" + - interface: "Tunnel 91" + flags: "POINT-TO-POINT MULTICAST" + ifindex: "1912668251" + description: "* VT113486 - Mobile access 4G - Tunnel to NOS-IPSEC-02 - IP-VPN\ + \ - 4G * " + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "TUNNEL" + vlanid: "" + ipv4_mtu: "1476" + ipv6_mtu: "1476" + uptime: "1d15h45m" + downtime: "" + status_changes: "45" + ipv4: "unnumbered" + ipv4_unnumbered_intf: "Loopback 1" + ipv4_unnumbered_ip: "94.105.15.186" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "10.94.60.60" + tunnel_destination: "94.105.25.9" + tunnel_protocol: "GRE" + tunnel_transport: "IP" + tunnel_protection_mode: "IPsec" + tunnel_protection_profile: "CM-VPN-NOS1" + tunnel_vrf: "UNTRUST" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "13088" + output_rate: "13392" + input_pps: "11" + output_pps: "8" + input_load_pct: "" + output_load_pct: "" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "0" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "379133" + in_bytes: "51559304" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "1" + in_mac_acl_discards: "" + in_unknown_protocols: "0" + out_pkts: "444480" + out_bytes: "78321920" + out_qdrops: "0" + out_broadcasts: "40046" + out_multicasts: "15" + out_errors: "0" + out_discards: "52" + vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw new file mode 100644 index 0000000000..edf4360774 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw @@ -0,0 +1,209 @@ +GigabitEthernet 0/0 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 111 + Description: Connection to Customer LAN + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 90d17h48m, status change count 1 + Hardware address is 70:fc:8c:05:1d:9a, ARP timeout 7200 sec + Internet address is 192.168.140.3/24, broadcast address is 192.168.140.255 + Auto-negotiation, full-duplex, flowcontrol enabled + Line speed 1000000 kbps + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 1595000 packets, 104199354 bytes, 0 queue drops + 26164 broadcasts, 1567985 multicasts, 0 errors, 12 discards, 0 mac acl discards + 16 unknown protocols + OUT: 975 packets, 184194 bytes, 0 queue drops + 98 broadcasts, 14 multicasts, 0 errors, 2 discards, 0 collisions +GigabitEthernet 0/1 is down, line protocol is down + Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 112 + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 90d17h48m, status change count 0 + Hardware address is 70:fc:8c:09:1d:9a, ARP timeout 7200 sec + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +GigabitEthernet 0/2 is down, line protocol is down + Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 113 + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 90d17h48m, status change count 0 + Hardware address is 70:fc:8c:0d:1d:9a, ARP timeout 7200 sec + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +GigabitEthernet 0/3 is down, line protocol is down + Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 114 + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 90d17h48m, status change count 0 + Hardware address is 70:fc:8c:11:1d:9a, ARP timeout 7200 sec + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +GigabitEthernet 1/0 is up, line protocol is down + Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 116 + Encapsulation: Ethernet v2, MTU 1500 bytes + Down-time 90d17h48m, status change count 0 + Hardware address is 70:fc:8c:15:1d:9a, ARP timeout 7200 sec + negotiation unknown, duplex unknown + Line speed unknown + Media-type rj45 + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + Reliability: 255/255 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions +Loopback 0 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9902 + MTU 32768 bytes + Up-time 90d17h48m, status change count 0 + Internet address is 127.0.0.1/32 + IPv6 address is ::1/128 + IPv6 address is fe80::1/64 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 792892 packets, 50304174 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 792892 packets, 50304174 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 1 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9903 + Description: VT93757 + MTU 32768 bytes + Up-time 90d17h48m, status change count 0 + Internet address is 94.105.19.13/32 + Line speed unknown + Mean input/output rate 8064/8064 bits/s, 11/11 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 1205685 packets, 94253106 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 1205685 packets, 94253106 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 21 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9923 + Description: *** Mobile access 4G - BGP PEER LOOPBACK *** + MTU 32768 bytes + Up-time 90d17h48m, status change count 0 + Internet address is 192.4.21.3/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 547665 packets, 27577399 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 547665 packets, 27577399 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Loopback 91 is up, line protocol is up + Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9993 + Description: *** Mobile access 4G - BGP PEER LOOPBACK *** + MTU 32768 bytes + Up-time 90d17h48m, status change count 0 + Internet address is 192.4.91.3/32 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 547767 packets, 27648173 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 547767 packets, 27648173 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Tunnel 21 is up, line protocol is up + Flags: (0x80f1) POINT-TO-POINT MULTICAST, interface index is 9822 + This interface is associated to Tunnel VRF UNTRUST + Encapsulation: TUNNEL, MTU 1434 bytes + Keepalive not set + Tunnel source 10.94.48.156, destination 94.105.25.2 + Tunnel protocol/transport GRE/IP + Up-time 1d22h3m, status change count 87 + Interface is unnumbered, use address of Loopback 1 (94.105.19.13) + Line speed 50000 kbps + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 548361 packets, 53110629 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + 0 bad checksum, 0 bad key id, 0 bad sequence + OUT: 553132 packets, 66072336 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Tunnel 91 is up, line protocol is up + Flags: (0x80f1) POINT-TO-POINT MULTICAST, interface index is 9892 + This interface is associated to Tunnel VRF UNTRUST + Encapsulation: TUNNEL, MTU 1434 bytes + Keepalive not set + Tunnel source 10.94.48.156, destination 94.105.25.9 + Tunnel protocol/transport GRE/IP + Up-time 04:03:43, status change count 267 + Interface is unnumbered, use address of Loopback 1 (94.105.19.13) + Line speed 50000 kbps + Mean input/output rate 13016/16640 bits/s, 11/12 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.026/0.033 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 1752769 packets, 208283715 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + 0 bad checksum, 0 bad key id, 0 bad sequence + OUT: 1896077 packets, 284630648 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +Null 0 is up, line protocol is up + Flags: (0x80e1) MULTICAST, interface index is 9901 + MTU 32768 bytes + Up-time 90d17h48m, status change count 0 + Line speed unknown + Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 0 packets, 0 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards +virtual-ethernet 1 is up, line protocol is up + Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 10701 + Description: *** Mobile access 4G testing - WAN INTF *** + This interface is associated to VRF UNTRUST + Encapsulation: Ethernet v2, MTU 1500 bytes + Up-time 47d12h55m, status change count 5 + Hardware address is 70:fc:8c:21:1d:9a, ARP timeout 7200 sec + Internet address is 10.94.48.156/29, broadcast address is 10.94.48.159 + Line speed 50000 kbps + Mean input/output rate 25040/39352 bits/s, 19/20 packets/s (over the last 4 seconds) + Mean input/output load percentage 0.050/0.078 percent (over the last 4 seconds) + Output queuing strategy: fifo, output queue length/depth 0/126 + IN: 2484298 packets, 371202556 bytes, 0 queue drops + 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards + 0 unknown protocols + OUT: 2679534 packets, 421781451 bytes, 0 queue drops + 2220 broadcasts, 0 multicasts, 0 errors, 8 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml new file mode 100644 index 0000000000..2b10289876 --- /dev/null +++ b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml @@ -0,0 +1,901 @@ +--- +parsed_sample: + - interface: "GigabitEthernet 0/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "111" + description: "Connection to Customer LAN" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "1" + ipv4: "192.168.140.3/24" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "192.168.140.255" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:05:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "1000000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "1595000" + in_bytes: "104199354" + in_qdrops: "0" + in_broadcasts: "26164" + in_multicasts: "1567985" + in_errors: "0" + in_discards: "12" + in_mac_acl_discards: "0" + in_unknown_protocols: "16" + out_pkts: "975" + out_bytes: "184194" + out_qdrops: "0" + out_broadcasts: "98" + out_multicasts: "14" + out_errors: "0" + out_discards: "2" + vrf: "" + - interface: "GigabitEthernet 0/1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "112" + description: "" + link_status: "down" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "90d17h48m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:09:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/2" + flags: "BROADCAST MULTICAST ARP" + ifindex: "113" + description: "" + link_status: "down" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "90d17h48m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:0d:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 0/3" + flags: "BROADCAST MULTICAST ARP" + ifindex: "114" + description: "" + link_status: "down" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "90d17h48m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:11:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "GigabitEthernet 1/0" + flags: "BROADCAST MULTICAST ARP" + ifindex: "116" + description: "" + link_status: "up" + protocol_status: "down" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "" + downtime: "90d17h48m" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:15:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "rj45" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "255" + reliability_max: "255" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 0" + flags: "LOOPBACK MULTICAST" + ifindex: "9902" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "0" + ipv4: "127.0.0.1/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: + - "::1/128" + - "fe80::1/64" + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "792892" + in_bytes: "50304174" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "792892" + out_bytes: "50304174" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 1" + flags: "LOOPBACK MULTICAST" + ifindex: "9903" + description: "VT93757" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "0" + ipv4: "94.105.19.13/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "8064" + output_rate: "8064" + input_pps: "11" + output_pps: "11" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "1205685" + in_bytes: "94253106" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "1205685" + out_bytes: "94253106" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 21" + flags: "LOOPBACK MULTICAST" + ifindex: "9923" + description: "*** Mobile access 4G - BGP PEER LOOPBACK ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "0" + ipv4: "192.4.21.3/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "547665" + in_bytes: "27577399" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "547665" + out_bytes: "27577399" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Loopback 91" + flags: "LOOPBACK MULTICAST" + ifindex: "9993" + description: "*** Mobile access 4G - BGP PEER LOOPBACK ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "0" + ipv4: "192.4.91.3/32" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "547767" + in_bytes: "27648173" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "547767" + out_bytes: "27648173" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Tunnel 21" + flags: "POINT-TO-POINT MULTICAST" + ifindex: "9822" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "TUNNEL" + vlanid: "" + ipv4_mtu: "1434" + ipv6_mtu: "" + uptime: "1d22h3m" + downtime: "" + status_changes: "87" + ipv4: "unnumbered" + ipv4_unnumbered_intf: "Loopback 1 " + ipv4_unnumbered_ip: "94.105.19.13" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "10.94.48.156" + tunnel_destination: "94.105.25.2" + tunnel_protocol: "GRE" + tunnel_transport: "IP" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "UNTRUST" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "50000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "548361" + in_bytes: "53110629" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "553132" + out_bytes: "66072336" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Tunnel 91" + flags: "POINT-TO-POINT MULTICAST" + ifindex: "9892" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "TUNNEL" + vlanid: "" + ipv4_mtu: "1434" + ipv6_mtu: "" + uptime: "04:03:43" + downtime: "" + status_changes: "267" + ipv4: "unnumbered" + ipv4_unnumbered_intf: "Loopback 1 " + ipv4_unnumbered_ip: "94.105.19.13" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "10.94.48.156" + tunnel_destination: "94.105.25.9" + tunnel_protocol: "GRE" + tunnel_transport: "IP" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "UNTRUST" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "50000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "13016" + output_rate: "16640" + input_pps: "11" + output_pps: "12" + input_load_pct: "0.026" + output_load_pct: "0.033" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "1752769" + in_bytes: "208283715" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "1896077" + out_bytes: "284630648" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "Null 0" + flags: "MULTICAST" + ifindex: "9901" + description: "" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "" + vlanid: "" + ipv4_mtu: "32768" + ipv6_mtu: "" + uptime: "90d17h48m" + downtime: "" + status_changes: "0" + ipv4: "" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "" + arp_timeout: "" + bandwidth_kbps: "" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "0" + output_rate: "0" + input_pps: "0" + output_pps: "0" + input_load_pct: "0.000" + output_load_pct: "0.000" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "0" + in_bytes: "0" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "0" + out_bytes: "0" + out_qdrops: "0" + out_broadcasts: "0" + out_multicasts: "0" + out_errors: "0" + out_discards: "0" + vrf: "" + - interface: "virtual-ethernet 1" + flags: "BROADCAST MULTICAST ARP" + ifindex: "10701" + description: "*** Mobile access 4G testing - WAN INTF ***" + link_status: "up" + protocol_status: "up" + promiscuous_mode: "" + encapsulation: "Ethernet v2" + vlanid: "" + ipv4_mtu: "1500" + ipv6_mtu: "" + uptime: "47d12h55m" + downtime: "" + status_changes: "5" + ipv4: "10.94.48.156/29" + ipv4_unnumbered_intf: "" + ipv4_unnumbered_ip: "" + ipv4_gw: "" + ipv4_broadcast: "10.94.48.159" + ipv4_secondary: [] + ipv6: [] + tunnel_source: "" + tunnel_destination: "" + tunnel_protocol: "" + tunnel_transport: "" + tunnel_protection_mode: "" + tunnel_protection_profile: "" + tunnel_vrf: "" + firewall_zone: "" + macaddress: "70:fc:8c:21:1d:9a" + arp_timeout: "7200" + bandwidth_kbps: "50000" + bandwidth_limit_kbps: "" + sfp_mediatype: "" + input_rate: "25040" + output_rate: "39352" + input_pps: "19" + output_pps: "20" + input_load_pct: "0.050" + output_load_pct: "0.078" + congestion_dropped_rx: "" + congestion_dropped_cpu: "" + congestion_dropped_total: "" + bridge_group: "" + out_queue_strategy: "fifo" + out_queue_length: "0" + out_queue_depth: "126" + shaper_pkts_dequeued: "" + shaper_burst_current: "" + shaper_burst_max: "" + reliability_value: "" + reliability_max: "" + in_pkts: "2484298" + in_bytes: "371202556" + in_qdrops: "0" + in_broadcasts: "0" + in_multicasts: "0" + in_errors: "0" + in_discards: "0" + in_mac_acl_discards: "0" + in_unknown_protocols: "0" + out_pkts: "2679534" + out_bytes: "421781451" + out_qdrops: "0" + out_broadcasts: "2220" + out_multicasts: "0" + out_errors: "0" + out_discards: "8" + vrf: "UNTRUST" diff --git a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw new file mode 100644 index 0000000000..100b5f53a6 --- /dev/null +++ b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw @@ -0,0 +1,51 @@ + + Track 1 + + interface GigabitEthernet 0/0 ip-routing + + Ip-routing is UP + + 1 Change, Last Change 12:48:41 + + Up Delay 2, Down Delay 2 + + Poll Interval (in msec) 1000 + + + Track 2 + + interface GigabitEthernet 0/1 ip-routing + + Ip-routing is UP + + 1 Change, Last Change 12:48:41 + + Up Delay 2, Down Delay 2 + + Poll Interval (in msec) 1000 + + + Track 3 + + interface GigabitEthernet 0/2 ip-routing + + Ip-routing is UP + + 1 Change, Last Change 12:48:41 + + Up Delay 2, Down Delay 2 + + Poll Interval (in msec) 1000 + + + Track 4 + + VRRP Id 4 vrf ORANGE_APN_WGKAIOT_0001 + + Vrrp is UP + + 3 Change, Last Change 09:14:18 + + Up Delay 2, Down Delay 2 + + Poll Interval (in msec) 3000 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml new file mode 100644 index 0000000000..a4885f2e3e --- /dev/null +++ b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml @@ -0,0 +1,46 @@ +--- +parsed_sample: + - id: "1" + category: "ip-routing" + interface: "GigabitEthernet 0/0" + vrrp_id: "" + vrf: "" + state: "UP" + state_changes: "1" + last_change: "12:48:41" + up_delay: "2" + down_delay: "2" + poll_interval: "1000" + - id: "2" + category: "ip-routing" + interface: "GigabitEthernet 0/1" + vrrp_id: "" + vrf: "" + state: "UP" + state_changes: "1" + last_change: "12:48:41" + up_delay: "2" + down_delay: "2" + poll_interval: "1000" + - id: "3" + category: "ip-routing" + interface: "GigabitEthernet 0/2" + vrrp_id: "" + vrf: "" + state: "UP" + state_changes: "1" + last_change: "12:48:41" + up_delay: "2" + down_delay: "2" + poll_interval: "1000" + - id: "4" + category: "VRRP" + interface: "" + vrrp_id: "4" + vrf: "ORANGE_APN_WGKAIOT_0001" + state: "UP" + state_changes: "3" + last_change: "09:14:18" + up_delay: "2" + down_delay: "2" + poll_interval: "3000" diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw new file mode 100644 index 0000000000..d9c1dd59b3 --- /dev/null +++ b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw @@ -0,0 +1,36 @@ +GigabitEthernet 0/0 - Group 1 + State is master + Version 2 + Virtual IP address 172.16.0.240, Netmask 255.255.255.0 (1) + Virtual MAC address is 00:00:5e:00:01:01 + Advertisement interval is 5 sec + Preemption is enabled, min delay is 15 sec + Priority 105 + Master router is 172.16.0.241 (local), priority is 105 +GigabitEthernet 0/1 - Group 3 + State is master + Version 2 + Virtual IP address 172.16.3.240, Netmask 255.255.255.0 (1) + Virtual MAC address is 00:00:5e:00:01:03 + Advertisement interval is 5 sec + Preemption is enabled, min delay is 15 sec + Priority 105 + Master router is 172.16.3.241 (local), priority is 105 +GigabitEthernet 0/2 - Group 2 + State is master + Version 2 + Virtual IP address 172.16.5.240, Netmask 255.255.255.0 (1) + Virtual MAC address is 00:00:5e:00:01:02 + Advertisement interval is 5 sec + Preemption is enabled, min delay is 15 sec + Priority 105 + Master router is 172.16.5.241 (local), priority is 105 +GigabitEthernet 0/3 - Group 4 + State is master + Version 2 + Virtual IP address 172.16.6.240, Netmask 255.255.255.0 (1) + Virtual MAC address is 00:00:5e:00:01:04 + Advertisement interval is 5 sec + Preemption is enabled, min delay is 15 sec + Priority 105 + Master router is 172.16.6.241 (local), priority is 105 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml new file mode 100644 index 0000000000..5479e6d7d0 --- /dev/null +++ b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml @@ -0,0 +1,58 @@ +--- +parsed_sample: + - iface: "GigabitEthernet 0/0" + group: "1" + state: "master" + version: "2" + virtualip: "172.16.0.240" + virtualnetmask: "255.255.255.0" + virtual_mac: "00:00:5e:00:01:01" + adv_interval: "5" + preempt: "enabled" + preempt_min_delay: "15" + priority: "105" + master_ip: "172.16.0.241" + master_priority: "105" + master_state: "local" + - iface: "GigabitEthernet 0/1" + group: "3" + state: "master" + version: "2" + virtualip: "172.16.3.240" + virtualnetmask: "255.255.255.0" + virtual_mac: "00:00:5e:00:01:03" + adv_interval: "5" + preempt: "enabled" + preempt_min_delay: "15" + priority: "105" + master_ip: "172.16.3.241" + master_priority: "105" + master_state: "local" + - iface: "GigabitEthernet 0/2" + group: "2" + state: "master" + version: "2" + virtualip: "172.16.5.240" + virtualnetmask: "255.255.255.0" + virtual_mac: "00:00:5e:00:01:02" + adv_interval: "5" + preempt: "enabled" + preempt_min_delay: "15" + priority: "105" + master_ip: "172.16.5.241" + master_priority: "105" + master_state: "local" + - iface: "GigabitEthernet 0/3" + group: "4" + state: "master" + version: "2" + virtualip: "172.16.6.240" + virtualnetmask: "255.255.255.0" + virtual_mac: "00:00:5e:00:01:04" + adv_interval: "5" + preempt: "enabled" + preempt_min_delay: "15" + priority: "105" + master_ip: "172.16.6.241" + master_priority: "105" + master_state: "local" diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw new file mode 100644 index 0000000000..d57a548933 --- /dev/null +++ b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw @@ -0,0 +1,9 @@ +GigabitEthernet 0/0 - Group 1 + State is backup + Version 2 + Virtual IP address 192.168.140.1, Netmask 255.255.255.0 (0) + Virtual MAC address is 00:00:5e:00:01:01 + Advertisement interval is 5 sec + Preemption is enabled, min delay is 15 sec + Priority 100 + Master router is 192.168.140.2 (remote), priority is 105 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml new file mode 100644 index 0000000000..3426ae5143 --- /dev/null +++ b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml @@ -0,0 +1,16 @@ +--- +parsed_sample: + - iface: "GigabitEthernet 0/0" + group: "1" + state: "backup" + version: "2" + virtualip: "192.168.140.1" + virtualnetmask: "255.255.255.0" + virtual_mac: "00:00:5e:00:01:01" + adv_interval: "5" + preempt: "enabled" + preempt_min_delay: "15" + priority: "100" + master_ip: "192.168.140.2" + master_priority: "105" + master_state: "remote" From d83fd21c78ce5679e784784ca1c0ccd677f03ec6 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 1 Mar 2023 10:50:49 +0000 Subject: [PATCH 19/31] update command alias --- ntc_templates/templates/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 3efdd719e2..75e0f624c8 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -730,7 +730,7 @@ oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief oneaccess_oneos_show_isdn_active.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn active -oneaccess_oneos_show_interfaces.textfsm, .*, oneaccess_oneos, sh[[ow]] interfaces +oneaccess_oneos_show_interfaces.textfsm, .*, oneaccess_oneos, sh[[ow]] interface[[s]] oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map oneaccess_oneos_show_track_all.textfsm, .*, oneaccess_oneos, sh[[ow]] track all oneaccess_oneos_show_voice_mos.textfsm, .*, oneaccess_oneos, sh[[ow]] voice mos From 9e654ef07de3d54aae82a4bcd1b6a2bd3c24b6fa Mon Sep 17 00:00:00 2001 From: mwallraf Date: Wed, 11 Oct 2023 11:58:51 +0200 Subject: [PATCH 20/31] Update index - ip dhcp --- ntc_templates/templates/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 75e0f624c8..aae68163b8 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -705,7 +705,7 @@ oneaccess_oneos_show_voice_voip-call_any_all.textfsm, .*, oneaccess_oneos, sh[[o oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] context oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list -oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?b?ip dhcp +oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| be[[gin]] )?ip dhcp oneaccess_oneos_show_system_secure-crashlog.textfsm, .*, oneaccess_oneos, sh[[ow]] system secure-crashlog oneaccess_oneos_show_transceiver_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] transceiver equipment oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all From 3eceaf5f903b9113542aa769db372cbbdca71de9 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Tue, 17 Oct 2023 15:12:31 +0200 Subject: [PATCH 21/31] Update oneaccess_oneos_show_running-config_ip_route.textfsm --- .../oneaccess_oneos_show_running-config_ip_route.textfsm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm index d75ea714ab..bc38bc2c24 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm @@ -1,11 +1,12 @@ Value Required NETWORK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) Value MASK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) Value NEXTHOP_IP (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) -Value NEXTHOP_IF ([A-Z][\w\-\.:\/]+( [\d\.]+)?) +Value NEXTHOP_IF (\w[\w\-\.:\/]+( [\d\.]+)?) +Value VRF (\S+) Start - ^ip\sroute\s${NETWORK}\s${MASK}\s${NEXTHOP_IP} -> Record - ^ip\sroute\s${NETWORK}\s${MASK}\s${NEXTHOP_IF} -> Record + ^ip\sroute(\svrf\s${VRF})?\s${NETWORK}\s${MASK}\s${NEXTHOP_IP} -> Record + ^ip\sroute(\svrf\s${VRF})?\s${NETWORK}\s${MASK}\s${NEXTHOP_IF} -> Record ^.*$$ ^. -> Error From 0bc2ec407b8e50e9f0e59a5fe36766f8abc3f2d5 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 17 Nov 2023 10:58:31 +0100 Subject: [PATCH 22/31] Create oneaccess_oneos_show_ip_helper-address_statistics.textfsm --- ...s_oneos_show_ip_helper-address_statistics.textfsm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm new file mode 100644 index 0000000000..4d8423ed1a --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm @@ -0,0 +1,12 @@ +Value Required INTERFACE (.*) +Value List HELPERS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) + +Start + ^.*:\s\d+\sbroadcasts\sforwarded -> Continue.Record + ^${INTERFACE}:\s\d+\sbroadcasts\sforwarded + ^\s*${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){1}${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){2}${HELPERS} -> Continue + ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){3}${HELPERS} + ^.*$$ + ^. -> Error From 0b5b8a825075e4e255f72e3c8dd30b74cfd0890c Mon Sep 17 00:00:00 2001 From: mwallraf Date: Fri, 17 Nov 2023 10:59:31 +0100 Subject: [PATCH 23/31] Update index --- ntc_templates/templates/index | 1 + 1 file changed, 1 insertion(+) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index aae68163b8..6fb269fd2d 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -695,6 +695,7 @@ mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset +oneaccess_oneos_show_ip_helper-address_statistics.textfsm, .*, oneaccess_oneos, sh[[ow]] ip helper-address statistics oneaccess_oneos_show_voice_voip-call_active_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment oneaccess_oneos_show_voice_voice-port_pri_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all From b54cbfb6acb72384a1d73fd5ca80429e1c99a365 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 23 Nov 2023 13:28:53 +0100 Subject: [PATCH 24/31] Update oneaccess_oneos_show_interfaces.textfsm --- .../templates/oneaccess_oneos_show_interfaces.textfsm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm b/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm index 27182c8bd6..ac0ba0f050 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm @@ -12,6 +12,8 @@ Value IPV6_MTU (\d+) Value UPTIME (\S+) Value DOWNTIME (\S+) Value STATUS_CHANGES (\d+) +Value NEGOTIATION ([aA]uto|no) +Value DUPLEX (full|half) Value IPV4 (\d+\.\d+\.\d+\.\d+\/\d+|unnumbered) Value IPV4_UNNUMBERED_INTF (.*) Value IPV4_UNNUMBERED_IP (\S+) @@ -67,7 +69,7 @@ Value OUT_MULTICASTS (\d+) Value OUT_ERRORS (\d+) Value OUT_DISCARDS (\d+) Value VRF (\S+) - + Start ^\S+(?:\s\S+)?\s+is\s+(?:up|down),\s+line\s+protocol.*$$ -> Continue.Record @@ -84,6 +86,8 @@ Start ^\s+This\sinterface\sis\sassociated\sto\sVRF\s${VRF} ^\s+Up-time\s${UPTIME},\sstatus\schange\scount\s${STATUS_CHANGES} ^\s+Down-time\s${DOWNTIME},\sstatus\schange\scount\s${STATUS_CHANGES} + ^\s+${NEGOTIATION}[\-\s]negotiation, -> Continue + ^\s+.*\s${DUPLEX}[\-\s]duplex, -> Continue ^\s+Internet\saddress\sis\s${IPV4},\sdestination\saddress\sis\s${IPV4_GW} ^\s+Internet\saddress\sis\s${IPV4},\sbroadcast\saddress\sis\s${IPV4_BROADCAST} ^\s+Internet\saddress\sis\s${IPV4} From 45df7727d9ae46e4a4f9adf7da355e1d3dec0132 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 23 Nov 2023 13:29:22 +0100 Subject: [PATCH 25/31] Update index --- ntc_templates/templates/index | 1 + 1 file changed, 1 insertion(+) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 6fb269fd2d..fb40deffb7 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -692,6 +692,7 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] + oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset From 4ec81b2cfe9a9fd56b5f76a3ae828851eef6df56 Mon Sep 17 00:00:00 2001 From: mwallraf Date: Thu, 23 Nov 2023 15:58:22 +0100 Subject: [PATCH 26/31] Update oneaccess_oneos_show_ip_bgp_summary.textfsm --- .../templates/oneaccess_oneos_show_ip_bgp_summary.textfsm | 1 - 1 file changed, 1 deletion(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm index 2c07c5f299..478a167fc8 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm @@ -29,6 +29,5 @@ Start ^${BGP_NEIGH}\s+${ADDR_FAMILY}\s+${NEIGH_AS}\s+${MSG_RCVD}\s+${MSG_SENT}\s+${TBL_VER}\s+${IN_Q}\s+${OUT_Q}\s+${UP_DOWN}\s+${STATE_PFXRCD} -> Record ^Total\snumber\sof\sneighbors\s${TOTAL_NEIGHBORS} ^\s*$$ - ^. -> Error EOF From 94ad842e2eb03b5f813c4c5a349fbce66573ad2f Mon Sep 17 00:00:00 2001 From: WALLRAF Maarten Date: Thu, 27 Jun 2024 08:49:03 +0200 Subject: [PATCH 27/31] devices with + sign were not detected --- .../templates/oneaccess_oneos_show_system_hardware.textfsm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm index beb8b7e3ec..8573c7e3af 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm @@ -1,4 +1,4 @@ -Value Device (\w+) +Value Device (\S+) Value CPU (.*) Value CoreFreq (\d+) Value DDRFreq (\d+) @@ -48,4 +48,4 @@ Start ^\s*Wlan\s+0\s+:\s+${WLAN0}\s ^\s*Wlan\s+1\s+:\s+${WLAN1}\s ^.* - ^. -> Error \ No newline at end of file + ^. -> Error From 5fb16bd9353961f814ecbb6d2ad62a76a64a6ad5 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 16 Jul 2024 15:31:35 -0400 Subject: [PATCH 28/31] Fix black test --- ntc_templates/templates/index | 3 --- tests/test_index_order.py | 6 +----- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index fb40deffb7..6470144121 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -182,9 +182,6 @@ ciena_saos_port_show.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] ciena_saos_rstp_show.textfsm, .*, ciena_saos, rs[[tp]] sh[[ow]] ciena_saos_vlan_show.textfsm, .*, ciena_saos, vl[[an]] sh[[ow]] - - - cisco_apic_fabric_show_vlan_extended.textfsm, .*, cisco_apic, fabric sh[[ow]] vlan ex[[tended]] cisco_asa_show_module.textfsm:cisco_asa_show_module_details.textfsm:cisco_asa_show_module_status.textfsm, .*, cisco_asa, sh[[ow]] modu[[le]] diff --git a/tests/test_index_order.py b/tests/test_index_order.py index 91d249261d..02d83711a2 100755 --- a/tests/test_index_order.py +++ b/tests/test_index_order.py @@ -102,11 +102,7 @@ def check_order( # pylint: disable=too-many-arguments,too-many-arguments,too-ma if not prior_os and prior_len == 0: # Starting Point return True, "" - if ( - current_os == prior_os - and cmd_len == prior_len - and cmd == min(prior_cmd, cmd) - ): + if current_os == prior_os and cmd_len == prior_len and cmd == min(prior_cmd, cmd): msg = f"OS is the same and command same length, please set {cmd} before {prior_cmd} to be in alphabetical order" return False, msg if current_os == prior_os and cmd_len <= prior_len: From 6827c9e6bce21d2cf7f30ec8d7123ed68e7c2e60 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 16 Jul 2024 15:39:32 -0400 Subject: [PATCH 29/31] Remove Ciena Templates --- .../ciena_saos_lldp_show_neighbors.textfsm | 39 ---------- ...ena_saos_port_show_ethernet-config.textfsm | 21 ------ ...iena_saos_port_show_network-config.textfsm | 20 ----- .../ciena_saos_port_show_status.textfsm | 19 ----- .../ciena_saos_port_xcvr_show.textfsm | 15 ---- .../hp_comware_display_interface.textfsm | 3 - ntc_templates/templates/index | 7 -- .../ciena_saos_lldp_show_neighbors.3916.raw | 34 --------- .../ciena_saos_lldp_show_neighbors.3916.yml | 44 ----------- ...na_saos_port_show_ethernet-config.3916.raw | 12 --- ...na_saos_port_show_ethernet-config.3916.yml | 74 ------------------- ...ena_saos_port_show_network-config.3916.raw | 12 --- ...ena_saos_port_show_network-config.3916.yml | 68 ----------------- .../ciena_saos_port_show_status.3916.raw | 11 --- .../ciena_saos_port_show_status.3916.yml | 56 -------------- .../ciena_saos_port_xcvr_show.3916.raw | 11 --- .../ciena_saos_port_xcvr_show.3916.yml | 44 ----------- 17 files changed, 490 deletions(-) delete mode 100644 ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm delete mode 100644 ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm delete mode 100644 ntc_templates/templates/ciena_saos_port_show_network-config.textfsm delete mode 100644 ntc_templates/templates/ciena_saos_port_show_status.textfsm delete mode 100644 ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm delete mode 100644 tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw delete mode 100644 tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml delete mode 100644 tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw delete mode 100644 tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml delete mode 100644 tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw delete mode 100644 tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml delete mode 100644 tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw delete mode 100644 tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml delete mode 100644 tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw delete mode 100644 tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml diff --git a/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm b/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm deleted file mode 100644 index 9cf3c8bd44..0000000000 --- a/ntc_templates/templates/ciena_saos_lldp_show_neighbors.textfsm +++ /dev/null @@ -1,39 +0,0 @@ -Value List,Filldown REMOTE_ADDR_IPV4 (\d+\.\d+\.\d+\.\d+) -Value List,Filldown REMOTE_ADDR_IPV6 ([a-f0-9:]+) -Value Filldown SYSTEM_NAME (\S+) -Value Filldown SYSTEM_DESCRIPTION (.*\S) -Value Required LOCAL_PORT (\S+) -Value REMOTE_PORT (\S+) -Value REMOTE_CHASSIS_ID (\S+) -Value List REMOTE_MGMT_ADDR_IPV4 (\d+\.\d+\.\d+\.\d+) -Value List REMOTE_MGMT_ADDR_IPV6 ([a-f0-9:]+) -Value REMOTE_SYSTEM_NAME (\S+) -Value REMOTE_SYSTEM_DESCRIPTION (.*\S) -Value REMOTE_SYNCE_SUPPORT (.*\S) -Value REMOTE_SYNCE_CONFIG (.*\S) - -Start - ^\+\-+ - ^\|\sRemote\sAddr:\s${REMOTE_ADDR_IPV4} - ^\|\sRemote\sAddr:\s${REMOTE_ADDR_IPV6} - ^\|\sSystem\sName:\s${SYSTEM_NAME}\s+\| - ^\|\sSystem\sDesc:\s${SYSTEM_DESCRIPTION}\s+\| - # neighbor record - ^\|${LOCAL_PORT}\s*\|${REMOTE_PORT}\s*\|\s*Chassis\sId:\s*${REMOTE_CHASSIS_ID} -> Neighbor - ^\|.* - ^\s*$$ - ^. -> Error - -Neighbor - ^\|\s*\|\s*\|\s*Mgmt\sAddr:\s${REMOTE_MGMT_ADDR_IPV4}\s+\| -> NeighborMgmt - ^\|\s*\|\s*\|\s*Mgmt\sAddr:\s${REMOTE_MGMT_ADDR_IPV6}\s+\| -> NeighborMgmt - ^\|\s*\|\s*\|\s*System\sName:\s${REMOTE_SYSTEM_NAME} -> Neighbor - ^\|\s*\|\s*\|\s*System\sDesc:\s${REMOTE_SYSTEM_DESCRIPTION}\s+\| - ^\|\s*\|\s*\|\s*SyncE\sSuppt:\s${REMOTE_SYNCE_SUPPORT}\s+\| - ^\|\s*\|\s*\|\s*SyncE\sConfg:\s${REMOTE_SYNCE_CONFIG}\s+\| - ^\+\-+ -> Record Start - -NeighborMgmt - ^\|\s*\|\s*\|\s+${REMOTE_MGMT_ADDR_IPV4}\s+\|$$ - ^\|\s*\|\s*\|\s+${REMOTE_MGMT_ADDR_IPV6}\s+\|$$ - ^\|\s*\|\s*\|\s*System\sName:\s${REMOTE_SYSTEM_NAME} -> Neighbor diff --git a/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm b/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm deleted file mode 100644 index 826c324978..0000000000 --- a/ntc_templates/templates/ciena_saos_port_show_ethernet-config.textfsm +++ /dev/null @@ -1,21 +0,0 @@ -Value NAME (\S+) -Value TYPE (\S+) -Value ADMIN_STATUS (\S+) -Value SPEED (\S+) -Value DUPLEX (\S+) -Value FLOW_CONTROL (\S+) -Value FLOW_CONTROL_ADV (\S+) -Value AUTONEG (\S+) -Value MTU (\d+) -Value MIRROR_STATE (\S+) -Value MIRROR_EG (\d+) -Value MIRROR_IG (\d+) - -Start - ^\+-+\s*PORT\s*ETHERNET\s*CONFIGURATION\s*-+\+ - ^\+-+ - ^\|\s*${NAME}\s*\|\s*${TYPE}\s*\|\s*${ADMIN_STATUS}\s*\|\s*${SPEED}\s*\|\s*(${DUPLEX}|\s+)\s*\|\s*${FLOW_CONTROL}\s*\|\s*${FLOW_CONTROL_ADV}\s*\|\s*${AUTONEG}\s*\|\s*${MTU}\s*\|\s*${MIRROR_STATE}\s*\|\s*${MIRROR_EG}\s*\|\s*${MIRROR_IG}\s*\| -> Record - ^\|.* - ^\s*$$ - ^. -> Error - \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm b/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm deleted file mode 100644 index e7deddc4fb..0000000000 --- a/ntc_templates/templates/ciena_saos_port_show_network-config.textfsm +++ /dev/null @@ -1,20 +0,0 @@ -Value NAME (\S+) -Value PVID (\S+) -Value ACCPT_FRAME_TYPE (\S+) -Value UNTAG_INGRESS_VID (\S+) -Value VLAN_INGRESS_FILTER (\S+) -Value VS_INGRESS_FILTER (\S+) -Value EGRESS_UNTAG_VLAN (\S+) -Value VS_EGRESS_FILTER (\S+) -Value INGRESS_COS_POLICY (\S+) -Value VPLS_PORT_TYPE (\S+) -Value ETH_VC_ETHERTYPE (\d+) - -Start - ^\+-+\s*PORT\s*ETHERNET\s*CONFIGURATION\s*-+\+ - ^\+-+ - ^\|\s*${NAME}\s*\|\s*${PVID}\s*\|\s*${ACCPT_FRAME_TYPE}\s*\|\s*${UNTAG_INGRESS_VID}\s*\|\s*(${VLAN_INGRESS_FILTER}|\s+)\s*\|\s*${VS_INGRESS_FILTER}\s*\|\s*${EGRESS_UNTAG_VLAN}\s*\|\s*${VS_EGRESS_FILTER}\s*\|\s*${INGRESS_COS_POLICY}\s*\|\s*${VPLS_PORT_TYPE}\s*\|\s*${ETH_VC_ETHERTYPE}\s*\| -> Record - ^\|.* - ^\s*$$ - ^. -> Error - \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_show_status.textfsm b/ntc_templates/templates/ciena_saos_port_show_status.textfsm deleted file mode 100644 index 52f85c6530..0000000000 --- a/ntc_templates/templates/ciena_saos_port_show_status.textfsm +++ /dev/null @@ -1,19 +0,0 @@ -Value NAME (\S+) -Value DESCR (\S*) -Value LINK (Up|Down) -Value DURATION ([^\|]+) -Value XCVR (\S+) -Value STP (\w+) -Value SPEED_DUPLEX (\S+) -Value MTU (\d+) -Value FLOWCTRL (\S+) - - -Start - ^\+-+\s*PORT\s*OPERATIONAL\s*STATUS\s*-+\+ - ^\+-+ - ^\|${NAME}\s*\|${DESCR}\s*\|\s*${LINK}\s*\|\s*${DURATION}\s*\|\s*(${XCVR}|\s+)\s*\|\s*${STP}\s*\|\s*(${SPEED_DUPLEX}|\s+)\s*\|\s*${MTU}\s*\|\s*(${FLOWCTRL}|\s+)\s*\| -> Record - ^\|.* - ^\s*$$ - ^. -> Error - \ No newline at end of file diff --git a/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm b/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm deleted file mode 100644 index 95c59db797..0000000000 --- a/ntc_templates/templates/ciena_saos_port_xcvr_show.textfsm +++ /dev/null @@ -1,15 +0,0 @@ -Value PORT (\S+) -Value ADMIN_STATE (\S+) -Value OPER_STATE (\S+) -Value VENDOR (\S.*\S) -Value CIENA_REV (\S+) -Value CONNECTOR_TYPE (\S+) -Value DIAG (\S+) - -Start - ^\+-+ - ^\|\s*${PORT}\s*\|${ADMIN_STATE}\s*\|(${OPER_STATE}|)\s*\|(${VENDOR}|)\s*\|(${CIENA_REV}|)\s*\|(${CONNECTOR_TYPE}|)\s*\|(${DIAG}|)\s*\| -> Record - ^\|.* - ^\s*$$ - ^. -> Error - \ No newline at end of file diff --git a/ntc_templates/templates/hp_comware_display_interface.textfsm b/ntc_templates/templates/hp_comware_display_interface.textfsm index cd8d6df9e2..6a06f3273e 100644 --- a/ntc_templates/templates/hp_comware_display_interface.textfsm +++ b/ntc_templates/templates/hp_comware_display_interface.textfsm @@ -183,9 +183,6 @@ Start ^\s+-\s+frame ^\s+-\s+aborts ^\s+-\s+lost\s+carrier -<<<<<<< HEAD ^\s*DCD: -======= ->>>>>>> cbea7530 (HP Comware fix spacing allowances) ^. -> Error ^\s*$$ ^. -> Error diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 6470144121..83b8cee35f 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -170,13 +170,8 @@ checkpoint_gaia_show_lom.textfsm, .*, checkpoint_gaia, show lom checkpoint_gaia_fw_stat.textfsm, .*, checkpoint_gaia, fw stat ciena_saos_traffic-profiling_standard-profile_show.textfsm, .*, ciena_saos, traffic-p[[rofiling]] st[[andard-profile]] sh[[ow]] -ciena_saos_port_show_ethernet-config.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] ethernet-config ciena_saos_chassis_show_temperature.textfsm, .*, ciena_saos, ch[[assis]] sh[[ow]] te[[mperature]] -ciena_saos_port_show_network-config.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] network-config -ciena_saos_lldp_show_neighbors.textfsm, .*, ciena_saos, lldp sh[[ow]] nei[[ghbors]] ciena_saos_ssh_server_show_key.textfsm, .*, ciena_saos, ssh se[[rver]] sh[[ow]] k[[ey]] -ciena_saos_port_show_status.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] status -ciena_saos_port_xcvr_show.textfsm, .*, ciena_saos, po[[rt]] xcvr sh[[ow]] ciena_saos_software_show.textfsm, .*, ciena_saos, so[[ftware]] sh[[ow]] ciena_saos_port_show.textfsm, .*, ciena_saos, po[[rt]] sh[[ow]] ciena_saos_rstp_show.textfsm, .*, ciena_saos, rs[[tp]] sh[[ow]] @@ -689,7 +684,6 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] - oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset @@ -741,7 +735,6 @@ oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* - paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all paloalto_panos_test_security-policy-match.textfsm, .*, paloalto_panos, test security-policy-match.* diff --git a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw deleted file mode 100644 index 6f48de5f92..0000000000 --- a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.raw +++ /dev/null @@ -1,34 +0,0 @@ -+--------------------------------------------------------------------------------------------------------------+ -| LLDP Neighbors | -+--------------------------------------------------------------------------------------------------------------+ -| Remote Addr: 10.8.91.1 | -| Remote Addr: 10.8.128.39 | -| Remote Addr: fe80::9e7a:3ff:fed1:cd1 | -| Remote Addr: fe80::9e7a:3ff:fed1:cdf | -| System Name: LAB_00009-SDS39-100 | -| System Desc: Ciena 3916 Service Delivery Switch | -+-------------+------------------------------------------------------------------------------------------------+ -|Local | Remote | -+-------------+--------------------------------+---------------------------------------------------------------+ -|Port |Port |Info | -+-------------+--------------------------------+---------------------------------------------------------------+ -|5 |6 | Chassis Id: 9C7A03A10D60 | -| | | Mgmt Addr: 10.8.91.2 | -| | | 10.8.128.40 | -| | | fe80::9e7a:3ff:fed1:d61 | -| | | fe80::9e7a:3ff:fed1:d6f | -| | | System Name: LAB_SDS39-200 | -| | | System Desc: Ciena 3916 Service Delivery Switch | -| | | SyncE Suppt: Not Supported | -| | | SyncE Confg: Not Configured | -+-------------+--------------------------------+---------------------------------------------------------------+ -|6 |3 | Chassis Id: 9C7A03B86040 | -| | | Mgmt Addr: 10.8.90.250 | -| | | 10.8.130.1 | -| | | fe80::9e7a:3ff:fec8:6040 | -| | | fe80::9e7a:3ff:fec8:6041 | -| | | System Name: LAB_SAS51-100 | -| | | System Desc: Ciena 5142 Service Aggregation Switch | -| | | SyncE Suppt: Input and Output | -| | | SyncE Confg: Not Configured | -+-------------+--------------------------------+---------------------------------------------------------------+ diff --git a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml b/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml deleted file mode 100644 index ca68330c41..0000000000 --- a/tests/ciena_saos/lldp_show_neighbors/ciena_saos_lldp_show_neighbors.3916.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -parsed_sample: - - remote_addr_ipv4: - - "10.8.91.1" - - "10.8.128.39" - remote_addr_ipv6: - - "fe80::9e7a:3ff:fed1:cd1" - - "fe80::9e7a:3ff:fed1:cdf" - system_name: "LAB_00009-SDS39-100" - system_description: "Ciena 3916 Service Delivery Switch" - local_port: "5" - remote_port: "6" - remote_chassis_id: "9C7A03A10D60" - remote_mgmt_addr_ipv4: - - "10.8.91.2" - - "10.8.128.40" - remote_mgmt_addr_ipv6: - - "fe80::9e7a:3ff:fed1:d61" - - "fe80::9e7a:3ff:fed1:d6f" - remote_system_name: "LAB_SDS39-200" - remote_system_description: "Ciena 3916 Service Delivery Switch" - remote_synce_support: "Not Supported" - remote_synce_config: "Not Configured" - - remote_addr_ipv4: - - "10.8.91.1" - - "10.8.128.39" - remote_addr_ipv6: - - "fe80::9e7a:3ff:fed1:cd1" - - "fe80::9e7a:3ff:fed1:cdf" - system_name: "LAB_00009-SDS39-100" - system_description: "Ciena 3916 Service Delivery Switch" - local_port: "6" - remote_port: "3" - remote_chassis_id: "9C7A03B86040" - remote_mgmt_addr_ipv4: - - "10.8.90.250" - - "10.8.130.1" - remote_mgmt_addr_ipv6: - - "fe80::9e7a:3ff:fec8:6040" - - "fe80::9e7a:3ff:fec8:6041" - remote_system_name: "LAB_SAS51-100" - remote_system_description: "Ciena 5142 Service Aggregation Switch" - remote_synce_support: "Input and Output" - remote_synce_config: "Not Configured" diff --git a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw deleted file mode 100644 index dd5ca74c12..0000000000 --- a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.raw +++ /dev/null @@ -1,12 +0,0 @@ -+------------------------ PORT ETHERNET CONFIGURATION -------------------------+ -| | | | | | | | | | Mirror | -| Port | Port | Admin | | | | FC | Auto| MTU | Status | -| Name | Type | Status| Speed| Dplx| FC | Adv| Neg | Size |State| Eg | Ig | -+--------+---------+-------+------+-----+----+----+-----+------+-----+----+----+ -| 1 | 10/100/G| Dis | Auto | ?? |off |off | On | 9100 | Off | 0 | 0 | -| 2 | 10/100/G| Ena | Auto | ?? |off |off | On | 9100 | Off | 0 | 0 | -| 3 | 100/G | Ena | 100 | ?? |off |off | Off | 9100 | Off | 0 | 0 | -| 4 | 100/G | Ena | 1000 | ?? |off |off | On | 9100 | Off | 0 | 0 | -| 5 | Gig | Ena | 1000 | Full|off |off | Off | 9216 | Off | 0 | 0 | -| 6 | Gig | Ena | 1000 | Full|off |off | Off | 9216 | Off | 0 | 0 | -+--------+---------+-------+------+-----+----+----+-----+------+-----+----+----+ \ No newline at end of file diff --git a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml b/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml deleted file mode 100644 index 54fd4ceb9c..0000000000 --- a/tests/ciena_saos/port_show_ethernet-config/ciena_saos_port_show_ethernet-config.3916.yml +++ /dev/null @@ -1,74 +0,0 @@ ---- -parsed_sample: - - name: "1" - type: "10/100/G" - admin_status: "Dis" - speed: "Auto" - duplex: "??" - flow_control: "off" - flow_control_adv: "off" - autoneg: "On" - mtu: "9100" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" - - name: "2" - type: "10/100/G" - admin_status: "Ena" - speed: "Auto" - duplex: "??" - flow_control: "off" - flow_control_adv: "off" - autoneg: "On" - mtu: "9100" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" - - name: "3" - type: "100/G" - admin_status: "Ena" - speed: "100" - duplex: "??" - flow_control: "off" - flow_control_adv: "off" - autoneg: "Off" - mtu: "9100" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" - - name: "4" - type: "100/G" - admin_status: "Ena" - speed: "1000" - duplex: "??" - flow_control: "off" - flow_control_adv: "off" - autoneg: "On" - mtu: "9100" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" - - name: "5" - type: "Gig" - admin_status: "Ena" - speed: "1000" - duplex: "Full" - flow_control: "off" - flow_control_adv: "off" - autoneg: "Off" - mtu: "9216" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" - - name: "6" - type: "Gig" - admin_status: "Ena" - speed: "1000" - duplex: "Full" - flow_control: "off" - flow_control_adv: "off" - autoneg: "Off" - mtu: "9216" - mirror_state: "Off" - mirror_eg: "0" - mirror_ig: "0" diff --git a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw deleted file mode 100644 index 4446d2b9b5..0000000000 --- a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.raw +++ /dev/null @@ -1,12 +0,0 @@ -+----------------------------- PORT NETWORK CONFIGURATION ------------------------------+ -| | | Accpt |Untag |VLAN |VS |Egress |VS |Ingress| VPLS |Eth VC| -| Port | | Frame |Ingress|Ingress|Ingress|Untag |Egress |CoS | Port |Ether-| -| Name |PVID | Type |Vid |Filter |Filter |VLAN |Filter |Policy | Type |Type | -+---------+-----+--------+-------+-------+-------+-------+-------+-------+-------+------+ -| 1 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | -| 2 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | -| 3 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Subsc | 8100 | -| 4 | 1 | All | 0 | Ena | Ena | 1 | Dis | leave | Subsc | 8100 | -| 5 | 1 | All | 0 | Ena | Ena | 1 | Dis | leave | Ntwrk | 8100 | -| 6 | 1 | All | 0 | Ena | Dis | 1 | Dis | leave | Ntwrk | 8100 | -+---------+-----+--------+-------+-------+-------+-------+-------+-------+-------+------+ \ No newline at end of file diff --git a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml b/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml deleted file mode 100644 index 4f892d16f5..0000000000 --- a/tests/ciena_saos/port_show_network-config/ciena_saos_port_show_network-config.3916.yml +++ /dev/null @@ -1,68 +0,0 @@ ---- -parsed_sample: - - name: "1" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Dis" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Subsc" - eth_vc_ethertype: "8100" - - name: "2" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Dis" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Subsc" - eth_vc_ethertype: "8100" - - name: "3" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Dis" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Subsc" - eth_vc_ethertype: "8100" - - name: "4" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Ena" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Subsc" - eth_vc_ethertype: "8100" - - name: "5" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Ena" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Ntwrk" - eth_vc_ethertype: "8100" - - name: "6" - pvid: "1" - accpt_frame_type: "All" - untag_ingress_vid: "0" - vlan_ingress_filter: "Ena" - vs_ingress_filter: "Dis" - egress_untag_vlan: "1" - vs_egress_filter: "Dis" - ingress_cos_policy: "leave" - vpls_port_type: "Ntwrk" - eth_vc_ethertype: "8100" diff --git a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw deleted file mode 100644 index 437aa26631..0000000000 --- a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.raw +++ /dev/null @@ -1,11 +0,0 @@ -+---------------------------- PORT OPERATIONAL STATUS ----------------------------+ -| | | |Link State| | |Speed/ |MTU |Flow | -| ## | Description |Link|Duration |XCVR|STP|Duplex |Size |Ctrl | -+----+-------------------------------+----+----------+----+---+-------+-----+-----+ -|1 |ACL_3360610_71CHA |Down| 0h 0m 0s| |Dis| | 9100| | -|2 |UNI-Port2 |Down| 0h 0m 0s| |Dis| | 9100| | -|3 |UNI-Port3 |Down| 0h 0m 0s| |Dis| | 9100| | -|4 |NNI-Ringport |Down| 0h 0m 0s| |Dis| | 9100| | -|5 |NNI-Ringport | Up |268d 1h12m|Ena |FWD|1000/FD| 9216|off | -|6 |NNI-Ringport | Up |268d 1h14m|Ena |FWD|1000/FD| 9216|off | -+----+-------------------------------+----+----------+----+---+-------+-----+-----+ diff --git a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml b/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml deleted file mode 100644 index f9822ca0dd..0000000000 --- a/tests/ciena_saos/port_show_status/ciena_saos_port_show_status.3916.yml +++ /dev/null @@ -1,56 +0,0 @@ ---- -parsed_sample: - - name: "1" - descr: "ACL_3360610_71CHA" - link: "Down" - duration: "0h 0m 0s" - xcvr: "" - stp: "Dis" - speed_duplex: "" - mtu: "9100" - flowctrl: "" - - name: "2" - descr: "UNI-Port2" - link: "Down" - duration: "0h 0m 0s" - xcvr: "" - stp: "Dis" - speed_duplex: "" - mtu: "9100" - flowctrl: "" - - name: "3" - descr: "UNI-Port3" - link: "Down" - duration: "0h 0m 0s" - xcvr: "" - stp: "Dis" - speed_duplex: "" - mtu: "9100" - flowctrl: "" - - name: "4" - descr: "NNI-Ringport" - link: "Down" - duration: "0h 0m 0s" - xcvr: "" - stp: "Dis" - speed_duplex: "" - mtu: "9100" - flowctrl: "" - - name: "5" - descr: "NNI-Ringport" - link: "Up" - duration: "268d 1h12m" - xcvr: "Ena" - stp: "FWD" - speed_duplex: "1000/FD" - mtu: "9216" - flowctrl: "off" - - name: "6" - descr: "NNI-Ringport" - link: "Up" - duration: "268d 1h14m" - xcvr: "Ena" - stp: "FWD" - speed_duplex: "1000/FD" - mtu: "9216" - flowctrl: "off" diff --git a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw deleted file mode 100644 index 32db3870b6..0000000000 --- a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.raw +++ /dev/null @@ -1,11 +0,0 @@ -+----+-----+-----+---------Transceiver-Status------------+-----+----------------+----+ -| |Admin| Oper| |Ciena|Ether Medium & |Diag| -|Port|State|State| Vendor Name & Part Number | Rev |Connector Type |Data| -+----+-----+-----+---------------------------------------+-----+----------------+----+ -|1 |Empty| | | | | | -|2 |Empty| | | | | | -|3 |Empty| | | | | | -|4 |Empty| | | | | | -|5 |Ena |Ena |CIENA-LMT XCVR-A40Y31 Rev0003 |A |1000BASE-LX/LC |Yes | -|6 |Ena |Ena |CIENA-LMT XCVR-A40Y31 Rev0003 |A |1000BASE-LX/LC |Yes | -+----+-----+-----+---------------------------------------+-----+----------------+----+ \ No newline at end of file diff --git a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml b/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml deleted file mode 100644 index cf94731373..0000000000 --- a/tests/ciena_saos/port_xcvr_show/ciena_saos_port_xcvr_show.3916.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -parsed_sample: - - port: "1" - admin_state: "Empty" - oper_state: "" - vendor: "" - ciena_rev: "" - connector_type: "" - diag: "" - - port: "2" - admin_state: "Empty" - oper_state: "" - vendor: "" - ciena_rev: "" - connector_type: "" - diag: "" - - port: "3" - admin_state: "Empty" - oper_state: "" - vendor: "" - ciena_rev: "" - connector_type: "" - diag: "" - - port: "4" - admin_state: "Empty" - oper_state: "" - vendor: "" - ciena_rev: "" - connector_type: "" - diag: "" - - port: "5" - admin_state: "Ena" - oper_state: "Ena" - vendor: "CIENA-LMT XCVR-A40Y31 Rev0003" - ciena_rev: "A" - connector_type: "1000BASE-LX/LC" - diag: "Yes" - - port: "6" - admin_state: "Ena" - oper_state: "Ena" - vendor: "CIENA-LMT XCVR-A40Y31 Rev0003" - ciena_rev: "A" - connector_type: "1000BASE-LX/LC" - diag: "Yes" From a8b4d6d7cb68caefd03c09e7b4bd6c60a3707cde Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 17 Jul 2024 08:43:15 -0400 Subject: [PATCH 30/31] Remove templates moving to separate branch --- ntc-templates | 1 - ntc_templates/templates/index | 45 - ...neaccess_oneos_cat_bsa_bsaboot.inf.textfsm | 12 - .../oneaccess_oneos_hostname.textfsm | 5 - .../templates/oneaccess_oneos_ls.textfsm | 15 - ..._oneos_show_cellular-radio_context.textfsm | 60 - ...neos_show_cellular-radio_equipment.textfsm | 36 - ..._oneos_show_cellular-radio_network.textfsm | 39 - .../oneaccess_oneos_show_helpers.textfsm | 12 - .../oneaccess_oneos_show_interfaces.textfsm | 120 - ...eaccess_oneos_show_ip_access-lists.textfsm | 56 - ..._oneos_show_ip_as-path-access-list.textfsm | 13 - .../oneaccess_oneos_show_ip_vrf_brief.textfsm | 12 - .../oneaccess_oneos_show_isdn_active.textfsm | 13 - ...eaccess_oneos_show_isdn_led-status.textfsm | 66 - ...eaccess_oneos_show_isdn_status_all.textfsm | 51 - .../oneaccess_oneos_show_memory.textfsm | 25 - ...oneos_show_policy-interface_output.textfsm | 72 - ...ccess_oneos_show_product-info-area.textfsm | 17 - ...eaccess_oneos_show_reboot_counters.textfsm | 27 - .../oneaccess_oneos_show_route-map.textfsm | 12 - ...cess_oneos_show_running-config_aaa.textfsm | 9 - ...ess_oneos_show_running-config_bind.textfsm | 34 - ..._oneos_show_running-config_ip_dhcp.textfsm | 31 - ...oneos_show_running-config_ip_route.textfsm | 12 - ...neaccess_oneos_show_snmp_community.textfsm | 12 - .../oneaccess_oneos_show_sntp.textfsm | 31 - ...neaccess_oneos_show_soft-file_info.textfsm | 24 - ...neaccess_oneos_show_software-image.textfsm | 19 - ...eaccess_oneos_show_system_hardware.textfsm | 51 - ..._oneos_show_system_secure-crashlog.textfsm | 40 - ...oneaccess_oneos_show_system_status.textfsm | 31 - ...oneaccess_oneos_show_tacacs-server.textfsm | 11 - .../oneaccess_oneos_show_tacacs.textfsm | 26 - .../oneaccess_oneos_show_track_all.textfsm | 22 - ...s_oneos_show_transceiver_equipment.textfsm | 121 - ...how_voice_dial-peer_voice_voip_all.textfsm | 199 - .../oneaccess_oneos_show_voice_mos.textfsm | 51 - ...ccess_oneos_show_voice_sip-gateway.textfsm | 55 - ...oneos_show_voice_sip-gateway_reset.textfsm | 4 - ...ss_oneos_show_voice_voice-port_all.textfsm | 10 - ...neos_show_voice_voice-port_pri_all.textfsm | 89 - ...how_voice_voice-port_pri_all_histo.textfsm | 20 - ...how_voice_voice-port_pri_all_reset.textfsm | 4 - ...os_show_voice_voip-call_active_all.textfsm | 62 - ...oneos_show_voice_voip-call_any_all.textfsm | 66 - ...neaccess_oneos_show_vrrp_interface.textfsm | 27 - .../cat_bsa_bsaboot.inf.raw | 2 - .../cat_bsa_bsaboot.inf.yml | 6 - tests/oneaccess_oneos/hostname/hostname.raw | 1 - tests/oneaccess_oneos/hostname/hostname.yml | 3 - .../ls/ls.bsabinaries.oneos5.raw | 5 - .../ls/ls.bsabinaries.oneos5.yml | 6 - .../ls/ls.bsabinaries.oneos6.raw | 1 - .../ls/ls.bsabinaries.oneos6.yml | 4 - .../show_cellular-radio_context.oneos6.raw | 41 - .../show_cellular-radio_context.oneos6.yml | 22 - .../show_cellular-radio_equipment.oneos5.raw | 14 - .../show_cellular-radio_equipment.oneos5.yml | 11 - .../show_cellular-radio_equipment.oneos6.raw | 14 - .../show_cellular-radio_equipment.oneos6.yml | 11 - .../show_cellular-radio_context.oneos5.raw | 23 - .../show_cellular-radio_context.oneos5.yml | 19 - .../show_cellular-radio_context.oneos6.raw | 22 - .../show_cellular-radio_context.oneos6.yml | 19 - .../show_helpers/show_helpers.oneos5.raw | 15 - .../show_helpers/show_helpers.oneos5.yml | 17 - .../show_helpers/show_helpers.oneos6.raw | 15 - .../show_helpers/show_helpers.oneos6.yml | 17 - .../show_interfaces.lbb140.raw | 211 -- .../show_interfaces.lbb140.yml | 833 ----- .../show_interfaces.lbb150.raw | 154 - .../show_interfaces.lbb150.yml | 623 ---- .../show_interfaces.lbb154.raw | 472 --- .../show_interfaces.lbb154.yml | 2006 ---------- .../show_interfaces/show_interfaces.lbb4g.raw | 209 -- .../show_interfaces/show_interfaces.lbb4g.yml | 901 ----- .../show_ip_access-lists.oneos5.raw | 32 - .../show_ip_access-lists.oneos5.yml | 578 --- .../show_ip_access-lists.oneos6.raw | 42 - .../show_ip_access-lists.oneos6.yml | 770 ---- .../show_ip_as-path-access-list.oneos5.raw | 2 - .../show_ip_as-path-access-list.oneos5.yml | 5 - .../show_ip_as-path-access-list.oneos6.raw | 2 - .../show_ip_as-path-access-list.oneos6.yml | 5 - .../show_ip_vrf_brief.oneos5.raw | 7 - .../show_ip_vrf_brief.oneos5.yml | 16 - .../show_ip_vrf_brief.oneos6.raw | 8 - .../show_ip_vrf_brief.oneos6.yml | 29 - .../show_isdn_active.plug103.raw | 7 - .../show_isdn_active.plug103.yml | 2 - .../show_isdn_active.plug212.raw | 8 - .../show_isdn_active.plug212.yml | 2 - .../show_isdn_active.plug401.raw | 51 - .../show_isdn_active.plug401.yml | 398 -- .../show_isdn_led-status.plug103.raw | 22 - .../show_isdn_led-status.plug103.yml | 28 - .../show_isdn_led-status.plug212.raw | 31 - .../show_isdn_led-status.plug212.yml | 28 - .../show_isdn_led-status.plug401.raw | 22 - .../show_isdn_led-status.plug401.yml | 28 - .../show_isdn_status_all.plug103.raw | 39 - .../show_isdn_status_all.plug103.yml | 59 - .../show_isdn_status_all.plug212.raw | 40 - .../show_isdn_status_all.plug212.yml | 59 - .../show_isdn_status_all.plug401.raw | 122 - .../show_isdn_status_all.plug401.yml | 158 - .../show_memory/show_memory.oneos5.raw | 27 - .../show_memory/show_memory.oneos5.yml | 8 - .../show_memory/show_memory.oneos6.raw | 33 - .../show_memory/show_memory.oneos6.yml | 8 - .../show_policy-interface_output.lbb_140.raw | 446 --- .../show_policy-interface_output.lbb_140.yml | 667 ---- .../show_policy-interface_output.lbb_150.raw | 427 --- .../show_policy-interface_output.lbb_150.yml | 632 ---- .../show_product-info-area.oneos5.raw | 43 - .../show_product-info-area.oneos5.yml | 9 - .../show_product-info-area.oneos6.raw | 67 - .../show_product-info-area.oneos6.yml | 9 - .../show_reboot_counters.lbb4g.raw | 13 - .../show_reboot_counters.lbb4g.yml | 13 - .../show_reboot_counters.oneos5.raw | 14 - .../show_reboot_counters.oneos5.yml | 13 - .../show_reboot_counters.plug103.raw | 12 - .../show_reboot_counters.plug103.yml | 13 - .../show_reboot_counters.plug212.raw | 13 - .../show_reboot_counters.plug212.yml | 13 - .../show_reboot_counters.plug401.raw | 14 - .../show_reboot_counters.plug401.yml | 13 - .../show_route-map/show_route-map.oneos5.raw | 19 - .../show_route-map/show_route-map.oneos5.yml | 33 - .../show_route-map/show_route-map.oneos6.raw | 17 - .../show_route-map/show_route-map.oneos6.yml | 31 - .../show_running-config_aaa.oneos5.raw | 17 - .../show_running-config_aaa.oneos5.yml | 66 - .../show_running-config_aaa.oneos6.raw | 18 - .../show_running-config_aaa.oneos6.yml | 58 - .../show_running-config_bind.oneos5.raw | 18 - .../show_running-config_bind.oneos5.yml | 26 - .../show_running-config_bind.oneos6.raw | 8 - .../show_running-config_bind.oneos6.yml | 16 - .../show_running-config_ip_dhcp.oneos5.raw | 40 - .../show_running-config_ip_dhcp.oneos5.yml | 66 - .../show_running-config_ip_dhcp.oneos6.raw | 8 - .../show_running-config_ip_dhcp.oneos6.yml | 20 - .../show_running-config_ip_route.oneos5.raw | 3 - .../show_running-config_ip_route.oneos5.yml | 14 - .../show_running-config_ip_route.oneos6.raw | 3 - .../show_running-config_ip_route.oneos6.yml | 14 - .../show_snmp_community.oneos5.raw | 4 - .../show_snmp_community.oneos5.yml | 10 - .../show_snmp_community.oneos6.raw | 6 - .../show_snmp_community.oneos6.yml | 14 - .../show_sntp/show_sntp.oneos5.raw | 6 - .../show_sntp/show_sntp.oneos5.yml | 26 - .../show_sntp/show_sntp.oneos6.raw | 6 - .../show_sntp/show_sntp.oneos6.yml | 26 - .../show_soft-file_info.oneos5.raw | 9 - .../show_soft-file_info.oneos5.yml | 11 - .../show_soft-file_info.oneos6.raw | 13 - .../show_soft-file_info.oneos6.yml | 11 - .../show_software-image.raw | 9 - .../show_software-image.yml | 10 - .../show_system_hardware.lbb150.raw | 19 - .../show_system_hardware.lbb150.yml | 26 - .../show_system_hardware.lbb320.raw | 17 - .../show_system_hardware.lbb320.yml | 26 - .../show_system_hardware.pbxplug103.raw | 23 - .../show_system_hardware.pbxplug103.yml | 26 - .../show_system_hardware.pbxplug212.raw | 17 - .../show_system_hardware.pbxplug212.yml | 26 - .../show_system_hardware.pbxplug401.raw | 25 - .../show_system_hardware.pbxplug401.yml | 26 - .../show_system_secure-crashlog.plug103.raw | 87 - .../show_system_secure-crashlog.plug103.yml | 21 - .../show_system_secure-crashlog.plug212.raw | 23 - .../show_system_secure-crashlog.plug212.yml | 21 - .../show_system_secure-crashlog.plug401.raw | 212 -- .../show_system_secure-crashlog.plug401.yml | 22 - .../show_system_status.oneos5.raw | 22 - .../show_system_status.oneos5.yml | 18 - .../show_system_status.oneos6.raw | 17 - .../show_system_status.oneos6.yml | 18 - .../show_system_status.plug103.raw | 17 - .../show_system_status.plug103.yml | 18 - .../show_system_status.plug212.raw | 19 - .../show_system_status.plug212.yml | 18 - .../show_system_status.plug401.raw | 24 - .../show_system_status.plug401.yml | 18 - .../show_tacacs-server.oneos5.raw | 6 - .../show_tacacs-server.oneos5.yml | 17 - .../show_tacacs-server.oneos6.raw | 8 - .../show_tacacs-server.oneos6.yml | 17 - .../show_tacacs/show_tacacs.oneos5.raw | 35 - .../show_tacacs/show_tacacs.oneos5.yml | 32 - .../show_tacacs/show_tacacs.oneos6.raw | 34 - .../show_tacacs/show_tacacs.oneos6.yml | 32 - .../show_track_all/show_track_all.lbb320.raw | 51 - .../show_track_all/show_track_all.lbb320.yml | 46 - ...how_transceiver_equipment.lbb140_empty.raw | 2 - ...how_transceiver_equipment.lbb140_empty.yml | 2 - .../show_transceiver_equipment.lbb150.raw | 64 - .../show_transceiver_equipment.lbb150.yml | 54 - ...how_transceiver_equipment.lbb150_empty.raw | 2 - ...how_transceiver_equipment.lbb150_empty.yml | 2 - .../show_transceiver_equipment.lbb320.raw | 33 - .../show_transceiver_equipment.lbb320.yml | 54 - ...voice_dial-peer_voice_voip_all.plug103.raw | 79 - ...voice_dial-peer_voice_voip_all.plug103.yml | 85 - ...voice_dial-peer_voice_voip_all.plug401.raw | 79 - ...voice_dial-peer_voice_voip_all.plug401.yml | 85 - ...ce_dial-peer_voice_voip_all_al.plug212.raw | 76 - ...ce_dial-peer_voice_voip_all_al.plug212.yml | 85 - .../show_voice_mos/show_voice_mos.plug103.raw | 27 - .../show_voice_mos/show_voice_mos.plug103.yml | 22 - .../show_voice_mos/show_voice_mos.plug212.raw | 27 - .../show_voice_mos/show_voice_mos.plug212.yml | 22 - .../show_voice_mos/show_voice_mos.plug401.raw | 27 - .../show_voice_mos/show_voice_mos.plug401.yml | 22 - .../show_voice_sip-gateway.plug103.raw | 28 - .../show_voice_sip-gateway.plug103.yml | 29 - .../show_voice_sip-gateway.plug212.raw | 24 - .../show_voice_sip-gateway.plug212.yml | 28 - .../show_voice_sip-gateway.plug401.raw | 25 - .../show_voice_sip-gateway.plug401.yml | 28 - .../show_voice_sip-gateway_reset.plug103.raw | 0 .../show_voice_sip-gateway_reset.plug103.yml | 2 - .../show_voice_sip-gateway_reset.plug212.raw | 0 .../show_voice_sip-gateway_reset.plug212.yml | 2 - .../show_voice_sip-gateway_reset.plug401.raw | 0 .../show_voice_sip-gateway_reset.plug401.yml | 2 - ...show_voice_voice-port_port_all.plug103.raw | 7 - ...show_voice_voice-port_port_all.plug103.yml | 37 - ...show_voice_voice-port_port_all.plug212.raw | 3 - ...show_voice_voice-port_port_all.plug212.yml | 17 - ...show_voice_voice-port_port_all.plug401.raw | 8 - ...show_voice_voice-port_port_all.plug401.yml | 42 - .../show_voice_voice-port_pri_all.plug103.raw | 41 - .../show_voice_voice-port_pri_all.plug103.yml | 42 - .../show_voice_voice-port_pri_all.plug212.raw | 46 - .../show_voice_voice-port_pri_all.plug212.yml | 42 - .../show_voice_voice-port_pri_all.plug401.raw | 164 - .../show_voice_voice-port_pri_all.plug401.yml | 162 - ...voice_voice-port_pri_all_histo.plug103.raw | 20 - ...voice_voice-port_pri_all_histo.plug103.yml | 9 - ...voice_voice-port_pri_all_histo.plug212.raw | 20 - ...voice_voice-port_pri_all_histo.plug212.yml | 9 - ...voice_voice-port_pri_all_histo.plug401.raw | 87 - ...voice_voice-port_pri_all_histo.plug401.yml | 23 - ...voice_voice-port_pri_all_reset.plug103.raw | 0 ...voice_voice-port_pri_all_reset.plug103.yml | 2 - ...voice_voice-port_pri_all_reset.plug212.raw | 0 ...voice_voice-port_pri_all_reset.plug212.yml | 2 - ...voice_voice-port_pri_all_reset.plug401.raw | 0 ...voice_voice-port_pri_all_reset.plug401.yml | 2 - ...how_voice_voip-call_active_all.plug103.raw | 0 ...how_voice_voip-call_active_all.plug103.yml | 2 - ...how_voice_voip-call_active_all.plug212.raw | 0 ...how_voice_voip-call_active_all.plug212.yml | 2 - ...how_voice_voip-call_active_all.plug401.raw | 434 --- ...how_voice_voip-call_active_all.plug401.yml | 1321 ------- .../show_voice_voip-call_any_all.plug103.raw | 2113 ----------- .../show_voice_voip-call_any_all.plug103.yml | 3295 ----------------- .../show_voice_voip-call_any_all.plug212.raw | 2119 ----------- .../show_voice_voip-call_any_all.plug212.yml | 3287 ---------------- .../show_voice_voip-call_any_all.plug401.raw | 1627 -------- .../show_voice_voip-call_any_all.plug401.yml | 3250 ---------------- .../show_vrrp_interface.lbb320.raw | 36 - .../show_vrrp_interface.lbb320.yml | 58 - .../show_vrrp_interface.lbb4g.raw | 9 - .../show_vrrp_interface.lbb4g.yml | 16 - 271 files changed, 33685 deletions(-) delete mode 120000 ntc-templates delete mode 100644 ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_hostname.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_ls.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_memory.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm delete mode 100644 tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw delete mode 100644 tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml delete mode 100644 tests/oneaccess_oneos/hostname/hostname.raw delete mode 100644 tests/oneaccess_oneos/hostname/hostname.yml delete mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw delete mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml delete mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw delete mode 100644 tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw delete mode 100644 tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml delete mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw delete mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml delete mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw delete mode 100644 tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml delete mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_software-image/show_software-image.raw delete mode 100644 tests/oneaccess_oneos/show_software-image/show_software-image.yml delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw delete mode 100644 tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw delete mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml delete mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw delete mode 100644 tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml delete mode 100644 tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw delete mode 100644 tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw delete mode 100644 tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw delete mode 100644 tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml delete mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw delete mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml delete mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw delete mode 100644 tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml diff --git a/ntc-templates b/ntc-templates deleted file mode 120000 index b3cd12ad08..0000000000 --- a/ntc-templates +++ /dev/null @@ -1 +0,0 @@ -ntc-templates/ \ No newline at end of file diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 83b8cee35f..134dcf51bd 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,56 +684,11 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] -oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice dial-peer voice voip all( al)? -oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all histo -oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all reset oneaccess_oneos_show_ip_helper-address_statistics.textfsm, .*, oneaccess_oneos, sh[[ow]] ip helper-address statistics -oneaccess_oneos_show_voice_voip-call_active_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call active -oneaccess_oneos_show_cellular-radio_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] equipment -oneaccess_oneos_show_voice_voice-port_pri_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port pri all -oneaccess_oneos_show_policy-interface_output.textfsm, .*, oneaccess_oneos, sh[[ow]] policy-interface output -oneaccess_oneos_show_running-config_ip_route.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| i[[nclude]] )?ip route -oneaccess_oneos_show_voice_sip-gateway_reset.textfsm, .*, oneaccess_oneos, sh[[ow]] voice sip-gateway reset -oneaccess_oneos_show_voice_voip-call_any_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voip-call any all -oneaccess_oneos_show_cellular-radio_context.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] context -oneaccess_oneos_show_cellular-radio_network.textfsm, .*, oneaccess_oneos, sh[[ow]] cell[[ular-radio]] network -oneaccess_oneos_show_ip_as-path-access-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip as-path-access-list -oneaccess_oneos_show_running-config_ip_dhcp.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] (\| be[[gin]] )?ip dhcp -oneaccess_oneos_show_system_secure-crashlog.textfsm, .*, oneaccess_oneos, sh[[ow]] system secure-crashlog -oneaccess_oneos_show_transceiver_equipment.textfsm, .*, oneaccess_oneos, sh[[ow]] transceiver equipment -oneaccess_oneos_show_voice_voice-port_all.textfsm, .*, oneaccess_oneos, sh[[ow]] voice voice-port all -oneaccess_oneos_show_running-config_bind.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?bind oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief -oneaccess_oneos_show_running-config_aaa.textfsm, .*, oneaccess_oneos, sh[[ow]] run[[ning-config]] \|?aaa -oneaccess_oneos_show_product-info-area.textfsm, .*, oneaccess_oneos, sh[[ow]] product\-info\-area -oneaccess_oneos_show_voice_sip-gateway.textfsm, .*, oneaccess_oneos, sh[[ow]] voice sip-gateway -oneaccess_oneos_show_ip_access-lists.textfsm, .*, oneaccess_oneos, sh[[ow]] ip access-lists[[s]] -oneaccess_oneos_show_isdn_led-status.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn led-status -oneaccess_oneos_show_isdn_status_all.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn status all -oneaccess_oneos_show_reboot_counters.textfsm, .*, oneaccess_oneos, sh[[ow]] reboot counters -oneaccess_oneos_show_system_hardware.textfsm, .*, oneaccess_oneos, sh[[ow]] system hardware -oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm, .*, oneaccess_oneos, cat (\/|)(BSA|bsa)(\/| )bsa(B|b)oot.inf oneaccess_oneos_show_ip_bgp_summary.textfsm, .*, oneaccess_oneos, sh[[ow]] ip bgp summary oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list -oneaccess_oneos_show_snmp_community.textfsm, .*, oneaccess_oneos, sh[[ow]] snmp comm[[unity]] -oneaccess_oneos_show_soft-file_info.textfsm, .*, oneaccess_oneos, sh[[ow]] soft\-file info.* -oneaccess_oneos_show_software-image.textfsm, .*, oneaccess_oneos, sh[[ow]] software-image -oneaccess_oneos_show_vrrp_interface.textfsm, .*, oneaccess_oneos, sh[[ow]] vrrp int[[erface]] -oneaccess_oneos_show_system_status.textfsm, .*, oneaccess_oneos, sh[[ow]] system status -oneaccess_oneos_show_tacacs-server.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs\-server -oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief -oneaccess_oneos_show_isdn_active.textfsm, .*, oneaccess_oneos, sh[[ow]] isdn active -oneaccess_oneos_show_interfaces.textfsm, .*, oneaccess_oneos, sh[[ow]] interface[[s]] -oneaccess_oneos_show_route-map.textfsm, .*, oneaccess_oneos, sh[[ow]] route-map -oneaccess_oneos_show_track_all.textfsm, .*, oneaccess_oneos, sh[[ow]] track all -oneaccess_oneos_show_voice_mos.textfsm, .*, oneaccess_oneos, sh[[ow]] voice mos -oneaccess_oneos_show_helpers.textfsm, .*, oneaccess_oneos, sh[[ow]] helpers oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh -oneaccess_oneos_show_memory.textfsm, .*, oneaccess_oneos, sh[[ow]] memory -oneaccess_oneos_show_tacacs.textfsm, .*, oneaccess_oneos, sh[[ow]] tacacs -oneaccess_oneos_show_sntp.textfsm, .*, oneaccess_oneos, sh[[ow]] sntp -oneaccess_oneos_hostname.textfsm, .*, oneaccess_oneos, hostname -oneaccess_oneos_ls.textfsm, .*, oneaccess_oneos, ls( -[lh][lh]? )?.* paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] paloalto_panos_show_high-availability_all.textfsm, .*, paloalto_panos, sh[[ow]] high[[-availability]] all diff --git a/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm b/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm deleted file mode 100644 index 47dc95d3b2..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_cat_bsa_bsaboot.inf.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value BOOTFILE (\S+) -Value BOOTFOLDER (/BSA/binaries) -Value CONFIGFILE (\S+) -Value CONFIGFOLDER (/BSA/config) - -Start - ^.*${BOOTFOLDER} -> Continue - ^.*/BSA/binaries/${BOOTFILE} - ^.*${CONFIGFOLDER} -> Continue - ^.*/BSA/config/${CONFIGFILE} - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_hostname.textfsm b/ntc_templates/templates/oneaccess_oneos_hostname.textfsm deleted file mode 100644 index 762a7e6fcb..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_hostname.textfsm +++ /dev/null @@ -1,5 +0,0 @@ -Value HOSTNAME (.*) - -Start - ^${HOSTNAME}$$ -> Record - ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_ls.textfsm b/ntc_templates/templates/oneaccess_oneos_ls.textfsm deleted file mode 100644 index a28da60a7e..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_ls.textfsm +++ /dev/null @@ -1,15 +0,0 @@ -Value Required FILE (\S+) -Value BYTES (\d+) - -Start - ^Listing -> ONEOS5 - ^\S+\s+\d+\s+${BYTES}\s+.*\s+${FILE}$$ -> Record ONEOS6 - ^$$ - ^. -> Error - -ONEOS5 - ^\. - ^${FILE}\s+${BYTES} -> Record - -ONEOS6 - ^\S+\s+\d+\s+${BYTES}\s+.*\s+${FILE}$$ -> Record \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm deleted file mode 100644 index 3c2a37ef51..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_context.textfsm +++ /dev/null @@ -1,60 +0,0 @@ -Value Required CONTEXT (\d+) -Value CONTROLLER (\d+) -Value INTERFACE (Virtual\-Ethernet\s\S+) -Value CELLULAR_PROFILE (\d+) -Value BEARER_TECHNOLOGY (\S+) -Value IPV4_ADDRESS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value IPV4_SUBNET (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value IPV4_GW (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value IPV4_DNS1 (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value IPV4_DNS2 (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value DATA_CONN (\S+) -Value LASTCALL_END_REASON (.*) -Value TX_PACKETS (\d+) -Value RX_PACKETS (\d+) -Value TX_PACKET_ERRORS (\d+) -Value RX_PACKET_ERRORS (\d+) -Value TX_PACKET_OVERFLOW (\d+) -Value RX_PACKET_OVERFLOW (\d+) -Value TX_BYTES (\d+) -Value RX_BYTES (\d+) - -Start - ^\s*Context -> Continue.Record - ^\s*Context\s${CONTEXT} -> CONTEXT - ^.*$$ - ^. -> Error - -CONTEXT - ^\s+Cellular\scontroller:\s${CONTROLLER} - ^\s+Interface\s*:\s*${INTERFACE}, - ^\s+Cellular\sprofile\s*:\s*${CELLULAR_PROFILE} - ^\s+Data\sbearer\stechnology\s*:\s*${BEARER_TECHNOLOGY} - ^\s+Ipv4\sconnection -> IPV4 - ^\s+Ipv6\sconnection -> IPV6 - ^$$ - ^.*$$ - -IPV4 - ^\s+Address\s*:\s*${IPV4_ADDRESS} - ^\s+Subnet\s*:\s*${IPV4_SUBNET} - ^\s+Gateway\s*:\s*${IPV4_GW} - ^\s+Primary\sDns\s*:\s*${IPV4_DNS1} - ^\s+Secondary\sDns\s*:\s*${IPV4_DNS2} - ^\s+Packet\sdata\sconnection\s*:\s*${DATA_CONN} - ^\s+Last\scall\send\sreason\s*:\s*${LASTCALL_END_REASON} - ^\s+Tx\spackets\s*:\s*${TX_PACKETS} - ^\s+Rx\spackets\s*:\s*${RX_PACKETS} - ^\s+Tx\spacket\serrors\s*:\s*${TX_PACKET_ERRORS} - ^\s+Rx\spacket\serrors\s*:\s*${RX_PACKET_ERRORS} - ^\s+Tx\spacket\soverflows\s*:\s*${TX_PACKET_OVERFLOW} - ^\s+Rx\spacket\soverflows\s*:\s*${RX_PACKET_OVERFLOW} - ^\s+Tx\sbytes\s*:\s*${TX_BYTES} - ^\s+Rx\sbytes\s*:\s*${RX_BYTES} - ^$$ -> CONTEXT - ^.*$$ - -IPV6 - ^$$ -> CONTEXT - ^.*$$ - diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm deleted file mode 100644 index 8cf76c182c..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_equipment.textfsm +++ /dev/null @@ -1,36 +0,0 @@ -Value Required MANUFACTURER (.*) -Value EQUIPMENT (.*) -Value BOOT_REVISION (.*) -Value IMEI (\d+) -Value SIM1_STATUS (present|not present) -Value SIM2_STATUS (present|not present) -Value IMSI (\d+) -Value CARD_ID (\d+) -Value PIN_STATUS (.*[^\s]) - - -Start - ^\s*Cellular\sRadio\sModem\sInformation -> Record - ^\s*Manufacturer\sidentification\s*:\s*${MANUFACTURER} - ^\s*Equipment\sinformation\s*:\s*${EQUIPMENT} - ^\s*Revision\sidentification\s*:\s*${BOOT_REVISION} - ^\s*Equipment\sinformation\s\(IMEI\)\s*:\s*${IMEI} - ^\s*SIM\scard\sstatus\s*:\s*SIM( card)?( is)?\s${SIM1_STATUS} -> Oneos5 - ^\s*SIM\scard\sslot\s1\s*:\s*SIM( card)?( is)?\s${SIM1_STATUS} -> Oneos6 - ^.*$$ - ^. -> Error - -Oneos5 - ^.*IMSI\s*:\s+${IMSI} - ^\s*Integrated\sCircuit\sCard\sID\s*:\s+${CARD_ID} - ^\s*PIN\scode\sstatus\s*:\s+${PIN_STATUS} - ^.*$$ - ^. -> Error - -Oneos6 - ^\s*SIM\scard\sslot\s2\s*:\s*SIM( card)?( is)?\s${SIM2_STATUS} - ^.*IMSI\s*:\s+${IMSI} - ^\s*Integrated\sCircuit\sCard\sID\s*:\s+${CARD_ID} - ^.*$$ - ^. -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm b/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm deleted file mode 100644 index 33a4a4fdc4..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_cellular-radio_network.textfsm +++ /dev/null @@ -1,39 +0,0 @@ -Value Required OPERATOR (.*) -Value SIGNAL_STRENGTH (.*) -Value RSSI (\S+) -Value RSRQ (\S+) -Value RSRP (\S+) -Value SNR (\S+) -Value RADIO_TECHNOLOGY (\S+) -Value REGISTER_STATE (\S+) -Value ATTACH_STATE (\S+) -Value RESETS_LOSS_REGISTRATIONS (\d+) -Value RESETS_FAILED_REGISTRATIONS (\d+) -Value RESETS_MODEM (\d+) -Value RESETS_UNKNOWN (\d+) -Value LAC (.*) -Value CELL_ID (\d+) -Value TAC (\d+) -Value PLMN (\d+) - -Start - ^\s*Current\sselected\soperator\s+:\s+${OPERATOR} - ^\s*Signal\sstrength\s+:\s+${SIGNAL_STRENGTH} - ^\s*RSSI\s+:\s+${RSSI} - ^\s*RSRQ\s+:\s+${RSRQ} - ^\s*RSRP\s+:\s+${RSRP} - ^\s*SNR\s+:\s+${SNR} - ^\s*Current\sradio\saccess\stechnology\s+:\s+${RADIO_TECHNOLOGY} - ^\s*Circuit-switched\sregister\sstate\s+:\s+${REGISTER_STATE} - ^\s*Packet-switched\sattach\sstate\s+:\s+${ATTACH_STATE} - ^\s*Reset\son\sloss\sof\sGPRS\sregistration\s+:\s+${RESETS_LOSS_REGISTRATIONS} - ^\s*Reset\son\sfailed\sinitial\sregistration\s+:\s+${RESETS_FAILED_REGISTRATIONS} - ^\s*Hardware\sreset\sof\smodem\s+:\s+${RESETS_MODEM} - ^\s*Unknown\sreset\sof\smodem\s+:\s+${RESETS_UNKNOWN} - ^\s*.*\(LAC\)\s+:\s+${LAC} - ^\s*Cell\sID\s+:\s+${CELL_ID} - ^\s*.*\(TAC\)\s+:\s+${TAC} - ^.*Public Land Mobile Network.*:\s+${PLMN} - ^.*$$ - ^. -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm b/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm deleted file mode 100644 index 4d8423ed1a..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_helpers.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value Required INTERFACE (.*) -Value List HELPERS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) - -Start - ^.*:\s\d+\sbroadcasts\sforwarded -> Continue.Record - ^${INTERFACE}:\s\d+\sbroadcasts\sforwarded - ^\s*${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){1}${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){2}${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){3}${HELPERS} - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm b/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm deleted file mode 100644 index ac0ba0f050..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_interfaces.textfsm +++ /dev/null @@ -1,120 +0,0 @@ -Value Required INTERFACE (\S+(?:\s\S+)?) -Value FLAGS (.*) -Value IFINDEX (\d+) -Value DESCRIPTION (.*) -Value LINK_STATUS (up|down) -Value PROTOCOL_STATUS (up|down) -Value PROMISCUOUS_MODE (\S+) -Value ENCAPSULATION (.+?) -Value VLANID (\d+) -Value IPV4_MTU (\d+) -Value IPV6_MTU (\d+) -Value UPTIME (\S+) -Value DOWNTIME (\S+) -Value STATUS_CHANGES (\d+) -Value NEGOTIATION ([aA]uto|no) -Value DUPLEX (full|half) -Value IPV4 (\d+\.\d+\.\d+\.\d+\/\d+|unnumbered) -Value IPV4_UNNUMBERED_INTF (.*) -Value IPV4_UNNUMBERED_IP (\S+) -Value IPV4_GW (\d+\.\d+\.\d+\.\d+) -Value IPV4_BROADCAST (\d+\.\d+\.\d+\.\d+) -Value List IPV4_SECONDARY (\d+\.\d+\.\d+\.\d+\/\d+) -Value List IPV6 (\S+) -Value TUNNEL_SOURCE (\S+) -Value TUNNEL_DESTINATION (\S+) -Value TUNNEL_PROTOCOL (\S+) -Value TUNNEL_TRANSPORT (\S+) -Value TUNNEL_PROTECTION_MODE (\S+) -Value TUNNEL_PROTECTION_PROFILE (\S+) -Value TUNNEL_VRF (\S+) -Value FIREWALL_ZONE (.*) -Value MACADDRESS ([a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}:[a-fA-F0-9]{2}) -Value ARP_TIMEOUT (\d+) -Value BANDWIDTH_KBPS (\d+|unknown) -Value BANDWIDTH_LIMIT_KBPS (\d+) -Value SFP_MEDIATYPE (\S+) -Value INPUT_RATE (\d+) -Value OUTPUT_RATE (\d+) -Value INPUT_PPS (\d+) -Value OUTPUT_PPS (\d+) -Value INPUT_LOAD_PCT (\d+(\.\d+)?) -Value OUTPUT_LOAD_PCT (\d+(\.\d+)?) -Value CONGESTION_DROPPED_RX (\d+) -Value CONGESTION_DROPPED_CPU (\d+) -Value CONGESTION_DROPPED_TOTAL (\d+) -Value BRIDGE_GROUP (\d+) -Value OUT_QUEUE_STRATEGY (.+) -Value OUT_QUEUE_LENGTH (\d+) -Value OUT_QUEUE_DEPTH (\d+) -Value SHAPER_PKTS_DEQUEUED (\-?\d+) -Value SHAPER_BURST_CURRENT (\d+) -Value SHAPER_BURST_MAX (\d+) -Value RELIABILITY_VALUE (\d+) -Value RELIABILITY_MAX (\d+) -Value IN_PKTS (\d+) -Value IN_BYTES (\d+) -Value IN_QDROPS (\d+) -Value IN_BROADCASTS (\d+) -Value IN_MULTICASTS (\d+) -Value IN_ERRORS (\d+) -Value IN_DISCARDS (\d+) -Value IN_MAC_ACL_DISCARDS (\d+) -Value IN_UNKNOWN_PROTOCOLS (\d+) -Value OUT_PKTS (\d+) -Value OUT_BYTES (\d+) -Value OUT_QDROPS (\d+) -Value OUT_BROADCASTS (\d+) -Value OUT_MULTICASTS (\d+) -Value OUT_ERRORS (\d+) -Value OUT_DISCARDS (\d+) -Value VRF (\S+) - - -Start - ^\S+(?:\s\S+)?\s+is\s+(?:up|down),\s+line\s+protocol.*$$ -> Continue.Record - ^${INTERFACE}\s+is\s+${LINK_STATUS},\s+line\s+protocol\s+is\s+${PROTOCOL_STATUS}\s*$$ - ^\s+Flags:\s\(\S+\)\s${FLAGS},\sinterface\sindex\sis\s${IFINDEX} - ^\s+Description:\s*${DESCRIPTION} - ^\s+Promiscuous\smode\s${PROMISCUOUS_MODE} - ^\s+Encapsulation:\s${ENCAPSULATION}\sVirtual\sLAN,\sVLAN\sID\s${VLANID} -> Continue - ^\s+Encapsulation:\s${ENCAPSULATION},\s -> Continue - ^.*\sIPv4\sMTU\s${IPV4_MTU}\sbytes -> Continue - ^.*\sIPv6\sMTU\s${IPV6_MTU}\sbytes -> Continue - ^.*\s+MTU\s${IPV4_MTU}\sbytes - ^\s+Firewalls\szone:\s${FIREWALL_ZONE} - ^\s+This\sinterface\sis\sassociated\sto\sVRF\s${VRF} - ^\s+Up-time\s${UPTIME},\sstatus\schange\scount\s${STATUS_CHANGES} - ^\s+Down-time\s${DOWNTIME},\sstatus\schange\scount\s${STATUS_CHANGES} - ^\s+${NEGOTIATION}[\-\s]negotiation, -> Continue - ^\s+.*\s${DUPLEX}[\-\s]duplex, -> Continue - ^\s+Internet\saddress\sis\s${IPV4},\sdestination\saddress\sis\s${IPV4_GW} - ^\s+Internet\saddress\sis\s${IPV4},\sbroadcast\saddress\sis\s${IPV4_BROADCAST} - ^\s+Internet\saddress\sis\s${IPV4} - ^\s+Secondary\saddress\sis\s${IPV4_SECONDARY} - ^\s+Interface\sis\s${IPV4},\suse\saddress\sof\s${IPV4_UNNUMBERED_INTF}\(${IPV4_UNNUMBERED_IP}\) - ^\s+IPv6\saddress\sis\s${IPV6} - ^\s+Hardware\saddress\sis\s${MACADDRESS},\sARP\stimeout\s${ARP_TIMEOUT}\ssec - ^\s+Line\sspeed\s${BANDWIDTH_KBPS}\skbps(,\sbandwidth\slimit\s${BANDWIDTH_LIMIT_KBPS}\skbps)? - ^\s+Media\-type\s${SFP_MEDIATYPE} - ^\s+Mean\sinput/output\srate\s+${INPUT_RATE}/${OUTPUT_RATE}\sbits/s,\s${INPUT_PPS}/${OUTPUT_PPS}\s.* - ^\s+Mean\sinput/output\sload\spercentage\s+${INPUT_LOAD_PCT}/${OUTPUT_LOAD_PCT}\spercent.* - ^\s+Congestion\sManagement\sDropped\spackets:\s+RX:${CONGESTION_DROPPED_RX},\s*CPU:${CONGESTION_DROPPED_CPU},\s*Total:${CONGESTION_DROPPED_TOTAL} - ^\s+Bridged\sto\sgroup\s${BRIDGE_GROUP} - ^\s+Tunnel\ssource\s${TUNNEL_SOURCE},\sdestination\s${TUNNEL_DESTINATION} - ^\s+Tunnel\sprotocol/transport\s${TUNNEL_PROTOCOL}/${TUNNEL_TRANSPORT} - ^\s+Tunnel\sprotection\svia\s${TUNNEL_PROTECTION_MODE}\s\(profile\s\"${TUNNEL_PROTECTION_PROFILE}\"\) - ^\s+This\sinterface\sis\sassociated\sto\sTunnel\sVRF\s${TUNNEL_VRF} - ^\s+Output\squeuing\sstrategy:\s*${OUT_QUEUE_STRATEGY},\s*output\squeue\slength/depth\s${OUT_QUEUE_LENGTH}/${OUT_QUEUE_DEPTH} - ^\s+Output\squeuing\sstrategy:\s*${OUT_QUEUE_STRATEGY} - ^\s+Shaper:\spackets\sdequeued\s${SHAPER_PKTS_DEQUEUED},\sburst\(current/max\)\s${SHAPER_BURST_CURRENT}/${SHAPER_BURST_MAX} - ^\s+Reliability:\s*${RELIABILITY_VALUE}/${RELIABILITY_MAX} - ^\s+IN:\s*${IN_PKTS}\spackets,\s${IN_BYTES}\sbytes,\s${IN_QDROPS}\squeue\sdrops -> IN - ^\s+OUT:\s*${OUT_PKTS}\spackets,\s${OUT_BYTES}\sbytes,\s${OUT_QDROPS}\squeue\sdrops -> OUT - -IN - ^\s+${IN_BROADCASTS}\sbroadcasts,\s*${IN_MULTICASTS}\smulticasts,\s*${IN_ERRORS}\serrors,\s*${IN_DISCARDS}\sdiscards(,\s*${IN_MAC_ACL_DISCARDS}\smac\sacl\sdiscards)? - ^\s+${IN_UNKNOWN_PROTOCOLS}\sunknown\sprotocols -> Start - -OUT - ^\s+${OUT_BROADCASTS}\sbroadcasts,\s*${OUT_MULTICASTS}\smulticasts,\s*${OUT_ERRORS}\serrors,\s*${OUT_DISCARDS}\sdiscards -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm deleted file mode 100644 index 8560159abb..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_access-lists.textfsm +++ /dev/null @@ -1,56 +0,0 @@ -Value Required,Filldown ACL_TYPE (standard|extended) -Value Required,Filldown ACL_NAME (\S+) -Value LINE_NUM (\d+) -Value ACTION (permit|deny) -Value PROTOCOL (\S+) -Value PROTOCOL_NR (\d+) -Value SRC_HOST (\d+\.\d+\.\d+\.\d+) -Value SRC_ANY (any) -Value SRC_NETWORK (\d+\.\d+\.\d+\.\d+) -Value SRC_WILDCARD (\d+\.\d+\.\d+\.\d+) -#Value SRC_NETWORK_OBJECT_GROUP_NAME (\S+) -Value SRC_PORT_MATCH (eq|neq|precedence|range|tos|lt|gt) -Value SRC_PORT (\d+|[a-z]+) -Value SRC_PORT_RANGE_START ((?<=range\s)\S+) -Value SRC_PORT_RANGE_END (\S+) -Value DST_HOST (\d+\.\d+\.\d+\.\d+) -Value DST_ANY (any) -Value DST_NETWORK (\d+\.\d+\.\d+\.\d+) -Value DST_WILDCARD (\d+\.\d+\.\d+\.\d+) -#Value DST_NETWORK_OBJECT_GROUP_NAME (\S+) -Value DST_PORT_MATCH (eq|neq|precedence|range|tos|lt|gt) -Value DST_PORT (\d+|[a-z]+) -Value DST_PORT_RANGE_START ((?<=range\s)\S+) -Value DST_PORT_RANGE_END (\S+) -#Value SERVICE_OBJECT_GROUP_NAME (\S+) -#Value FLAGS_MATCH (match-all|match-any) -#Value TCP_FLAG (((\+|-|)ack(\s*?)|(\+|-|)established(\s*?)|(\+|-|)fin(\s*?)|(\+|-|)fragments(\s*?)|(\+|-|)psh(\s*?)|(\+|-|)rst(\s*?)|(\+|-|)syn(\s*?)|urg(\s*?))+) -Value LOG (log) -#Value LOG_TAG (\S+) -#Value ICMP_TYPE (administratively-prohibited|echo|echo-reply|mask-request|packet-too-big|parameter-problem|port-unreachable|redirect|router-advertisement|router-solicitation|time-exceeded|ttl-exceeded|unreachable) -#Value TIME (\S+) -#Value STATE (inactive|active) -Value MATCHES (\d+) - -Start - ^ip\saccess-list\s(standard|extended) -> Continue.Clearall - ^ip\saccess-list\s${ACL_TYPE}\s${ACL_NAME}\s* -> Record ONEOS6 - ^IP\saccess\slist\s(standard|extended) -> Continue.Clearall - ^IP\saccess\slist\s${ACL_TYPE}\s${ACL_NAME}\s* -> Record ONEOS5 - ^interface.* - ^For info on.* - ^\s*$$ - ^.* -> Error "Could not parse line:" - -ONEOS6 - ^\s+${LINE_NUM}\s+${ACTION}(?:\s+${PROTOCOL})?\s+(?:${PROTOCOL_NR}\s)?${SRC_NETWORK}\s+${SRC_WILDCARD}(${SRC_PORT}|)(\s+${DST_NETWORK}\s+${DST_WILDCARD}|)(\s+${DST_PORT}|)(\s+${LOG}|)(?:\s+\(${MATCHES}\s+matches\)|)\s* -> Record - ^\s*$$ -> Start - ^.* -> Error "Could not parse line:" - -ONEOS5 - ^${ACTION}\s+(${PROTOCOL}\s+|)(host\s+${SRC_HOST}|${SRC_ANY}|${SRC_NETWORK}\s+${SRC_WILDCARD})(\s+${SRC_PORT_MATCH}\s+|)(${SRC_PORT_RANGE_START}\s+${SRC_PORT_RANGE_END}|${SRC_PORT}|)\s+(host\s+${DST_HOST}|${DST_ANY}|${DST_NETWORK}\s+${DST_WILDCARD})(\s+${DST_PORT_MATCH}\s+(${DST_PORT_RANGE_START}\s+${DST_PORT_RANGE_END}|${DST_PORT}|)|)(\s+${LOG}|)(?:\s+\(${MATCHES}\s+matches\)|) -> Record - ^\s*$$ -> Start - ^.* -> Error "Could not parse line:" - -EOF - diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm deleted file mode 100644 index e027a430ec..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_as-path-access-list.textfsm +++ /dev/null @@ -1,13 +0,0 @@ -Value Required NAME (\S+) -Value Required,List ENTRIES (.*) - -Start - ^AS\spath\saccess\slist\s${NAME}$$ -> ASPATH - ^.+ -> Error - -ASPATH - ^[\s\t]+${ENTRIES}.* - ^\s+$$ -> Record Start - ^AS\spath -> Continue.Record - ^AS\spath\saccess\slist\s${NAME}$$ -> ASPATH - ^.+ -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm deleted file mode 100644 index a9de2c9458..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value VRF (\w+) -Value VRF_ID (\d+) -Value List INTERFACES ([\w\-]+\s?[\w\/\.]+) - -Start - ^\s*VRF Name - ^\s?\w+\s+\d+ -> Continue.Record - ^\s?${VRF}?\s+${VRF_ID}\s+${INTERFACES}$$ - ^\s?${VRF}?\s+${VRF_ID}\s*$$ - ^\s{2}\s+${INTERFACES}$$ - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm deleted file mode 100644 index 000a791f82..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_active.textfsm +++ /dev/null @@ -1,13 +0,0 @@ -Value Required APP (\S+) -Value CALL_TYPE (\S+) -Value CALLING_NBR (\S+) -Value CALLED_NBR (\S+) -Value DURATION (\d+:\d+:\d+) -Value PORT (\S+) -Value BCHANNEL (\d+) -Value CALL_REF (\d+) -Value CALL_ID (\d+) - -Start - ^${APP}\s+${CALL_TYPE}\s+${CALLING_NBR}\s+${CALLED_NBR}\s+${DURATION}\s+${PORT}\s+${BCHANNEL}\s+${CALL_REF}\s+${CALL_ID} -> Record - ^.* diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm deleted file mode 100644 index 4500a27328..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_led-status.textfsm +++ /dev/null @@ -1,66 +0,0 @@ -Value DIALPEER_POTS_UP (\d+) -Value DIALPEER_VOIP_UP (\d+) -Value SIP_GATEWAY_STATUS (no shutdown|shutdown|[nN]o Sip-gateway) -Value SIP_GATEWAY_REGISTERED (.*registered.*) -Value SIP_GATEWAY_NBR_REGISTERED (\d+) -Value SIP_GATEWAY_NBR_AVAILABLE (\d+) -Value SIP_GATEWAY_REGISTRAR (\S+:\d+) -Value SIP_GATEWAY_INTF (\S+\s\S+) -Value SIP_GATEWAY_INTF_IP (\S+) -Value SIP_GATEWAY_INTF_STATUS (\S+) -Value SIP_SERVER_STATUS (no shutdown|shutdown|[nN]o Sip-server) -Value VOICE_COM_STATUS (no shutdown|shutdown|[nN]o voice com) -Value TRACK_COND_VOICE_GW (\S+) -Value TRACK_COND_VOICE_PORT (\S+) -Value SYSLED_VOIP_COLOR (\S+|\-) -Value SYSLED_VOIP_STATE (\S+) -Value SYSLED_COM_COLOR (\S+|\-) -Value SYSLED_COM_STATE (\S+) -Value SYSLED_MAINTENANCE_COLOR (\S+|\-) -Value SYSLED_MAINTENANCE_STATE (\S+) -Value SYSLED_PRI_COLOR (\S+|\-) -Value SYSLED_PRI_STATE (\S+) -Value SYSLED_BRI1_COLOR (\S+|\-) -Value SYSLED_BRI1_STATE (\S+) -Value SYSLED_BRI2_COLOR (\S+|\-) -Value SYSLED_BRI2_STATE (\S+) - - -Start - ^\s*${DIALPEER_POTS_UP}\sDial\-peer\spots\sup - ^\s*${DIALPEER_VOIP_UP}\sDial\-peer\svoip\sup - ^\s*Sip\-gateway\sstatus\sis\s${SIP_GATEWAY_STATUS} -> SipGateway - ^\s*${SIP_GATEWAY_STATUS} - ^\s*Sip\-server\sstatus\sis\s${SIP_SERVER_STATUS} -> SipServer - ^\s*${SIP_SERVER_STATUS} - ^\s*voice com\sstatus\sis\s${VOICE_COM_STATUS} -> VoiceCom - ^\s*${VOICE_COM_STATUS} - ^\s*voice\sled\strack-conditions -> Track - ^\s*Sys LEDs -> SysLed - - - -SipGateway - ^\s*->\sis\s${SIP_GATEWAY_REGISTERED} - ^\s*${SIP_GATEWAY_NBR_REGISTERED}\/${SIP_GATEWAY_NBR_AVAILABLE}\sep\sis.*with\sregistrar\s${SIP_GATEWAY_REGISTRAR} - ^\s*->\sIF\s${SIP_GATEWAY_INTF}\s\[${SIP_GATEWAY_INTF_IP}\]\sis\s${SIP_GATEWAY_INTF_STATUS}\. - ^\s*$$ -> Start - -SipServer - ^\s*$$ -> Start - -VoiceCom - ^\s*$$ -> Start - -Track - ^\s*voice-gw\s+${TRACK_COND_VOICE_GW} - ^\s*voice-port\s+${TRACK_COND_VOICE_PORT} - ^\s*$$ -> Start - -SysLed - ^\s*SYS\sLED\s(VoIP|VOIP)\s*color=\s*${SYSLED_VOIP_COLOR}\s*,?\sstate=${SYSLED_VOIP_STATE} - ^\s*SYS\sLED\sCOM\s*color=\s*${SYSLED_COM_COLOR}\s*,?\sstate=${SYSLED_COM_STATE} - ^\s*SYS\sLED\sMaintenance\s*color=\s*${SYSLED_MAINTENANCE_COLOR}\s*,?\sstate=${SYSLED_MAINTENANCE_STATE} - ^\s*SYS\sLED\sPRI\s*color=\s*${SYSLED_PRI_COLOR}\s*,?\sstate=${SYSLED_PRI_STATE} - ^\s*SYS\sLED\sBRI1\s*color=\s*${SYSLED_BRI1_COLOR}\s*,?\sstate=${SYSLED_BRI1_STATE} - ^\s*SYS\sLED\sBRI2\s*color=\s*${SYSLED_BRI2_COLOR}\s*,?\sstate=${SYSLED_BRI2_STATE} diff --git a/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm deleted file mode 100644 index 6ec83fe805..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_isdn_status_all.textfsm +++ /dev/null @@ -1,51 +0,0 @@ -Value Required ISDN_LINE (\d+\/\d+) -Value PHYSICAL_TYPE (\S+) -Value PROTO_DESCRIPTOR (\S+) -Value PROTO_LINECODE (\S+) -Value PROTO_FRAMING (\S+) -Value CONFIG_STATE (\S+) -Value LOOP_STATE (\S+) -Value L1_STATUS (\S+) -Value AIS (\S+) -Value LOS (\S+) -Value RAI (\S+) -Value PRI_AIS_OCCURRENCES (\d+) -Value PRI_LOS_OCCURRENCES (\d+) -Value PRI_RDI_OCCURRENCES (\d+) -Value L2_STATUS (\S+) -Value L2_TXFRAMES_DCHANNEL (\d+) -Value L2_RXFRAMES_DCHANNEL (\d+) -Value L3_ACTIVE_CALLS (\d+|no active call) -Value List L3_CALL_DETAILS (.*) - - - -Start - ^\s*isdn\sline\s+${ISDN_LINE} -> ISDNLINE - -ISDNLINE - ^\s+physical\stype\s+${PHYSICAL_TYPE} - ^\s+protocol\sdescriptor\s+${PROTO_DESCRIPTOR} - ^\s+linecode\s+${PROTO_LINECODE} - ^\s+framing\s+${PROTO_FRAMING} - ^\s+config\sstate\s+${CONFIG_STATE} - ^\s+loop\sstate\s+${LOOP_STATE} - ^\s+\-layer\s1\sstatus\s+${L1_STATUS} - ^\s*Alarm\sIndication\sSignal\s+\(AIS\)\s+${AIS} - ^\s*Loss\sOff\sSignal\s+\(LOS\)\s+${LOS} - ^\s*Remote\sIndication\sSignal\s+\(RAI\)\s+${RAI} - ^\s*pri\sAIS\soccurrence\(s\)\s+${PRI_AIS_OCCURRENCES} - ^\s*pri\sLOS\soccurrence\(s\)\s+${PRI_LOS_OCCURRENCES} - ^\s*pri\sRDI\soccurrence\(s\)\s+${PRI_RDI_OCCURRENCES} - ^\s+\-layer\s2\sstatus\s+${L2_STATUS} - ^\s+Tx\sframes\son\sD\schannel\s+${L2_TXFRAMES_DCHANNEL} - ^\s+Rx\sframes\son\sD\schannel\s+${L2_RXFRAMES_DCHANNEL} - ^\s+-layer\s3\sstatus -> L3Status - ^\s*$$ -> Record - ^\s*isdn\sline\s+${ISDN_LINE} -> ISDNLINE - -L3Status - ^\s*(active\scall\s*|)${L3_ACTIVE_CALLS} - ^\s*->\s${L3_CALL_DETAILS} - ^\s*$$ -> Record ISDNLINE - diff --git a/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm b/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm deleted file mode 100644 index 83a1759ce5..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_memory.textfsm +++ /dev/null @@ -1,25 +0,0 @@ -Value RAM (\S+|\d+\s?\d+) -Value BOOT_SIZE (\S+|\d+\s?\d+) -Value FLASH_SIZE (\S+|\d+\s?\d+) -Value USER_PARTITION_TOTAL (\S+|\d+\s?\d+) -Value USER_PARTITION_USED (\S+|\d+\s?\d+) -Value USER_PARTITION_FREE (\S+|\d+\s?\d+) - - -Start - # total system memory - ^\s*\|\sRam\ssize\s+\|\s+${RAM}\s+\| - ^\s*\|\sMemory Total\s+\|\s+${RAM}\s+\| - # total boot size - ^\s*\|\s+:\.\.Boot\s+\|\s+${BOOT_SIZE}\s+\| - ^\s*\|\sBoot\sPartition\s+\|\s+${BOOT_SIZE}\s+\| - # total flash disk size - ^\s*\|\s+Extended\sFlash\ssize\s+\|\s+${FLASH_SIZE}\s+\| - ^\s*\|\sFlash\sTotal\s+\|\s+${FLASH_SIZE}\s+\| - # total user partition size and usage, part of flash (/BSA) - ^\s*\|\s+:\.\.Flash\sdisk\stotal\s+\|\s+${USER_PARTITION_TOTAL}\s+\| - ^\s*\|\s+\-\suser\s+\|\s+${USER_PARTITION_TOTAL}\s+\|\s+${USER_PARTITION_FREE}\s+\|\s+${USER_PARTITION_USED}\s+\| - ^\s*\|\s+used\s+\|\s+${USER_PARTITION_USED}\s+\| - ^\s*\|\s+free\s+\|\s+${USER_PARTITION_FREE}\s+\| - ^.* - ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm b/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm deleted file mode 100644 index 59cf1334c8..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_policy-interface_output.textfsm +++ /dev/null @@ -1,72 +0,0 @@ -Value Filldown INTERFACE (.*) -Value Filldown SERVICE_POLICY_OUT_PARENT (\S+) -Value Filldown CLASS_PARENT (\S+) -Value Filldown CLASS_PARENT_PRIO (.*\S) -Value Filldown SERVICE_POLICY_OUT_CHILD (\S+) -Value CLASS_CHILD (\S+) -Value PACKETS (\d+) -Value Required BYTES (\d+) -Value DSCP_REMARKED (\d+) -Value MEAN_INTPUT_RATE_BITS_SECOND (\d+) -Value Fillup TOTAL_BW_KBS (\d+) -Value Fillup TOTAL_QUEUE_LENGTH (\d+) -Value Fillup TOTAL_MEAN_INPUT_RATE_BPS (\d+) -Value Fillup TOTAL_MEAN_OUTPUT_RATE_BPS (\d+) -Value Fillup TOTAL_OUTPUT_PACKETS (\d+) -Value Fillup TOTAL_OUTPUT_PACKETS_DROPPED (\d+) -Value Fillup TOTAL_OUTPUT_PACKETS_DROPPED_PCT (\d+) -Value Fillup TOTAL_OUTPUT_BYTES (\d+) -Value Fillup TOTAL_OUTPUT_BYTES_DROPPED (\d+) -Value Fillup TOTAL_OUTPUT_BYTES_DROPPED_PCT (\d+) -Value QOS_BYTES_OUT (\d+) -Value QOS_BYTES_DROPPED (\d+) -Value QOS_BYTES_DROPPED_PCT (\d+) -Value QOS_AVG_INPUT_BPS (\d+) -Value QOS_AVG_OUTPUT_BPS (\d+) -Value QOS_PKTS_OUT (\d+) -Value QOS_PKTS_DROPPED (\d+) -Value QOS_PKTS_DROPPED_PCT (\d+) -Value QOS_BW_KB (\d+) -Value QOS_BURST_B (\d+) -Value QOS_Q_LENGTH (\d+) -Value QOS_Q_LIMIT (\d+) -Value Fillup QOS_REMAINING_BW_SHARE (\d+) -Value Fillup QOS_EXCESS_RATE_PRIO (\d+) -Value Fillup QOS_EXCESS_PACKETS (\d+) - -# each record is either part of the traffic stats output -# these records do not have any QOS values filled in -# or the queueing output -# these records will have QOS values filled in -Start - ^${INTERFACE}:\sservice-policy\soutput\s${SERVICE_POLICY_OUT_PARENT} - ^traffic\sstatistics: -> TrafficStats - ^output\squeuing\sstatistics: -> OutputQueuingStats - ^.* - - -TrafficStats - ^\s\sClass\s'${CLASS_PARENT}': - ^\s\s\s\s${PACKETS}\spackets,\s${BYTES}\sbytes,\s${DSCP_REMARKED}\sdscp\sremarked,\smean\sinput\srate\s${MEAN_INTPUT_RATE_BITS_SECOND}\sbits/s -> Record - ^\s\s\s\sService-policy\s${SERVICE_POLICY_OUT_CHILD}\s: - ^\s\s\s\s\s\sClass\s'${CLASS_CHILD}': - ^\s\s\s\s\s\s\s\s${PACKETS}\spackets,\s${BYTES}\sbytes,\s${DSCP_REMARKED}\sdscp\sremarked,\smean\sinput\srate\s${MEAN_INTPUT_RATE_BITS_SECOND}\sbits/s -> Record - ^\s*$$ -> Start - -OutputQueuingStats - ^\s\s(\s\s\s\s)?Class\s'${CLASS_PARENT}':\s${CLASS_PARENT_PRIO} - ^\s\s\s\s(\s\s\s\s)?bandwidth\s${QOS_BW_KB}\skb/s,\sburst\s${QOS_BURST_B}\sbytes,\squeue\slength/limit\s${QOS_Q_LENGTH}/${QOS_Q_LIMIT} - ^\s\s\s\s(\s\s\s\s)?mean\sinput\srate\s${QOS_AVG_INPUT_BPS}\sbits/s,\smean\soutput\srate\s${QOS_AVG_OUTPUT_BPS}\sbits/s - ^\s\s\s\s(\s\s\s\s)?packets\soutput\s${QOS_PKTS_OUT},\spackets\sdropped\s${QOS_PKTS_DROPPED}\s\(${QOS_PKTS_DROPPED_PCT}%\) - ^\s\s\s\s(\s\s\s\s)?remaining-bandwidth\sshare\s${QOS_REMAINING_BW_SHARE},\sexcess-rate-priority\s${QOS_EXCESS_RATE_PRIO},\sexcess\spackets\ssent\s${QOS_EXCESS_PACKETS} - ^\s\s\s\s(\s\s\s\s)?bytes\soutput\s${QOS_BYTES_OUT},\sbytes\sdropped\s${QOS_BYTES_DROPPED}\s\(${QOS_BYTES_DROPPED_PCT}%\) -> Continue - ^\s\s\s\s(\s\s\s\s)?bytes\soutput\s${BYTES},\sbytes\sdropped\s\d+\s\(\d+%\) -> Record - ^\s\sInterface\stotal: -> StatsInterfaceTotal - ^.* - -StatsInterfaceTotal - ^\s+bandwidth\s${TOTAL_BW_KBS}\skb/s,\squeue\slength\s${TOTAL_QUEUE_LENGTH} - ^\s+mean\sinput\srate\s${TOTAL_MEAN_INPUT_RATE_BPS}\sbits/s,\smean\soutput\srate\s${TOTAL_MEAN_OUTPUT_RATE_BPS}\sbits/s - ^\s+packets\soutput\s${TOTAL_OUTPUT_PACKETS},\spackets\sdropped\s${TOTAL_OUTPUT_PACKETS_DROPPED}\s\(${TOTAL_OUTPUT_PACKETS_DROPPED_PCT}%\) - ^\s+bytes\soutput\s${TOTAL_OUTPUT_BYTES},\sbytes\sdropped\s${TOTAL_OUTPUT_BYTES_DROPPED}\s\(${TOTAL_OUTPUT_BYTES_DROPPED_PCT}%\) - ^\s*$$ -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm b/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm deleted file mode 100644 index 82ad7fec33..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_product-info-area.textfsm +++ /dev/null @@ -1,17 +0,0 @@ -Value MAC ([\w:]+) -Value MOTHERBOARD (\w.*\w) -Value MANUFACTURING_DATE ([^ ]+) -Value List SERIAL ([A-Z]\d+) -Value PRODUCT_NAME (\w.+\w) -Value COMMERCIAL_NAME (\w.+\w) - - -Start - ^\|\Wmac0\W+\|\W${MAC}\W+\|$$ - ^\|\WMotherboard\W[Tt]ype\W+\|\W${MOTHERBOARD}\W+\|$$ - ^\|\WManufacturing\W[Dd]ate\W+\|\W${MANUFACTURING_DATE}\W+\|$$ - ^\|\WSerial\W[Nn]umber\W+\|\W${SERIAL}\W+\|$$ - ^\|\WProduct\W[Nn]ame\W+\|\W${PRODUCT_NAME}\W+\|$$ - ^\|\WCommercial\W[Nn]ame\W+\|\W${COMMERCIAL_NAME}\W+\|$$ -> Record - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm b/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm deleted file mode 100644 index 9e286a2455..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_reboot_counters.textfsm +++ /dev/null @@ -1,27 +0,0 @@ -Value Required DEVICE (\S+) -Value SERIAL (\S+) -Value REBOOT_CAUSE (.*) -Value HARDWARE_RESET (\d+) -Value POWER_FAIL_DETECTION (\d+) -Value TOTAL_SOFTWARE_REBOOTS (\d+) -Value SYSTEM_DEFENSE (\d+) -Value GENERIC_SOFTWARE_REBOOT (\d+) -Value ADMIN_REQUESTED_REBOOT (\d+) -Value ADMIN_DELAYED_REBOOT (\d+) -Value SPURIOUS_POWER_FAILS (\d+) - -Start - ^Reboot\sstatus\sfor\sdevice\s${DEVICE}\sS\/N\s${SERIAL} - ^Last\sReboot\sCause\s+:\s+${REBOOT_CAUSE} - ^Reboot\sCounters - ^Reboot\son\shardware\sreset\s+:\s+${HARDWARE_RESET} - ^Power\sFail\sdetection\s+:\s+${POWER_FAIL_DETECTION} - ^Total\sSoftware\sRequested\sReboots\s+:\s+${TOTAL_SOFTWARE_REBOOTS} - ^\s*Generic\ssoftware\sreboot\srequest\s+:\s+${GENERIC_SOFTWARE_REBOOT} - ^\s*System\sdefense\s-\sreboot\safter\scrash\s+:\s+${SYSTEM_DEFENSE} - ^\s*Administrator\srequested\sreboot\s+:\s+${ADMIN_REQUESTED_REBOOT} - ^\s*Administrator\srequested\sdelayed\sreboot\s+:\s+${ADMIN_DELAYED_REBOOT} - ^Since\sstartup,\sspurious\sPower\sFail\shas\soccur+ed\s${SPURIOUS_POWER_FAILS}\stime - ^\s*$$ - ^.* - ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm b/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm deleted file mode 100644 index 42cb945272..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_route-map.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value Required NAME (\S+) -Value Required ACTION (\S+) -Value Required SEQ (\d+) -Value List MATCH_CLAUSES (.+) -Value List SET_CLAUSES (.+) - -Start - ^route-map\s+${NAME}\s${ACTION}\s+${SEQ}\s*$$ - ^\s+match\s+${MATCH_CLAUSES} - ^\s+set\s+${SET_CLAUSES} - ^exit -> Record - ^.+ -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm deleted file mode 100644 index 2ab8042fee..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_running-config_aaa.textfsm +++ /dev/null @@ -1,9 +0,0 @@ -Value AAA_PROTOCOL (authentication|authorization|accounting) -Value AAA_COMMAND (\w+) -Value List AAA_CONFIG (.*) - -Start - ^\s*aaa\s+${AAA_PROTOCOL}\s+${AAA_COMMAND}\s+${AAA_CONFIG}\s*$$ -> Record - ^.*$$ - ^. -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm deleted file mode 100644 index ba8cc4536e..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_running-config_bind.textfsm +++ /dev/null @@ -1,34 +0,0 @@ -Value Required PROTO (ssh|telnet) -Value List INTERFACE (\S+.*\d+) -Value ACL (\S+) -Value List VRF (\S+) - -Start - ^bind\sssh\sacl\s${ACL} -> SSH - ^bind\sssh\s${INTERFACE}$$ -> SSH - ^bind\sssh\svrf\s${VRF} -> SSH - ^bind\stelnet\sacl\s${ACL} -> TELNET - ^bind\stelnet\s${INTERFACE} -> TELNET - ^bind\stelnet\svrf\s${VRF} -> TELNET - ^$$ - ^. -> Error - -SSH - # at EOF or new protocol, start a record - # not all entries (ACL, VRF) may be present - ^bind\stelnet -> Continue.Record - ^bind\stelnet\sacl\s${ACL} -> Start - ^bind\stelnet\s${INTERFACE} -> Start - ^bind\stelnet\svrf\s${VRF} -> Start - ^bind\s${PROTO}\svrf\s${VRF} - ^bind\s${PROTO}\s${INTERFACE} - -TELNET - # at EOF or new protocol, start a record - # not all entries (ACL, VRF) may be present - ^bind\sssh -> Continue.Record - ^bind\sssh\sacl\s${ACL} -> Start - ^bind\sssh\s${INTERFACE}$$ -> Start - ^bind\sssh\svrf\s${VRF} -> Start - ^bind\s${PROTO}\svrf\s${VRF} - ^bind\s${PROTO}\s${INTERFACE} diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm deleted file mode 100644 index ba982563a2..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_dhcp.textfsm +++ /dev/null @@ -1,31 +0,0 @@ -Value POOL (\S+) -Value VRF (\S+) -Value DEFAULT_ROUTER (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value DOMAIN_NAME (\S+) -Value List DNS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value NETWORK (\S+\s\S+) -Value LEASE (.*) -Value EXCLUDED (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(\s\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})?) - -Start - # DHCP SCOPE records have a dhcp pool name - ^ip\sdhcp\spool\s${POOL} -> Pool - # EXCLUDE records do not have a dhcp pool name - ^ip\sdhcp\s(vrf ${VRF}\s)?excluded-address\s${EXCLUDED} -> Record - ^.*$$ - ^. -> Error - -Pool - #^ip\sdhcp\spool -> Continue.Record - ^\s+lease\s${LEASE} - #^ip\sdhcp\spool\s${POOL} - ^\s+vrf\s${VRF} - ^\s+domain-name\s+${DOMAIN_NAME} - ^\s+default-router\s${DEFAULT_ROUTER} - ^\s+dns-server\s${DNS} -> Continue - ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){1}${DNS} -> Continue - ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){2}${DNS} -> Continue - ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){3}${DNS} -> Continue - ^\s+dns-server\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s){4}${DNS} -> Continue - ^\s+network\s${NETWORK} - ^(exit|!) -> Record Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm b/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm deleted file mode 100644 index bc38bc2c24..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_running-config_ip_route.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value Required NETWORK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) -Value MASK (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) -Value NEXTHOP_IP (\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}) -Value NEXTHOP_IF (\w[\w\-\.:\/]+( [\d\.]+)?) -Value VRF (\S+) - -Start - ^ip\sroute(\svrf\s${VRF})?\s${NETWORK}\s${MASK}\s${NEXTHOP_IP} -> Record - ^ip\sroute(\svrf\s${VRF})?\s${NETWORK}\s${MASK}\s${NEXTHOP_IF} -> Record - ^.*$$ - ^. -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm b/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm deleted file mode 100644 index c89f051ae4..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_snmp_community.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value NAME (\S+) -Value SECURITY_NAME (\S+) -Value ACL (\S+) -Value GROUP (\S+) - -Start - ^SNMP.*community -> Continue.Record - ^SNMP\s${SECURITY_NAME}\s+community\s*:\s+${NAME}.* - ^SNMP\s\S+\s+community\s*:\s+\S+\s+v2group\s+${GROUP} - ^SNMP\saccess\scontrol\slists\s*:\s*${ACL} - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm b/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm deleted file mode 100644 index 3a63f051a4..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_sntp.textfsm +++ /dev/null @@ -1,31 +0,0 @@ -Value Required SERVER (\S+) -Value SOURCE (\S+(\s\S+)?) -Value STRATUM (\d+) -Value VERSION (\d+) -Value LAST (\d+:\d+:\d+) -Value RECEIVE (\S+) -Value LEARN_FROM (\S+) -Value INTERFACE (\S+) -Value VRF (\S+) -Value FAILED_AUTH_PKTS (\d+) -Value Fillup BROADCAST (enabled|not enabled) -Value Fillup AUTHENTICATION (enabled|not enabled) - -Start - ^server\s+source\s+stratum\s+version\s+last\s+receive\s+learn -> ONEOS6 - ^server\s+source\s+stratum\s+version\s+last\s+receive -> ONEOS5 - ^$$ - ^. -> Error - -ONEOS5 - ^${SERVER}\s+${SOURCE}\s+(${STRATUM}|)\s+(${VERSION}|)\s+(${LAST}|)\s+(${RECEIVE}|) -> Record - ^$$ - ^\s*broadcast\sclient\smode\sis\s${BROADCAST} - ^\s*SNTP\sAuthentication\sis\s${AUTHENTICATION} - -ONEOS6 - ^${SERVER}\s+${SOURCE}\s+(${STRATUM}|-)\s+(${VERSION}|-)\s+(${LAST}|)\s+(${RECEIVE}|-)\s+(${LEARN_FROM}|-)\s+(${INTERFACE}|-)\s+(${VRF}|-)\s+(${FAILED_AUTH_PKTS}) -> Record - ^$$ - ^\s*broadcast\sclient\smode\sis\s${BROADCAST} - ^\s*SNTP\sAuthentication\sis\s${AUTHENTICATION} - diff --git a/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm b/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm deleted file mode 100644 index fde7a4764a..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_soft-file_info.textfsm +++ /dev/null @@ -1,24 +0,0 @@ -Value STATUS (.*) -Value FILENAME (\S+) -Value FILETYPE (.+) -Value SOFTWARE_VERSION (\S+) -Value SOFTWARE_DATE (.*) -Value FILESIZE (\d+) -Value HEADER_CHECKSUM (\S+) -Value COMPUTED_CHECKSUM (\S+) -Value TARGET_DEVICE (\S+) - -Start - ^Binary\sfile - ^\s+file\sname\s+=\s+${FILENAME} - ^\s+file\stype\s+=\s+${FILETYPE} - ^\s+software\sversion\s+=\s+${SOFTWARE_VERSION} - ^\s+software\screation\sdate\s+=\s+${SOFTWARE_DATE} - ^\s+file\ssize\s+=\s+${FILESIZE} - ^\s+header\schecksum\s+=\s+${HEADER_CHECKSUM} - ^\s+computed\schecksum\s+=\s+${COMPUTED_CHECKSUM} - ^\s+target\sdevice\s+=\s+${TARGET_DEVICE} - ^\s*--- - ^[fF]ile\sis\s${STATUS} -> Record - ^$$ - ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm b/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm deleted file mode 100644 index 048bd3e470..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_software-image.textfsm +++ /dev/null @@ -1,19 +0,0 @@ -Value Required,Key BANK (Active|Alternate) -Value SOFTWARE (\S+) -Value CREATED (.*) -Value CHECKSUM (\S+) - -Start - ^-+\s${BANK}\sbank\s-+ -> BANK - ^.*$$ - ^. -> Error - -BANK - ^Software\sversion\s+:\s${SOFTWARE} - ^Creation\sdate\s+:\s${CREATED} - ^Header\schecksum\s+:\s${CHECKSUM} - ^-+ -> Continue.Record - ^-+\s${BANK}\sbank\s-+ -> BANK - ^Installation\sstatus.* - ^$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm deleted file mode 100644 index 8573c7e3af..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_system_hardware.textfsm +++ /dev/null @@ -1,51 +0,0 @@ -Value Device (\S+) -Value CPU (.*) -Value CoreFreq (\d+) -Value DDRFreq (\d+) -Value CoreComplexBusFreq (\d+) -Value PlatformFreq (\d+) -Value PhysicalRamSize (\d+\S+) -Value OneOSRamSize (\d+\S+) -Value NandFlashSize (\d+\S+) -Value RamDisk (\d+\S+) -Value FlashDisk (\d+\S+) -Value Uplink ([xX]|) -Value ISDN ([xX]|) -Value Radio ([xX]|) -Value Usb ([xX]|) -Value Usb0 ([xX]|) -Value Usb1 ([xX]|) -Value Dsp (\d+) -Value Wlan (.*) -Value PORTS (.*\s+\d+\s+ports) -Value UplinkPorts (.*\S) -Value SecureBootProtection (\S+) -Value WLAN0 (.*\S) -Value WLAN1 (.*\S) - - -Start - ^\s*HARDWARE DESCRIPTION\s*$$ - ^\s*Device\s*:\s*${Device}\s*$$ - ^\s*CPU\s*:\s*${CPU}\s*$$ - ^\s*Core\sFreq\s*:\s*${CoreFreq}MHz\s+DDR\sFreq\s*:\s*${DDRFreq}MHz\s* - ^\s*Core Complex Bus Freq\s*:\s*${CoreComplexBusFreq}MHz\s*Platform Freq\s*:\s*${PlatformFreq}MHz\s*$$ - ^\s*Physical\sRam\ssize\s*:\s*${PhysicalRamSize}\s*OneOS Ram size\s*:\s*${OneOSRamSize}\s*$$ - ^\s*Physical\sRam\ssize\s*:\s*${PhysicalRamSize}\s*$$ - ^\s*Nand Flash size\s*:\s*${NandFlashSize}\s*$$ - ^\s*Ram disk\s*:\s*${RamDisk}\s*Flash disk\s*:\s*${FlashDisk}\s*$$ - ^\s*Local\s*:\s*.*\s+Uplink\s+:\s+${Uplink} -> Continue - ^\s*Local\s*:\s*.*\s+ISDN\s+:\s+${ISDN} -> Continue - ^\s*Local\s*:\s*.*\s+Radio\s+:\s+${Radio} -> Continue - ^\s*Local\s*:\s*.*\s+Usb0\s+:\s+${Usb0} -> Continue - ^\s*Local\s*:\s*.*\s+Usb1\s+:\s+${Usb1} -> Continue - ^\s*Local\s*:\s*.*\s+Usb\s+:\s+${Usb} -> Continue - ^\s*Secure\sBoot\sprotection\s*:\s*${SecureBootProtection} - ^\s*Dsp\s*:\s*${Dsp}\s*$$ - ^\s*Wlan\s*:\s*${Wlan}\s*$$ - ^\s*Local\s+:\s+${PORTS}\s* - ^\s*Uplink\s+:\s+${UplinkPorts}\s - ^\s*Wlan\s+0\s+:\s+${WLAN0}\s - ^\s*Wlan\s+1\s+:\s+${WLAN1}\s - ^.* - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm deleted file mode 100644 index cbbd0a71f1..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_system_secure-crashlog.textfsm +++ /dev/null @@ -1,40 +0,0 @@ -Value COREDUMP_FILE (coredump.*txt) -Value CRASH_CAUSED_BY (.*\S) -Value CRASH_TIME (.*\S) -Value CRASH_FILENAME (.*\S) -Value List SERIAL (\w+) -Value DEVICEID (\S+) -Value SOFTWARE (.+) -Value BOOT_VERSION (.+) -Value RECOVERY_VERSION (.+) -Value RESTARTED (.*) -Value RELOAD_REASON (.*) -Value UPTIME (.*) -Value UPTIME_SECONDS (\d+) -Value UPTIME_MINUTES (\d+) -Value UPTIME_HOURS (\d+) -Value UPTIME_DAYS (\d+) -Value VERSION (\d) -Value CORE_GENERATED_BY (\S+) - - -Start - ^${COREDUMP_FILE}$$ - ^\-+ - ^Last\sRaw\sLog\ssaved\sin\sFlash - ^=+ - ^Crash\scaused\sby\s+:\s+${CRASH_CAUSED_BY} - ^Crash\stime\s+:\s+${CRASH_TIME} - ^Crash\s(filename|file\sname)\s+:\s+${CRASH_FILENAME} - ^Device\sidentifier\s+:\s+${DEVICEID}\sS\/N\s${SERIAL} - ^Software\Wversion\W+:\W+${SOFTWARE} -> Continue - ^Software\Wversion\W+:\W+.*\-V?${VERSION}\..* - ^Boot\Wversion\W+:\W${BOOT_VERSION} - ^Recovery\Wversion\W+:\W+${RECOVERY_VERSION} - ^System\Wstarted\W+:\W+${RESTARTED} - ^Start\Wcaused\Wby\W+:\W+${RELOAD_REASON} - ^Sys\WUp\Wtime\W+:\W+(?:${UPTIME_DAYS}d)? ?(?:${UPTIME_HOURS}h)? ?(?:${UPTIME_MINUTES}m)? ?(?:${UPTIME_SECONDS}s)? -> Continue - ^Sys\sUp\s[tT]ime\s+:\s+${UPTIME} - ^Core\swas\sgenerated\sby\s'${CORE_GENERATED_BY}' - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm b/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm deleted file mode 100644 index bd7a4f1edf..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_system_status.textfsm +++ /dev/null @@ -1,31 +0,0 @@ -Value List SERIAL (\w+) -Value DEVICEID ([^ ]+) -Value SOFTWARE (.+) -Value BOOT_VERSION (.+) -Value RECOVERY_VERSION (.+) -Value BOOT_FLAGS (\dx\d+) -Value SYSTEM_TIME (.*) -Value RESTARTED (.*) -Value RELOAD_REASON (.*) -Value UPTIME (.*) -Value UPTIME_SECONDS (\d+) -Value UPTIME_MINUTES (\d+) -Value UPTIME_HOURS (\d+) -Value UPTIME_DAYS (\d+) -Value VERSION (\d) - - -Start - ^System\WInformation\Wfor\Wdevice\W${DEVICEID}\W+S\/N\W${SERIAL} - ^Software\Wversion\W+:\W+${SOFTWARE} -> Continue - ^Software\Wversion\W+:\W+.*\-V?${VERSION}\..* - ^Boot\Wversion\W+:\W${BOOT_VERSION} - ^Boot\WFlags\W+:\W+${BOOT_FLAGS} - ^Recovery\Wversion\W+:\W+${RECOVERY_VERSION} - ^Current\Wsystem\Wtime\W+:\W+${SYSTEM_TIME} - ^System\Wstarted\W+:\W+${RESTARTED} - ^Start\Wcaused\Wby\W+:\W+${RELOAD_REASON} - ^Sys\WUp\Wtime\W+:\W+(?:${UPTIME_DAYS}d)? ?(?:${UPTIME_HOURS}h)? ?(?:${UPTIME_MINUTES}m)? ?(?:${UPTIME_SECONDS}s)? -> Continue - ^Sys\WUp\Wtime\W+:\W+${UPTIME} -> Record - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm b/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm deleted file mode 100644 index 597d5e8d44..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_tacacs-server.textfsm +++ /dev/null @@ -1,11 +0,0 @@ -Value TACACS_SERVER (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) -Value SERVER_PORT (\d+) -Value SECRET_KEY (\w+) -Value SOURCE (\w+\s[\w\/\.]+) -Value VRF ([\w\-]+) - - -Start - ^\s*${TACACS_SERVER}\s+${SERVER_PORT}\s+${SECRET_KEY}\s+${SOURCE}\s*(?:Default-Router)?${VRF}?$$ -> Record - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm b/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm deleted file mode 100644 index 6f2c15c347..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_tacacs.textfsm +++ /dev/null @@ -1,26 +0,0 @@ -Value TACACS_SERVER (.+?) -Value SERVER_PORT (\d+) -Value SOCKET_OPENS (\d+) -Value SOCKET_CLOSES (\d+) -Value SOCKET_ABORTS (\d+) -Value SOCKET_ERRORS (\d+) -Value SOCKET_TIMEOUTS (\d+) -Value FAILED_CONNECTIONS (\d+) -Value PACKETS_SENT (\d+) -Value PACKET_RECEIVED (\d+) - - -Start - ^\s+Tacacs\+\s+Server\s+Address\s+:\s.*$$ -> Continue.Record - ^\s+Tacacs\+\s+Server\s+Address\s+:\s+${TACACS_SERVER}\s*$$ - ^\s+Server\s+port\s+:\s+${SERVER_PORT}\s*$$ - ^\s+Number\sof\ssockets\sopen\s+:\s+${SOCKET_OPENS}\s*$$ - ^\s+Number\sof\ssockets\sclosed\s+:\s+${SOCKET_CLOSES}\s*$$ - ^\s+Number\sof\ssockets\saborted\s+:\s+${SOCKET_ABORTS}\s*$$ - ^\s+Number\sof\ssockets\serror\s+:\s+${SOCKET_ERRORS}\s*$$ - ^\s+Number\sof\ssockets\stimeout\s+:\s+${SOCKET_TIMEOUTS}\s*$$ - ^\s+Number\sof\sconnect\sfails\s+:\s+${FAILED_CONNECTIONS}\s*$$ - ^\s+Number\sof\spackets\ssent\s+:\s+${PACKETS_SENT}\s*$$ - ^\s+Number\sof\spackets\sreceived\s+:\s+${PACKET_RECEIVED}\s*$$ - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm deleted file mode 100644 index 05ce14675c..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_track_all.textfsm +++ /dev/null @@ -1,22 +0,0 @@ -Value Required ID (\d+) -Value CATEGORY (\S+) -Value INTERFACE (\S+(?:\s\S+)?) -Value VRRP_ID (\d+) -Value VRF (\S+) -Value STATE (\S+) -Value STATE_CHANGES (\d+) -Value LAST_CHANGE (\S+) -Value UP_DELAY (\d+) -Value DOWN_DELAY (\d+) -Value POLL_INTERVAL (\d+) - -Start - ^\s*Track\s -> Continue.Record - ^\s*Track\s${ID} - ^\s*interface\s${INTERFACE}\s${CATEGORY} - ^\s*${CATEGORY}\sId\s${VRRP_ID}(\svrf\s${VRF}) - ^\s*\S+\sis\s${STATE} - ^\s*${STATE_CHANGES}\sChange,\sLast\sChange\s${LAST_CHANGE} - ^\s*Up\sDelay\s${UP_DELAY},\sDown\sDelay\s${DOWN_DELAY} - ^\s*Poll\sInterval\s\(in\smsec\)\s${POLL_INTERVAL} - ^\s*$$ diff --git a/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm b/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm deleted file mode 100644 index d72ab72d8d..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_transceiver_equipment.textfsm +++ /dev/null @@ -1,121 +0,0 @@ -Value Filldown PORT (\S+) -Value Required PHYSICAL_DEVICE (.*\S) -Value CONNECTOR (\S+) -Value VENDOR_NAME (.*\S) -Value VENDOR_ID (.*\S) -Value VENDOR_PARTNR (.*\S) -Value VENDOR_REVISION (.*\S) -Value VENDOR_DATECODE (.*\S) -Value TCVR_ETHER_COMPLIANCE (.*\S) -Value TCVR_10G_ETHER_COMPLIANCE (.*\S) -Value TCVR_FIBER_LINKLEN (.*\S) -Value TCVR_FIBER_TECH (.*\S) -Value TCVR_FIBER_TXMEDIA (.*\S) -Value TCVR_FIBER_SPEED (.*\S) -Value WAVELENGTH (.*\S) -Value ENCODING (.*\S) -Value NOMINAL_BITRATE (.*\S) -Value LINKLEN_SM (.*\S) -Value LINKLEN_50_MM (.*\S) -Value LINKLEN_625_MM (.*\S) -Value LINKLEN_COPPER (.*\S) -Value List OPTIONS (\S.*\S) -Value MAX_BIT_RATE (\S.*\S) -Value MIN_BIT_RATE (\S.*\S) -Value TEMP_HIGH_ALARM (\S.*\S) -Value TEMP_LOW_ALARM (\S.*\S) -Value TEMP_HIGH_WARNING (\S.*\S) -Value TEMP_LOW_WARNING (\S.*\S) -Value VOLTAGE_HIGH_ALARM (\S.*\S) -Value VOLTAGE_LOW_ALARM (\S.*\S) -Value VOLTAGE_HIGH_WARNING (\S.*\S) -Value VOLTAGE_LOW_WARNING (\S.*\S) -Value BIAS_HIGH_ALARM (\S.*\S) -Value BIAS_LOW_ALARM (\S.*\S) -Value BIAS_HIGH_WARNING (\S.*\S) -Value BIAS_LOW_WARNING (\S.*\S) -Value TX_POWER_HIGH_ALARM (\S.*\S) -Value TX_POWER_LOW_ALARM (\S.*\S) -Value TX_POWER_HIGH_WARNING (\S.*\S) -Value TX_POWER_LOW_WARNING (\S.*\S) -Value RX_POWER_HIGH_ALARM (\S.*\S) -Value RX_POWER_LOW_ALARM (\S.*\S) -Value RX_POWER_HIGH_WARNING (\S.*\S) -Value RX_POWER_LOW_WARNING (\S.*\S) -Value MEASURED_MODULE_TEMP (\S.*\S) -Value MEASURED_SUPPLY_VOLTAGE (\S.*\S) -Value MEASURED_TX_BIAS_CURRENT (\S.*\S) -Value MEASURED_TX_OUTPUT_POWER (\S.*\S) -Value MEASURED_RX_INPUT_POWER (\S.*\S) - -Start - ^SFP\s${PORT}: -> Record - ^\s*Physical\sdevice\s+=\s+${PHYSICAL_DEVICE} - ^\s*connector\s+=\s+${CONNECTOR} - ^\s*vendor: -> VENDOR - ^\s*wavelength\s+=\s+${WAVELENGTH} - ^\s*encoding\s+=\s+${ENCODING} - ^\s*nominalBitRate\s+=\s+${NOMINAL_BITRATE} - ^\s*Link\slength\sin: -> LINK_LENGTH - ^\s*[mM]in\sbit\srate\s+=\s+${MIN_BIT_RATE} - ^\s*Diagnostics\scalibration\sis\sinternal -> DIAGNOSTICS - ^.* - ^. -> Error - -VENDOR - ^\s*name\s+=\s+${VENDOR_NAME} - ^\s*id\s+=\s+${VENDOR_ID} - ^\s*partNumber\s+=\s+${VENDOR_PARTNR} - ^\s*revision\s+=\s+${VENDOR_REVISION} - ^\s*dateCode\s+=\s+${VENDOR_DATECODE} - ^\s*transceiver: -> TRANSCEIVER - -TRANSCEIVER - ^\s*ethernetComplianceCode\s+=\s+${TCVR_ETHER_COMPLIANCE} - ^\s*10G\sethernetComplianceCode\s+=\s+${TCVR_10G_ETHER_COMPLIANCE} - ^\s*fiberLinkLen\s+=\s+${TCVR_FIBER_LINKLEN} - ^\s*fiberTech\s+=\s+${TCVR_FIBER_TECH} - ^\s*fiberTxMedia\s+=\s+${TCVR_FIBER_TXMEDIA} - ^\s*fiberSpeed\s+=\s+${TCVR_FIBER_SPEED} -> Continue - ^\s*fiberSpeed -> Start - -LINK_LENGTH - ^\s*single\sfiber\smode\s+=\s+${LINKLEN_SM} - ^\s*50u\smulti-mode\sfiber\s+=\s+${LINKLEN_50_MM} - ^\s*62\.5u\smulti-mode\sfiber\s+=\s+${LINKLEN_625_MM} - ^\s*copper\scable\s+=\s+${LINKLEN_COPPER} -> Continue - ^\s*copper\scable -> OPTIONS - -OPTIONS - ^\s*Max\sbit\srate\s+=\s+${MAX_BIT_RATE} -> Start - ^\s*options\s+=\s${OPTIONS} - ^\s+${OPTIONS} - -DIAGNOSTICS - ^\s*Temp\sHigh\sAlarm\s+=\s+${TEMP_HIGH_ALARM} - ^\s*Temp\sLow\sAlarm\s+=\s+${TEMP_LOW_ALARM} - ^\s*Temp\sHigh\sWarning\s+=\s+${TEMP_HIGH_WARNING} - ^\s*Temp\sLow\sWarning\s+=\s+${TEMP_LOW_WARNING} - ^\s*Voltage\sHigh\sAlarm\s+=\s+${VOLTAGE_HIGH_ALARM} - ^\s*Voltage\sLow\sAlarm\s+=\s+${VOLTAGE_LOW_ALARM} - ^\s*Voltage\sHigh\sWarning\s+=\s+${VOLTAGE_HIGH_WARNING} - ^\s*Voltage\sLow\sWarning\s+=\s+${VOLTAGE_LOW_WARNING} - ^\s*Bias\sHigh\sAlarm\s+=\s+${BIAS_HIGH_ALARM} - ^\s*Bias\sLow\sAlarm\s+=\s+${BIAS_LOW_ALARM} - ^\s*Bias\sHigh\sWarning\s+=\s+${BIAS_HIGH_WARNING} - ^\s*Bias\sLow\sWarning\s+=\s+${BIAS_LOW_WARNING} - ^\s*TX\sPower\sHigh\sAlarm\s+=\s+${TX_POWER_HIGH_ALARM} - ^\s*TX\sPower\sLow\sAlarm\s+=\s+${TX_POWER_LOW_ALARM} - ^\s*TX\sPower\sHigh\sWarning\s+=\s+${TX_POWER_HIGH_WARNING} - ^\s*TX\sPower\sLow\sWarning\s+=\s+${TX_POWER_LOW_WARNING} - ^\s*RX\sPower\sHigh\sAlarm\s+=\s+${RX_POWER_HIGH_ALARM} - ^\s*RX\sPower\sLow\sAlarm\s+=\s+${RX_POWER_LOW_ALARM} - ^\s*RX\sPower\sHigh\sWarning\s+=\s+${RX_POWER_HIGH_WARNING} - ^\s*RX\sPower\sLow\sWarning\s+=\s+${RX_POWER_LOW_WARNING} - ^\s*Internally\sMeasured\sModule\sTemperature\s+=\s+${MEASURED_MODULE_TEMP} - ^\s*Internally\sMeasured\sSupply\sVoltage\s+=\s+${MEASURED_SUPPLY_VOLTAGE} - ^\s*Internally\sMeasured\sTx\sBias\sCurrent\s+=\s+${MEASURED_TX_BIAS_CURRENT} - ^\s*Measured\sTx\sOutput\sPower\s+=\s+${MEASURED_TX_OUTPUT_POWER} - ^\s*Measured\sRx\sInput\sPower\s+=\s+${MEASURED_RX_INPUT_POWER} - ^SFP\s${PORT}: -> Record Start - ^.* -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm deleted file mode 100644 index de868d57cf..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_dial-peer_voice_voip_all.textfsm +++ /dev/null @@ -1,199 +0,0 @@ -# global vars -Value DIAL_PEER (\d+) -Value CONFIG_STATE (\S+) -Value OPER_STATUS (\S+) -Value REGISTRATION_STATUS (\S+) -Value CURRENT_PROTOCOL (\S+) -Value LAST_OK (\d+) -Value USER_AGENT (\w+) -Value BW_USED (\d+) -Value CAC (\d+) -Value BW_UNUSED (\d+) -Value SIP_PROTOCOL_MODE (\S+) -Value SIP_PROTOCOL_CONFIGURED (\w+) -Value CURRENT_CALLS (\d+) -# outgoing call vars -Value OUTGOING_CALLS (\d+) -Value OUTGOING_BW_USED (\d+) -Value OUTGOING_CAC (\d+) -Value OUTGOING_BW_UNUSED (\d+) -Value OUTGOING_FAILURES (\d+) -Value OUTGOING_FAILURES_Q931 (\d+) -Value OUTGOING_FAILURES_Q931_0_NORMAL (\d+) -Value OUTGOING_FAILURES_Q931_1_NORMAL (\d+) -Value OUTGOING_FAILURES_Q931_16_NORMAL (\d+) -Value OUTGOING_FAILURES_Q931_17_BUSY (\d+) -Value OUTGOING_FAILURES_Q931_18_NO_ANSWER (\d+) -Value OUTGOING_FAILURES_Q931_2_UNAVAILABLE_RESOURCES (\d+) -Value OUTGOING_FAILURES_Q931_3_UNAVAILABLE_SERVICE (\d+) -Value OUTGOING_FAILURES_Q931_4_SERVICE_NOT_PROVIDED (\d+) -Value OUTGOING_FAILURES_Q931_5_INVALID_MESSAGE (\d+) -Value OUTGOING_FAILURES_Q931_6_PROTOCOL (\d+) -Value OUTGOING_FAILURES_Q931_7_INTERWORKING (\d+) -Value OUTGOING_FAILURES_SIP_CALL (\d+) -Value OUTGOING_FAILURES_CAPABILITIES (\d+) -Value OUTGOING_FAILURES_PROTOCOL (\d+) -Value OUTGOING_FAILURES_INTERNAL_CALL (\d+) -Value OUTGOING_FAILURES_DSP_UNAVAILABLE (\d+) -Value OUTGOING_FAILURES_MAX_BW_EXCEEDED (\d+) -Value OUTGOING_FAILURES_MAX_CONN_EXCEEDED (\d+) -Value OUTGOING_FAILURES_RTP_PAYLOAD (\d+) -Value OUTGOING_FAILURES_NOT_SPECIFIED (\d+) -# incoming call vars -Value INCOMING_CALLS (\d+) -Value INCOMING_BW_USED (\d+) -Value INCOMING_CAC (\d+) -Value INCOMING_BW_UNUSED (\d+) -Value INCOMING_FAILURES (\d+) -Value INCOMING_FAILURES_LOCAL_PORT (\d+) -Value INCOMING_FAILURES_SIP_CALL (\d+) -Value INCOMING_FAILURES_CAPABILITIES (\d+) -Value INCOMING_FAILURES_PROTOCOL (\d+) -Value INCOMING_FAILURES_INTERNAL_CALL (\d+) -Value INCOMING_FAILURES_DSP_UNAVAILABLE (\d+) -Value INCOMING_FAILURES_UNKNOWN_NUMBER (\d+) -Value INCOMING_FAILURES_CHANNEL_OR_PORT_UNAVAILABLE (\d+) -Value INCOMING_FAILURES_MAX_BW_EXCEEDED (\d+) -Value INCOMING_FAILURES_MAX_CONN_EXCEEDED (\d+) -Value INCOMING_FAILURES_RTP_PAYLOAD (\d+) -Value INCOMING_FAILURES_NOT_SPECIFIED (\d+) -# VOICE & FAX STATS -Value VOICE_FAX_REAL_DSP_SWITCHING (\d+) -# RTP vars -Value RTP_PKTS_TRANSMITTED (\d+) -Value RTP_PKTS_RECEIVED (\d+) -Value RTP_BYTES_TRANSMITTED (\d+) -Value RTP_BYTES_RECEIVED (\d+) -Value RTP_EXCESSIVE_JITTER_EVENTS (\d+) -Value RTP_PKTS_LOST (\d+) -Value RTP_PKTS_INVALID (\d+) -# frame error call vars -Value FRAME_ERROR_RATE_TOTAL (\d+) -Value FRAME_ERROR_RATE_LT_0_01 (\d+) -Value FRAME_ERROR_RATE_LT_0_1 (\d+) -Value FRAME_ERROR_RATE_LT_0_5 (\d+) -Value FRAME_ERROR_RATE_LT_1 (\d+) -Value FRAME_ERROR_RATE_LT_5 (\d+) -Value FRAME_ERROR_RATE_GE_5 (\d+) -# modem passthrough vars -Value MODEM_SWITCHES (\d+) -# FAX vars -Value FAX_OUTGOING (\d+) -Value FAX_INCOMING (\d+) -Value FAX_FAILURES (\d+) -Value FAX_FAILURES_REQUEST_MODE (\d+) -Value FAX_FAILURES_PRE_MSG (\d+) -Value FAX_FAILURES_PAGE (\d+) -Value FAX_PKTS_TRANSMITTED (\d+) -Value FAX_PKTS_RECEIVED (\d+) -Value FAX_BYTES_TRANSMITTED (\d+) -Value FAX_BYTES_RECEIVED (\d+) -Value FAX_PKTS_LOST (\d+) - - -Start - ^\s*Dial\sPeer\s+${DIAL_PEER} - ^\s*Config\sstate\s+${CONFIG_STATE} - ^\s*Operstatus\s+${OPER_STATUS} - ^\s*Registration\sstatus\s+${REGISTRATION_STATUS} - ^\s*Current\sprotocol\s+${CURRENT_PROTOCOL} - ^\s*lastOK\s+${LAST_OK} - ^\s*User\sAgent\s+\(?${USER_AGENT}\)? - ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${BW_USED}\s*\/\s*${CAC}\s*\/\s*${BW_UNUSED} - ^\s*Current\ssip-protocol-mode\s+${SIP_PROTOCOL_MODE}.*:\s${SIP_PROTOCOL_CONFIGURED} - ^\s*Current\sCalls\s+${CURRENT_CALLS} - ^\s*Outgoing\sCalls\s*$$ -> OutgoingCalls - ^\s*Incoming\sCalls\s*$$ -> IncomingCalls - ^\s*Voice\s\&\sFAX\sstatistics\s*$$ -> VoiceFax - ^\s*RTP\sstatistics\s*$$ -> RTP - ^\s*Number\sof\scalls\swith\sframe\serror\srate\s*$$ -> CallsWithFrameError - ^\s*Modem\spassthrough\s*$$ -> MODEM - ^\s*T38\sFAX\sCalls\s*$$ -> FAX - ^.* - ^\s*$$ - ^. -> Error - -OutgoingCalls - ^\s*Outgoing\sCalls\s+${OUTGOING_CALLS} - ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${OUTGOING_BW_USED}\s*\/\s*${OUTGOING_CAC}\s*\/\s*${OUTGOING_BW_UNUSED} - ^\s*Outgoing\scalls\sfailures\s+${OUTGOING_FAILURES} - ^\s*Q931\sCall\sfailures\s+${OUTGOING_FAILURES_Q931} - ^\s*Cause\sClass\s0\s+.*${OUTGOING_FAILURES_Q931_0_NORMAL} - ^\s*Cause\sClass\s1\s+.*${OUTGOING_FAILURES_Q931_1_NORMAL} - ^\s*Normal\sCause\s\(16\)\s+${OUTGOING_FAILURES_Q931_16_NORMAL} - ^\s*User\sbusy\s\(17\)\s+${OUTGOING_FAILURES_Q931_17_BUSY} - ^\s*No\sanswer\s\(18\)\s+${OUTGOING_FAILURES_Q931_18_NO_ANSWER} - ^\s*Cause\sClass\s2\s+.*${OUTGOING_FAILURES_Q931_2_UNAVAILABLE_RESOURCES} - ^\s*Cause\sClass\s3\s+.*${OUTGOING_FAILURES_Q931_3_UNAVAILABLE_SERVICE} - ^\s*Cause\sClass\s4\s+.*${OUTGOING_FAILURES_Q931_4_SERVICE_NOT_PROVIDED} - ^\s*Cause\sClass\s5\s+.*${OUTGOING_FAILURES_Q931_5_INVALID_MESSAGE} - ^\s*Cause\sClass\s6\s+.*${OUTGOING_FAILURES_Q931_6_PROTOCOL} - ^\s*Cause\sClass\s7\s+.*${OUTGOING_FAILURES_Q931_7_INTERWORKING} - ^\s*SIP\sCall\sfailures\s+${OUTGOING_FAILURES_SIP_CALL} - ^\s*Incompatible\scapabilities\s+${OUTGOING_FAILURES_CAPABILITIES} - ^\s*Protocol\serrors\s+${OUTGOING_FAILURES_PROTOCOL} - ^\s*Internal\scall\sfailures\s+${OUTGOING_FAILURES_INTERNAL_CALL} - ^\s*DSP\sunavailable\s+${OUTGOING_FAILURES_DSP_UNAVAILABLE} - ^\s*Max-bandwidth\sexceeded\s+${OUTGOING_FAILURES_MAX_BW_EXCEEDED} - ^\s*Max-connection\sexceeded\s+${OUTGOING_FAILURES_MAX_CONN_EXCEEDED} - ^\s*RTP\sdynamic-payload\serror\s+${OUTGOING_FAILURES_RTP_PAYLOAD} - ^\s*Not\sspecified\s+${OUTGOING_FAILURES_NOT_SPECIFIED} - ^\s*Incoming\sCalls\s*$$ -> IncomingCalls - -IncomingCalls - ^\s*Incoming\scalls\s+${INCOMING_CALLS} - ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${INCOMING_BW_USED}\s*\/\s*${INCOMING_CAC}\s*\/\s*${INCOMING_BW_UNUSED} - ^\s*Incoming\scalls\sfailures\s+${INCOMING_FAILURES} - ^\s*Local\sPort\sCall\sfailures\s+${INCOMING_FAILURES_LOCAL_PORT} - ^\s*SIP\sCall\sfailures\s+${INCOMING_FAILURES_SIP_CALL} - ^\s*Incompatible\scapabilities\s+${INCOMING_FAILURES_CAPABILITIES} - ^\s*Protocol\serrors\s+${INCOMING_FAILURES_PROTOCOL} - ^\s*Internal\scall\sfailures\s+${INCOMING_FAILURES_INTERNAL_CALL} - ^\s*DSP\sunavailable\s+${INCOMING_FAILURES_DSP_UNAVAILABLE} - ^\s*Unknown\snumber\s+${INCOMING_FAILURES_UNKNOWN_NUMBER} - ^\s*Channel\s\/\sport\sunavailable\s+${INCOMING_FAILURES_CHANNEL_OR_PORT_UNAVAILABLE} - ^\s*Max-bandwidth\sexceeded\s+${INCOMING_FAILURES_MAX_BW_EXCEEDED} - ^\s*Max-connection\sexceeded\s+${INCOMING_FAILURES_MAX_CONN_EXCEEDED} - ^\s*RTP\sdynamic-payload\serror\s+${INCOMING_FAILURES_RTP_PAYLOAD} - ^\s*Not\sspecified\s+${INCOMING_FAILURES_NOT_SPECIFIED} - ^\s*Voice\s.\sFax\sstatistics\s*$$ -> VoiceFax - ^\s*RTP\sstatistics\s*$$ -> RTP - -VoiceFax - ^\s*Number\sof\sreal\sdsp\sswitching\s+${VOICE_FAX_REAL_DSP_SWITCHING} - ^\s*RTP\sstatistics\s*$$ -> RTP - -RTP - ^\s*Number\sof\stransmitted\spackets\s+${RTP_PKTS_TRANSMITTED} - ^\s*Number\sof\sreceived\spackets\s+${RTP_PKTS_RECEIVED} - ^\s*Number\sof\stransmitted\sbytes\s+${RTP_BYTES_TRANSMITTED} - ^\s*Number\sof\sreceived\sbytes\s+${RTP_BYTES_RECEIVED} - ^\s*Number\sof\sexcessive\sjitter\sevents\s+${RTP_EXCESSIVE_JITTER_EVENTS} - ^\s*Number\sof\slost\spackets\s+${RTP_PKTS_LOST} - ^\s*Number\sof\sinvalid\spackets\s+${RTP_PKTS_INVALID} - ^\s*Number\sof\scalls\swith\sframe\serror\srate\s*$$ -> CallsWithFrameError - -CallsWithFrameError - ^\s*total - ^\s*${FRAME_ERROR_RATE_TOTAL}\s*${FRAME_ERROR_RATE_LT_0_01}\s*${FRAME_ERROR_RATE_LT_0_1}\s*${FRAME_ERROR_RATE_LT_0_5}\s*${FRAME_ERROR_RATE_LT_1}\s*${FRAME_ERROR_RATE_LT_5}\s*${FRAME_ERROR_RATE_GE_5}\s* - ^\s*Modem\spassthrough\s*$$ -> MODEM - -MODEM - ^\s*Number\sof\sswitching\sto\smodem\smode\s+${MODEM_SWITCHES} - ^\s*T38\sFAX\sCalls\s*$$ -> FAX - - -FAX - ^\s*Number\sof\soutgoing\sfax\s+${FAX_OUTGOING} - ^\s*Number\sof\sincoming\sfax\s+${FAX_INCOMING} - ^\s*Number\sof\sfailures\s+${FAX_FAILURES} - ^\s*Request\sMode\sfailure\s+${FAX_FAILURES_REQUEST_MODE} - ^\s*Pre-message\sprocedure\sfailure\s+${FAX_FAILURES_PRE_MSG} - ^\s*Page\sfailure\s+${FAX_FAILURES_PAGE} - ^\s*Number\sof\stransmitted\spackets\s+${FAX_PKTS_TRANSMITTED} - ^\s*Number\sof\sreceived\spackets\s+${FAX_PKTS_RECEIVED} - ^\s*Number\sof\stransmitted\sbytes\s+${FAX_BYTES_TRANSMITTED} - ^\s*Number\sof\sreceived\sbytes\s+${FAX_BYTES_RECEIVED} - ^\s*Number\sof\slost\spackets\s+${FAX_PKTS_LOST} - ^\s*$$ -> Start - diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm deleted file mode 100644 index ceafcd7755..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_mos.textfsm +++ /dev/null @@ -1,51 +0,0 @@ -Value CURR_NBR_CALL (\d+\.\d+|\d+) -Value CURR_AVG_MOS (\d+\.\d+|\d+) -Value CURR_MIN_MOS (\d+\.\d+|\d+) -Value CURR_MAX_MOS (\d+\.\d+|\d+) -Value CURR_AVG_ERL (\d+\.\d+|\d+) -Value CURR_AVG_ACOM (\d+\.\d+|\d+) -Value CURR_AVG_LOSS_RATE (\d+\.\d+|\d+) -Value CURR_AVG_JITTER (\d+\.\d+|\d+) -Value CURR_AVG_MAX_DELAY (\d+\.\d+|\d+) -Value CURR_AVG_PDD (\d+\.\d+|\d+) -Value PREV_NBR_CALL (\d+\.\d+|\d+) -Value PREV_AVG_MOS (\d+\.\d+|\d+) -Value PREV_MIN_MOS (\d+\.\d+|\d+) -Value PREV_MAX_MOS (\d+\.\d+|\d+) -Value PREV_AVG_ERL (\d+\.\d+|\d+) -Value PREV_AVG_ACOM (\d+\.\d+|\d+) -Value PREV_AVG_LOSS_RATE (\d+\.\d+|\d+) -Value PREV_AVG_JITTER (\d+\.\d+|\d+) -Value PREV_AVG_MAX_DELAY (\d+\.\d+|\d+) -Value PREV_AVG_PDD (\d+\.\d+|\d+) - -Start - ^\s*-+\sCurrent\shour\s-+ -> CurrentHour - ^\s*$$ - ^\s*-* - ^. -> Error - -CurrentHour - ^\s*Number\sof\sCall\s+:\s+${CURR_NBR_CALL} - ^\s*Average\sof\sMOS\s+:\s+${CURR_AVG_MOS} - ^\s*Minimum\sMOS\s+:\s+${CURR_MIN_MOS} - ^\s*Maximum\sMOS\s+:\s+${CURR_MAX_MOS} - ^\s*Average\sof\sERL\s+:\s+${CURR_AVG_ERL} - ^\s*Average\sof\sACOM\s+:\s+${CURR_AVG_ACOM} - ^\s*Average\sof\sloss-rate\s+:\s+${CURR_AVG_LOSS_RATE} - ^\s*Average\sof\sjitter\s+:\s+${CURR_AVG_JITTER} - ^\s*Average\sof\sMax\sdelay\s+:\s+${CURR_AVG_MAX_DELAY} - ^\s*Average\sPdd\s+:\s+${CURR_AVG_PDD} - ^\s*-+\sPrevious\shour\s-+ -> PreviousHour - -PreviousHour - ^\s*Number\sof\sCall\s+:\s+${PREV_NBR_CALL} - ^\s*Average\sof\sMOS\s+:\s+${PREV_AVG_MOS} - ^\s*Minimum\sMOS\s+:\s+${PREV_MIN_MOS} - ^\s*Maximum\sMOS\s+:\s+${PREV_MAX_MOS} - ^\s*Average\sof\sERL\s+:\s+${PREV_AVG_ERL} - ^\s*Average\sof\sACOM\s+:\s+${PREV_AVG_ACOM} - ^\s*Average\sof\sloss-rate\s+:\s+${PREV_AVG_LOSS_RATE} - ^\s*Average\sof\sjitter\s+:\s+${PREV_AVG_JITTER} - ^\s*Average\sof\sMax\sdelay\s+:\s+${PREV_AVG_MAX_DELAY} - ^\s*Average\sPdd\s+:\s+${PREV_AVG_PDD} diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm deleted file mode 100644 index fd94e216d8..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway.textfsm +++ /dev/null @@ -1,55 +0,0 @@ -Value GW_STATE (\S+) -Value GW_OPERSTATUS (\S+) -Value List SOCKETS (\S+:\d+) -Value REGISTRATION_STATE (\S+) -Value RTP_MONITORING (\S+) -Value REGISTRAR (\S+:\d+) -Value REGISTRAR_NBR_REGISTERED (\d+) -Value REGISTRAR_NBR_AVAILABLE (\d+) -Value BW_USED (\d+) -Value CAC (\d+) -Value BW_UNUSED (\d+) -Value THOLD_BW_TO_SWITCH (\S+) -Value MAX_BW_EXCEEDED (\d+) -Value NBR_LOWER_SWITCHING (\d+) -Value REGISTRATION_ERRORS (\d+) -Value SIP_PROTOCOL_MODE (\S+) -Value SIP_PROTOCOL_CONFIGURED (\S+) -Value CURRENT_CALL (\d+) -Value CALLS_RELEASED_RTP_MONITORING (\d+) -Value AUTHENTICATION_REJECTS (\d+) -Value DROPPED_PKT (\d+) -Value DROPPED_PKT_RATE_LIMIT (\d+) -Value DROPPED_PKT_MEMORY_LIMIT (\d+) -Value DROPPED_PKT_CPU_LIMIT (\d+) -Value DROPPED_PKT_ACL (\d+) -Value DROPPED_PKT_UNKNOWN_PROXY (\d+) - -Start - ^\s*Sip-Gateway\sstatistics - ^\s*Gateway\sstate\s+${GW_STATE} - ^\s*Operstatus\s+${GW_OPERSTATUS} - ^\s*Sockidx:\s*\d+,\s*${SOCKETS} - ^\s*Registration\sstate\s+${REGISTRATION_STATE} - ^\s*RTP\smonitoring\s+${RTP_MONITORING} - ^\s*Nb\sRegistered\sendpoints - ^\s*\[${REGISTRAR_NBR_REGISTERED}\/${REGISTRAR_NBR_AVAILABLE}\]\s+${REGISTRAR} - ^\s*Bandwidth\sreally\sused\/CAC\svalue\/unused\s+${BW_USED}\s*\/\s*${CAC}\s*\/\s*${BW_UNUSED} - ^\s*Threshold\sof\sbandwidth\sto\sswitch\s+${THOLD_BW_TO_SWITCH} - ^\s*Max\sBandwidth\sexceeded\s+${MAX_BW_EXCEEDED} - ^\s*Number\sof\slower\sswitching\s+${NBR_LOWER_SWITCHING} - ^\s*Registration\serrors\s+${REGISTRATION_ERRORS} - ^\s*Current\ssip-protocol-mode\s+${SIP_PROTOCOL_MODE}\s*\(config\s*:\s*${SIP_PROTOCOL_CONFIGURED}\) - ^\s*Current\scall\s+${CURRENT_CALL} - ^\s*Calls\sreleased\sby\srtp\smonitoring\s+${CALLS_RELEASED_RTP_MONITORING} - ^\s*Authentication\sRejects\s+${AUTHENTICATION_REJECTS} - ^\s*Dropped\spackets\s+${DROPPED_PKT} - ^\s*due\sto\srate\slimitation\s+${DROPPED_PKT_RATE_LIMIT} - ^\s*due\sto\smemory\slimitation\s+${DROPPED_PKT_MEMORY_LIMIT} - ^\s*due\sto\sCPU\slimitation\s+${DROPPED_PKT_CPU_LIMIT} - ^\s*due\sto\sdenied\sby\sacl\s+${DROPPED_PKT_ACL} - ^\s*due\sto\sunknown\sproxy\s+${DROPPED_PKT_UNKNOWN_PROXY} - ^.* - ^\s*$$ - ^. -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm deleted file mode 100644 index 0a476636c1..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_sip-gateway_reset.textfsm +++ /dev/null @@ -1,4 +0,0 @@ -Value TODO (.*) - -Start - ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm deleted file mode 100644 index a54a2adf8f..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_all.textfsm +++ /dev/null @@ -1,10 +0,0 @@ -Value Required PORT (\d+) -Value Required LP (\d+) -Value SENSE (\S+|\S+\s\[\S+\]) -Value IF_STATE (\w+) -Value VP_STATE (\w+) - -Start - ^\s*port\s+:\s+${PORT}\s+lp\s+:\s+${LP}\s+sense\s+:\s+${SENSE}\s+(if-state\s+:\s+${IF_STATE})?\s*\(?vp-state\s*:\s+${VP_STATE}\s*\)? -> Record - ^\s*$$ - ^. -> Error \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm deleted file mode 100644 index 78fe7c4404..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all.textfsm +++ /dev/null @@ -1,89 +0,0 @@ -Value Required PORT (\d+\/\d+) -Value PHYSICAL_TYPE (\S+) -Value PROTO_DESCRIPTOR (\S+) -Value CONFIG_STATE (\S+) -Value LOOP_STATE (\S+) -Value FRAMING (\S+) -Value L1_STATUS (\S+) -Value AIS (\S+) -Value LOS (\S+) -Value RAI (\S+) -Value PRI_AIS_OCCURRENCES (\d+) -Value PRI_LOS_OCCURRENCES (\d+) -Value PRI_RAI_OCCURRENCES (\d+) -Value L2_STATUS (\S+) -Value PRI_TX_FRAMES_ON_D_CHANNEL (\d+) -Value PRI_RX_FRAMES_ON_D_CHANNEL (\d+) -Value ATTACHED_VOIP_DIAL_PEER (\d+) -Value NBR_VOICE_COMMunication (\d+) -Value OUTGOING_CALLS (\d+) -Value OUTGOING_FAILURES (\d+) -Value OUTGOING_FAILURES_PHYSICAL_INTF_DOWN (\d+) -Value OUTGOING_FAILURES_0_NORMAL (\d+) -Value OUTGOING_FAILURES_1_NORMAL (\d+) -Value OUTGOING_FAILURES_16_NORMAL (\d+) -Value OUTGOING_FAILURES_17_BUSY (\d+) -Value OUTGOING_FAILURES_18_NO_ANSWER (\d+) -Value OUTGOING_FAILURES_2_UNAVAILABLE_RESOURCES (\d+) -Value OUTGOING_FAILURES_3_UNAVAILABLE_SERVICE (\d+) -Value OUTGOING_FAILURES_4_SERVICE_NOT_PROVIDED (\d+) -Value OUTGOING_FAILURES_5_INVALID_MESSAGE (\d+) -Value OUTGOING_FAILURES_6_PROTOCOL (\d+) -Value OUTGOING_FAILURES_7_INTERWORKING (\d+) -Value INCOMING_CALLS (\d+) -Value INCOMING_CALLS_BACKUP_INVOKED (\d+) -Value INCOMING_FAILURES (\d+) -Value INCOMING_FAILURES_REMOTE (\d+) -Value INCOMING_FAILURES_UNKOWN_NUMBER (\d+) -Value INCOMING_FAILURES_DSP_UNAVAILABLE (\d+) -Value INCOMING_FAILURES_NO_VOIP_RESOURCE_AVAILABLE (\d+) -Value INCOMING_FAILURES_NOT_SPECIFIED (\d+) - - -Start - ^\s*voice\sport -> Continue.Record - ^\s*voice\sport\s+${PORT} - ^\s*physical\stype\s+${PHYSICAL_TYPE} - ^\s*protocol\sdescriptor\s+${PROTO_DESCRIPTOR} - ^\s*config\sstate\s+${CONFIG_STATE} - ^\s*loop\sstate\s+${LOOP_STATE} - ^\s*framing\s+${FRAMING} - ^\s*layer\s1\sstatus\s+${L1_STATUS} - ^\s*Alarm\sIndication\sSignal\s+\(AIS\)\s+${AIS} - ^\s*Loss\sOff\sSignal\s+\(LOS\)\s+${LOS} - ^\s*Remote\sAlarm\sIndication\s+\(RAI\)\s+${RAI} - ^\s*pri\sAIS\soccurrence\(s\)\s+${PRI_AIS_OCCURRENCES} - ^\s*pri\sLOS\soccurrence\(s\)\s+${PRI_LOS_OCCURRENCES} - ^\s*pri\sRAI\soccurrence\(s\)\s+${PRI_RAI_OCCURRENCES} - ^\s*layer\s2\sstatus\s+${L2_STATUS} - ^\s*pri\sTx\sframes\son\sD\schannel\s+${PRI_TX_FRAMES_ON_D_CHANNEL} - ^\s*pri\sRx\sframes\son\sD\schannel\s+${PRI_RX_FRAMES_ON_D_CHANNEL} - ^\s*attached\svoip\sdial\speer\s+${ATTACHED_VOIP_DIAL_PEER} - ^\s*number\sof\svoice\scommunication\s+${NBR_VOICE_COMMunication} - ^\s*Outgoing\scalls\s+${OUTGOING_CALLS} - ^\s*Outgoing\scalls\sfailures\s+${OUTGOING_FAILURES} - ^\s*Physical\sInterface\sdown\s+${OUTGOING_FAILURES_PHYSICAL_INTF_DOWN} - ^\s*Cause\sClass\s0\s+.*${OUTGOING_FAILURES_0_NORMAL} - ^\s*Cause\sClass\s1\s+.*${OUTGOING_FAILURES_1_NORMAL} - ^\s*Normal\sCause\s\(16\)\s+${OUTGOING_FAILURES_16_NORMAL} - ^\s*User\sbusy\s\(17\)\s+${OUTGOING_FAILURES_17_BUSY} - ^\s*No\sanswer\s\(18\)\s+${OUTGOING_FAILURES_18_NO_ANSWER} - ^\s*Cause\sClass\s2\s+.*${OUTGOING_FAILURES_2_UNAVAILABLE_RESOURCES} - ^\s*Cause\sClass\s3\s+.*${OUTGOING_FAILURES_3_UNAVAILABLE_SERVICE} - ^\s*Cause\sClass\s4\s+.*${OUTGOING_FAILURES_4_SERVICE_NOT_PROVIDED} - ^\s*Cause\sClass\s5\s+.*${OUTGOING_FAILURES_5_INVALID_MESSAGE} - ^\s*Cause\sClass\s6\s+.*${OUTGOING_FAILURES_6_PROTOCOL} - ^\s*Cause\sClass\s7\s+.*${OUTGOING_FAILURES_7_INTERWORKING} - ^\s*Incoming\scalls\s+${INCOMING_CALLS} - ^\s*Incoming\scalls\sbackup\sinvoked\s+${INCOMING_CALLS_BACKUP_INVOKED} - ^\s*Incoming\scalls\sfailures\s+${INCOMING_FAILURES} - ^\s*Remote\sfailure\s+${INCOMING_FAILURES_REMOTE} - ^\s*Unknown\snumber\s+${INCOMING_FAILURES_UNKOWN_NUMBER} - ^\s*DSP\sunavailable\s+${INCOMING_FAILURES_DSP_UNAVAILABLE} - ^\s*No\sVoIP\sresource\savailable\s+${INCOMING_FAILURES_NO_VOIP_RESOURCE_AVAILABLE} - ^\s*Not\sspecified\s+${INCOMING_FAILURES_NOT_SPECIFIED} - ^.* - ^\s*$$ - ^. -> Error - - diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm deleted file mode 100644 index 2ff4d66b92..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_histo.textfsm +++ /dev/null @@ -1,20 +0,0 @@ -Value Required PORT (\d+\/\d+) -Value PHYSICAL_TYPE (\S+) -Value PROTO_DESCRIPTOR (\S+) -Value ATTACHED_VOIP_DIAL_PEER (\d+) -Value DATE_LAST_RESET (.*) -Value MAX_CHANNELS_USED (\d+) -Value MAX_CHANNELS_AVAILABLE (\d+) - -Start - ^\s*voice\sport\s+${PORT} -> VoicePort - ^\s*$$ - ^. -> Error - -VoicePort - ^\s*physical\stype\s+${PHYSICAL_TYPE} - ^\s*protocol\sdescriptor\s+${PROTO_DESCRIPTOR} - ^\s*attached\svoip\sdial\speer\s+${ATTACHED_VOIP_DIAL_PEER} - ^\s*date\sof\slast\sreset\s+${DATE_LAST_RESET} - ^\s*max\schannel\(s\)\sused\s+${MAX_CHANNELS_USED}\/${MAX_CHANNELS_AVAILABLE} - ^\s*voice\sport\s+${PORT} -> Record VoicePort diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm deleted file mode 100644 index 0a476636c1..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voice-port_pri_all_reset.textfsm +++ /dev/null @@ -1,4 +0,0 @@ -Value TODO (.*) - -Start - ^.* \ No newline at end of file diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm deleted file mode 100644 index aa3380f850..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_active_all.textfsm +++ /dev/null @@ -1,62 +0,0 @@ -Value Required CALL_IDX (\d+) -Value CALLING_FROM (.*) -Value CALLING_TO (.*) -Value CALL_ID (.*\S) -Value CALL_STATUS (\S+) -Value CALLING_NUMBER (\S+) -Value CALLED_NUMBER (\S+) -Value SETUP_TIME (.*\S) -Value CONNEXION_TIME (.*\S) -Value List B_CHANNELS (\S+) -Value PDD_DURATION (.*) -Value ADVICE_OF_CHARGE (.*) -Value CALL_PRIORITY (\d+) -Value RTP_SRC_IP (\d+\.\d+\.\d+\.\d+) -Value RTP_SRC_PORT (\d+) -Value RTP_DST_IP (\d+\.\d+\.\d+\.\d+) -Value RTP_DST_PORT (\d+) -Value RTP_PLAY_TIME (\S+) -Value RTP_TX_CODER (.*\S) -Value RTP_RX_CODER (.*\S) -Value RTP_PKTS_RX (\d+) -Value RTP_PKTS_TX (\d+) -Value RTP_PKTS_LOST_RX (\d+) -Value RTP_PKTS_LOST_TX (\d+) -Value RTP_EXCESSIVE_JITTER (\d+) -Value RTP_MOS_CQ (\d+\.\d+) -Value RTP_MOS_LQ (\d+\.\d+) -Value RTP_ERL_DB (\d+) -Value RTP_ACOM_DB (\d+) - - -Start - # start record example: 41 - Call from - ^\s*\d+\s-\s -> Continue.Record - ^\s*\d+\/\d+\/\d+\s\d - ^\s*${CALL_IDX}\s-\sCall\sfrom\s${CALLING_FROM},\sto\s${CALLING_TO}\scall-id:\s${CALL_ID}\s${CALL_STATUS} -> NewCall - ^\s*$$ - ^.* -> Error - -NewCall - ^\s*calling\s*:\s*${CALLING_NUMBER},\s*called\s*:\s*${CALLED_NUMBER} - ^\s*setup\stime:\s*${SETUP_TIME} - ^\s*connexion\stime:\s*${CONNEXION_TIME} -> BChannels - ^\s*advice-of-charge:\s*${ADVICE_OF_CHARGE} - ^\s*call\spriority:\s${CALL_PRIORITY} - ^\s*RTP\sSource\sip\s*:${RTP_SRC_IP}\srtp:${RTP_SRC_PORT}\s*\/\s*Dest\sip\s*:${RTP_DST_IP}\srtp:${RTP_DST_PORT} -> RTP - ^\s*$$ -> Start - -BChannels - ^\s*B\schannel\s\(from\s\S+\)\s:\s${B_CHANNELS} - ^\s*PDD\sduration:\s*${PDD_DURATION} -> NewCall - -RTP - ^\s*Play\stime\s\(voice\)\s*:\s*${RTP_PLAY_TIME} - ^\s*Tx\sCoder\s*:\s*${RTP_TX_CODER}\s*;\s*Rx\sCoder\s*:\s*${RTP_RX_CODER} - ^\s*RTP\sPackets\sRX\s*\/\s*TX\s*:\s*${RTP_PKTS_RX}\s*\/\s*${RTP_PKTS_TX} - ^\s*RTP\sPacket\slost.*RX\s*\/\s*TX\s\(RTCP\sreported\)\s*:\s*(${RTP_PKTS_LOST_RX}|\-+)\s*\/\s*(${RTP_PKTS_LOST_TX}|\-+) - ^\s*Number\sof\sExcessive\sJitter\sevents\s*:\s*${RTP_EXCESSIVE_JITTER} - ^\s*MOS-CQ\s*\/\s*MOS-LQ\s*:\s*${RTP_MOS_CQ}\s*\/\s*${RTP_MOS_LQ} - ^\s*ERL\s*:\s*${RTP_ERL_DB} - ^\s*ACOM\s*:\s*${RTP_ACOM_DB} - ^\s*$$ -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm b/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm deleted file mode 100644 index 0dc63aea74..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_voice_voip-call_any_all.textfsm +++ /dev/null @@ -1,66 +0,0 @@ -Value Required CALL_IDX (\d+) -Value CALLING_FROM (.*) -Value CALLING_TO (.*) -Value CALL_ID (.*\S) -Value CALLING_NUMBER (\S+) -Value CALLED_NUMBER (\S+) -Value SETUP_TIME (.*\S) -Value CONNEXION_TIME (.*\S) -Value List B_CHANNELS (\S+) -Value DISCONNECTED_BY (.*\S) -Value DISCONNECT_CAUSE_CODE (\d+) -Value DISCONNECT_CAUSE_TEXT (.*) -Value CALL_DURATION (\S+) -Value PDD_DURATION (.*) -Value ADVICE_OF_CHARGE (.*) -Value CALL_PRIORITY (\d+) -Value RTP_SRC_IP (\d+\.\d+\.\d+\.\d+) -Value RTP_SRC_PORT (\d+) -Value RTP_DST_IP (\d+\.\d+\.\d+\.\d+) -Value RTP_DST_PORT (\d+) -Value RTP_PLAY_TIME (\S+) -Value RTP_TX_CODER (.*\S) -Value RTP_RX_CODER (.*\S) -Value RTP_PKTS_RX (\d+) -Value RTP_PKTS_TX (\d+) -Value RTP_PKTS_LOST_RX (\d+) -Value RTP_PKTS_LOST_TX (\d+) -Value RTP_EXCESSIVE_JITTER (\d+) -Value RTP_MOS_CQ (\d+\.\d+) -Value RTP_MOS_LQ (\d+\.\d+) -Value RTP_ERL_DB (\d+) -Value RTP_ACOM_DB (\d+) - - -Start - ^\s*\d+\s-\s -> Continue.Record - ^\s*\d+\/\d+\/\d+\s\d - ^\s*${CALL_IDX}\s-\sCall\sfrom\s${CALLING_FROM},\sto\s${CALLING_TO}\scall-id:\s${CALL_ID} -> NewCall - ^\s*RTP\sSource\sip\s*:${RTP_SRC_IP}\srtp:${RTP_SRC_PORT}\s*\/\s*Dest\sip\s*:${RTP_DST_IP}\srtp:${RTP_DST_PORT} -> RTP - ^\s*$$ - ^.* -> Error - -NewCall - ^\s*calling\s*:\s*${CALLING_NUMBER},\s*called\s*:\s*${CALLED_NUMBER} - ^\s*setup\stime:\s*${SETUP_TIME} - ^\s*connexion\stime:\s*${CONNEXION_TIME} -> BChannels - ^\s*call\sduration:\s*${CALL_DURATION} - ^\s*PDD\sduration:\s*${PDD_DURATION} - ^\s*advice-of-charge:\s*${ADVICE_OF_CHARGE} - ^\s*call\spriority:\s${CALL_PRIORITY} - ^\s*$$ -> Start - -BChannels - ^\s*B\schannel\s\(from\s\S+\)\s:\s${B_CHANNELS} - ^\s*disconnected\sby\s${DISCONNECTED_BY}\scause\s*:\(${DISCONNECT_CAUSE_CODE}\)\[${DISCONNECT_CAUSE_TEXT}\] -> NewCall - -RTP - ^\s*Play\stime\s\(voice\)\s*:\s*${RTP_PLAY_TIME} - ^\s*Tx\sCoder\s*:\s*${RTP_TX_CODER}\s*;\s*Rx\sCoder\s*:\s*${RTP_RX_CODER} - ^\s*RTP\sPackets\sRX\s*\/\s*TX\s*:\s*${RTP_PKTS_RX}\s*\/\s*${RTP_PKTS_TX} - ^\s*RTP\sPacket\slost.*RX\s*\/\s*TX\s\(RTCP\sreported\)\s*:\s*(${RTP_PKTS_LOST_RX}|\-+)\s*\/\s*(${RTP_PKTS_LOST_TX}|\-+) - ^\s*Number\sof\sExcessive\sJitter\sevents\s*:\s*${RTP_EXCESSIVE_JITTER} - ^\s*MOS-CQ\s*\/\s*MOS-LQ\s*:\s*${RTP_MOS_CQ}\s*\/\s*${RTP_MOS_LQ} - ^\s*ERL\s*:\s*${RTP_ERL_DB} - ^\s*ACOM\s*:\s*${RTP_ACOM_DB} - ^\s*$$ -> Start diff --git a/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm b/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm deleted file mode 100644 index 31d61df7a7..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_vrrp_interface.textfsm +++ /dev/null @@ -1,27 +0,0 @@ -Value Required IFACE (\S+(?:\s\S+)?) -Value GROUP (\d+) -Value STATE (\S+) -Value VERSION (\d+) -Value VIRTUALIP ([a-fA-F\d\.\:]+) -Value VIRTUALNETMASK ([a-fA-F\d\.\:]+) -Value VIRTUAL_MAC ([a-fA-F\d\.\:]+) -Value ADV_INTERVAL (\S+) -Value PREEMPT (\w+) -Value PREEMPT_MIN_DELAY (\d+) -Value PRIORITY (\d+) -Value MASTER_IP (\S+) -Value MASTER_PRIORITY (\S+) -Value MASTER_STATE (\S+) - - -Start - ^\S+.*\s\-\sGroup -> Continue.Record - ^${IFACE}\s\-\sGroup\s${GROUP} - ^\s+State\sis\s${STATE} - ^\s+Version\s${VERSION} - ^\s+Virtual\sIP\saddress\s${VIRTUALIP},\sNetmask\s${VIRTUALNETMASK} - ^\s+Virtual\sMAC\saddress\sis\s${VIRTUAL_MAC} - ^\s+Advertisement\sinterval\sis\s${ADV_INTERVAL}\ssec - ^\s+Preemption\sis\s${PREEMPT}(,\smin\sdelay\sis\s${PREEMPT_MIN_DELAY}\ssec)? - ^\s+Priority\s${PRIORITY} - ^\s+Master\srouter\sis\s${MASTER_IP}\s\(${MASTER_STATE}\),\spriority\sis\s${MASTER_PRIORITY} \ No newline at end of file diff --git a/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw b/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw deleted file mode 100644 index bbb51855f3..0000000000 --- a/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.raw +++ /dev/null @@ -1,2 +0,0 @@ -flash:/BSA/binaries/OneOs -flash:/BSA/config/bsaStart.cfg \ No newline at end of file diff --git a/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml b/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml deleted file mode 100644 index 5bd871861c..0000000000 --- a/tests/oneaccess_oneos/cat_bsa_bsaboot.inf/cat_bsa_bsaboot.inf.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -parsed_sample: - - bootfile: "OneOs" - bootfolder: "/BSA/binaries" - configfile: "bsaStart.cfg" - configfolder: "/BSA/config" diff --git a/tests/oneaccess_oneos/hostname/hostname.raw b/tests/oneaccess_oneos/hostname/hostname.raw deleted file mode 100644 index 7a142ee347..0000000000 --- a/tests/oneaccess_oneos/hostname/hostname.raw +++ /dev/null @@ -1 +0,0 @@ -dops-lab-02 \ No newline at end of file diff --git a/tests/oneaccess_oneos/hostname/hostname.yml b/tests/oneaccess_oneos/hostname/hostname.yml deleted file mode 100644 index 37fc0c4258..0000000000 --- a/tests/oneaccess_oneos/hostname/hostname.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -parsed_sample: - - hostname: "dops-lab-02" diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw deleted file mode 100644 index c31fab4664..0000000000 --- a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.raw +++ /dev/null @@ -1,5 +0,0 @@ -Listing the directory /BSA/binaries -. 0 -.. 0 -OneOs 15896363 -ONEOS16-MONO_FT-V5.2R2E7_HA1.ZZZ 15848593 \ No newline at end of file diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml deleted file mode 100644 index d49f276a36..0000000000 --- a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos5.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -parsed_sample: - - file: "OneOs" - bytes: "15896363" - - file: "ONEOS16-MONO_FT-V5.2R2E7_HA1.ZZZ" - bytes: "15848593" diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw deleted file mode 100644 index c130abd224..0000000000 --- a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.raw +++ /dev/null @@ -1 +0,0 @@ --rw-r--r-- 1 105178216 Oct 6 16:10 OneOS-pCPE-ARM_pi1-6.8.4.ZZZ \ No newline at end of file diff --git a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml b/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml deleted file mode 100644 index c243116513..0000000000 --- a/tests/oneaccess_oneos/ls/ls.bsabinaries.oneos6.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -parsed_sample: - - file: "OneOS-pCPE-ARM_pi1-6.8.4.ZZZ" - bytes: "105178216" diff --git a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw deleted file mode 100644 index a8494edcc3..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.raw +++ /dev/null @@ -1,41 +0,0 @@ - Context 1 - ========= - - Cellular controller: 0 - Internal context Id: 1 - Interface : Virtual-Ethernet 1, USB-Path: /sys/class/net/wwan0 - Cellular profile : 1 - - rxSpeed/max : 0/0 - txSpeed/max : 0/0 - - Call manager state : _connected - Mtu : 1500 - Data bearer technology : LTE - - Ipv4 connection - Address : 101.194.59.47 - Subnet : 255.255.255.224 - Gateway : 101.194.59.48 - Primary Dns : 2.2.2.90 - Secondary Dns : 2.2.2.94 - Packet data connection : Connected - Last call end reason : - Data statistics : - Tx packets : 603031 - Rx packets : 572105 - Tx packet errors : 0 - Rx packet errors : 0 - Tx packet overflows : 0 - Rx packet overflows : 0 - Tx bytes : 83925324 - Rx bytes : 87179616 - - Ipv6 connection - Address : - Gateway : - Primary Dns : - Secondary Dns : - Packet data connection : - Last call end reason : - Data statistics : diff --git a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml deleted file mode 100644 index 6f75c9e415..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_context/show_cellular-radio_context.oneos6.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -parsed_sample: - - context: "1" - controller: "0" - interface: "Virtual-Ethernet 1" - cellular_profile: "1" - bearer_technology: "LTE" - ipv4_address: "101.194.59.47" - ipv4_subnet: "255.255.255.224" - ipv4_gw: "101.194.59.48" - ipv4_dns1: "2.2.2.90" - ipv4_dns2: "2.2.2.94" - data_conn: "Connected" - lastcall_end_reason: "" - tx_packets: "603031" - rx_packets: "572105" - tx_packet_errors: "0" - rx_packet_errors: "0" - tx_packet_overflow: "0" - rx_packet_overflow: "0" - tx_bytes: "83925324" - rx_bytes: "87179616" diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw deleted file mode 100644 index b0d3fca5c3..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.raw +++ /dev/null @@ -1,14 +0,0 @@ - Cellular Radio Modem Information - Manufacturer identification : Sierra Wireless, Incorporated - Equipment information : MC7455 - Boot revision identification : SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05 - Revision identification : SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05 - Equipment information (IMEI) : 359022065533630 - - SIM Card Information - SIM card status : SIM card is present - SIM International Mobile Subscriber Identity IMSI : 211104500225982 - Integrated Circuit Card ID : 89320269140114098260 - - PIN Information - PIN code status : entered OK diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml deleted file mode 100644 index 9d68e9148c..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos5.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -parsed_sample: - - manufacturer: "Sierra Wireless, Incorporated" - equipment: "MC7455" - boot_revision: "SWI9X30C_02.20.03.00 r6691 CARMD-EV-FRMWR2 2016/06/30 10:54:05" - imei: "359022065533630" - sim1_status: "present" - sim2_status: "" - imsi: "211104500225982" - card_id: "89320269140114098260" - pin_status: "entered OK" diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw deleted file mode 100644 index 1026b5a02e..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.raw +++ /dev/null @@ -1,14 +0,0 @@ - Cellular Radio Modem Information - Manufacturer identification : Quectel - Equipment information : EP06-E - Boot revision identification : - Revision identification : EP06ELAR03A07M4G - Equipment information (IMEI) : 862286066345736 - - SIM Card Information - SIM card slot 1 : SIM present - SIM card slot 2 : SIM not present - Active SIM slot : 1 - SIM card status : SIM card is present - SIM International Mobile Subscriber Identity IMSI : 202202404403339 - Integrated Circuit Card ID : 89320269640110137970 diff --git a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml deleted file mode 100644 index ab1a6061f8..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_equipment/show_cellular-radio_equipment.oneos6.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -parsed_sample: - - manufacturer: "Quectel" - equipment: "EP06-E" - boot_revision: "EP06ELAR03A07M4G" - imei: "862286066345736" - sim1_status: "present" - sim2_status: "not present" - imsi: "202202404403339" - card_id: "89320269640110137970" - pin_status: "" diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw deleted file mode 100644 index 43d0351654..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.raw +++ /dev/null @@ -1,23 +0,0 @@ - Current selected operator : Dummy Provider - Signal strength : Good - Total Ec/Io : - RSSI : -58 dBm - RSRQ : -9 dB - RSRP : -91 dBm - SNR : 23 dB - Current radio access technology : 4G - Circuit-switched register state : Registered - Packet-switched attach state : Attached - -Statistics: - Reset on loss of GPRS registration : 1 - Reset on failed initial registration : 0 - Hardware reset of modem : 0 - Unknown reset of modem : 505 - Toggle w_disable of modem : 0 - -Details: - Location Area Code (LAC) : - Cell ID : 18224898 - Tracking Area Code (TAC) : 18300 - Current Public Land Mobile Network (PLMN = MCC+MNC) : 20610 diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml deleted file mode 100644 index 10a47ebf6f..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos5.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -parsed_sample: - - operator: "Dummy Provider" - signal_strength: "Good" - rssi: "-58" - rsrq: "-9" - rsrp: "-91" - snr: "23" - radio_technology: "4G" - register_state: "Registered" - attach_state: "Attached" - resets_loss_registrations: "1" - resets_failed_registrations: "0" - resets_modem: "0" - resets_unknown: "505" - lac: "" - cell_id: "18224898" - tac: "18300" - plmn: "20610" diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw deleted file mode 100644 index 55d819a964..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.raw +++ /dev/null @@ -1,22 +0,0 @@ - Current selected operator : Dummy Provider - Signal strength : Good - Total Ec/Io : - RSSI : -70 dBm - RSRQ : -9 dB - RSRP : -96 dBm - SNR : 6 dB - Current radio access technology : 4G - Circuit-switched register state : Registered - Packet-switched attach state : Attached - -Statistics: - Reset on loss of registration : 0 - Reset on failed initial registration : 0 - Hardware reset of modem : 0 - Unknown reset of modem : 0 - -Details: - Location Area Code (LAC) : - Cell ID : 18242055 - Tracking Area Code (TAC) : 20300 - Public Land Mobile Network (PLMN = MCC+MNC) : 20610 diff --git a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml b/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml deleted file mode 100644 index c3c37d4c4c..0000000000 --- a/tests/oneaccess_oneos/show_cellular-radio_network/show_cellular-radio_context.oneos6.yml +++ /dev/null @@ -1,19 +0,0 @@ ---- -parsed_sample: - - operator: "Dummy Provider" - signal_strength: "Good" - rssi: "-70" - rsrq: "-9" - rsrp: "-96" - snr: "6" - radio_technology: "4G" - register_state: "Registered" - attach_state: "Attached" - resets_loss_registrations: "" - resets_failed_registrations: "0" - resets_modem: "0" - resets_unknown: "0" - lac: "" - cell_id: "18242055" - tac: "20300" - plmn: "20610" diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw deleted file mode 100644 index 071bec40bc..0000000000 --- a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.raw +++ /dev/null @@ -1,15 +0,0 @@ -ip forward-protocol udp 137 -ip forward-protocol udp 138 -ip forward-protocol udp 67 -ip forward-protocol udp 68 -ip forward-protocol udp 69 -ip forward-protocol udp 37 -ip forward-protocol udp 42 -ip forward-protocol udp 49 -ip forward-protocol udp 53 -Bvi 1: 0 broadcasts forwarded - 10.1.0.151 10.2.0.20 10.88.1.11 -Bvi 2: 0 broadcasts forwarded - 10.2.0.20 10.1.0.151 10.88.1.11 -Bvi 3: 0 broadcasts forwarded - 10.1.0.151 10.2.0.20 10.88.1.11 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml deleted file mode 100644 index a3ffbb14f8..0000000000 --- a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos5.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -parsed_sample: - - interface: "Bvi 1" - helpers: - - "10.1.0.151" - - "10.2.0.20" - - "10.88.1.11" - - interface: "Bvi 2" - helpers: - - "10.2.0.20" - - "10.1.0.151" - - "10.88.1.11" - - interface: "Bvi 3" - helpers: - - "10.1.0.151" - - "10.2.0.20" - - "10.88.1.11" diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw deleted file mode 100644 index 071bec40bc..0000000000 --- a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.raw +++ /dev/null @@ -1,15 +0,0 @@ -ip forward-protocol udp 137 -ip forward-protocol udp 138 -ip forward-protocol udp 67 -ip forward-protocol udp 68 -ip forward-protocol udp 69 -ip forward-protocol udp 37 -ip forward-protocol udp 42 -ip forward-protocol udp 49 -ip forward-protocol udp 53 -Bvi 1: 0 broadcasts forwarded - 10.1.0.151 10.2.0.20 10.88.1.11 -Bvi 2: 0 broadcasts forwarded - 10.2.0.20 10.1.0.151 10.88.1.11 -Bvi 3: 0 broadcasts forwarded - 10.1.0.151 10.2.0.20 10.88.1.11 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml b/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml deleted file mode 100644 index a3ffbb14f8..0000000000 --- a/tests/oneaccess_oneos/show_helpers/show_helpers.oneos6.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -parsed_sample: - - interface: "Bvi 1" - helpers: - - "10.1.0.151" - - "10.2.0.20" - - "10.88.1.11" - - interface: "Bvi 2" - helpers: - - "10.2.0.20" - - "10.1.0.151" - - "10.88.1.11" - - interface: "Bvi 3" - helpers: - - "10.1.0.151" - - "10.2.0.20" - - "10.88.1.11" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw deleted file mode 100644 index 574cc5fe0e..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.raw +++ /dev/null @@ -1,211 +0,0 @@ -GigabitEthernet 0/0 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 111 - Promiscuous mode active - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 396d21h16m, status change count 3 - Hardware address is 70:fc:8c:02:bb:4f, ARP timeout 7200 sec - Auto-negotiation, full-duplex, flowcontrol disabled - Line speed 1000000 kbps - Mean input/output rate 504776/397392 bits/s, 226/198 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.050/0.039 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 1 - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 4578563266 packets, 2133875155484 bytes, 0 queue drops - 735617600 broadcasts, 136187244 multicasts, 0 errors, 164 discards, 0 mac acl discards - 0 unknown protocols - OUT: 3838465524 packets, 2752454327149 bytes, 3357 queue drops - 20941718 broadcasts, 0 multicasts, 0 errors, 1 discards, 0 collisions -GigabitEthernet 0/1 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 112 - Promiscuous mode active - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 11d21h45m, status change count 31 - Hardware address is 70:fc:8c:06:bb:4f, ARP timeout 7200 sec - Auto-negotiation, full-duplex, flowcontrol disabled - Line speed 1000000 kbps - Mean input/output rate 243736/256456 bits/s, 152/114 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.024/0.025 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 2 - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 1125009328 packets, 189632230943 bytes, 0 queue drops - 745390714 broadcasts, 123018268 multicasts, 0 errors, 887632010 discards, 0 mac acl discards - 887631923 unknown protocols - OUT: 351229701 packets, 302436379177 bytes, 23658 queue drops - 2298782 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -GigabitEthernet 0/2 is up, line protocol is down - Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 113 - Promiscuous mode active - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 448d10h36m, status change count 0 - Hardware address is 70:fc:8c:0a:bb:4f, ARP timeout 7200 sec - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 1 - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -GigabitEthernet 0/3 is up, line protocol is down - Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 114 - Promiscuous mode active - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 448d10h36m, status change count 0 - Hardware address is 70:fc:8c:0e:bb:4f, ARP timeout 7200 sec - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 1 - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -FastEthernet 1/0 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 106 - Description: *** WAN INTERFACE *** - Encapsulation: Ethernet v2, MTU 1546 bytes - Up-time 448d10h36m, status change count 1 - Hardware address is 70:fc:8c:12:bb:4f, ARP timeout 7200 sec - Auto-negotiation, full-duplex, flowcontrol enabled - Line speed 100000 kbps - Media-type rj45 - Mean input/output rate 229312/237176 bits/s, 104/102 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.229/0.237 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: cbq - Reliability: 255/255 - IN: 3777818556 packets, 2813130486707 bytes, 0 queue drops - 608769 broadcasts, 0 multicasts, 0 errors, 608769 discards, 0 mac acl discards - 608769 unknown protocols - OUT: 3537518750 packets, 1904299986411 bytes, 1944226 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 114820 discards, 0 collisions -FastEthernet 1/0.10 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 22017 - Description: *** VDSL2 SHARED VLAN *** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 10, MTU 1500 bytes - Up-time 448d10h36m, status change count 1 - Hardware address is 70:fc:8c:12:bb:4f, ARP timeout 7200 sec - Line speed 100000 kbps - Mean input/output rate 229312/237176 bits/s, 104/102 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.229/0.237 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 3777209791 packets, 2812914388764 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 3539577808 packets, 1907203054251 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 3 errors, 0 discards, 0 collisions -Dialer 1 is up, line protocol is up - Flags: (0x90f1) POINT-TO-POINT MULTICAST, interface index is 11101 - Description: *** VT096413 - GS99999941512 - IP-VPN - ['VDSL2 SHARED VLAN'] - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK - Encapsulation: Point-to-Point Protocol, MTU 1492 bytes - Up-time 196d20h26m, status change count 7 - Internet address is 94.105.238.194/32, destination address is 94.105.238.193 - Line speed 100000 kbps, bandwidth limit 70000 kbps - Mean input/output rate 240208/217472 bits/s, 104/102 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.240/0.310 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: fifo+shaper, output queue length/depth 0/126 - Shaper: packets dequeued -763131925, burst(current/max) 874602/875000 - Reliability: 255/255 - IN: 3769467815 packets, 2899812744256 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 3531835372 packets, 1821912521847 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 0 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9902 - MTU 32768 bytes - Up-time 448d10h36m, status change count 0 - Internet address is 127.0.0.1/32 - IPv6 address is ::1/128 - IPv6 address is fe80::1/64 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 1749 packets, 164332 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 1749 packets, 164332 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 1 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9903 - Firewall zone: management - Description: *** VT096413 - GS99999941512 *** - MTU 32768 bytes - Up-time 448d10h36m, status change count 0 - Internet address is 94.105.25.111/32 - Line speed unknown - Mean input/output rate 6280/6280 bits/s, 9/9 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 6346421 packets, 472102678 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 6346427 packets, 472103054 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Bvi 1 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 9501 - Description: Connection to Customer LAN - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 396d21h16m, status change count 3 - Hardware address is 70:fc:8c:02:bb:4f, ARP timeout 7200 sec - Internet address is 192.168.5.1/24, broadcast address is 192.168.5.255 - Line speed 1000000 kbps - Mean input/output rate 504776/397352 bits/s, 226/198 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 1 - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 4578208775 packets, 2133846516522 bytes, 0 queue drops - 735617627 broadcasts, 136187246 multicasts, 0 errors, 0 discards, 0 mac acl discards - 683928098 unknown protocols - OUT: 3814474945 packets, 2750982891198 bytes, 0 queue drops - 20941724 broadcasts, 0 multicasts, 1 errors, 22341208 discards -Bvi 55 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 9555 - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 11d21h45m, status change count 31 - Hardware address is 70:fc:8c:06:bb:4f, ARP timeout 7200 sec - Internet address is 192.168.55.1/24, broadcast address is 192.168.55.255 - Line speed 1000000 kbps - Mean input/output rate 186144/256456 bits/s, 113/114 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Bridged to group 2 - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 237375069 packets, 58811387749 bytes, 0 queue drops - 182857 broadcasts, 19575274 multicasts, 0 errors, 0 discards, 0 mac acl discards - 18243239 unknown protocols - OUT: 351253527 packets, 302442538460 bytes, 0 queue drops - 2298786 broadcasts, 0 multicasts, 1 errors, 2496554 discards -Null 0 is up, line protocol is up - Flags: (0x80e1) MULTICAST, interface index is 9901 - MTU 32768 bytes - Up-time 448d10h36m, status change count 0 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Congestion Management Dropped packets: RX:0, CPU:0, Total:0 - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml deleted file mode 100644 index 38227ee779..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb140.yml +++ /dev/null @@ -1,833 +0,0 @@ ---- -parsed_sample: - - interface: "GigabitEthernet 0/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "111" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "396d21h16m" - downtime: "" - status_changes: "3" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:02:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "504776" - output_rate: "397392" - input_pps: "226" - output_pps: "198" - input_load_pct: "0.050" - output_load_pct: "0.039" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "4578563266" - in_bytes: "2133875155484" - in_qdrops: "0" - in_broadcasts: "735617600" - in_multicasts: "136187244" - in_errors: "0" - in_discards: "164" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "3838465524" - out_bytes: "2752454327149" - out_qdrops: "3357" - out_broadcasts: "20941718" - out_multicasts: "0" - out_errors: "0" - out_discards: "1" - vrf: "" - - interface: "GigabitEthernet 0/1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "112" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "11d21h45m" - downtime: "" - status_changes: "31" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:06:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "243736" - output_rate: "256456" - input_pps: "152" - output_pps: "114" - input_load_pct: "0.024" - output_load_pct: "0.025" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "2" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1125009328" - in_bytes: "189632230943" - in_qdrops: "0" - in_broadcasts: "745390714" - in_multicasts: "123018268" - in_errors: "0" - in_discards: "887632010" - in_mac_acl_discards: "0" - in_unknown_protocols: "887631923" - out_pkts: "351229701" - out_bytes: "302436379177" - out_qdrops: "23658" - out_broadcasts: "2298782" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/2" - flags: "BROADCAST MULTICAST ARP" - ifindex: "113" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "448d10h36m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:0a:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/3" - flags: "BROADCAST MULTICAST ARP" - ifindex: "114" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "448d10h36m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:0e:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "FastEthernet 1/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "106" - description: "*** WAN INTERFACE ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1546" - ipv6_mtu: "" - uptime: "448d10h36m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:12:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "100000" - bandwidth_limit_kbps: "" - sfp_mediatype: "rj45" - input_rate: "229312" - output_rate: "237176" - input_pps: "104" - output_pps: "102" - input_load_pct: "0.229" - output_load_pct: "0.237" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "cbq" - out_queue_length: "" - out_queue_depth: "" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "3777818556" - in_bytes: "2813130486707" - in_qdrops: "0" - in_broadcasts: "608769" - in_multicasts: "0" - in_errors: "0" - in_discards: "608769" - in_mac_acl_discards: "0" - in_unknown_protocols: "608769" - out_pkts: "3537518750" - out_bytes: "1904299986411" - out_qdrops: "1944226" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "114820" - vrf: "" - - interface: "FastEthernet 1/0.10" - flags: "BROADCAST MULTICAST ARP" - ifindex: "22017" - description: "*** VDSL2 SHARED VLAN ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "10" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "448d10h36m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:12:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "100000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "229312" - output_rate: "237176" - input_pps: "104" - output_pps: "102" - input_load_pct: "0.229" - output_load_pct: "0.237" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "3777209791" - in_bytes: "2812914388764" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "3539577808" - out_bytes: "1907203054251" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "3" - out_discards: "0" - vrf: "" - - interface: "Dialer 1" - flags: "POINT-TO-POINT MULTICAST" - ifindex: "11101" - description: "*** VT096413 - GS99999941512 - IP-VPN - ['VDSL2 SHARED VLAN'] -\ - \ NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Point-to-Point Protocol" - vlanid: "" - ipv4_mtu: "1492" - ipv6_mtu: "" - uptime: "196d20h26m" - downtime: "" - status_changes: "7" - ipv4: "94.105.238.194/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "94.105.238.193" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "100000" - bandwidth_limit_kbps: "70000" - sfp_mediatype: "" - input_rate: "240208" - output_rate: "217472" - input_pps: "104" - output_pps: "102" - input_load_pct: "0.240" - output_load_pct: "0.310" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "fifo+shaper" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "-763131925" - shaper_burst_current: "874602" - shaper_burst_max: "875000" - reliability_value: "255" - reliability_max: "255" - in_pkts: "3769467815" - in_bytes: "2899812744256" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "3531835372" - out_bytes: "1821912521847" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 0" - flags: "LOOPBACK MULTICAST" - ifindex: "9902" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "448d10h36m" - downtime: "" - status_changes: "0" - ipv4: "127.0.0.1/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: - - "::1/128" - - "fe80::1/64" - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "1749" - in_bytes: "164332" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "1749" - out_bytes: "164332" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 1" - flags: "LOOPBACK MULTICAST" - ifindex: "9903" - description: "*** VT096413 - GS99999941512 ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "448d10h36m" - downtime: "" - status_changes: "0" - ipv4: "94.105.25.111/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "6280" - output_rate: "6280" - input_pps: "9" - output_pps: "9" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "6346421" - in_bytes: "472102678" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "6346427" - out_bytes: "472103054" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "9501" - description: "Connection to Customer LAN" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "396d21h16m" - downtime: "" - status_changes: "3" - ipv4: "192.168.5.1/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "192.168.5.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:02:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "504776" - output_rate: "397352" - input_pps: "226" - output_pps: "198" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "4578208775" - in_bytes: "2133846516522" - in_qdrops: "0" - in_broadcasts: "735617627" - in_multicasts: "136187246" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "683928098" - out_pkts: "3814474945" - out_bytes: "2750982891198" - out_qdrops: "0" - out_broadcasts: "20941724" - out_multicasts: "0" - out_errors: "1" - out_discards: "22341208" - vrf: "" - - interface: "Bvi 55" - flags: "BROADCAST MULTICAST ARP" - ifindex: "9555" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "11d21h45m" - downtime: "" - status_changes: "31" - ipv4: "192.168.55.1/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "192.168.55.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:06:bb:4f" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "186144" - output_rate: "256456" - input_pps: "113" - output_pps: "114" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "2" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "237375069" - in_bytes: "58811387749" - in_qdrops: "0" - in_broadcasts: "182857" - in_multicasts: "19575274" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "18243239" - out_pkts: "351253527" - out_bytes: "302442538460" - out_qdrops: "0" - out_broadcasts: "2298786" - out_multicasts: "0" - out_errors: "1" - out_discards: "2496554" - vrf: "" - - interface: "Null 0" - flags: "MULTICAST" - ifindex: "9901" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "448d10h36m" - downtime: "" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "0" - congestion_dropped_cpu: "0" - congestion_dropped_total: "0" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw deleted file mode 100644 index bfc6f5df69..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.raw +++ /dev/null @@ -1,154 +0,0 @@ -GigabitEthernet 0/0 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524288 - Description: *** LAN INTERFACE *** - Promiscuous mode active - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 7d16h18m, status change count 3 - Hardware address is 70:fc:8c:0f:f4:56, ARP timeout 7200 sec - Auto-negotiation, full-duplex - Line speed 1000000 kbps - media-type rj45 - Bridged to group 1 - Mean input/output rate 175872/174288 bits/s, 104/103 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 32071720 packets, 6390984357 bytes, 0 queue drops - 223105 broadcasts, 485683 multicasts, 0 errors, 25 discards - 0 unknown protocols - OUT: 29278879 packets, 5037622271 bytes, 0 queue drops - 19550 broadcasts, 2 multicasts, 0 errors, 0 discards -GigabitEthernet 0/1 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 528384 - Description: *** LAN INTERFACE *** - Promiscuous mode active - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 46d22h7m, status change count 0 - Hardware address is 70:fc:8c:13:f4:56, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Bridged to group 1 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 0/2 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 532480 - Description: *** LAN INTERFACE *** - Promiscuous mode active - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 46d22h7m, status change count 0 - Hardware address is 70:fc:8c:17:f4:56, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Bridged to group 1 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 0/3 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 536576 - Description: *** LAN INTERFACE *** - Promiscuous mode active - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 46d22h7m, status change count 0 - Hardware address is 70:fc:8c:1b:f4:56, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Bridged to group 1 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 1/0 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 589824 - Description: *** WAN INTERFACE *** - Encapsulation: Ethernet v2, IPv4 MTU 1550 bytes, IPv6 MTU 1500 bytes - Up-time 46d22h7m, status change count 1 - Hardware address is 70:fc:8c:1f:f4:56, ARP timeout 7200 sec - Auto-negotiation, full-duplex - Line speed 1000000 kbps - media-type rj45 - Mean input/output rate 186728/186520 bits/s, 115/113 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: cbq, output queue length/depth 0/0 - IN: 35088705 packets, 5965567349 bytes, 0 queue drops - 1328658 broadcasts, 2036367 multicasts, 0 errors, 3366651 discards - 0 unknown protocols - OUT: 35167795 packets, 6548403039 bytes, 11 queue drops - 942 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 1/0.300 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 590124 - Description: *** To NOS-ASR-01 Bundle-Ether1006.1041 VT111387 *** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 300, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 46d22h6m, status change count 1 - Hardware address is 70:fc:8c:1f:f4:56, ARP timeout 7200 sec - Internet address is 94.105.164.78/30, broadcast address is 94.105.164.79 - Line speed 1000000 kbps, bandwidth limit 2000 kbps - Mean input/output rate 185544/186520 bits/s, 114/113 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 31722054 packets, 5352095889 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 35167806 packets, 6548407077 bytes, 0 queue drops - 942 broadcasts, 0 multicasts, 0 errors, 4 discards -Bvi 1 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268439552 - Description: ***LAN*** - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 7d16h18m, status change count 3 - Hardware address is 70:fc:8c:0f:f4:56, ARP timeout 7200 sec - Internet address is 172.16.2.1/24, broadcast address is 172.16.2.255 - Line speed 1000000 kbps - Bridged to group 1 - Mean input/output rate 175864/174288 bits/s, 104/103 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 32071564 packets, 6387759974 bytes, 0 queue drops - 222958 broadcasts, 485677 multicasts, 0 errors, 202589 discards - 0 unknown protocols - OUT: 29278879 packets, 5037622271 bytes, 0 queue drops - 19550 broadcasts, 2 multicasts, 0 errors, 52 discards -Null 0 is up, line protocol is up - Flags: (0x1000) BROADCAST MULTICAST ARP, interface index is 1879048192 - Description: Null 0 - Up-time 46d22h7m, status change count 0 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 1 is up, line protocol is up - Flags: (0x41) LOOPBACK ARP, interface index is 1912602625 - Description: * VT111387 - - GS20210143583 * - IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes - Up-time 46d22h6m, status change count 1 - Internet address is 94.105.13.199/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml deleted file mode 100644 index 2e5f38f197..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb150.yml +++ /dev/null @@ -1,623 +0,0 @@ ---- -parsed_sample: - - interface: "GigabitEthernet 0/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524288" - description: "*** LAN INTERFACE *** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "7d16h18m" - downtime: "" - status_changes: "3" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:0f:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "175872" - output_rate: "174288" - input_pps: "104" - output_pps: "103" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "32071720" - in_bytes: "6390984357" - in_qdrops: "0" - in_broadcasts: "223105" - in_multicasts: "485683" - in_errors: "0" - in_discards: "25" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "29278879" - out_bytes: "5037622271" - out_qdrops: "0" - out_broadcasts: "19550" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "528384" - description: "*** LAN INTERFACE *** " - link_status: "up" - protocol_status: "down" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "46d22h7m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:13:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/2" - flags: "BROADCAST MULTICAST ARP" - ifindex: "532480" - description: "*** LAN INTERFACE *** " - link_status: "up" - protocol_status: "down" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "46d22h7m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:17:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/3" - flags: "BROADCAST MULTICAST ARP" - ifindex: "536576" - description: "*** LAN INTERFACE *** " - link_status: "up" - protocol_status: "down" - promiscuous_mode: "active" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "46d22h7m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:1b:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 1/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "589824" - description: "*** WAN INTERFACE *** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "46d22h7m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:1f:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "186728" - output_rate: "186520" - input_pps: "115" - output_pps: "113" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "cbq" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "35088705" - in_bytes: "5965567349" - in_qdrops: "0" - in_broadcasts: "1328658" - in_multicasts: "2036367" - in_errors: "0" - in_discards: "3366651" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "35167795" - out_bytes: "6548403039" - out_qdrops: "11" - out_broadcasts: "942" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 1/0.300" - flags: "BROADCAST MULTICAST ARP" - ifindex: "590124" - description: "*** To NOS-ASR-01 Bundle-Ether1006.1041 VT111387 *** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "300" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "46d22h6m" - downtime: "" - status_changes: "1" - ipv4: "94.105.164.78/30" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "94.105.164.79" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:1f:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "2000" - sfp_mediatype: "" - input_rate: "185544" - output_rate: "186520" - input_pps: "114" - output_pps: "113" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "31722054" - in_bytes: "5352095889" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "35167806" - out_bytes: "6548407077" - out_qdrops: "0" - out_broadcasts: "942" - out_multicasts: "0" - out_errors: "0" - out_discards: "4" - vrf: "" - - interface: "Bvi 1" - flags: "BROADCAST MULTICAST" - ifindex: "268439552" - description: "***LAN*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "7d16h18m" - downtime: "" - status_changes: "3" - ipv4: "172.16.2.1/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "172.16.2.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:0f:f4:56" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "175864" - output_rate: "174288" - input_pps: "104" - output_pps: "103" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "1" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "32071564" - in_bytes: "6387759974" - in_qdrops: "0" - in_broadcasts: "222958" - in_multicasts: "485677" - in_errors: "0" - in_discards: "202589" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "29278879" - out_bytes: "5037622271" - out_qdrops: "0" - out_broadcasts: "19550" - out_multicasts: "2" - out_errors: "0" - out_discards: "52" - vrf: "" - - interface: "Null 0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "1879048192" - description: "Null 0 " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "" - ipv6_mtu: "" - uptime: "46d22h7m" - downtime: "" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 1" - flags: "LOOPBACK ARP" - ifindex: "1912602625" - description: "* VT111387 - - GS20210143583 * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "32768" - uptime: "46d22h6m" - downtime: "" - status_changes: "1" - ipv4: "94.105.13.199/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw deleted file mode 100644 index f913925730..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.raw +++ /dev/null @@ -1,472 +0,0 @@ -GigabitEthernet 0/0 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524288 - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Auto-negotiation, full-duplex - Line speed 1000000 kbps - media-type rj45 - Mean input/output rate 10376/0 bits/s, 9/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 12518391 packets, 1271686154 bytes, 0 queue drops - 3484256 broadcasts, 8964165 multicasts, 0 errors, 739144 discards - 0 unknown protocols - OUT: 18391 packets, 4319614 bytes, 0 queue drops - 6040 broadcasts, 10366 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.11 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524299 - Description: ***New-VLAN*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 11, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 11 - Mean input/output rate 912/0 bits/s, 1/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 2006169 packets, 147626481 bytes, 0 queue drops - 697829 broadcasts, 1297736 multicasts, 0 errors, 90 discards - 0 unknown protocols - OUT: 10959 packets, 3637675 bytes, 0 queue drops - 452 broadcasts, 10075 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.16 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524304 - Description: ***IoT-VLAN*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 16, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 16 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 951933 packets, 60291014 bytes, 0 queue drops - 2916 broadcasts, 948052 multicasts, 0 errors, 92 discards - 0 unknown protocols - OUT: 890 packets, 57830 bytes, 0 queue drops - 820 broadcasts, 28 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.30 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524318 - Description: ***Wired-Data*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 30, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 30 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1067723 packets, 83911652 bytes, 0 queue drops - 75977 broadcasts, 985997 multicasts, 0 errors, 3641 discards - 0 unknown protocols - OUT: 2150 packets, 137293 bytes, 0 queue drops - 2020 broadcasts, 56 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.32 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524320 - Description: ***Wireless-Data*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 32, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 32 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1224347 packets, 97452034 bytes, 0 queue drops - 183480 broadcasts, 1011526 multicasts, 0 errors, 28132 discards - 0 unknown protocols - OUT: 1498 packets, 352048 bytes, 0 queue drops - 401 broadcasts, 195 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.100 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524388 - Description: ***Detron management*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 100, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 100 - Mean input/output rate 6984/0 bits/s, 2/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 3423184 packets, 584129862 bytes, 0 queue drops - 2482067 broadcasts, 940888 multicasts, 0 errors, 8 discards - 0 unknown protocols - OUT: 313 packets, 14422 bytes, 0 queue drops - 124 broadcasts, 2 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.111 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524399 - Description: ***VLAN Voice*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 111, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 111 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 946934 packets, 58999003 bytes, 0 queue drops - 3578 broadcasts, 941005 multicasts, 0 errors, 1175 discards - 0 unknown protocols - OUT: 1210 packets, 57232 bytes, 0 queue drops - 1175 broadcasts, 6 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.255 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524543 - Description: ***Renewi-internet-only*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 255, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 255 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 958692 packets, 63289510 bytes, 0 queue drops - 905 broadcasts, 957262 multicasts, 0 errors, 1 discards - 0 unknown protocols - OUT: 313 packets, 14422 bytes, 0 queue drops - 155 broadcasts, 2 multicasts, 0 errors, 0 discards -GigabitEthernet 0/0.256 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST ARP, interface index is 524544 - Description: ***Guest-internet-only*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 256, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Line speed 1000000 kbps - Bridged to group 256 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1200265 packets, 104533834 bytes, 0 queue drops - 37427 broadcasts, 1142644 multicasts, 0 errors, 16925 discards - 0 unknown protocols - OUT: 1058 packets, 48692 bytes, 0 queue drops - 893 broadcasts, 2 multicasts, 0 errors, 0 discards -GigabitEthernet 0/1 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 528384 - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 15d13h58m, status change count 0 - Hardware address is 70:fc:8c:18:74:86, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 0/2 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 532480 - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 15d13h58m, status change count 0 - Hardware address is 70:fc:8c:1c:74:86, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 0/3 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 536576 - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 15d13h58m, status change count 0 - Hardware address is 70:fc:8c:20:74:86, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -GigabitEthernet 1/0 is up, line protocol is down - Flags: (0x1081) BROADCAST MULTICAST ARP, interface index is 589824 - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Down-time 15d13h58m, status change count 0 - Hardware address is 70:fc:8c:24:74:86, ARP timeout 7200 sec - Unknown negotiation, duplex-unknown - Line speed unknown - media-type rj45 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Bvi 11 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268480512 - Description: ***New-VLAN*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 11, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 192.168.113.8/24, broadcast address is 192.168.113.255 - Secondary address is 1.35.8.3/28 - Line speed 1000000 kbps - Bridged to group 11 - Mean input/output rate 912/0 bits/s, 1/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 2006079 packets, 147611735 bytes, 0 queue drops - 697827 broadcasts, 1297732 multicasts, 0 errors, 746458 discards - 0 unknown protocols - OUT: 10959 packets, 3637675 bytes, 0 queue drops - 452 broadcasts, 10075 multicasts, 0 errors, 0 discards -Bvi 16 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268500992 - Description: ***IoT-VLAN*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 16, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.16.7/24, broadcast address is 10.133.16.255 - Line speed 1000000 kbps - Bridged to group 16 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 951841 packets, 60270731 bytes, 0 queue drops - 2916 broadcasts, 948051 multicasts, 0 errors, 675839 discards - 0 unknown protocols - OUT: 890 packets, 57830 bytes, 0 queue drops - 820 broadcasts, 28 multicasts, 0 errors, 0 discards -Bvi 30 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268558336 - Description: ***Wired-Data*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 30, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.30.7/24, broadcast address is 10.133.30.255 - Line speed 1000000 kbps - Bridged to group 30 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1064082 packets, 83308854 bytes, 0 queue drops - 75977 broadcasts, 985996 multicasts, 0 errors, 705770 discards - 0 unknown protocols - OUT: 2150 packets, 137293 bytes, 0 queue drops - 2020 broadcasts, 56 multicasts, 0 errors, 0 discards -Bvi 32 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268566528 - Description: ***Wireless-Data*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 32, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.32.7/24, broadcast address is 10.133.32.255 - Line speed 1000000 kbps - Bridged to group 32 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1196215 packets, 93448622 bytes, 0 queue drops - 183480 broadcasts, 1011526 multicasts, 0 errors, 711906 discards - 0 unknown protocols - OUT: 1498 packets, 352048 bytes, 0 queue drops - 401 broadcasts, 195 multicasts, 0 errors, 0 discards -Bvi 100 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268845056 - Description: ***Detron management*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 100, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.100.7/24, broadcast address is 10.133.100.255 - Line speed 1000000 kbps - Bridged to group 100 - Mean input/output rate 6984/0 bits/s, 2/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 3423176 packets, 584129223 bytes, 0 queue drops - 2482062 broadcasts, 940885 multicasts, 0 errors, 3122704 discards - 0 unknown protocols - OUT: 313 packets, 14422 bytes, 0 queue drops - 124 broadcasts, 2 multicasts, 0 errors, 0 discards -Bvi 111 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 268890112 - Description: ***VLAN Voice*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 111, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.111.7/24, broadcast address is 10.133.111.255 - Line speed 1000000 kbps - Bridged to group 111 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 945759 packets, 58912718 bytes, 0 queue drops - 3578 broadcasts, 941004 multicasts, 0 errors, 671817 discards - 0 unknown protocols - OUT: 1210 packets, 57232 bytes, 0 queue drops - 1175 broadcasts, 6 multicasts, 0 errors, 0 discards -Bvi 255 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 269479936 - Description: ***Renewi-internet-only*** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 255, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h58m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 10.133.255.7/24, broadcast address is 10.133.255.255 - Line speed 1000000 kbps - Bridged to group 255 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 958691 packets, 63289446 bytes, 0 queue drops - 905 broadcasts, 957261 multicasts, 0 errors, 672044 discards - 0 unknown protocols - OUT: 313 packets, 14422 bytes, 0 queue drops - 155 broadcasts, 2 multicasts, 0 errors, 0 discards -Bvi 256 is up, line protocol is up - Flags: (0x10c1) BROADCAST MULTICAST, interface index is 269484032 - Description: ***Guest-internet-only *** - Encapsulation: 802.1Q Virtual LAN, VLAN ID 256, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 15d13h57m, status change count 1 - Hardware address is 70:fc:8c:14:74:86, ARP timeout 7200 sec - Internet address is 172.31.133.7/24, broadcast address is 172.31.133.255 - Line speed 1000000 kbps - Bridged to group 256 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 1183340 packets, 102663453 bytes, 0 queue drops - 37427 broadcasts, 1142643 multicasts, 0 errors, 790937 discards - 0 unknown protocols - OUT: 1058 packets, 48692 bytes, 0 queue drops - 893 broadcasts, 2 multicasts, 0 errors, 0 discards -Virtual-Ethernet 1 is up, line protocol is up - Flags: (0x10d3) BROADCAST MULTICAST ARP, interface index is 402657280 - Description: * - VT113486obile access 4G - UNTRUST - IP-VPN - 4G * - This interface is associated to VRF UNTRUST - Encapsulation: Ethernet v2, IPv4 MTU 1500 bytes, IPv6 MTU 1500 bytes - Up-time 7d18h14m, status change count 13 - Internet address is 10.94.60.60/29, broadcast address is 10.94.60.63 - Line speed 50000 kbps - Mean input/output rate 13104/13400 bits/s, 11/8 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 503303 packets, 68017904 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 6 discards - 0 unknown protocols - OUT: 577910 packets, 95350536 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 2 discards -Null 0 is up, line protocol is up - Flags: (0x1000) BROADCAST MULTICAST ARP, interface index is 1879048192 - Description: Null 0 - Up-time 15d13h58m, status change count 0 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 1 is up, line protocol is up - Flags: (0x41) LOOPBACK ARP, interface index is 1912602625 - Description: * VT113486 - GS20220145291 * - IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes - Up-time 15d13h57m, status change count 1 - Internet address is 94.105.15.186/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 2 is up, line protocol is up - Flags: (0x41) LOOPBACK ARP, interface index is 1912602626 - Description: * Customer * - IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes - Up-time 15d13h57m, status change count 1 - Internet address is 172.18.2.133/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 21 is up, line protocol is up - Flags: (0x41) LOOPBACK ARP, interface index is 1912602645 - Description: * - Mobile access 4G - ANT BGP peer ip * - IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes - Up-time 15d13h57m, status change count 1 - Internet address is 192.4.21.8/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 91 is up, line protocol is up - Flags: (0x41) LOOPBACK ARP, interface index is 1912602715 - Description: * - Mobile access 4G - NOS BGP peer ip * - IPv4 MTU 32768 bytes, IPv6 MTU 32768 bytes - Up-time 15d13h57m, status change count 1 - Internet address is 192.4.91.8/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Tunnel 21 is up, line protocol is up - Flags: (0x10d3) POINT-TO-POINT MULTICAST, interface index is 1912668181 - Description: * VT113486 - Mobile access 4G - Tunnel to ANT-IPSEC-02 - IP-VPN - 4G * - Encapsulation: TUNNEL, IPv4 MTU 1434 bytes, IPv6 MTU 1476 bytes - Tunnel source 10.94.60.60, destination 94.105.25.2 - Tunnel protocol/transport GRE/IP - Tunnel protection via IPsec (profile "CM-VPN-ANT1") - This interface is associated to Tunnel VRF UNTRUST - Up-time 7d18h14m, status change count 21 - Interface is unnumbered, use address of Loopback 1(94.105.15.186) - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 95951 packets, 11888424 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards - 0 unknown protocols - OUT: 97372 packets, 11696336 bytes, 0 queue drops - 99 broadcasts, 0 multicasts, 0 errors, 2 discards -Tunnel 91 is up, line protocol is up - Flags: (0x10d3) POINT-TO-POINT MULTICAST, interface index is 1912668251 - Description: * VT113486 - Mobile access 4G - Tunnel to NOS-IPSEC-02 - IP-VPN - 4G * - Encapsulation: TUNNEL, IPv4 MTU 1434 bytes, IPv6 MTU 1476 bytes - Tunnel source 10.94.60.60, destination 94.105.25.9 - Tunnel protocol/transport GRE/IP - Tunnel protection via IPsec (profile "CM-VPN-NOS1") - This interface is associated to Tunnel VRF UNTRUST - Up-time 1d15h45m, status change count 45 - Interface is unnumbered, use address of Loopback 1(94.105.15.186) - Line speed unknown - Mean input/output rate 13088/13392 bits/s, 11/8 packets/s (over the last 4 seconds) - Reliability: 255/255 - Output queuing strategy: fifo, output queue length/depth 0/0 - IN: 379133 packets, 51559304 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 1 discards - 0 unknown protocols - OUT: 444480 packets, 78321920 bytes, 0 queue drops - 40046 broadcasts, 15 multicasts, 0 errors, 52 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml deleted file mode 100644 index 5209d3b45b..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb154.yml +++ /dev/null @@ -1,2006 +0,0 @@ ---- -parsed_sample: - - interface: "GigabitEthernet 0/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524288" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "10376" - output_rate: "0" - input_pps: "9" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "12518391" - in_bytes: "1271686154" - in_qdrops: "0" - in_broadcasts: "3484256" - in_multicasts: "8964165" - in_errors: "0" - in_discards: "739144" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "18391" - out_bytes: "4319614" - out_qdrops: "0" - out_broadcasts: "6040" - out_multicasts: "10366" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.11" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524299" - description: "***New-VLAN*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "11" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "912" - output_rate: "0" - input_pps: "1" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "11" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "2006169" - in_bytes: "147626481" - in_qdrops: "0" - in_broadcasts: "697829" - in_multicasts: "1297736" - in_errors: "0" - in_discards: "90" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "10959" - out_bytes: "3637675" - out_qdrops: "0" - out_broadcasts: "452" - out_multicasts: "10075" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.16" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524304" - description: "***IoT-VLAN*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "16" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "16" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "951933" - in_bytes: "60291014" - in_qdrops: "0" - in_broadcasts: "2916" - in_multicasts: "948052" - in_errors: "0" - in_discards: "92" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "890" - out_bytes: "57830" - out_qdrops: "0" - out_broadcasts: "820" - out_multicasts: "28" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.30" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524318" - description: "***Wired-Data*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "30" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "30" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1067723" - in_bytes: "83911652" - in_qdrops: "0" - in_broadcasts: "75977" - in_multicasts: "985997" - in_errors: "0" - in_discards: "3641" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "2150" - out_bytes: "137293" - out_qdrops: "0" - out_broadcasts: "2020" - out_multicasts: "56" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.32" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524320" - description: "***Wireless-Data*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "32" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "32" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1224347" - in_bytes: "97452034" - in_qdrops: "0" - in_broadcasts: "183480" - in_multicasts: "1011526" - in_errors: "0" - in_discards: "28132" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1498" - out_bytes: "352048" - out_qdrops: "0" - out_broadcasts: "401" - out_multicasts: "195" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.100" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524388" - description: "***Detron management*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "100" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "6984" - output_rate: "0" - input_pps: "2" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "100" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "3423184" - in_bytes: "584129862" - in_qdrops: "0" - in_broadcasts: "2482067" - in_multicasts: "940888" - in_errors: "0" - in_discards: "8" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "313" - out_bytes: "14422" - out_qdrops: "0" - out_broadcasts: "124" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.111" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524399" - description: "***VLAN Voice*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "111" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "111" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "946934" - in_bytes: "58999003" - in_qdrops: "0" - in_broadcasts: "3578" - in_multicasts: "941005" - in_errors: "0" - in_discards: "1175" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1210" - out_bytes: "57232" - out_qdrops: "0" - out_broadcasts: "1175" - out_multicasts: "6" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.255" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524543" - description: "***Renewi-internet-only*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "255" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "255" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "958692" - in_bytes: "63289510" - in_qdrops: "0" - in_broadcasts: "905" - in_multicasts: "957262" - in_errors: "0" - in_discards: "1" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "313" - out_bytes: "14422" - out_qdrops: "0" - out_broadcasts: "155" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/0.256" - flags: "BROADCAST MULTICAST ARP" - ifindex: "524544" - description: "***Guest-internet-only*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "256" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "256" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1200265" - in_bytes: "104533834" - in_qdrops: "0" - in_broadcasts: "37427" - in_multicasts: "1142644" - in_errors: "0" - in_discards: "16925" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1058" - out_bytes: "48692" - out_qdrops: "0" - out_broadcasts: "893" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "528384" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "15d13h58m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:18:74:86" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/2" - flags: "BROADCAST MULTICAST ARP" - ifindex: "532480" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "15d13h58m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:1c:74:86" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/3" - flags: "BROADCAST MULTICAST ARP" - ifindex: "536576" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "15d13h58m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:20:74:86" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 1/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "589824" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "" - downtime: "15d13h58m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:24:74:86" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 11" - flags: "BROADCAST MULTICAST" - ifindex: "268480512" - description: "***New-VLAN*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "11" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "192.168.113.8/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "192.168.113.255" - ipv4_secondary: - - "1.35.8.3/28" - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "912" - output_rate: "0" - input_pps: "1" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "11" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "2006079" - in_bytes: "147611735" - in_qdrops: "0" - in_broadcasts: "697827" - in_multicasts: "1297732" - in_errors: "0" - in_discards: "746458" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "10959" - out_bytes: "3637675" - out_qdrops: "0" - out_broadcasts: "452" - out_multicasts: "10075" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 16" - flags: "BROADCAST MULTICAST" - ifindex: "268500992" - description: "***IoT-VLAN*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "16" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.16.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.16.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "16" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "951841" - in_bytes: "60270731" - in_qdrops: "0" - in_broadcasts: "2916" - in_multicasts: "948051" - in_errors: "0" - in_discards: "675839" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "890" - out_bytes: "57830" - out_qdrops: "0" - out_broadcasts: "820" - out_multicasts: "28" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 30" - flags: "BROADCAST MULTICAST" - ifindex: "268558336" - description: "***Wired-Data*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "30" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.30.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.30.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "30" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1064082" - in_bytes: "83308854" - in_qdrops: "0" - in_broadcasts: "75977" - in_multicasts: "985996" - in_errors: "0" - in_discards: "705770" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "2150" - out_bytes: "137293" - out_qdrops: "0" - out_broadcasts: "2020" - out_multicasts: "56" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 32" - flags: "BROADCAST MULTICAST" - ifindex: "268566528" - description: "***Wireless-Data*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "32" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.32.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.32.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "32" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1196215" - in_bytes: "93448622" - in_qdrops: "0" - in_broadcasts: "183480" - in_multicasts: "1011526" - in_errors: "0" - in_discards: "711906" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1498" - out_bytes: "352048" - out_qdrops: "0" - out_broadcasts: "401" - out_multicasts: "195" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 100" - flags: "BROADCAST MULTICAST" - ifindex: "268845056" - description: "***Detron management*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "100" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.100.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.100.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "6984" - output_rate: "0" - input_pps: "2" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "100" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "3423176" - in_bytes: "584129223" - in_qdrops: "0" - in_broadcasts: "2482062" - in_multicasts: "940885" - in_errors: "0" - in_discards: "3122704" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "313" - out_bytes: "14422" - out_qdrops: "0" - out_broadcasts: "124" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 111" - flags: "BROADCAST MULTICAST" - ifindex: "268890112" - description: "***VLAN Voice*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "111" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.111.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.111.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "111" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "945759" - in_bytes: "58912718" - in_qdrops: "0" - in_broadcasts: "3578" - in_multicasts: "941004" - in_errors: "0" - in_discards: "671817" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1210" - out_bytes: "57232" - out_qdrops: "0" - out_broadcasts: "1175" - out_multicasts: "6" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 255" - flags: "BROADCAST MULTICAST" - ifindex: "269479936" - description: "***Renewi-internet-only*** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "255" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h58m" - downtime: "" - status_changes: "1" - ipv4: "10.133.255.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.133.255.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "255" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "958691" - in_bytes: "63289446" - in_qdrops: "0" - in_broadcasts: "905" - in_multicasts: "957261" - in_errors: "0" - in_discards: "672044" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "313" - out_bytes: "14422" - out_qdrops: "0" - out_broadcasts: "155" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Bvi 256" - flags: "BROADCAST MULTICAST" - ifindex: "269484032" - description: "***Guest-internet-only *** " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "802.1Q Virtual LAN" - vlanid: "256" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "172.31.133.7/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "172.31.133.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:14:74:86" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "256" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1183340" - in_bytes: "102663453" - in_qdrops: "0" - in_broadcasts: "37427" - in_multicasts: "1142643" - in_errors: "0" - in_discards: "790937" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "1058" - out_bytes: "48692" - out_qdrops: "0" - out_broadcasts: "893" - out_multicasts: "2" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Virtual-Ethernet 1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "402657280" - description: "* - VT113486obile access 4G - UNTRUST - IP-VPN - 4G * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "1500" - uptime: "7d18h14m" - downtime: "" - status_changes: "13" - ipv4: "10.94.60.60/29" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.94.60.63" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "50000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "13104" - output_rate: "13400" - input_pps: "11" - output_pps: "8" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "503303" - in_bytes: "68017904" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "6" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "577910" - out_bytes: "95350536" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "2" - vrf: "UNTRUST" - - interface: "Null 0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "1879048192" - description: "Null 0 " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "" - ipv6_mtu: "" - uptime: "15d13h58m" - downtime: "" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 1" - flags: "LOOPBACK ARP" - ifindex: "1912602625" - description: "* VT113486 - GS20220145291 * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "32768" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "94.105.15.186/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 2" - flags: "LOOPBACK ARP" - ifindex: "1912602626" - description: "* Customer * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "32768" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "172.18.2.133/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 21" - flags: "LOOPBACK ARP" - ifindex: "1912602645" - description: "* - Mobile access 4G - ANT BGP peer ip * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "32768" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "192.4.21.8/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 91" - flags: "LOOPBACK ARP" - ifindex: "1912602715" - description: "* - Mobile access 4G - NOS BGP peer ip * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "32768" - uptime: "15d13h57m" - downtime: "" - status_changes: "1" - ipv4: "192.4.91.8/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Tunnel 21" - flags: "POINT-TO-POINT MULTICAST" - ifindex: "1912668181" - description: "* VT113486 - Mobile access 4G - Tunnel to ANT-IPSEC-02 - IP-VPN\ - \ - 4G * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "TUNNEL" - vlanid: "" - ipv4_mtu: "1476" - ipv6_mtu: "1476" - uptime: "7d18h14m" - downtime: "" - status_changes: "21" - ipv4: "unnumbered" - ipv4_unnumbered_intf: "Loopback 1" - ipv4_unnumbered_ip: "94.105.15.186" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "10.94.60.60" - tunnel_destination: "94.105.25.2" - tunnel_protocol: "GRE" - tunnel_transport: "IP" - tunnel_protection_mode: "IPsec" - tunnel_protection_profile: "CM-VPN-ANT1" - tunnel_vrf: "UNTRUST" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "95951" - in_bytes: "11888424" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "97372" - out_bytes: "11696336" - out_qdrops: "0" - out_broadcasts: "99" - out_multicasts: "0" - out_errors: "0" - out_discards: "2" - vrf: "" - - interface: "Tunnel 91" - flags: "POINT-TO-POINT MULTICAST" - ifindex: "1912668251" - description: "* VT113486 - Mobile access 4G - Tunnel to NOS-IPSEC-02 - IP-VPN\ - \ - 4G * " - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "TUNNEL" - vlanid: "" - ipv4_mtu: "1476" - ipv6_mtu: "1476" - uptime: "1d15h45m" - downtime: "" - status_changes: "45" - ipv4: "unnumbered" - ipv4_unnumbered_intf: "Loopback 1" - ipv4_unnumbered_ip: "94.105.15.186" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "10.94.60.60" - tunnel_destination: "94.105.25.9" - tunnel_protocol: "GRE" - tunnel_transport: "IP" - tunnel_protection_mode: "IPsec" - tunnel_protection_profile: "CM-VPN-NOS1" - tunnel_vrf: "UNTRUST" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "13088" - output_rate: "13392" - input_pps: "11" - output_pps: "8" - input_load_pct: "" - output_load_pct: "" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "0" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "379133" - in_bytes: "51559304" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "1" - in_mac_acl_discards: "" - in_unknown_protocols: "0" - out_pkts: "444480" - out_bytes: "78321920" - out_qdrops: "0" - out_broadcasts: "40046" - out_multicasts: "15" - out_errors: "0" - out_discards: "52" - vrf: "" diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw deleted file mode 100644 index edf4360774..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.raw +++ /dev/null @@ -1,209 +0,0 @@ -GigabitEthernet 0/0 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 111 - Description: Connection to Customer LAN - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 90d17h48m, status change count 1 - Hardware address is 70:fc:8c:05:1d:9a, ARP timeout 7200 sec - Internet address is 192.168.140.3/24, broadcast address is 192.168.140.255 - Auto-negotiation, full-duplex, flowcontrol enabled - Line speed 1000000 kbps - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 1595000 packets, 104199354 bytes, 0 queue drops - 26164 broadcasts, 1567985 multicasts, 0 errors, 12 discards, 0 mac acl discards - 16 unknown protocols - OUT: 975 packets, 184194 bytes, 0 queue drops - 98 broadcasts, 14 multicasts, 0 errors, 2 discards, 0 collisions -GigabitEthernet 0/1 is down, line protocol is down - Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 112 - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 90d17h48m, status change count 0 - Hardware address is 70:fc:8c:09:1d:9a, ARP timeout 7200 sec - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -GigabitEthernet 0/2 is down, line protocol is down - Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 113 - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 90d17h48m, status change count 0 - Hardware address is 70:fc:8c:0d:1d:9a, ARP timeout 7200 sec - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -GigabitEthernet 0/3 is down, line protocol is down - Flags: (0x8022) BROADCAST MULTICAST ARP, interface index is 114 - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 90d17h48m, status change count 0 - Hardware address is 70:fc:8c:11:1d:9a, ARP timeout 7200 sec - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -GigabitEthernet 1/0 is up, line protocol is down - Flags: (0x8023) BROADCAST MULTICAST ARP, interface index is 116 - Encapsulation: Ethernet v2, MTU 1500 bytes - Down-time 90d17h48m, status change count 0 - Hardware address is 70:fc:8c:15:1d:9a, ARP timeout 7200 sec - negotiation unknown, duplex unknown - Line speed unknown - Media-type rj45 - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - Reliability: 255/255 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 collisions -Loopback 0 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9902 - MTU 32768 bytes - Up-time 90d17h48m, status change count 0 - Internet address is 127.0.0.1/32 - IPv6 address is ::1/128 - IPv6 address is fe80::1/64 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 792892 packets, 50304174 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 792892 packets, 50304174 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 1 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9903 - Description: VT93757 - MTU 32768 bytes - Up-time 90d17h48m, status change count 0 - Internet address is 94.105.19.13/32 - Line speed unknown - Mean input/output rate 8064/8064 bits/s, 11/11 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 1205685 packets, 94253106 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 1205685 packets, 94253106 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 21 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9923 - Description: *** Mobile access 4G - BGP PEER LOOPBACK *** - MTU 32768 bytes - Up-time 90d17h48m, status change count 0 - Internet address is 192.4.21.3/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 547665 packets, 27577399 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 547665 packets, 27577399 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Loopback 91 is up, line protocol is up - Flags: (0x80e9) LOOPBACK MULTICAST, interface index is 9993 - Description: *** Mobile access 4G - BGP PEER LOOPBACK *** - MTU 32768 bytes - Up-time 90d17h48m, status change count 0 - Internet address is 192.4.91.3/32 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 547767 packets, 27648173 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 547767 packets, 27648173 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Tunnel 21 is up, line protocol is up - Flags: (0x80f1) POINT-TO-POINT MULTICAST, interface index is 9822 - This interface is associated to Tunnel VRF UNTRUST - Encapsulation: TUNNEL, MTU 1434 bytes - Keepalive not set - Tunnel source 10.94.48.156, destination 94.105.25.2 - Tunnel protocol/transport GRE/IP - Up-time 1d22h3m, status change count 87 - Interface is unnumbered, use address of Loopback 1 (94.105.19.13) - Line speed 50000 kbps - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 548361 packets, 53110629 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - 0 bad checksum, 0 bad key id, 0 bad sequence - OUT: 553132 packets, 66072336 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Tunnel 91 is up, line protocol is up - Flags: (0x80f1) POINT-TO-POINT MULTICAST, interface index is 9892 - This interface is associated to Tunnel VRF UNTRUST - Encapsulation: TUNNEL, MTU 1434 bytes - Keepalive not set - Tunnel source 10.94.48.156, destination 94.105.25.9 - Tunnel protocol/transport GRE/IP - Up-time 04:03:43, status change count 267 - Interface is unnumbered, use address of Loopback 1 (94.105.19.13) - Line speed 50000 kbps - Mean input/output rate 13016/16640 bits/s, 11/12 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.026/0.033 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 1752769 packets, 208283715 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - 0 bad checksum, 0 bad key id, 0 bad sequence - OUT: 1896077 packets, 284630648 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -Null 0 is up, line protocol is up - Flags: (0x80e1) MULTICAST, interface index is 9901 - MTU 32768 bytes - Up-time 90d17h48m, status change count 0 - Line speed unknown - Mean input/output rate 0/0 bits/s, 0/0 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.000/0.000 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 0 packets, 0 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards -virtual-ethernet 1 is up, line protocol is up - Flags: (0x8063) BROADCAST MULTICAST ARP, interface index is 10701 - Description: *** Mobile access 4G testing - WAN INTF *** - This interface is associated to VRF UNTRUST - Encapsulation: Ethernet v2, MTU 1500 bytes - Up-time 47d12h55m, status change count 5 - Hardware address is 70:fc:8c:21:1d:9a, ARP timeout 7200 sec - Internet address is 10.94.48.156/29, broadcast address is 10.94.48.159 - Line speed 50000 kbps - Mean input/output rate 25040/39352 bits/s, 19/20 packets/s (over the last 4 seconds) - Mean input/output load percentage 0.050/0.078 percent (over the last 4 seconds) - Output queuing strategy: fifo, output queue length/depth 0/126 - IN: 2484298 packets, 371202556 bytes, 0 queue drops - 0 broadcasts, 0 multicasts, 0 errors, 0 discards, 0 mac acl discards - 0 unknown protocols - OUT: 2679534 packets, 421781451 bytes, 0 queue drops - 2220 broadcasts, 0 multicasts, 0 errors, 8 discards \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml b/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml deleted file mode 100644 index 2b10289876..0000000000 --- a/tests/oneaccess_oneos/show_interfaces/show_interfaces.lbb4g.yml +++ /dev/null @@ -1,901 +0,0 @@ ---- -parsed_sample: - - interface: "GigabitEthernet 0/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "111" - description: "Connection to Customer LAN" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "1" - ipv4: "192.168.140.3/24" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "192.168.140.255" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:05:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "1000000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "1595000" - in_bytes: "104199354" - in_qdrops: "0" - in_broadcasts: "26164" - in_multicasts: "1567985" - in_errors: "0" - in_discards: "12" - in_mac_acl_discards: "0" - in_unknown_protocols: "16" - out_pkts: "975" - out_bytes: "184194" - out_qdrops: "0" - out_broadcasts: "98" - out_multicasts: "14" - out_errors: "0" - out_discards: "2" - vrf: "" - - interface: "GigabitEthernet 0/1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "112" - description: "" - link_status: "down" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "90d17h48m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:09:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/2" - flags: "BROADCAST MULTICAST ARP" - ifindex: "113" - description: "" - link_status: "down" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "90d17h48m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:0d:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 0/3" - flags: "BROADCAST MULTICAST ARP" - ifindex: "114" - description: "" - link_status: "down" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "90d17h48m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:11:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "GigabitEthernet 1/0" - flags: "BROADCAST MULTICAST ARP" - ifindex: "116" - description: "" - link_status: "up" - protocol_status: "down" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "" - downtime: "90d17h48m" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:15:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "rj45" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "255" - reliability_max: "255" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 0" - flags: "LOOPBACK MULTICAST" - ifindex: "9902" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "0" - ipv4: "127.0.0.1/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: - - "::1/128" - - "fe80::1/64" - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "792892" - in_bytes: "50304174" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "792892" - out_bytes: "50304174" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 1" - flags: "LOOPBACK MULTICAST" - ifindex: "9903" - description: "VT93757" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "0" - ipv4: "94.105.19.13/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "8064" - output_rate: "8064" - input_pps: "11" - output_pps: "11" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "1205685" - in_bytes: "94253106" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "1205685" - out_bytes: "94253106" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 21" - flags: "LOOPBACK MULTICAST" - ifindex: "9923" - description: "*** Mobile access 4G - BGP PEER LOOPBACK ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "0" - ipv4: "192.4.21.3/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "547665" - in_bytes: "27577399" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "547665" - out_bytes: "27577399" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Loopback 91" - flags: "LOOPBACK MULTICAST" - ifindex: "9993" - description: "*** Mobile access 4G - BGP PEER LOOPBACK ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "0" - ipv4: "192.4.91.3/32" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "547767" - in_bytes: "27648173" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "547767" - out_bytes: "27648173" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Tunnel 21" - flags: "POINT-TO-POINT MULTICAST" - ifindex: "9822" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "TUNNEL" - vlanid: "" - ipv4_mtu: "1434" - ipv6_mtu: "" - uptime: "1d22h3m" - downtime: "" - status_changes: "87" - ipv4: "unnumbered" - ipv4_unnumbered_intf: "Loopback 1 " - ipv4_unnumbered_ip: "94.105.19.13" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "10.94.48.156" - tunnel_destination: "94.105.25.2" - tunnel_protocol: "GRE" - tunnel_transport: "IP" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "UNTRUST" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "50000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "548361" - in_bytes: "53110629" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "553132" - out_bytes: "66072336" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Tunnel 91" - flags: "POINT-TO-POINT MULTICAST" - ifindex: "9892" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "TUNNEL" - vlanid: "" - ipv4_mtu: "1434" - ipv6_mtu: "" - uptime: "04:03:43" - downtime: "" - status_changes: "267" - ipv4: "unnumbered" - ipv4_unnumbered_intf: "Loopback 1 " - ipv4_unnumbered_ip: "94.105.19.13" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "10.94.48.156" - tunnel_destination: "94.105.25.9" - tunnel_protocol: "GRE" - tunnel_transport: "IP" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "UNTRUST" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "50000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "13016" - output_rate: "16640" - input_pps: "11" - output_pps: "12" - input_load_pct: "0.026" - output_load_pct: "0.033" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "1752769" - in_bytes: "208283715" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "1896077" - out_bytes: "284630648" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "Null 0" - flags: "MULTICAST" - ifindex: "9901" - description: "" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "" - vlanid: "" - ipv4_mtu: "32768" - ipv6_mtu: "" - uptime: "90d17h48m" - downtime: "" - status_changes: "0" - ipv4: "" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "" - arp_timeout: "" - bandwidth_kbps: "" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "0" - output_rate: "0" - input_pps: "0" - output_pps: "0" - input_load_pct: "0.000" - output_load_pct: "0.000" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "0" - in_bytes: "0" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "0" - out_bytes: "0" - out_qdrops: "0" - out_broadcasts: "0" - out_multicasts: "0" - out_errors: "0" - out_discards: "0" - vrf: "" - - interface: "virtual-ethernet 1" - flags: "BROADCAST MULTICAST ARP" - ifindex: "10701" - description: "*** Mobile access 4G testing - WAN INTF ***" - link_status: "up" - protocol_status: "up" - promiscuous_mode: "" - encapsulation: "Ethernet v2" - vlanid: "" - ipv4_mtu: "1500" - ipv6_mtu: "" - uptime: "47d12h55m" - downtime: "" - status_changes: "5" - ipv4: "10.94.48.156/29" - ipv4_unnumbered_intf: "" - ipv4_unnumbered_ip: "" - ipv4_gw: "" - ipv4_broadcast: "10.94.48.159" - ipv4_secondary: [] - ipv6: [] - tunnel_source: "" - tunnel_destination: "" - tunnel_protocol: "" - tunnel_transport: "" - tunnel_protection_mode: "" - tunnel_protection_profile: "" - tunnel_vrf: "" - firewall_zone: "" - macaddress: "70:fc:8c:21:1d:9a" - arp_timeout: "7200" - bandwidth_kbps: "50000" - bandwidth_limit_kbps: "" - sfp_mediatype: "" - input_rate: "25040" - output_rate: "39352" - input_pps: "19" - output_pps: "20" - input_load_pct: "0.050" - output_load_pct: "0.078" - congestion_dropped_rx: "" - congestion_dropped_cpu: "" - congestion_dropped_total: "" - bridge_group: "" - out_queue_strategy: "fifo" - out_queue_length: "0" - out_queue_depth: "126" - shaper_pkts_dequeued: "" - shaper_burst_current: "" - shaper_burst_max: "" - reliability_value: "" - reliability_max: "" - in_pkts: "2484298" - in_bytes: "371202556" - in_qdrops: "0" - in_broadcasts: "0" - in_multicasts: "0" - in_errors: "0" - in_discards: "0" - in_mac_acl_discards: "0" - in_unknown_protocols: "0" - out_pkts: "2679534" - out_bytes: "421781451" - out_qdrops: "0" - out_broadcasts: "2220" - out_multicasts: "0" - out_errors: "0" - out_discards: "8" - vrf: "UNTRUST" diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw deleted file mode 100644 index 2f7e507c80..0000000000 --- a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.raw +++ /dev/null @@ -1,32 +0,0 @@ -interface Bvi 20, inbound IP access list GUEST_WIFI_IN - -IP access list extended GRE-Tunnel21 -permit gre host 10.94.55.207 host 94.105.25.2 log (0 matches) - -IP access list extended GRE-Tunnel11 -permit gre host 10.94.55.207 host 94.105.25.9 log (0 matches) - -IP access list extended GUEST_WIFI_IN -deny any 10.0.0.0 0.255.255.255 (0 matches) -deny any 172.16.0.0 0.15.255.255 (0 matches) -deny any 192.168.0.0 0.0.255.255 (0 matches) -permit any any (5164438 matches) - -IP access list standard 52 -permit 91.208.220.0 0.0.0.255 any (4519825 matches) - -IP access list extended MANAGEMENT_IN -permit tcp 91.208.220.0 0.0.0.255 any eq ssh (2896 matches) -permit tcp 91.208.220.0 0.0.0.255 any eq telnet (0 matches) -permit tcp 94.104.18.0 0.0.1.255 any eq ssh (0 matches) -permit tcp 94.104.18.0 0.0.1.255 any eq telnet (0 matches) -permit tcp 192.4.21.0 0.0.0.255 any eq ssh (0 matches) -permit tcp 192.4.21.0 0.0.0.255 any eq telnet (0 matches) -permit tcp 192.4.91.0 0.0.0.255 any eq ssh (0 matches) -permit tcp 192.4.91.0 0.0.0.255 any eq telnet (0 matches) -permit tcp host 10.0.96.16 10.110.0.0 0.0.255.255 eq telnet (0 matches) -permit tcp 192.0.2.0 0.0.0.255 any eq ssh (0 matches) -permit tcp 192.0.2.0 0.0.0.255 any eq telnet (0 matches) -deny any any (0 matches) - -For info on ACLs used by IPSEC, please refer to show crypto acl [detail ] command. diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml deleted file mode 100644 index c32920f35c..0000000000 --- a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos5.yml +++ /dev/null @@ -1,578 +0,0 @@ ---- -parsed_sample: - - acl_type: "extended" - acl_name: "GRE-Tunnel21" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GRE-Tunnel21" - line_num: "" - action: "permit" - protocol: "gre" - protocol_nr: "" - src_host: "10.94.55.207" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "94.105.25.2" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "log" - matches: "0" - - acl_type: "extended" - acl_name: "GRE-Tunnel11" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GRE-Tunnel11" - line_num: "" - action: "permit" - protocol: "gre" - protocol_nr: "" - src_host: "10.94.55.207" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "94.105.25.9" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "log" - matches: "0" - - acl_type: "extended" - acl_name: "GUEST_WIFI_IN" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GUEST_WIFI_IN" - line_num: "" - action: "deny" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "any" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "10.0.0.0" - dst_wildcard: "0.255.255.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "GUEST_WIFI_IN" - line_num: "" - action: "deny" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "any" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "172.16.0.0" - dst_wildcard: "0.15.255.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "GUEST_WIFI_IN" - line_num: "" - action: "deny" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "any" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "192.168.0.0" - dst_wildcard: "0.0.255.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "GUEST_WIFI_IN" - line_num: "" - action: "permit" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "any" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "5164438" - - acl_type: "standard" - acl_name: "52" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "standard" - acl_name: "52" - line_num: "" - action: "permit" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "4519825" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "ssh" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "2896" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.104.18.0" - src_wildcard: "0.0.1.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "ssh" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.104.18.0" - src_wildcard: "0.0.1.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.21.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "ssh" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.21.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.91.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "ssh" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.91.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "10.0.96.16" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "10.110.0.0" - dst_wildcard: "0.0.255.255" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.0.2.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "ssh" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.0.2.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "eq" - dst_port: "telnet" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "deny" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "any" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "any" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw deleted file mode 100644 index 92567f137d..0000000000 --- a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.raw +++ /dev/null @@ -1,42 +0,0 @@ -ip access-list standard 52 - 1 permit 91.208.220.0 0.0.0.255 (988908 matches) - -ip access-list standard 5 - 1 permit 172.16.8.0 0.0.0.255 (0 matches) - -ip access-list extended GRE-Tunnel21 - 1 permit ip 47 10.94.57.196 0.0.0.0 94.105.25.2 0.0.0.0 log (0 matches) - -ip access-list extended GRE-Tunnel91 - 1 permit ip 47 10.94.57.196 0.0.0.0 94.105.25.9 0.0.0.0 log (0 matches) - -ip access-list extended MANAGEMENT - 1 permit ip 0.0.0.0 255.255.255.255 91.208.220.0 0.0.0.255 (1273326 matches) - 2 permit ip 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 (0 matches) - -ip access-list extended REAL-TIME - -ip access-list extended PREMIUM - -ip access-list extended GOLD - -ip access-list extended SILVER - -ip access-list extended BRONZE - -ip access-list extended MANAGEMENT_IN - 1 permit tcp 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (1128 matches) - 2 permit tcp 91.208.220.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) - 3 permit tcp 94.104.18.0 0.0.1.255 0.0.0.0 255.255.255.255 22 (0 matches) - 4 permit tcp 94.104.18.0 0.0.1.255 0.0.0.0 255.255.255.255 23 (0 matches) - 5 permit tcp 94.105.225.124 0.0.0.3 0.0.0.0 255.255.255.255 22 (0 matches) - 6 permit tcp 94.105.225.124 0.0.0.3 0.0.0.0 255.255.255.255 23 (0 matches) - 7 permit tcp 192.4.21.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) - 8 permit tcp 192.4.21.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) - 9 permit tcp 192.4.91.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) - 10 permit tcp 192.4.91.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) - 11 permit tcp 10.0.96.16 0.0.0.0 10.110.0.0 0.0.255.255 23 (0 matches) - 12 permit tcp 10.0.32.16 0.0.0.0 10.110.0.0 0.0.255.255 23 (0 matches) - 13 permit tcp 192.0.2.0 0.0.0.255 0.0.0.0 255.255.255.255 22 (0 matches) - 14 permit tcp 192.0.2.0 0.0.0.255 0.0.0.0 255.255.255.255 23 (0 matches) - 15 deny ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255 (0 matches) diff --git a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml b/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml deleted file mode 100644 index 0e706417c8..0000000000 --- a/tests/oneaccess_oneos/show_ip_access-lists/show_ip_access-lists.oneos6.yml +++ /dev/null @@ -1,770 +0,0 @@ ---- -parsed_sample: - - acl_type: "standard" - acl_name: "52" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "standard" - acl_name: "52" - line_num: "1" - action: "permit" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "988908" - - acl_type: "standard" - acl_name: "5" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "standard" - acl_name: "5" - line_num: "1" - action: "permit" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "172.16.8.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "GRE-Tunnel21" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GRE-Tunnel21" - line_num: "1" - action: "permit" - protocol: "ip" - protocol_nr: "47" - src_host: "" - src_any: "" - src_network: "10.94.57.196" - src_wildcard: "0.0.0.0" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "94.105.25.2" - dst_wildcard: "0.0.0.0" - dst_port_match: "" - dst_port: "log" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "GRE-Tunnel91" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GRE-Tunnel91" - line_num: "1" - action: "permit" - protocol: "ip" - protocol_nr: "47" - src_host: "" - src_any: "" - src_network: "10.94.57.196" - src_wildcard: "0.0.0.0" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "94.105.25.9" - dst_wildcard: "0.0.0.0" - dst_port_match: "" - dst_port: "log" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "MANAGEMENT" - line_num: "1" - action: "permit" - protocol: "ip" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "0.0.0.0" - src_wildcard: "255.255.255.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "91.208.220.0" - dst_wildcard: "0.0.0.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "1273326" - - acl_type: "extended" - acl_name: "MANAGEMENT" - line_num: "2" - action: "permit" - protocol: "ip" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "REAL-TIME" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "PREMIUM" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "GOLD" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "SILVER" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "BRONZE" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "" - action: "" - protocol: "" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "" - src_wildcard: "" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "" - dst_wildcard: "" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "1" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "1128" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "2" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "91.208.220.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "3" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.104.18.0" - src_wildcard: "0.0.1.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "4" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.104.18.0" - src_wildcard: "0.0.1.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "5" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.105.225.124" - src_wildcard: "0.0.0.3" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "6" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "94.105.225.124" - src_wildcard: "0.0.0.3" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "7" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.21.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "8" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.21.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "9" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.91.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "10" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.4.91.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "11" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "10.0.96.16" - src_wildcard: "0.0.0.0" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "10.110.0.0" - dst_wildcard: "0.0.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "12" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "10.0.32.16" - src_wildcard: "0.0.0.0" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "10.110.0.0" - dst_wildcard: "0.0.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "13" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.0.2.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "22" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "14" - action: "permit" - protocol: "tcp" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "192.0.2.0" - src_wildcard: "0.0.0.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "23" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" - - acl_type: "extended" - acl_name: "MANAGEMENT_IN" - line_num: "15" - action: "deny" - protocol: "ip" - protocol_nr: "" - src_host: "" - src_any: "" - src_network: "0.0.0.0" - src_wildcard: "255.255.255.255" - src_port_match: "" - src_port: "" - src_port_range_start: "" - src_port_range_end: "" - dst_host: "" - dst_any: "" - dst_network: "0.0.0.0" - dst_wildcard: "255.255.255.255" - dst_port_match: "" - dst_port: "" - dst_port_range_start: "" - dst_port_range_end: "" - log: "" - matches: "0" diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw deleted file mode 100644 index 848969e923..0000000000 --- a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.raw +++ /dev/null @@ -1,2 +0,0 @@ -AS path access list 102 - permit ^$ diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml deleted file mode 100644 index 96b39fa8e5..0000000000 --- a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos5.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -parsed_sample: - - name: "102" - entries: - - "permit ^$" diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw deleted file mode 100644 index 848969e923..0000000000 --- a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.raw +++ /dev/null @@ -1,2 +0,0 @@ -AS path access list 102 - permit ^$ diff --git a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml b/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml deleted file mode 100644 index 96b39fa8e5..0000000000 --- a/tests/oneaccess_oneos/show_ip_as-path-access-list/show_ip_as-path-access-list.oneos6.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -parsed_sample: - - name: "102" - entries: - - "permit ^$" diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw deleted file mode 100644 index dd795cccc2..0000000000 --- a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw +++ /dev/null @@ -1,7 +0,0 @@ - VRF Name VRF Id Interfaces - MODEM 1 FastEthernet 1/0.1 - INTERNET 2 Dialer 2 - Dialer 3 - Loopback 777 - Bvi 10 - TEST 3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml deleted file mode 100644 index 60a8e0587e..0000000000 --- a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -parsed_sample: - - vrf: "MODEM" - vrf_id: "1" - interfaces: - - "FastEthernet 1/0.1" - - vrf: "INTERNET" - vrf_id: "2" - interfaces: - - "Dialer 2" - - "Dialer 3" - - "Loopback 777" - - "Bvi 10" - - vrf: "TEST" - vrf_id: "3" - interfaces: [] diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw deleted file mode 100644 index a0eecf35ea..0000000000 --- a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw +++ /dev/null @@ -1,8 +0,0 @@ -AUTO_PROVISIONING_0001 5 Dialer 32 -CORPORATE_INTERNET_0001 3 GigabitEthernet 0/0 -MODEM 4 GigabitEthernet 1/0.1 -O_SWOPS_LAB_0001 6 Dialer 3 -TRUST 7 -UNTRUST 2 GigabitEthernet 0/1 - Virtual-Ethernet 1 -Yavuz 8 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml deleted file mode 100644 index 6ca7c26784..0000000000 --- a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -parsed_sample: - - vrf: "AUTO_PROVISIONING_0001" - vrf_id: "5" - interfaces: - - "Dialer 32" - - vrf: "CORPORATE_INTERNET_0001" - vrf_id: "3" - interfaces: - - "GigabitEthernet 0/0" - - vrf: "MODEM" - vrf_id: "4" - interfaces: - - "GigabitEthernet 1/0.1" - - vrf: "O_SWOPS_LAB_0001" - vrf_id: "6" - interfaces: - - "Dialer 3" - - vrf: "TRUST" - vrf_id: "7" - interfaces: [] - - vrf: "UNTRUST" - vrf_id: "2" - interfaces: - - "GigabitEthernet 0/1" - - "Virtual-Ethernet 1" - - vrf: "Yavuz" - vrf_id: "8" - interfaces: [] diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw deleted file mode 100644 index b373969207..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.raw +++ /dev/null @@ -1,7 +0,0 @@ - ISDN ACTIVE CALLS --------------------------------------------------------------------------------- -App. Call Calling Called Call Port BChan Call-ref call-id - Type Number Number Duration --------------------------------------------------------------------------------- -no isdn active calls... --------------------------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug103.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw deleted file mode 100644 index 872b24aafb..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.raw +++ /dev/null @@ -1,8 +0,0 @@ --------------------------------------------------------------------------------- - ISDN ACTIVE CALLS --------------------------------------------------------------------------------- -App. Call Calling Called Call Port BChan Call-ref call-id - Type Number Number Duration --------------------------------------------------------------------------------- -no isdn active calls... --------------------------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug212.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw deleted file mode 100644 index 5c569536bf..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.raw +++ /dev/null @@ -1,51 +0,0 @@ --------------------------------------------------------------------------------- - ISDN ACTIVE CALLS --------------------------------------------------------------------------------- -App. Call Calling Called Call Port BChan Call-ref call-id - Type Number Number Duration --------------------------------------------------------------------------------- -Voice In 38719004 027239004 19:33:37 5/0 5 22175 284 -Voice Out 15241987 32472111 00:09:50 5/0 20 14020 839 -Voice Out 14212131 32475576 00:00:22 5/0 15 22212 951 -Voice Out 36532583 32475565 00:00:36 5/0 14 21956 948 -Voice Out 24264348 32472111 00:00:46 5/0 13 21700 945 -Voice Out 89356749 32472885 00:01:14 5/0 12 20932 936 -Voice Out 477439715 32474606 00:00:50 5/0 11 21444 942 -Voice Out 14540755 32475561 00:09:24 5/0 2 14532 845 -Voice Out 32410896 32472111 00:01:32 5/0 9 20420 930 -Voice Out 89714969 32472111 00:02:02 5/0 8 19396 917 -Voice Out 50390141 32472111 00:02:21 5/0 7 19140 914 -Voice Out 93837200 32475498 00:01:39 5/0 1 20164 927 -Voice Out 32038511 32472111 00:03:32 5/0 3 18372 904 -Voice In 38719014 027239024 00:03:50 5/1 18 23786 901 -Voice In 27730100 089656580 00:06:36 5/1 4 23784 876 -Voice In 32472111 32038300 00:01:42 5/1 13 23787 926 -Voice In 32473113 0472246687 00:11:57 5/1 15 23780 799 -Voice Out 67411600 38719001 00:01:38 5/1 14 27314 928 -Voice Out 479583380 38719014 00:03:50 5/1 17 25266 900 -Voice Out 36586363 32472921 00:00:19 5/1 3 28338 952 -Voice Out 489903858 38719004 19:27:12 5/1 6 13189 331 -Voice Out 474478482 32475500 00:01:50 5/1 12 27058 924 -Voice Out 35002121 32472111 00:01:54 5/1 11 26802 921 -Voice Out 488266068 32472334 00:02:01 5/1 9 26546 918 -Voice Out 36900190 32475200 00:06:15 5/1 7 23986 881 -Voice Out 474301373 32472921 00:00:56 5/1 5 27826 937 -Voice Out 22693377 32472616 00:05:31 5/1 10 24498 888 -Voice Out 14828220 32472243 00:00:31 5/1 2 28082 949 -Voice In 38719004 027239004 19:27:12 5/3 12 22164 332 -Voice Out 53662430 32475260 00:00:50 5/3 18 14788 944 -Voice Out 37705742 32472111 00:01:54 5/3 14 12996 922 -Voice Out 92352220 32475500 00:00:50 5/3 17 14532 941 -Voice Out 494722995 32472906 00:04:39 5/3 20 10948 892 -Voice Out 32038511 32474650 00:01:37 5/3 13 13508 929 -Voice Out 34402102 32475562 00:00:55 5/3 15 14276 938 -Voice Out 27344360 32472705 00:00:17 5/3 11 15556 953 -Voice Out 11648572 32474606 00:01:14 5/3 5 14020 935 -Voice Out 22693377 32475578 00:00:27 5/3 8 15300 950 -Voice Out 499353710 38719004 19:33:37 5/3 4 18067 283 -Voice Out 25241614 32472111 00:01:44 5/3 3 13252 925 -Voice Out 32869211 32472714 00:07:43 5/3 7 8900 864 -Voice Out 14828220 32475260 00:01:29 5/3 10 13764 932 -Voice Out 495583389 32475500 00:02:07 5/3 6 12484 916 -Voice Out 33543653 32475464 00:00:43 5/3 2 15044 947 --------------------------------------------------------------------------------- \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml b/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml deleted file mode 100644 index d07a43e69a..0000000000 --- a/tests/oneaccess_oneos/show_isdn_active/show_isdn_active.plug401.yml +++ /dev/null @@ -1,398 +0,0 @@ ---- -parsed_sample: - - app: "Voice" - call_type: "In" - calling_nbr: "38719004" - called_nbr: "027239004" - duration: "19:33:37" - port: "5/0" - bchannel: "5" - call_ref: "22175" - call_id: "284" - - app: "Voice" - call_type: "Out" - calling_nbr: "15241987" - called_nbr: "32472111" - duration: "00:09:50" - port: "5/0" - bchannel: "20" - call_ref: "14020" - call_id: "839" - - app: "Voice" - call_type: "Out" - calling_nbr: "14212131" - called_nbr: "32475576" - duration: "00:00:22" - port: "5/0" - bchannel: "15" - call_ref: "22212" - call_id: "951" - - app: "Voice" - call_type: "Out" - calling_nbr: "36532583" - called_nbr: "32475565" - duration: "00:00:36" - port: "5/0" - bchannel: "14" - call_ref: "21956" - call_id: "948" - - app: "Voice" - call_type: "Out" - calling_nbr: "24264348" - called_nbr: "32472111" - duration: "00:00:46" - port: "5/0" - bchannel: "13" - call_ref: "21700" - call_id: "945" - - app: "Voice" - call_type: "Out" - calling_nbr: "89356749" - called_nbr: "32472885" - duration: "00:01:14" - port: "5/0" - bchannel: "12" - call_ref: "20932" - call_id: "936" - - app: "Voice" - call_type: "Out" - calling_nbr: "477439715" - called_nbr: "32474606" - duration: "00:00:50" - port: "5/0" - bchannel: "11" - call_ref: "21444" - call_id: "942" - - app: "Voice" - call_type: "Out" - calling_nbr: "14540755" - called_nbr: "32475561" - duration: "00:09:24" - port: "5/0" - bchannel: "2" - call_ref: "14532" - call_id: "845" - - app: "Voice" - call_type: "Out" - calling_nbr: "32410896" - called_nbr: "32472111" - duration: "00:01:32" - port: "5/0" - bchannel: "9" - call_ref: "20420" - call_id: "930" - - app: "Voice" - call_type: "Out" - calling_nbr: "89714969" - called_nbr: "32472111" - duration: "00:02:02" - port: "5/0" - bchannel: "8" - call_ref: "19396" - call_id: "917" - - app: "Voice" - call_type: "Out" - calling_nbr: "50390141" - called_nbr: "32472111" - duration: "00:02:21" - port: "5/0" - bchannel: "7" - call_ref: "19140" - call_id: "914" - - app: "Voice" - call_type: "Out" - calling_nbr: "93837200" - called_nbr: "32475498" - duration: "00:01:39" - port: "5/0" - bchannel: "1" - call_ref: "20164" - call_id: "927" - - app: "Voice" - call_type: "Out" - calling_nbr: "32038511" - called_nbr: "32472111" - duration: "00:03:32" - port: "5/0" - bchannel: "3" - call_ref: "18372" - call_id: "904" - - app: "Voice" - call_type: "In" - calling_nbr: "38719014" - called_nbr: "027239024" - duration: "00:03:50" - port: "5/1" - bchannel: "18" - call_ref: "23786" - call_id: "901" - - app: "Voice" - call_type: "In" - calling_nbr: "27730100" - called_nbr: "089656580" - duration: "00:06:36" - port: "5/1" - bchannel: "4" - call_ref: "23784" - call_id: "876" - - app: "Voice" - call_type: "In" - calling_nbr: "32472111" - called_nbr: "32038300" - duration: "00:01:42" - port: "5/1" - bchannel: "13" - call_ref: "23787" - call_id: "926" - - app: "Voice" - call_type: "In" - calling_nbr: "32473113" - called_nbr: "0472246687" - duration: "00:11:57" - port: "5/1" - bchannel: "15" - call_ref: "23780" - call_id: "799" - - app: "Voice" - call_type: "Out" - calling_nbr: "67411600" - called_nbr: "38719001" - duration: "00:01:38" - port: "5/1" - bchannel: "14" - call_ref: "27314" - call_id: "928" - - app: "Voice" - call_type: "Out" - calling_nbr: "479583380" - called_nbr: "38719014" - duration: "00:03:50" - port: "5/1" - bchannel: "17" - call_ref: "25266" - call_id: "900" - - app: "Voice" - call_type: "Out" - calling_nbr: "36586363" - called_nbr: "32472921" - duration: "00:00:19" - port: "5/1" - bchannel: "3" - call_ref: "28338" - call_id: "952" - - app: "Voice" - call_type: "Out" - calling_nbr: "489903858" - called_nbr: "38719004" - duration: "19:27:12" - port: "5/1" - bchannel: "6" - call_ref: "13189" - call_id: "331" - - app: "Voice" - call_type: "Out" - calling_nbr: "474478482" - called_nbr: "32475500" - duration: "00:01:50" - port: "5/1" - bchannel: "12" - call_ref: "27058" - call_id: "924" - - app: "Voice" - call_type: "Out" - calling_nbr: "35002121" - called_nbr: "32472111" - duration: "00:01:54" - port: "5/1" - bchannel: "11" - call_ref: "26802" - call_id: "921" - - app: "Voice" - call_type: "Out" - calling_nbr: "488266068" - called_nbr: "32472334" - duration: "00:02:01" - port: "5/1" - bchannel: "9" - call_ref: "26546" - call_id: "918" - - app: "Voice" - call_type: "Out" - calling_nbr: "36900190" - called_nbr: "32475200" - duration: "00:06:15" - port: "5/1" - bchannel: "7" - call_ref: "23986" - call_id: "881" - - app: "Voice" - call_type: "Out" - calling_nbr: "474301373" - called_nbr: "32472921" - duration: "00:00:56" - port: "5/1" - bchannel: "5" - call_ref: "27826" - call_id: "937" - - app: "Voice" - call_type: "Out" - calling_nbr: "22693377" - called_nbr: "32472616" - duration: "00:05:31" - port: "5/1" - bchannel: "10" - call_ref: "24498" - call_id: "888" - - app: "Voice" - call_type: "Out" - calling_nbr: "14828220" - called_nbr: "32472243" - duration: "00:00:31" - port: "5/1" - bchannel: "2" - call_ref: "28082" - call_id: "949" - - app: "Voice" - call_type: "In" - calling_nbr: "38719004" - called_nbr: "027239004" - duration: "19:27:12" - port: "5/3" - bchannel: "12" - call_ref: "22164" - call_id: "332" - - app: "Voice" - call_type: "Out" - calling_nbr: "53662430" - called_nbr: "32475260" - duration: "00:00:50" - port: "5/3" - bchannel: "18" - call_ref: "14788" - call_id: "944" - - app: "Voice" - call_type: "Out" - calling_nbr: "37705742" - called_nbr: "32472111" - duration: "00:01:54" - port: "5/3" - bchannel: "14" - call_ref: "12996" - call_id: "922" - - app: "Voice" - call_type: "Out" - calling_nbr: "92352220" - called_nbr: "32475500" - duration: "00:00:50" - port: "5/3" - bchannel: "17" - call_ref: "14532" - call_id: "941" - - app: "Voice" - call_type: "Out" - calling_nbr: "494722995" - called_nbr: "32472906" - duration: "00:04:39" - port: "5/3" - bchannel: "20" - call_ref: "10948" - call_id: "892" - - app: "Voice" - call_type: "Out" - calling_nbr: "32038511" - called_nbr: "32474650" - duration: "00:01:37" - port: "5/3" - bchannel: "13" - call_ref: "13508" - call_id: "929" - - app: "Voice" - call_type: "Out" - calling_nbr: "34402102" - called_nbr: "32475562" - duration: "00:00:55" - port: "5/3" - bchannel: "15" - call_ref: "14276" - call_id: "938" - - app: "Voice" - call_type: "Out" - calling_nbr: "27344360" - called_nbr: "32472705" - duration: "00:00:17" - port: "5/3" - bchannel: "11" - call_ref: "15556" - call_id: "953" - - app: "Voice" - call_type: "Out" - calling_nbr: "11648572" - called_nbr: "32474606" - duration: "00:01:14" - port: "5/3" - bchannel: "5" - call_ref: "14020" - call_id: "935" - - app: "Voice" - call_type: "Out" - calling_nbr: "22693377" - called_nbr: "32475578" - duration: "00:00:27" - port: "5/3" - bchannel: "8" - call_ref: "15300" - call_id: "950" - - app: "Voice" - call_type: "Out" - calling_nbr: "499353710" - called_nbr: "38719004" - duration: "19:33:37" - port: "5/3" - bchannel: "4" - call_ref: "18067" - call_id: "283" - - app: "Voice" - call_type: "Out" - calling_nbr: "25241614" - called_nbr: "32472111" - duration: "00:01:44" - port: "5/3" - bchannel: "3" - call_ref: "13252" - call_id: "925" - - app: "Voice" - call_type: "Out" - calling_nbr: "32869211" - called_nbr: "32472714" - duration: "00:07:43" - port: "5/3" - bchannel: "7" - call_ref: "8900" - call_id: "864" - - app: "Voice" - call_type: "Out" - calling_nbr: "14828220" - called_nbr: "32475260" - duration: "00:01:29" - port: "5/3" - bchannel: "10" - call_ref: "13764" - call_id: "932" - - app: "Voice" - call_type: "Out" - calling_nbr: "495583389" - called_nbr: "32475500" - duration: "00:02:07" - port: "5/3" - bchannel: "6" - call_ref: "12484" - call_id: "916" - - app: "Voice" - call_type: "Out" - calling_nbr: "33543653" - called_nbr: "32475464" - duration: "00:00:43" - port: "5/3" - bchannel: "2" - call_ref: "15044" - call_id: "947" diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw deleted file mode 100644 index 99408d2135..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.raw +++ /dev/null @@ -1,22 +0,0 @@ - Status of VOIP service - - 1 Dial-peer pots up. - 1 Dial-peer voip up. - - Sip-gateway status is no shutdown, - -> is registered - 1/1 ep is registered with registrar sip.blabla.be:5060 - -> IF loopback 1 [1.2.3.4] is up. - - No Sip-server, - - no voice com... - -voice led track-conditions - voice-gw any - voice-port no - -Sys LEDs -SYS LED VoIP color= GREEN , state=ON -SYS LED COM color= - , state=OFF -SYS LED Maintenance color= - , state=OFF diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml deleted file mode 100644 index e7350635ff..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug103.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -parsed_sample: - - dialpeer_pots_up: "1" - dialpeer_voip_up: "1" - sip_gateway_status: "no shutdown" - sip_gateway_registered: "registered" - sip_gateway_nbr_registered: "1" - sip_gateway_nbr_available: "1" - sip_gateway_registrar: "sip.blabla.be:5060" - sip_gateway_intf: "loopback 1" - sip_gateway_intf_ip: "1.2.3.4" - sip_gateway_intf_status: "up" - sip_server_status: "No Sip-server" - voice_com_status: "no voice com" - track_cond_voice_gw: "any" - track_cond_voice_port: "no" - sysled_voip_color: "GREEN" - sysled_voip_state: "ON" - sysled_com_color: "-" - sysled_com_state: "OFF" - sysled_maintenance_color: "-" - sysled_maintenance_state: "OFF" - sysled_pri_color: "" - sysled_pri_state: "" - sysled_bri1_color: "" - sysled_bri1_state: "" - sysled_bri2_color: "" - sysled_bri2_state: "" diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw deleted file mode 100644 index 7264496a93..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.raw +++ /dev/null @@ -1,31 +0,0 @@ - - Status of VOIP service - - 1 Dial-peer pots up. - 1 Dial-peer voip up. - - Sip-gateway status is no shutdown, - -> is registered - 1/1 ep is registered with registrar sip.blabla.be:5060 - -> IF loopback 1 [1.2.3.4] is up. - - No Sip-server, - - no voice com... - -Isdn virtual LEDs -isdnshut = 1 0 0 -Layer1State = A - - -nbcomm = 0 0 0 - -voice led track-conditions - voice-gw any - voice-port any - -Sys LEDs -SYS LED VOIP color=GREEN state=ON - -SYS LED PRI color=GREEN state=OFF -SYS LED BRI1 color=- state=OFF -SYS LED BRI2 color=- state=OFF - diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml deleted file mode 100644 index e95f48ef58..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug212.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -parsed_sample: - - dialpeer_pots_up: "1" - dialpeer_voip_up: "1" - sip_gateway_status: "no shutdown" - sip_gateway_registered: "registered" - sip_gateway_nbr_registered: "1" - sip_gateway_nbr_available: "1" - sip_gateway_registrar: "sip.blabla.be:5060" - sip_gateway_intf: "loopback 1" - sip_gateway_intf_ip: "1.2.3.4" - sip_gateway_intf_status: "up" - sip_server_status: "No Sip-server" - voice_com_status: "no voice com" - track_cond_voice_gw: "any" - track_cond_voice_port: "any" - sysled_voip_color: "GREEN" - sysled_voip_state: "ON" - sysled_com_color: "" - sysled_com_state: "" - sysled_maintenance_color: "" - sysled_maintenance_state: "" - sysled_pri_color: "GREEN" - sysled_pri_state: "OFF" - sysled_bri1_color: "-" - sysled_bri1_state: "OFF" - sysled_bri2_color: "-" - sysled_bri2_state: "OFF" diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw deleted file mode 100644 index 57f35362c7..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.raw +++ /dev/null @@ -1,22 +0,0 @@ - Status of VOIP service - - 1 Dial-peer pots up. - 1 Dial-peer voip up. - - Sip-gateway status is no shutdown, - -> is registered - 1/1 ep is registered with registrar sip.blabla.be:5060 - -> IF loopback 1 [1.2.3.4] is up. - - Sip-server status is shutdown, - - no voice com... - -voice led track-conditions - voice-gw any - voice-port no - -Sys LEDs -SYS LED VoIP color= GREEN , state=ON -SYS LED COM color= - , state=OFF -SYS LED Maintenance color= - , state=OFF diff --git a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml b/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml deleted file mode 100644 index 488cca2d63..0000000000 --- a/tests/oneaccess_oneos/show_isdn_led-status/show_isdn_led-status.plug401.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -parsed_sample: - - dialpeer_pots_up: "1" - dialpeer_voip_up: "1" - sip_gateway_status: "no shutdown" - sip_gateway_registered: "registered" - sip_gateway_nbr_registered: "1" - sip_gateway_nbr_available: "1" - sip_gateway_registrar: "sip.blabla.be:5060" - sip_gateway_intf: "loopback 1" - sip_gateway_intf_ip: "1.2.3.4" - sip_gateway_intf_status: "up" - sip_server_status: "shutdown" - voice_com_status: "no voice com" - track_cond_voice_gw: "any" - track_cond_voice_port: "no" - sysled_voip_color: "GREEN" - sysled_voip_state: "ON" - sysled_com_color: "-" - sysled_com_state: "OFF" - sysled_maintenance_color: "-" - sysled_maintenance_state: "OFF" - sysled_pri_color: "" - sysled_pri_state: "" - sysled_bri1_color: "" - sysled_bri1_state: "" - sysled_bri2_color: "" - sysled_bri2_state: "" diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw deleted file mode 100644 index 0497c8bd8e..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.raw +++ /dev/null @@ -1,39 +0,0 @@ - isdn line 5/0 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state up - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) ON - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call - - isdn line 5/1 - protocol descriptor BRI_NT - config state down - -layer 1 status deactivated - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call - - isdn line 5/2 - protocol descriptor BRI_NT - config state down - -layer 1 status deactivated - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml deleted file mode 100644 index 9f60aa84f9..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug103.yml +++ /dev/null @@ -1,59 +0,0 @@ ---- -parsed_sample: - - isdn_line: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "DF" - config_state: "up" - loop_state: "down" - l1_status: "deactivated" - ais: "OFF" - los: "ON" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rdi_occurrences: "0" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] - - isdn_line: "5/1" - physical_type: "" - proto_descriptor: "BRI_NT" - proto_linecode: "" - proto_framing: "" - config_state: "down" - loop_state: "" - l1_status: "deactivated" - ais: "" - los: "" - rai: "" - pri_ais_occurrences: "" - pri_los_occurrences: "" - pri_rdi_occurrences: "" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] - - isdn_line: "5/2" - physical_type: "" - proto_descriptor: "BRI_NT" - proto_linecode: "" - proto_framing: "" - config_state: "down" - loop_state: "" - l1_status: "deactivated" - ais: "" - los: "" - rai: "" - pri_ais_occurrences: "" - pri_los_occurrences: "" - pri_rdi_occurrences: "" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw deleted file mode 100644 index c801bb1e08..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.raw +++ /dev/null @@ -1,40 +0,0 @@ - isdn line 5/0 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing MF - config state up - loop state down - -layer 1 status activated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RDI occurrence(s) 0 - -layer 2 status activated - ces= 1 , tei= 0 , state= established - Tx frames on D channel 50 - Rx frames on D channel 50 - -layer 3 status - no active call - - isdn line 5/1 - protocol descriptor BRI_NT - config state down - -layer 1 status deactivated - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call - - isdn line 5/2 - protocol descriptor BRI_NT - config state down - -layer 1 status deactivated - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml deleted file mode 100644 index d53b0969c6..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug212.yml +++ /dev/null @@ -1,59 +0,0 @@ ---- -parsed_sample: - - isdn_line: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "MF" - config_state: "up" - loop_state: "down" - l1_status: "activated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rdi_occurrences: "0" - l2_status: "activated" - l2_txframes_dchannel: "50" - l2_rxframes_dchannel: "50" - l3_active_calls: "no active call" - l3_call_details: [] - - isdn_line: "5/1" - physical_type: "" - proto_descriptor: "BRI_NT" - proto_linecode: "" - proto_framing: "" - config_state: "down" - loop_state: "" - l1_status: "deactivated" - ais: "" - los: "" - rai: "" - pri_ais_occurrences: "" - pri_los_occurrences: "" - pri_rdi_occurrences: "" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] - - isdn_line: "5/2" - physical_type: "" - proto_descriptor: "BRI_NT" - proto_linecode: "" - proto_framing: "" - config_state: "down" - loop_state: "" - l1_status: "deactivated" - ais: "" - los: "" - rai: "" - pri_ais_occurrences: "" - pri_los_occurrences: "" - pri_rdi_occurrences: "" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw deleted file mode 100644 index 3e35a52f8d..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.raw +++ /dev/null @@ -1,122 +0,0 @@ - isdn line 5/0 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state up - loop state down - -layer 1 status activated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RDI occurrence(s) 0 - -layer 2 status activated - ces= 1 , tei= 0 , state= established - Tx frames on D channel 1775901 - Rx frames on D channel 1775901 - -layer 3 status - active call 10 - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 5 , call-ref= 22175 , call-id= 284, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref= 14020 , call-id= 839, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref= 22212 , call-id= 951, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref= 21956 , call-id= 948, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=13 , call-ref= 21700 , call-id= 945, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref= 20932 , call-id= 936, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 14532 , call-id= 845, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 20420 , call-id= 930, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 19140 , call-id= 914, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 22724 , call-id= 957, IsmConnect. - - isdn line 5/1 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state up - loop state down - -layer 1 status activated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RDI occurrence(s) 0 - -layer 2 status activated - ces= 1 , tei= 0 , state= established - Tx frames on D channel 1760092 - Rx frames on D channel 1760092 - -layer 3 status - active call 14 - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=18 , call-ref= 23786 , call-id= 901, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 4 , call-ref= 23784 , call-id= 876, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=15 , call-ref= 23780 , call-id= 799, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref= 25266 , call-id= 900, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref= 28338 , call-id= 952, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 13189 , call-id= 331, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref= 27058 , call-id= 924, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref= 26802 , call-id= 921, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 26546 , call-id= 918, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 23986 , call-id= 881, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref= 28850 , call-id= 958, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref= 27826 , call-id= 937, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 28082 , call-id= 949, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref= 28594 , call-id= 955, IsmConnect. - - isdn line 5/2 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state down - loop state down - -layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RDI occurrence(s) 0 - -layer 2 status deactivated - Tx frames on D channel 0 - Rx frames on D channel 0 - -layer 3 status - no active call - - isdn line 5/3 - physical type E1 - protocol descriptor E1_PRI - linecode hdb3 - framing DF - config state up - loop state down - -layer 1 status activated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Indication Signal (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RDI occurrence(s) 0 - -layer 2 status activated - ces= 1 , tei= 0 , state= established - Tx frames on D channel 1775555 - Rx frames on D channel 1775555 - -layer 3 status - active call 16 - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=12 , call-ref= 22164 , call-id= 332, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref= 15812 , call-id= 956, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=18 , call-ref= 14788 , call-id= 944, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref= 12996 , call-id= 922, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref= 14532 , call-id= 941, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref= 10948 , call-id= 892, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref= 14276 , call-id= 938, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref= 15556 , call-id= 953, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref= 14020 , call-id= 935, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref= 15300 , call-id= 950, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 4 , call-ref= 18067 , call-id= 283, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref= 13252 , call-id= 925, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref= 8900 , call-id= 864, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref= 16068 , call-id= 959, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref= 12484 , call-id= 916, IsmConnect. - -> App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref= 15044 , call-id= 947, IsmConnect. \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml b/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml deleted file mode 100644 index f459745286..0000000000 --- a/tests/oneaccess_oneos/show_isdn_status_all/show_isdn_status_all.plug401.yml +++ /dev/null @@ -1,158 +0,0 @@ ---- -parsed_sample: - - isdn_line: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "DF" - config_state: "up" - loop_state: "down" - l1_status: "activated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rdi_occurrences: "0" - l2_status: "activated" - l2_txframes_dchannel: "1775901" - l2_rxframes_dchannel: "1775901" - l3_active_calls: "10" - l3_call_details: - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 5 , call-ref=\ - \ 22175 , call-id= 284, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref=\ - \ 14020 , call-id= 839, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref=\ - \ 22212 , call-id= 951, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref=\ - \ 21956 , call-id= 948, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=13 , call-ref=\ - \ 21700 , call-id= 945, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref=\ - \ 20932 , call-id= 936, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ - \ 14532 , call-id= 845, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ - \ 20420 , call-id= 930, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ - \ 19140 , call-id= 914, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ - \ 22724 , call-id= 957, IsmConnect." - - isdn_line: "5/1" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "DF" - config_state: "up" - loop_state: "down" - l1_status: "activated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rdi_occurrences: "0" - l2_status: "activated" - l2_txframes_dchannel: "1760092" - l2_rxframes_dchannel: "1760092" - l3_active_calls: "14" - l3_call_details: - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=18 , call-ref=\ - \ 23786 , call-id= 901, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan= 4 , call-ref=\ - \ 23784 , call-id= 876, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=15 , call-ref=\ - \ 23780 , call-id= 799, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref=\ - \ 25266 , call-id= 900, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref=\ - \ 28338 , call-id= 952, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ - \ 13189 , call-id= 331, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=12 , call-ref=\ - \ 27058 , call-id= 924, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref=\ - \ 26802 , call-id= 921, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ - \ 26546 , call-id= 918, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ - \ 23986 , call-id= 881, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref=\ - \ 28850 , call-id= 958, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref=\ - \ 27826 , call-id= 937, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ - \ 28082 , call-id= 949, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref=\ - \ 28594 , call-id= 955, IsmConnect." - - isdn_line: "5/2" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "DF" - config_state: "down" - loop_state: "down" - l1_status: "deactivated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rdi_occurrences: "0" - l2_status: "deactivated" - l2_txframes_dchannel: "0" - l2_rxframes_dchannel: "0" - l3_active_calls: "no active call" - l3_call_details: [] - - isdn_line: "5/3" - physical_type: "E1" - proto_descriptor: "E1_PRI" - proto_linecode: "hdb3" - proto_framing: "DF" - config_state: "up" - loop_state: "down" - l1_status: "activated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rdi_occurrences: "0" - l2_status: "activated" - l2_txframes_dchannel: "1775555" - l2_rxframes_dchannel: "1775555" - l3_active_calls: "16" - l3_call_details: - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type= In , BChan=12 , call-ref=\ - \ 22164 , call-id= 332, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 1 , call-ref=\ - \ 15812 , call-id= 956, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=18 , call-ref=\ - \ 14788 , call-id= 944, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=14 , call-ref=\ - \ 12996 , call-id= 922, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=17 , call-ref=\ - \ 14532 , call-id= 941, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=20 , call-ref=\ - \ 10948 , call-id= 892, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=15 , call-ref=\ - \ 14276 , call-id= 938, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan=11 , call-ref=\ - \ 15556 , call-id= 953, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 5 , call-ref=\ - \ 14020 , call-id= 935, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 8 , call-ref=\ - \ 15300 , call-id= 950, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 4 , call-ref=\ - \ 18067 , call-id= 283, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 3 , call-ref=\ - \ 13252 , call-id= 925, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 7 , call-ref=\ - \ 8900 , call-id= 864, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 9 , call-ref=\ - \ 16068 , call-id= 959, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 6 , call-ref=\ - \ 12484 , call-id= 916, IsmConnect." - - "App=Voice , BC=[Speech,64 kbit/s,G.711 A-law], type=Out , BChan= 2 , call-ref=\ - \ 15044 , call-id= 947, IsmConnect." diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw deleted file mode 100644 index 66d5778003..0000000000 --- a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.raw +++ /dev/null @@ -1,27 +0,0 @@ -=============================================== -| Memory status report | Kbytes | | -=============================================== -| Ram size | 262 144 | | -| :..Program | 41 171 | | -| : :..code | 30 715 | | -| : :..data | 10 455 | | -| :..Static buffers | 192 | | -| :..Dynamic total | 213 604 | | -| : : used | 46 847 | 21.9% | -| : : free | 166 757 | 78.0% | -| : :..System total | 213 604 | | -| : used | 46 847 | 21.9% | -| : free | 166 757 | 78.0% | -| :..Ram disk total | 1 011 | | -| used | 74 | 7.4% | -| free | 937 | 92.7% | -| | | | -| Flash size | 2 048 | | -| :..Boot | 1 024 | | -| :..Static areas | 200 | | -| | | | -| Extended Flash size | 65 536 | | -| :..Flash disk total | 64 688 | | -| used | 31 176 | 48.1% | -| free | 33 512 | 51.8% | -=============================================== \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml b/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml deleted file mode 100644 index a06485b016..0000000000 --- a/tests/oneaccess_oneos/show_memory/show_memory.oneos5.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -parsed_sample: - - ram: "262 144" - boot_size: "1 024" - flash_size: "65 536" - user_partition_total: "64 688" - user_partition_used: "31 176" - user_partition_free: "33 512" diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw deleted file mode 100644 index 63ba8ec6b8..0000000000 --- a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.raw +++ /dev/null @@ -1,33 +0,0 @@ -================================================================================ -| Memory status report | Total | Free | Use % | -================================================================================ -| Memory Total | 1.0GiB | | | -|----------------------------------------------|----------|----------|---------| -| Shared Partition | | | | -| - Shared Pool | 31.9MiB | 27.7MiB | 13.3% | -| | | | | -| Control Partition | | | | -| - Linux RAM (*) | 546.1MiB | 183.4MiB | 66.4% | -| - system free | | 102.7MiB | | -| - Linux cached | 127.9MiB | | | -| - Linux buffers | 8.7MiB | | | -| - Linux File Systems | | | | -| - root | 273.0MiB | 268.4MiB | 1.7% | -| - tmp | na |used:51MiB| 90.0% | -| | | | | -| Forwarding Partition | | | | -| - Shared Pool | 249.9MiB | 233.1MiB | 6.7% | -| - Core 0 Pool | 1.9MiB | 1.4MiB | 25.8% | -| - Binary | 3.2MiB | | | -| | | | | -================================================================================ -| Flash Total | 512.0MiB | | | -|----------------------------------------------|----------|----------|---------| -| Boot Partition | 100.0MiB | | | -| | | | | -| File systems | 412.0MiB | | | -| - user | 366.9MiB | 85.4MiB | 76.7% | -================================================================================ -| Removable disks | | | | -|----------------------------------------------|----------|----------|---------| -================================================================================ diff --git a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml b/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml deleted file mode 100644 index 342ff1b0bd..0000000000 --- a/tests/oneaccess_oneos/show_memory/show_memory.oneos6.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -parsed_sample: - - ram: "1.0GiB" - boot_size: "100.0MiB" - flash_size: "512.0MiB" - user_partition_total: "366.9MiB" - user_partition_used: "76.7%" - user_partition_free: "85.4MiB" diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw deleted file mode 100644 index ed41bf9278..0000000000 --- a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.raw +++ /dev/null @@ -1,446 +0,0 @@ -FastEthernet 1/0: service-policy output L3VPN_SHARED_VLAN_SHAPE_CE_OUT -traffic statistics: - Class 'CLASS_ANY': - 705455781 packets, 202655648081 bytes, 0 dscp remarked, mean input rate 76250 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Service-policy L3VPN_SHARED_QOS_CE_OUT : - Class 'REAL-TIME': color-blind mode - 82440 packets, 22296428 bytes, mean input rate 0 bits/s - cir 512 kbits/s, cbs 6400 bytes - conformed 79705 packets, 20216566 bytes; action: set-dscp-transmit 46 - exceeded 2735 packets, 2079862 bytes; action: drop - Class 'MANAGEMENT': - 3881496 packets, 352515276 bytes, 0 dscp remarked, mean input rate 76250 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'ROUTING': - 94685677 packets, 20577282182 bytes, 0 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'PREMIUM': - 866614 packets, 336167380 bytes, 17 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'GOLD': - 45391 packets, 15054274 bytes, 111 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'SILVER': - 5160082 packets, 2081326098 bytes, 968 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'BRONZE': - 76569 packets, 28162916 bytes, 70513 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'class-default': - 600657514 packets, 179242844271 bytes, 0 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - Class 'class-default': - 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s - Packets dropped by Congestion Management: CPU:0 Rx:0 Total:0 - -output queuing statistics: - Class 'CLASS_ANY': medium priority (no excess allowed) - bandwidth 33250 kb/s, burst 81872 bytes - mean input rate 73400 bits/s, mean output rate 73400 bits/s - packets output 700594742, packets dropped 707805 (0%) - bytes output 222578689918, bytes dropped 939630669 (0%) - Service-policy L3VPN_SHARED_QOS_CE_OUT : - Class 'REAL-TIME': high priority - bandwidth 512 kb/s, burst 32249 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 79705, packets dropped 0 (0%) - bytes output 22607716, bytes dropped 0 (0%) - Class 'MANAGEMENT': medium priority - bandwidth 9 kb/s, burst 1870 bytes, queue length/limit 0/50 - mean input rate 73200 bits/s, mean output rate 73200 bits/s - packets output 3881341, packets dropped 0 (0%) - bytes output 468946094, bytes dropped 0 (0%) - remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 222911 - Class 'ROUTING': medium priority - bandwidth 9 kb/s, burst 1870 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 94685677, packets dropped 0 (0%) - bytes output 23417852492, bytes dropped 0 (0%) - remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 83405404 - Class 'PREMIUM': medium priority - bandwidth 11452 kb/s, burst 28624 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 866614, packets dropped 0 (0%) - bytes output 362165800, bytes dropped 0 (0%) - remaining-bandwidth share 34, excess-rate-priority 0, excess packets sent 279 - weight random early detection: - exponential weight: 9 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'GOLD': medium priority - bandwidth 8180 kb/s, burst 29750 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 45391, packets dropped 0 (0%) - bytes output 16416004, bytes dropped 0 (0%) - remaining-bandwidth share 24, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 9 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'SILVER': medium priority - bandwidth 4908 kb/s, burst 30749 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 5160082, packets dropped 0 (0%) - bytes output 2236128558, bytes dropped 0 (0%) - remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 42 - weight random early detection: - exponential weight: 9 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'BRONZE': medium priority - bandwidth 3272 kb/s, burst 31249 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 76493, packets dropped 76 (0%) - bytes output 30364562, bytes dropped 95424 (0%) - remaining-bandwidth share 9, excess-rate-priority 0, excess packets sent 10772 - weight random early detection: - exponential weight: 7 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'class-default': medium priority - bandwidth 4908 kb/s, burst 30749 bytes, queue length/limit 0/60 - mean input rate 96 bits/s, mean output rate 96 bits/s - packets output 595799441, packets dropped 707729 (0%) - bytes output 196024209496, bytes dropped 939535245 (0%) - remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 52266475 - weight random early detection: - exponential weight: 9 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 119931 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 41 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 3 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 2 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'class-default': medium priority - bandwidth 66750 kb/s, burst 163868 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 66, excess-rate-priority 0, excess packets sent 0 - Interface total: - bandwidth 100000 kb/s - mean input rate 104400 bits/s, mean output rate 104400 bits/s - packets output 704745364, packets dropped 707805 (0%) - bytes output 222877578682, bytes dropped 939630669 (0%) diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml deleted file mode 100644 index ce8436f96d..0000000000 --- a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_140.yml +++ /dev/null @@ -1,667 +0,0 @@ ---- -parsed_sample: - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "" - class_child: "" - packets: "705455781" - bytes: "202655648081" - dscp_remarked: "0" - mean_intput_rate_bits_second: "76250" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "MANAGEMENT" - packets: "3881496" - bytes: "352515276" - dscp_remarked: "0" - mean_intput_rate_bits_second: "76250" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "ROUTING" - packets: "94685677" - bytes: "20577282182" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "PREMIUM" - packets: "866614" - bytes: "336167380" - dscp_remarked: "17" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "GOLD" - packets: "45391" - bytes: "15054274" - dscp_remarked: "111" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "SILVER" - packets: "5160082" - bytes: "2081326098" - dscp_remarked: "968" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "BRONZE" - packets: "76569" - bytes: "28162916" - dscp_remarked: "70513" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "class-default" - packets: "600657514" - bytes: "179242844271" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "0" - bytes: "0" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "medium priority (no excess allowed)" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "222578689918" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "222578689918" - qos_bytes_dropped: "939630669" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "73400" - qos_avg_output_bps: "73400" - qos_pkts_out: "700594742" - qos_pkts_dropped: "707805" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "REAL-TIME" - class_parent_prio: "high priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "22607716" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "22607716" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "79705" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "512" - qos_burst_b: "32249" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "MANAGEMENT" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "468946094" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "468946094" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "73200" - qos_avg_output_bps: "73200" - qos_pkts_out: "3881341" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "9" - qos_burst_b: "1870" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "ROUTING" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "23417852492" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "23417852492" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "94685677" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "9" - qos_burst_b: "1870" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "222911" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "PREMIUM" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "362165800" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "362165800" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "866614" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "11452" - qos_burst_b: "28624" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "83405404" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "GOLD" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "16416004" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "16416004" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "45391" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "8180" - qos_burst_b: "29750" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "34" - qos_excess_rate_prio: "0" - qos_excess_packets: "279" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "SILVER" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "2236128558" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "2236128558" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "5160082" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "4908" - qos_burst_b: "30749" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "24" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "BRONZE" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "30364562" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "30364562" - qos_bytes_dropped: "95424" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "76493" - qos_pkts_dropped: "76" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "3272" - qos_burst_b: "31249" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "14" - qos_excess_rate_prio: "0" - qos_excess_packets: "42" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "196024209496" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "196024209496" - qos_bytes_dropped: "939535245" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "96" - qos_avg_output_bps: "96" - qos_pkts_out: "595799441" - qos_pkts_dropped: "707729" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "4908" - qos_burst_b: "30749" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "9" - qos_excess_rate_prio: "0" - qos_excess_packets: "10772" - - interface: "FastEthernet 1/0" - service_policy_out_parent: "L3VPN_SHARED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "medium priority" - service_policy_out_child: "L3VPN_SHARED_QOS_CE_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "" - total_queue_length: "" - total_mean_input_rate_bps: "104400" - total_mean_output_rate_bps: "104400" - total_output_packets: "704745364" - total_output_packets_dropped: "707805" - total_output_packets_dropped_pct: "0" - total_output_bytes: "222877578682" - total_output_bytes_dropped: "939630669" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "66750" - qos_burst_b: "163868" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "14" - qos_excess_rate_prio: "0" - qos_excess_packets: "52266475" diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw deleted file mode 100644 index 9185f600aa..0000000000 --- a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.raw +++ /dev/null @@ -1,427 +0,0 @@ -GigabitEthernet 1/0: service-policy output L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT -traffic statistics: - Class 'CLASS_ANY': - 17116556 packets, 2997937810 bytes, 0 dscp remarked, mean input rate 8290 bits/s - Service-policy VDSL_QOS_4M_OUT : - Class 'MANAGEMENT': - 3526876 packets, 284813499 bytes, 0 dscp remarked, mean input rate 8290 bits/s - Class 'ROUTING': - 72309 packets, 4451262 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'PREMIUM': - 19374 packets, 13810113 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'GOLD': - 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'SILVER': - 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'BRONZE': - 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'class-default': - 13497997 packets, 2694862936 bytes, 0 dscp remarked, mean input rate 0 bits/s - Class 'class-default': - 0 packets, 0 bytes, 0 dscp remarked, mean input rate 0 bits/s - -output queuing statistics: - Class 'CLASS_ANY': medium priority (no excess allowed) - bandwidth 3800 kb/s, burst 34368 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 14594313, packets dropped 0 (0%) - bytes output 3139710008, bytes dropped 0 (0%) - Service-policy VDSL_QOS_4M_OUT : - Class 'MANAGEMENT': medium priority - bandwidth 9 kb/s, burst 7104 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 1077447, packets dropped 0 (0%) - bytes output 133680047, bytes dropped 0 (0%) - remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 58982 - Class 'ROUTING': medium priority - bandwidth 9 kb/s, burst 7104 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 1, excess-rate-priority 0, excess packets sent 0 - Class 'PREMIUM': medium priority - bandwidth 1323 kb/s, burst 34496 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 19374, packets dropped 0 (0%) - bytes output 14236341, bytes dropped 0 (0%) - remaining-bandwidth share 34, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 7 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'GOLD': medium priority - bandwidth 945 kb/s, burst 34496 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 24, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 7 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'SILVER': medium priority - bandwidth 567 kb/s, burst 34496 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 6 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'BRONZE': medium priority - bandwidth 378 kb/s, burst 7104 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 9, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 6 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'class-default': medium priority - bandwidth 569 kb/s, burst 34496 bytes, queue length/limit 0/60 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 13497492, packets dropped 0 (0%) - bytes output 2991793620, bytes dropped 0 (0%) - remaining-bandwidth share 14, excess-rate-priority 0, excess packets sent 0 - weight random early detection: - exponential weight: 6 - - Dscp Random drop Tail drop Min/Max Mark - pkts pkts threshold probability - 0 0 0 30/60 1/10 - 1 0 0 33/60 1/10 - 2 0 0 36/60 1/10 - 3 0 0 39/60 1/10 - 4 0 0 42/60 1/10 - 5 0 0 45/60 1/10 - 6 0 0 48/60 1/10 - 7 0 0 51/60 1/10 - 8 0 0 33/60 1/10 - 9 0 0 33/60 1/10 - 10 0 0 36/60 1/10 - 11 0 0 39/60 1/10 - 12 0 0 42/60 1/10 - 13 0 0 45/60 1/10 - 14 0 0 48/60 1/10 - 15 0 0 51/60 1/10 - 16 0 0 36/60 1/10 - 17 0 0 33/60 1/10 - 18 0 0 36/60 1/10 - 19 0 0 39/60 1/10 - 20 0 0 42/60 1/10 - 21 0 0 45/60 1/10 - 22 0 0 48/60 1/10 - 23 0 0 51/60 1/10 - 24 0 0 39/60 1/10 - 25 0 0 33/60 1/10 - 26 0 0 36/60 1/10 - 27 0 0 39/60 1/10 - 28 0 0 42/60 1/10 - 29 0 0 45/60 1/10 - 30 0 0 48/60 1/10 - 31 0 0 51/60 1/10 - 32 0 0 42/60 1/10 - 33 0 0 33/60 1/10 - 34 0 0 36/60 1/10 - 35 0 0 39/60 1/10 - 36 0 0 42/60 1/10 - 37 0 0 45/60 1/10 - 38 0 0 48/60 1/10 - 39 0 0 51/60 1/10 - 40 0 0 45/60 1/10 - 41 0 0 33/60 1/10 - 42 0 0 36/60 1/10 - 43 0 0 39/60 1/10 - 44 0 0 42/60 1/10 - 45 0 0 45/60 1/10 - 46 0 0 48/60 1/10 - 47 0 0 51/60 1/10 - 48 0 0 48/60 1/10 - 49 0 0 33/60 1/10 - 50 0 0 36/60 1/10 - 51 0 0 39/60 1/10 - 52 0 0 42/60 1/10 - 53 0 0 45/60 1/10 - 54 0 0 48/60 1/10 - 55 0 0 51/60 1/10 - 56 0 0 51/60 1/10 - 57 0 0 33/60 1/10 - 58 0 0 36/60 1/10 - 59 0 0 39/60 1/10 - 60 0 0 42/60 1/10 - 61 0 0 45/60 1/10 - 62 0 0 48/60 1/10 - 63 0 0 51/60 1/10 - Class 'class-default': medium priority - bandwidth 996200 kb/s, burst 12928 bytes, queue length/limit 0/50 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 0, packets dropped 0 (0%) - bytes output 0, bytes dropped 0 (0%) - remaining-bandwidth share 100, excess-rate-priority 0, excess packets sent 0 - Interface total: - bandwidth 1000000 kb/s, queue length 0 - mean input rate 0 bits/s, mean output rate 0 bits/s - packets output 14594313, packets dropped 0 (0%) - bytes output 3139710008, bytes dropped 0 (0%) diff --git a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml b/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml deleted file mode 100644 index 136b38f0c9..0000000000 --- a/tests/oneaccess_oneos/show_policy-interface_output/show_policy-interface_output.lbb_150.yml +++ /dev/null @@ -1,632 +0,0 @@ ---- -parsed_sample: - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "" - class_child: "" - packets: "17116556" - bytes: "2997937810" - dscp_remarked: "0" - mean_intput_rate_bits_second: "8290" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "MANAGEMENT" - packets: "3526876" - bytes: "284813499" - dscp_remarked: "0" - mean_intput_rate_bits_second: "8290" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "ROUTING" - packets: "72309" - bytes: "4451262" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "PREMIUM" - packets: "19374" - bytes: "13810113" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "GOLD" - packets: "0" - bytes: "0" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "SILVER" - packets: "0" - bytes: "0" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "BRONZE" - packets: "0" - bytes: "0" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "class-default" - packets: "13497997" - bytes: "2694862936" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "0" - bytes: "0" - dscp_remarked: "0" - mean_intput_rate_bits_second: "0" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "" - qos_bytes_dropped: "" - qos_bytes_dropped_pct: "" - qos_avg_input_bps: "" - qos_avg_output_bps: "" - qos_pkts_out: "" - qos_pkts_dropped: "" - qos_pkts_dropped_pct: "" - qos_bw_kb: "" - qos_burst_b: "" - qos_q_length: "" - qos_q_limit: "" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "CLASS_ANY" - class_parent_prio: "medium priority (no excess allowed)" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "3139710008" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "3139710008" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "14594313" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "3800" - qos_burst_b: "34368" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "MANAGEMENT" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "133680047" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "133680047" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "1077447" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "9" - qos_burst_b: "7104" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "ROUTING" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "9" - qos_burst_b: "7104" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "58982" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "PREMIUM" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "14236341" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "14236341" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "19374" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "1323" - qos_burst_b: "34496" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "1" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "GOLD" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "945" - qos_burst_b: "34496" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "34" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "SILVER" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "567" - qos_burst_b: "34496" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "24" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "BRONZE" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "378" - qos_burst_b: "7104" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "14" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "2991793620" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "2991793620" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "13497492" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "569" - qos_burst_b: "34496" - qos_q_length: "0" - qos_q_limit: "60" - qos_remaining_bw_share: "9" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" - - interface: "GigabitEthernet 1/0" - service_policy_out_parent: "L3VPN_DEDICATED_VLAN_SHAPE_CE_OUT" - class_parent: "class-default" - class_parent_prio: "medium priority" - service_policy_out_child: "VDSL_QOS_4M_OUT" - class_child: "" - packets: "" - bytes: "0" - dscp_remarked: "" - mean_intput_rate_bits_second: "" - total_bw_kbs: "1000000" - total_queue_length: "0" - total_mean_input_rate_bps: "0" - total_mean_output_rate_bps: "0" - total_output_packets: "14594313" - total_output_packets_dropped: "0" - total_output_packets_dropped_pct: "0" - total_output_bytes: "3139710008" - total_output_bytes_dropped: "0" - total_output_bytes_dropped_pct: "0" - qos_bytes_out: "0" - qos_bytes_dropped: "0" - qos_bytes_dropped_pct: "0" - qos_avg_input_bps: "0" - qos_avg_output_bps: "0" - qos_pkts_out: "0" - qos_pkts_dropped: "0" - qos_pkts_dropped_pct: "0" - qos_bw_kb: "996200" - qos_burst_b: "12928" - qos_q_length: "0" - qos_q_limit: "50" - qos_remaining_bw_share: "14" - qos_excess_rate_prio: "0" - qos_excess_packets: "0" diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw deleted file mode 100644 index 57d67ab889..0000000000 --- a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.raw +++ /dev/null @@ -1,43 +0,0 @@ -+----------------------------------------------------------------+ -| Product Info Area | -+------------------------------+---------------------------------+ -| Key | Value | -+------------------------------+---------------------------------+ -| mac0 | 70:FC:8C:07:22:CC | -+------------------------------+---------------------------------+ -| mac1 | 70:FC:8C:0B:22:CC | -+------------------------------+---------------------------------+ -| mac2 | 70:FC:8C:0F:22:CC | -+------------------------------+---------------------------------+ -| mac3 | 70:FC:8C:13:22:CC | -+------------------------------+---------------------------------+ -| mac4 | 70:FC:8C:17:22:CC | -+------------------------------+---------------------------------+ -| mac5 | 70:FC:8C:1B:22:CC | -+------------------------------+---------------------------------+ -| mac6 | 70:FC:8C:1F:22:CC | -+------------------------------+---------------------------------+ -| mac7 | 70:FC:8C:23:22:CC | -+------------------------------+---------------------------------+ -| Manufacturing File Reference | 1000 00 N 0046230A00 AH | -+------------------------------+---------------------------------+ -| Motherboard Type | MB420SAVad0UFPE0BNW | -+------------------------------+---------------------------------+ -| Manufacturing Location | TOAB | -+------------------------------+---------------------------------+ -| Manufacturing Date | 18/01/2017 | -+------------------------------+---------------------------------+ -| Serial Number | T1703006230033175 | -+------------------------------+---------------------------------+ -| Product name | LBB_140 | -+------------------------------+---------------------------------+ -| Commercial name | LBB 140 | -+------------------------------+---------------------------------+ -| Mreturn1 | | -+------------------------------+---------------------------------+ -| Mreturn2 | | -+------------------------------+---------------------------------+ -| Mreturn3 | | -+------------------------------+---------------------------------+ -| Mreturn4 | | -+------------------------------+---------------------------------+ diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml deleted file mode 100644 index b680ba7617..0000000000 --- a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos5.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -parsed_sample: - - mac: "70:FC:8C:07:22:CC" - motherboard: "MB420SAVad0UFPE0BNW" - manufacturing_date: "18/01/2017" - serial: - - "T1703006230033175" - product_name: "LBB_140" - commercial_name: "LBB 140" diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw deleted file mode 100644 index 60d9251a64..0000000000 --- a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.raw +++ /dev/null @@ -1,67 +0,0 @@ -+----------------------------------------------------------------+ -| Product Info Area | -+------------------------------+---------------------------------+ -| Key | Value | -+------------------------------+---------------------------------+ -| mac0 | 70:FC:8C:12:B5:B9 | -+------------------------------+---------------------------------+ -| mac1 | 70:FC:8C:16:B5:B9 | -+------------------------------+---------------------------------+ -| mac2 | 70:FC:8C:1A:B5:B9 | -+------------------------------+---------------------------------+ -| mac3 | 70:FC:8C:1E:B5:B9 | -+------------------------------+---------------------------------+ -| mac4 | 70:FC:8C:22:B5:B9 | -+------------------------------+---------------------------------+ -| mac5 | 70:FC:8C:26:B5:B9 | -+------------------------------+---------------------------------+ -| mac6 | 70:FC:8C:2A:B5:B9 | -+------------------------------+---------------------------------+ -| mac7 | 70:FC:8C:2E:B5:B9 | -+------------------------------+---------------------------------+ -| mac8 | 70:FC:8C:12:B5:BA | -+------------------------------+---------------------------------+ -| mac9 | 70:FC:8C:16:B5:BA | -+------------------------------+---------------------------------+ -| mac10 | 70:FC:8C:1A:B5:BA | -+------------------------------+---------------------------------+ -| mac11 | 70:FC:8C:1E:B5:BA | -+------------------------------+---------------------------------+ -| mac12 | 70:FC:8C:22:B5:BA | -+------------------------------+---------------------------------+ -| mac13 | 70:FC:8C:26:B5:BA | -+------------------------------+---------------------------------+ -| mac14 | 70:FC:8C:2A:B5:BA | -+------------------------------+---------------------------------+ -| mac15 | 70:FC:8C:2E:B5:BA | -+------------------------------+---------------------------------+ -| Model revision | 1.0 | -+------------------------------+---------------------------------+ -| Manufacturing File Reference | 48554 | -+------------------------------+---------------------------------+ -| Motherboard Type | MB520 AV2aF5PWnac/a | -+------------------------------+---------------------------------+ -| PCB Revision | B | -+------------------------------+---------------------------------+ -| HW Revision | A | -+------------------------------+---------------------------------+ -| Manufacturing Location | TOAB | -+------------------------------+---------------------------------+ -| Manufacturing Date | 2021-W21 | -+------------------------------+---------------------------------+ -| Last Testing Date | 2021-06-07 | -+------------------------------+---------------------------------+ -| Serial Number | T2121008554075089 | -+------------------------------+---------------------------------+ -| Product Name | LBB_150 | -+------------------------------+---------------------------------+ -| Commercial Name | LBB 150 | -+------------------------------+---------------------------------+ -| Sales Code | 82131 | -+------------------------------+---------------------------------+ -| Mib-2 system sysObjectID | 150 | -+------------------------------+---------------------------------+ -| Software compatibility code | 0x1E | -+------------------------------+---------------------------------+ -| SCAid | LBB15X | -+------------------------------+---------------------------------+ \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml b/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml deleted file mode 100644 index a2eff3b32f..0000000000 --- a/tests/oneaccess_oneos/show_product-info-area/show_product-info-area.oneos6.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -parsed_sample: - - mac: "70:FC:8C:12:B5:B9" - motherboard: "MB520 AV2aF5PWnac/a" - manufacturing_date: "2021-W21" - serial: - - "T2121008554075089" - product_name: "LBB_150" - commercial_name: "LBB 150" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw deleted file mode 100644 index 72408f314c..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.raw +++ /dev/null @@ -1,13 +0,0 @@ - - -Reboot status for device LBB_154 S/N T2047008177055804 - -Last Reboot Cause : Software requested / System defense - reboot after crash - -Reboot Counters : -Reboot on hardware reset : 0 -Power Fail detection : 9 -Total Software Requested Reboots : 7 - System defense - reboot after crash : 6 - Administrator requested delayed reboot : 1 - diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml deleted file mode 100644 index 2de2ca0a8b..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.lbb4g.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -parsed_sample: - - device: "LBB_154" - serial: "T2047008177055804" - reboot_cause: "Software requested / System defense - reboot after crash" - hardware_reset: "0" - power_fail_detection: "9" - total_software_reboots: "7" - system_defense: "6" - generic_software_reboot: "" - admin_requested_reboot: "" - admin_delayed_reboot: "1" - spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw deleted file mode 100644 index 0596347538..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.raw +++ /dev/null @@ -1,14 +0,0 @@ - -Reboot status for device MB420SAVad0UFPE0BNW S/N T1703006230033175 - -Last Reboot Cause : Power Fail detection - -Reboot Counters : -Reboot on hardware reset : 0 -Power Fail detection : 33 -Total Software Requested Reboots : 21 - System defense - reboot after crash : 4 - Administrator requested reboot : 15 - Administrator requested delayed reboot : 2 - -Since startup, spurious Power Fail has occured 0 time(s) diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml deleted file mode 100644 index dd24edad7e..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.oneos5.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -parsed_sample: - - device: "MB420SAVad0UFPE0BNW" - serial: "T1703006230033175" - reboot_cause: "Power Fail detection" - hardware_reset: "0" - power_fail_detection: "33" - total_software_reboots: "21" - system_defense: "4" - generic_software_reboot: "" - admin_requested_reboot: "15" - admin_delayed_reboot: "2" - spurious_power_fails: "0" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw deleted file mode 100644 index f4616e0350..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.raw +++ /dev/null @@ -1,12 +0,0 @@ - -Reboot status for device PBXPLUG_103 S/N T2137008344020891 - -Last Reboot Cause : Generic software reboot request - -Reboot Counters : -Reboot on hardware reset : 0 -Power Fail detection : 7 -Total Software Requested Reboots : 21 - Generic software reboot request : 16 - System defense - reboot after crash : 1 - Administrator requested reboot : 4 diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml deleted file mode 100644 index 2afad18cee..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug103.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -parsed_sample: - - device: "PBXPLUG_103" - serial: "T2137008344020891" - reboot_cause: "Generic software reboot request" - hardware_reset: "0" - power_fail_detection: "7" - total_software_reboots: "21" - system_defense: "1" - generic_software_reboot: "16" - admin_requested_reboot: "4" - admin_delayed_reboot: "" - spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw deleted file mode 100644 index 0e856a4f29..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.raw +++ /dev/null @@ -1,13 +0,0 @@ - -Reboot status for device MBPBX30NT2BLUZ S/N T1938004830030157 - -Last Reboot Cause : Unknown reboot cause / Power On Reset (Power Fail or External Watchdog) - -Reboot Counters : -Reboot on hardware reset : 6 -Total Software Requested Reboots : 41 - System defense - reboot after crash : 18 - Administrator requested reboot : 16 - Administrator requested delayed reboot : 7 - -Since startup, spurious Power Fail has occured 0 time(s) diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml deleted file mode 100644 index d3b70ef4ad..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug212.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -parsed_sample: - - device: "MBPBX30NT2BLUZ" - serial: "T1938004830030157" - reboot_cause: "Unknown reboot cause / Power On Reset (Power Fail or External Watchdog)" - hardware_reset: "6" - power_fail_detection: "" - total_software_reboots: "41" - system_defense: "18" - generic_software_reboot: "" - admin_requested_reboot: "16" - admin_delayed_reboot: "7" - spurious_power_fails: "0" diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw deleted file mode 100644 index 00c93656ad..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.raw +++ /dev/null @@ -1,14 +0,0 @@ - -Reboot status for device PBXPLUG_401 S/N T1817008168000443 - -Last Reboot Cause : Generic software reboot request - -Reboot Counters : -Reboot on hardware reset : 0 -Power Fail detection : 6 -Total Software Requested Reboots : 83 - Generic software reboot request : 59 - System defense - reboot after crash : 5 - Administrator requested reboot : 16 - Administrator requested delayed reboot : 3 - diff --git a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml b/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml deleted file mode 100644 index 57f5073421..0000000000 --- a/tests/oneaccess_oneos/show_reboot_counters/show_reboot_counters.plug401.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -parsed_sample: - - device: "PBXPLUG_401" - serial: "T1817008168000443" - reboot_cause: "Generic software reboot request" - hardware_reset: "0" - power_fail_detection: "6" - total_software_reboots: "83" - system_defense: "5" - generic_software_reboot: "59" - admin_requested_reboot: "16" - admin_delayed_reboot: "3" - spurious_power_fails: "" diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw deleted file mode 100644 index 884544c6ee..0000000000 --- a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.raw +++ /dev/null @@ -1,19 +0,0 @@ -route-map BGP-MAP-OUT permit 10 - match as-path 102 - set origin igp - set metric 50 -exit -route-map BGP_SECONDARY_OUT permit 10 - set as-path prepend 65000 65000 65000 - set origin igp - set local-preference 50 - set metric 100 -exit -route-map CONNECTED-BGP deny 5 - match ip address prefix-list DENY-BGP -exit -route-map CONNECTED-BGP permit 10 - set origin igp - set local-preference 100 - set metric 50 -exit diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml deleted file mode 100644 index b0d595c10a..0000000000 --- a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos5.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -parsed_sample: - - name: "BGP-MAP-OUT" - action: "permit" - seq: "10" - match_clauses: - - "as-path 102" - set_clauses: - - "origin igp" - - "metric 50" - - name: "BGP_SECONDARY_OUT" - action: "permit" - seq: "10" - match_clauses: [] - set_clauses: - - "as-path prepend 65000 65000 65000" - - "origin igp" - - "local-preference 50" - - "metric 100" - - name: "CONNECTED-BGP" - action: "deny" - seq: "5" - match_clauses: - - "ip address prefix-list DENY-BGP" - set_clauses: [] - - name: "CONNECTED-BGP" - action: "permit" - seq: "10" - match_clauses: [] - set_clauses: - - "origin igp" - - "local-preference 100" - - "metric 50" diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw deleted file mode 100644 index 6dc03d001f..0000000000 --- a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.raw +++ /dev/null @@ -1,17 +0,0 @@ -route-map ADVERTISE-LOCAL-ONLY permit 10 - match as-path 102 -exit -route-map BGP-MAP-OUT permit 10 - match as-path 102 - set as-path prepend 65000 65000 65000 - set origin igp - set metric 100 -exit -route-map CONNECTED-BGP deny 5 - match ip address prefix-list DENY-BGP -exit -route-map CONNECTED-BGP permit 10 - set origin igp - set local-preference 50 - set metric 100 -exit diff --git a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml b/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml deleted file mode 100644 index f1d698c9f1..0000000000 --- a/tests/oneaccess_oneos/show_route-map/show_route-map.oneos6.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -parsed_sample: - - name: "ADVERTISE-LOCAL-ONLY" - action: "permit" - seq: "10" - match_clauses: - - "as-path 102" - set_clauses: [] - - name: "BGP-MAP-OUT" - action: "permit" - seq: "10" - match_clauses: - - "as-path 102" - set_clauses: - - "as-path prepend 65000 65000 65000" - - "origin igp" - - "metric 100" - - name: "CONNECTED-BGP" - action: "deny" - seq: "5" - match_clauses: - - "ip address prefix-list DENY-BGP" - set_clauses: [] - - name: "CONNECTED-BGP" - action: "permit" - seq: "10" - match_clauses: [] - set_clauses: - - "origin igp" - - "local-preference 50" - - "metric 100" diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw deleted file mode 100644 index 20dd4e66a3..0000000000 --- a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.raw +++ /dev/null @@ -1,17 +0,0 @@ -aaa group server tacacs TACGROUP -aaa authentication login default TACGROUP -aaa authentication login console TACGROUP -aaa authentication enable default TACGROUP -aaa authentication enable console TACGROUP -aaa authorization command 15 TACGROUP none -aaa authorization command 7 TACGROUP none -aaa authorization command 1 TACGROUP none -aaa authorization command 0 TACGROUP none -aaa authorization network group TACGROUP -aaa accounting exec default start-stop group TACGROUP -aaa accounting commands 15 default stop-only group TACGROUP -aaa accounting system default start-stop group TACGROUP -aaa accounting commands 7 default stop-only group TACGROUP -aaa accounting commands 1 default stop-only group TACGROUP -aaa accounting commands 0 default stop-only group TACGROUP -aaa authentication banner sequence 1 *-TACACS SERVER UNAVAILABLE-* diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml deleted file mode 100644 index c6fd0c650b..0000000000 --- a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos5.yml +++ /dev/null @@ -1,66 +0,0 @@ ---- -parsed_sample: - - aaa_protocol: "authentication" - aaa_command: "login" - aaa_config: - - "default TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "login" - aaa_config: - - "console TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "enable" - aaa_config: - - "default TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "enable" - aaa_config: - - "console TACGROUP" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "15 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "7 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "1 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "0 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "network" - aaa_config: - - "group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "exec" - aaa_config: - - "default start-stop group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "15 default stop-only group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "system" - aaa_config: - - "default start-stop group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "7 default stop-only group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "1 default stop-only group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "0 default stop-only group TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "banner" - aaa_config: - - "sequence 1 *-TACACS SERVER UNAVAILABLE-*" diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw deleted file mode 100644 index 12b1ef4181..0000000000 --- a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.raw +++ /dev/null @@ -1,18 +0,0 @@ -aaa group server tacacs TACGROUP - server 1.2.3.4 - server 11.22.33.44 -exit -aaa authentication login default TACGROUP -aaa authentication login console TACGROUP -aaa authentication banner sequence 1 *-TACACS SERVER UNAVAILABLE-* -aaa authentication enable default TACGROUP -aaa authentication enable console TACGROUP -aaa authorization network group TACGROUP -aaa authorization command 1 TACGROUP none -aaa authorization command 7 TACGROUP none -aaa authorization command 15 TACGROUP none -aaa accounting exec default start-stop group TACGROUP -aaa accounting system default start-stop group TACGROUP -aaa accounting commands 1 default stop-only group TACGROUP -aaa accounting commands 7 default stop-only group TACGROUP -aaa accounting commands 15 default stop-only group TACGROUP diff --git a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml b/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml deleted file mode 100644 index 8bc5780e4d..0000000000 --- a/tests/oneaccess_oneos/show_running-config_aaa/show_running-config_aaa.oneos6.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -parsed_sample: - - aaa_protocol: "authentication" - aaa_command: "login" - aaa_config: - - "default TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "login" - aaa_config: - - "console TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "banner" - aaa_config: - - "sequence 1 *-TACACS SERVER UNAVAILABLE-*" - - aaa_protocol: "authentication" - aaa_command: "enable" - aaa_config: - - "default TACGROUP" - - aaa_protocol: "authentication" - aaa_command: "enable" - aaa_config: - - "console TACGROUP" - - aaa_protocol: "authorization" - aaa_command: "network" - aaa_config: - - "group TACGROUP" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "1 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "7 TACGROUP none" - - aaa_protocol: "authorization" - aaa_command: "command" - aaa_config: - - "15 TACGROUP none" - - aaa_protocol: "accounting" - aaa_command: "exec" - aaa_config: - - "default start-stop group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "system" - aaa_config: - - "default start-stop group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "1 default stop-only group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "7 default stop-only group TACGROUP" - - aaa_protocol: "accounting" - aaa_command: "commands" - aaa_config: - - "15 default stop-only group TACGROUP" diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw deleted file mode 100644 index db2b964095..0000000000 --- a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.raw +++ /dev/null @@ -1,18 +0,0 @@ -bind ssh acl MANAGEMENT_IN_SSH -bind ssh loopback 1 -bind ssh loopback 21 -bind ssh loopback 91 -bind ssh tunnel 21 -bind ssh tunnel 91 -bind ssh virtual-ethernet 1 -bind ssh vrf UNTRUST-SSH -bind ssh vrf default-router -bind telnet acl MANAGEMENT_IN_TELNET -bind telnet loopback 1 -bind telnet loopback 21 -bind telnet loopback 91 -bind telnet tunnel 21 -bind telnet tunnel 91 -bind telnet virtual-ethernet 1 -bind telnet vrf UNTRUST-TELNET -bind telnet vrf default-router diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml deleted file mode 100644 index 8765c7db71..0000000000 --- a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos5.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - proto: "ssh" - interface: - - "loopback 1" - - "loopback 21" - - "loopback 91" - - "tunnel 21" - - "tunnel 91" - - "virtual-ethernet 1" - acl: "MANAGEMENT_IN_SSH" - vrf: - - "UNTRUST-SSH" - - "default-router" - - proto: "telnet" - interface: - - "loopback 1" - - "loopback 21" - - "loopback 91" - - "tunnel 21" - - "tunnel 91" - - "virtual-ethernet 1" - acl: "MANAGEMENT_IN_TELNET" - vrf: - - "UNTRUST-TELNET" - - "default-router" diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw deleted file mode 100644 index 513008fd8a..0000000000 --- a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.raw +++ /dev/null @@ -1,8 +0,0 @@ -bind ssh acl MANAGEMENT_IN -bind ssh gigabitethernet 1/0.300 -bind ssh loopback 1 -bind ssh vrf default-router -bind telnet acl MANAGEMENT_IN -bind telnet gigabitethernet 1/0.300 -bind telnet loopback 1 -bind telnet vrf default-router diff --git a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml b/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml deleted file mode 100644 index a50a292a13..0000000000 --- a/tests/oneaccess_oneos/show_running-config_bind/show_running-config_bind.oneos6.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -parsed_sample: - - proto: "ssh" - interface: - - "gigabitethernet 1/0.300" - - "loopback 1" - acl: "MANAGEMENT_IN" - vrf: - - "default-router" - - proto: "telnet" - interface: - - "gigabitethernet 1/0.300" - - "loopback 1" - acl: "MANAGEMENT_IN" - vrf: - - "default-router" diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw deleted file mode 100644 index aa6ed87a24..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.raw +++ /dev/null @@ -1,40 +0,0 @@ -ip dhcp vrf INTERNET excluded-address 192.168.10.1 -ip dhcp pool DHCP_LBB - vrf INTERNET - lease 0 8 0 -default-router 192.168.10.1 -dns-server 212.224.255.252 212.224.255.254 -network 192.168.10.0 255.255.255.0 -exit -ip dhcp pool OrangeShopWifi-VLAN20 -lease 0 8 0 -domain-name OrangeShopWifi -default-router 10.32.60.1 -dns-server 212.224.129.90 212.224.129.94 -network 10.32.60.0 255.255.255.0 -exit -ip dhcp pool OrangeShopDigitalSignage-VLAN30 -lease 0 8 0 -default-router 10.42.60.1 -domain-name OrangeShopDigitalSignage -dns-server 212.224.129.90 212.224.129.94 -network 10.42.60.0 255.255.255.0 -exit -ip dhcp pool OrangeShopSecurity-VLAN40 -lease 0 8 0 -default-router 10.52.60.1 -domain-name OrangeShopSecurity -dns-server 212.224.129.90 212.224.129.94 -network 10.52.60.0 255.255.255.0 -exit -ip dhcp pool TEST-MAARTEN -dns-server 10.200.19.4 10.200.19.5 -exit -ip dhcp pool TEST-FEDERALE-WOUTER -dns-server 10.20.25.6 10.0.1.228 172.20.64.13 -domain-name federale.be -exit -ip dhcp pool TEST1 -dns-server 1.1.1.1 192.168.50.20 192.168.50.30 2.2.2.2 3.3.3.3 -exit -! diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml deleted file mode 100644 index 5963accffd..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos5.yml +++ /dev/null @@ -1,66 +0,0 @@ ---- -parsed_sample: - - pool: "" - vrf: "INTERNET" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "192.168.10.1" - - pool: "DHCP_LBB" - vrf: "INTERNET" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "0 8 0" - excluded: "" - - pool: "OrangeShopWifi-VLAN20" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" - - pool: "OrangeShopDigitalSignage-VLAN30" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" - - pool: "OrangeShopSecurity-VLAN40" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" - - pool: "TEST-MAARTEN" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" - - pool: "TEST-FEDERALE-WOUTER" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" - - pool: "TEST1" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw deleted file mode 100644 index e6a209654c..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.raw +++ /dev/null @@ -1,8 +0,0 @@ -ip dhcp excluded-address 192.168.202.1 -ip dhcp pool POOL - default-router 192.168.202.1 - dns-server 212.224.255.252 212.224.255.254 - lease 0 8 0 - netmask 255.255.255.0 - network 192.168.202.0 255.255.255.0 -exit diff --git a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml b/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml deleted file mode 100644 index d398c4f66f..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_dhcp/show_running-config_ip_dhcp.oneos6.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -parsed_sample: - - pool: "" - vrf: "" - default_router: "" - domain_name: "" - dns: [] - network: "" - lease: "" - excluded: "192.168.202.1" - - pool: "POOL" - vrf: "" - default_router: "192.168.202.1" - domain_name: "" - dns: - - "212.224.255.252" - - "212.224.255.254" - network: "192.168.202.0 255.255.255.0" - lease: "0 8 0" - excluded: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw deleted file mode 100644 index c3e027b8ac..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.raw +++ /dev/null @@ -1,3 +0,0 @@ -ip route 94.105.1.119 255.255.255.255 192.168.100.2 -ip route 94.105.16.130 255.255.255.255 Bvi 200 -ip route 94.105.34.2 255.255.255.255 192.168.100.3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml deleted file mode 100644 index fed65aec64..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos5.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -parsed_sample: - - network: "94.105.1.119" - mask: "255.255.255.255" - nexthop_ip: "192.168.100.2" - nexthop_if: "" - - network: "94.105.16.130" - mask: "255.255.255.255" - nexthop_ip: "" - nexthop_if: "Bvi 200" - - network: "94.105.34.2" - mask: "255.255.255.255" - nexthop_ip: "192.168.100.3" - nexthop_if: "" diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw deleted file mode 100644 index c3e027b8ac..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.raw +++ /dev/null @@ -1,3 +0,0 @@ -ip route 94.105.1.119 255.255.255.255 192.168.100.2 -ip route 94.105.16.130 255.255.255.255 Bvi 200 -ip route 94.105.34.2 255.255.255.255 192.168.100.3 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml b/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml deleted file mode 100644 index fed65aec64..0000000000 --- a/tests/oneaccess_oneos/show_running-config_ip_route/show_running-config_ip_route.oneos6.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -parsed_sample: - - network: "94.105.1.119" - mask: "255.255.255.255" - nexthop_ip: "192.168.100.2" - nexthop_if: "" - - network: "94.105.16.130" - mask: "255.255.255.255" - nexthop_ip: "" - nexthop_if: "Bvi 200" - - network: "94.105.34.2" - mask: "255.255.255.255" - nexthop_ip: "192.168.100.3" - nexthop_if: "" diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw deleted file mode 100644 index 63c6607891..0000000000 --- a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.raw +++ /dev/null @@ -1,4 +0,0 @@ -SNMP write community: Kl3t5k0p -SNMP access control lists :52 -SNMP read community: 5pr1t5 -SNMP access control lists :52 diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml deleted file mode 100644 index b528f5e3b7..0000000000 --- a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos5.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -parsed_sample: - - name: "Kl3t5k0p" - security_name: "write" - acl: "52" - group: "" - - name: "5pr1t5" - security_name: "read" - acl: "52" - group: "" diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw deleted file mode 100644 index ca63c78a02..0000000000 --- a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.raw +++ /dev/null @@ -1,6 +0,0 @@ -SNMP write community: Kl3t5k0p -SNMP access control lists : 52 -SNMP read community: 5pr1t5 -SNMP access control lists : 52 -SNMP read community: R3dCr055 -SNMP access control lists : 5 diff --git a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml b/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml deleted file mode 100644 index 9646a0f1b6..0000000000 --- a/tests/oneaccess_oneos/show_snmp_community/show_snmp_community.oneos6.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -parsed_sample: - - name: "Kl3t5k0p" - security_name: "write" - acl: "52" - group: "" - - name: "5pr1t5" - security_name: "read" - acl: "52" - group: "" - - name: "R3dCr055" - security_name: "read" - acl: "5" - group: "" diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw deleted file mode 100644 index dffce541b5..0000000000 --- a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.raw +++ /dev/null @@ -1,6 +0,0 @@ -server source stratum version last receive -101.208.220.147 Loopback 1 -10.208.220.19 Loopback 1 5 1 00:00:39 synced - -broadcast client mode is not enabled -SNTP Authentication is not enabled \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml deleted file mode 100644 index f412cb7b50..0000000000 --- a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos5.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - server: "101.208.220.147" - source: "Loopback 1" - stratum: "" - version: "" - last: "" - receive: "" - learn_from: "" - interface: "" - vrf: "" - failed_auth_pkts: "" - broadcast: "not enabled" - authentication: "not enabled" - - server: "10.208.220.19" - source: "Loopback 1" - stratum: "5" - version: "1" - last: "00:00:39" - receive: "synced" - learn_from: "" - interface: "" - vrf: "" - failed_auth_pkts: "" - broadcast: "not enabled" - authentication: "not enabled" diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw deleted file mode 100644 index 8517f0b49d..0000000000 --- a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.raw +++ /dev/null @@ -1,6 +0,0 @@ -server source stratum version last receive learn-from interface vrf failed-auth-pkts -101.208.220.147 Loopback 1 - - - - - Default 0 -101.208.220.19 Loopback 1 5 4 00:00:20 synced - - Default 0 - - broadcast client mode is not enabled - SNTP Authentication is not enabled \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml b/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml deleted file mode 100644 index a498ccab60..0000000000 --- a/tests/oneaccess_oneos/show_sntp/show_sntp.oneos6.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - server: "101.208.220.147" - source: "Loopback 1" - stratum: "" - version: "" - last: "" - receive: "-" - learn_from: "-" - interface: "-" - vrf: "Default" - failed_auth_pkts: "0" - broadcast: "not enabled" - authentication: "not enabled" - - server: "101.208.220.19" - source: "Loopback 1" - stratum: "5" - version: "4" - last: "00:00:20" - receive: "synced" - learn_from: "-" - interface: "-" - vrf: "Default" - failed_auth_pkts: "0" - broadcast: "not enabled" - authentication: "not enabled" diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw deleted file mode 100644 index 094769ad5e..0000000000 --- a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.raw +++ /dev/null @@ -1,9 +0,0 @@ -Binary file informations : - file name = /BSA/binaries/OneOs - software version = ONEOS92-DUAL_FT-V5.2R2E7_HA8 - software creation date = 04/08/20 17:31:55 - file size = 13852345 (0xD35EB9) - header checksum = 0xD920F600 - computed checksum = 0xD920F600 - target device = One92 -file is OK \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml deleted file mode 100644 index 662f482d8e..0000000000 --- a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos5.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -parsed_sample: - - status: "OK" - filename: "/BSA/binaries/OneOs" - filetype: "" - software_version: "ONEOS92-DUAL_FT-V5.2R2E7_HA8" - software_date: "04/08/20 17:31:55" - filesize: "13852345" - header_checksum: "0xD920F600" - computed_checksum: "0xD920F600" - target_device: "One92" diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw deleted file mode 100644 index f4b1c62c35..0000000000 --- a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.raw +++ /dev/null @@ -1,13 +0,0 @@ -Binary file information : - file name = OneOS-pCPE-ARM_pi1-6.8.4.ZZZ - file type = OneOs ZZZ - software version = OneOS-pCPE-ARM_pi1-6.8.4 - software creation date = 2022-08-02 16:59:01 - file size = 105178216 (0x644E468) - header checksum = 0x16368E60 - computed checksum = 0x16368E60 - target device = pCPE_ARM_pi1 ------ Extended Flash Binary ----- - --- Section 0 : OS / 5376 ko - --- Section 1 : ROOTFS / 97336 ko -File is OK diff --git a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml b/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml deleted file mode 100644 index f4833d3e30..0000000000 --- a/tests/oneaccess_oneos/show_soft-file_info/show_soft-file_info.oneos6.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -parsed_sample: - - status: "OK" - filename: "OneOS-pCPE-ARM_pi1-6.8.4.ZZZ" - filetype: "OneOs ZZZ" - software_version: "OneOS-pCPE-ARM_pi1-6.8.4" - software_date: "2022-08-02 16:59:01" - filesize: "105178216" - header_checksum: "0x16368E60" - computed_checksum: "0x16368E60" - target_device: "pCPE_ARM_pi1" diff --git a/tests/oneaccess_oneos/show_software-image/show_software-image.raw b/tests/oneaccess_oneos/show_software-image/show_software-image.raw deleted file mode 100644 index 2d70080418..0000000000 --- a/tests/oneaccess_oneos/show_software-image/show_software-image.raw +++ /dev/null @@ -1,9 +0,0 @@ ---------------- Active bank --------------- -Software version : OneOS-pCPE-ARM_pi1-6.8.4 -Creation date : 2022-08-02 16:59:01 -Header checksum : 0x16368E60 - --------------- Alternate bank ------------- -Software version : OneOS-pCPE-ARM_pi1-6.6.1m3 -Creation date : 2021-03-26 11:13:54 -Header checksum : 0x73ED8876 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_software-image/show_software-image.yml b/tests/oneaccess_oneos/show_software-image/show_software-image.yml deleted file mode 100644 index 4a43c10495..0000000000 --- a/tests/oneaccess_oneos/show_software-image/show_software-image.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -parsed_sample: - - bank: "Active" - software: "OneOS-pCPE-ARM_pi1-6.8.4" - created: "2022-08-02 16:59:01" - checksum: "0x16368E60" - - bank: "Alternate" - software: "OneOS-pCPE-ARM_pi1-6.6.1m3" - created: "2021-03-26 11:13:54" - checksum: "0x73ED8876" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw deleted file mode 100644 index 3fe88ab3df..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.raw +++ /dev/null @@ -1,19 +0,0 @@ - HARDWARE DESCRIPTION - - Device : LBB_150 - CPU : BCM63136 - ARMv7 Processor rev 1 (v7l) - - Core Freq : 1000MHz DDR Freq : 800MHz (1600 MT/s data rate) - Physical Ram size : 1GiB - Nand Flash size : 512MiB - - - Secure Boot protection : yes - - - Local : x Uplink : x Radio : Usb : - - Local : GIGABIT ETHERNET + SFP ETHERNET + SWITCH ETHERNET / 4 ports - Uplink : AVDSL/1 Pair POTS - Wlan 0 : BCM43602 - 2,4GHz - 3x3 - Wlan 1 : BCM4366 - 5GHz - 4x4 diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml deleted file mode 100644 index 3e3c750889..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb150.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - device: "LBB_150" - cpu: "BCM63136 - ARMv7 Processor rev 1 (v7l)" - corefreq: "1000" - ddrfreq: "800" - corecomplexbusfreq: "" - platformfreq: "" - physicalramsize: "1GiB" - oneosramsize: "" - nandflashsize: "512MiB" - ramdisk: "" - flashdisk: "" - uplink: "x" - isdn: "" - radio: "" - usb: "" - usb0: "" - usb1: "" - dsp: "" - wlan: "" - ports: "GIGABIT ETHERNET + SFP ETHERNET + SWITCH ETHERNET / 4 ports" - uplinkports: "AVDSL/1 Pair POTS" - securebootprotection: "yes" - wlan0: "BCM43602 - 2,4GHz -" - wlan1: "BCM4366 - 5GHz -" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw deleted file mode 100644 index c9fbc876a9..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.raw +++ /dev/null @@ -1,17 +0,0 @@ - HARDWARE DESCRIPTION - - Device : LBB_320 - CPU : Freescale P2020E - Security Engine - - Core Freq : 1200MHz DDR Freq : 600MHz - Core Complex Bus Freq : 600MHz Platform Freq : 600MHz - CPLD Index : 0x1 CPLD Version : 0x8 - Physical Ram size : 2048Mo OneOS Ram size : 2048Mo - Nand Flash size : 256Mo - Ram disk : 1Mo Flash disk : 246Mo - - Local : x Uplink : ISDN : Radio : Usb0 : Usb1 : - - Local : SFP ETHERNET + GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports - Dsp : 0 - Wlan : VendorID (0x168c) / DeviceID (0x002e) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml deleted file mode 100644 index d05a5a8d3d..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.lbb320.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - device: "LBB_320" - cpu: "Freescale P2020E - Security Engine" - corefreq: "1200" - ddrfreq: "600" - corecomplexbusfreq: "600" - platformfreq: "600" - physicalramsize: "2048Mo" - oneosramsize: "2048Mo" - nandflashsize: "256Mo" - ramdisk: "1Mo" - flashdisk: "246Mo" - uplink: "" - isdn: "" - radio: "" - usb: "" - usb0: "" - usb1: "" - dsp: "0" - wlan: "VendorID (0x168c) / DeviceID (0x002e)" - ports: "SFP ETHERNET + GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports" - uplinkports: "" - securebootprotection: "" - wlan0: "" - wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw deleted file mode 100644 index 245aef4599..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.raw +++ /dev/null @@ -1,23 +0,0 @@ - HARDWARE DESCRIPTION - - Device : PBXPLUG_103 - CPU : BCM63136 - ARMv7 Processor rev 1 (v7l) - - Core Freq : 1000MHz DDR Freq : 800MHz (1600 MT/s data rate) - Physical Ram size : 1GiB - Nand Flash size : 512MiB - - - Secure Boot protection : yes - - - Local : x Uplink : Radio : Usb : - - Local : GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports - FPGA : Version 0x0f Indice 0x0b - M Ext : PRI526 - FPGA Ext: Version 0x0f Indice 0x09 - Dsp : 2 - PRI Ext : (5/0) - BRI : (5/1, 5/2) - FXS : (5/3, 5/4, 5/5, 5/6) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml deleted file mode 100644 index 5a8d176ca7..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug103.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - device: "PBXPLUG_103" - cpu: "BCM63136 - ARMv7 Processor rev 1 (v7l)" - corefreq: "1000" - ddrfreq: "800" - corecomplexbusfreq: "" - platformfreq: "" - physicalramsize: "1GiB" - oneosramsize: "" - nandflashsize: "512MiB" - ramdisk: "" - flashdisk: "" - uplink: "" - isdn: "" - radio: "" - usb: "" - usb0: "" - usb1: "" - dsp: "2" - wlan: "" - ports: "GIGABIT ETHERNET + SWITCH ETHERNET / 4 ports" - uplinkports: "" - securebootprotection: "yes" - wlan0: "" - wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw deleted file mode 100644 index 5cce1a0338..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.raw +++ /dev/null @@ -1,17 +0,0 @@ - HARDWARE DESCRIPTION - - Device : PBXPLUG_212 - CPU : MPC8323 PowerQUICC II Pro - - Bus Freq : 131MHz QE Freq : 196MHz Core Freq : 327MHz EPLD Version : 0x1 EPLD Index : 0x1 - Ram size : 128Mo Flash size : 2Mo Extended Flash size : 256Mo - Ram disk : 1Mo Flash disk : 256Mo (Extended) - - Dsp0 : x Dsp1 : x TCXO : - - - Local : FAST ETHERNET - Uplink : - - PRI : (5/0-v2.2) - BRI : (5/1:lifeline, 5/2) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml deleted file mode 100644 index ca22042f72..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug212.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - device: "PBXPLUG_212" - cpu: "MPC8323 PowerQUICC II Pro" - corefreq: "" - ddrfreq: "" - corecomplexbusfreq: "" - platformfreq: "" - physicalramsize: "" - oneosramsize: "" - nandflashsize: "" - ramdisk: "" - flashdisk: "" - uplink: "" - isdn: "" - radio: "" - usb: "" - usb0: "" - usb1: "" - dsp: "" - wlan: "" - ports: "" - uplinkports: "" - securebootprotection: "" - wlan0: "" - wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw deleted file mode 100644 index 03c777dbcc..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.raw +++ /dev/null @@ -1,25 +0,0 @@ - HARDWARE DESCRIPTION - - Device : PBXPLUG_401 - CPU : Freescale T1040E (1.1) - Security Engine - 8-port Ethernet switch - - Core Freq : 1400MHz DDR Freq : 600MHz (1200 MT/s data rate) - Core Complex Bus Freq : 600MHz Platform Freq : 600MHz - FMAN Freq : 600MHz QMAN Freq : 300MHz - CPLD Index : 1 CPLD Version : E0 - FPGA Index : 1B FPGA Version : 0 - Physical Ram size : 2GiB - Nand Flash size : 512MiB - - - Secure Boot protection : no - - - Local : x Uplink : ISDN : Radio : Usb : - - Local : 2 x GIGABIT ETHERNET - M Ext : FXS904 - FPGA Ext: Version 0xf0 Indice 0x00 - Dsp : 4 - PRI : (5/0, 5/1, 5/2, 5/3) - FXS Ext : (5/4, 5/5, 5/6, 5/7) diff --git a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml b/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml deleted file mode 100644 index 3705c5736c..0000000000 --- a/tests/oneaccess_oneos/show_system_hardware/show_system_hardware.pbxplug401.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -parsed_sample: - - device: "PBXPLUG_401" - cpu: "Freescale T1040E (1.1) - Security Engine - 8-port Ethernet switch" - corefreq: "1400" - ddrfreq: "600" - corecomplexbusfreq: "600" - platformfreq: "600" - physicalramsize: "2GiB" - oneosramsize: "" - nandflashsize: "512MiB" - ramdisk: "" - flashdisk: "" - uplink: "" - isdn: "" - radio: "" - usb: "" - usb0: "" - usb1: "" - dsp: "4" - wlan: "" - ports: "" - uplinkports: "" - securebootprotection: "no" - wlan0: "" - wlan1: "" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw deleted file mode 100644 index 273fcad6f0..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.raw +++ /dev/null @@ -1,87 +0,0 @@ -coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.txt ------------------------------------------------------- -Crash caused by : Program terminated with signal SIGABRT, Aborted. -Crash time : 2022-02-25 2003 -Crash filename : /BSA/dump/coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.xz -Device identifier : PBXPLUG_103 S/N T2137008344020891 - -Software version : OneOS-pCPE-ARM_pi2-6.7.1m2 (integci_r1_1pa290b4_dev_photo116) -Software created on : 2021-10-08 15:30:45 -Boot version : BOOT-ARM_hw2-3.1.3 (integ_r1_1pa4b1_dev_b313std (CFE r1_3pa4)) -Boot created on : 2019-05-27 11:12:53 -Recovery version : OneOs-RCY-ARM_pi2-1.3.6 (integ_r1_1pa19b1_dev_b136std) -Recovery created on : 2019-10-11 09:21:48 - -System started : 2022-01-28 03:00:51 -Start caused by : Generic software reboot request -Sys Up time : 28d 17h 4m 3s -Core was generated by '/usr/bin/cp_voice' -* Backtrace -* -#0 0xb55a9ab4 in raise () from /lib/libc.so.6 -No symbol table info available. -#1 0xb55ad774 in abort () from /lib/libc.so.6 -No symbol table info available. -#2 0xb55a259c in __assert_fail_base () from /lib/libc.so.6 -No symbol table info available. -#3 0xb55a2678 in __assert_fail () from /lib/libc.so.6 -No symbol table info available. -#4 0xb56c2e4c in pthread_mutex_lock () from /lib/libpthread.so.0 -No symbol table info available. -#5 0xb54a034c in wdog_valid () from /usr/lib/libv2lin.so -No symbol table info available. -#6 0xb54a0434 in process_tick_for () from /usr/lib/libv2lin.so -No symbol table info available. -#7 0xb54a068c in process_timer_list () from /usr/lib/libv2lin.so -No symbol table info available. -#8 0xb5494774 in exception_task () from /usr/lib/libv2lin.so -No symbol table info available. -#9 0xb549524c in task_wrapper () from /usr/lib/libv2lin.so -No symbol table info available. -#10 0xb56bff20 in start_thread () from /lib/libpthread.so.0 -No symbol table info available. -#11 0xb5651e30 in ?? () from /lib/libc.so.6 -* -* Registers -* -r0 0x0 0 -r1 0x708 1800 -r2 0x6 6 -r3 0xb48678b0 3028711600 -r4 0x2 2 -r5 0xb56b70a4 3043717284 -r6 0xb48673f0 3028710384 -r7 0x10c 268 -r8 0x0 0 -r9 0xb4866864 3028707428 -r10 0x1 1 -r11 0x134170 1261936 -r12 0x0 0 -sp 0xb486685c 0xb486685c -lr 0xb55ad774 3042629492 -pc 0xb55a9ab4 0xb55a9ab4 -cpsr 0x20030010 537067536 -* -* Current instructions -* -=> 0xb55a9ab4 : cmn r0, #4096 ; 0x1000 - 0xb55a9ab8 : pop {r7} ; (ldr r7, [sp], #4) - 0xb55a9abc : ldrhi r2, [pc, #44] ; 0xb55a9af0 - 0xb55a9ac0 : rsbhi r1, r0, #0 - 0xb55a9ac4 : mvnhi r0, #0 - 0xb55a9ac8 : ldrhi r2, [pc, r2] - 0xb55a9acc : strhi r1, [r3, r2] - 0xb55a9ad0 : bx lr - 0xb55a9ad4 : cmp r0, #0 - 0xb55a9ad8 : bgt 0xb55a9aac - 0xb55a9adc : bic r12, r0, #-2147483648 ; 0x80000000 - 0xb55a9ae0 : cmp r12, #0 - 0xb55a9ae4 : rsbne r0, r0, #0 - 0xb55a9ae8 : moveq r0, r1 - 0xb55a9aec : b 0xb55a9aac - 0xb55a9af0 : andseq r12, r0, r12, ror #11 - -* -* End of file -* - diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml deleted file mode 100644 index 07669fdff0..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug103.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -parsed_sample: - - coredump_file: "coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.txt" - crash_caused_by: "Program terminated with signal SIGABRT, Aborted." - crash_time: "2022-02-25 2003" - crash_filename: "/BSA/dump/coredump_00011_2022-02-25T2003_tExcTask-6-1668-0-0.xz" - serial: - - "T2137008344020891" - deviceid: "PBXPLUG_103" - software: "OneOS-pCPE-ARM_pi2-6.7.1m2 (integci_r1_1pa290b4_dev_photo116)" - boot_version: "BOOT-ARM_hw2-3.1.3 (integ_r1_1pa4b1_dev_b313std (CFE r1_3pa4))" - recovery_version: "OneOs-RCY-ARM_pi2-1.3.6 (integ_r1_1pa19b1_dev_b136std)" - restarted: "2022-01-28 03:00:51" - reload_reason: "Generic software reboot request" - uptime: "28d 17h 4m 3s" - uptime_seconds: "3" - uptime_minutes: "4" - uptime_hours: "17" - uptime_days: "28" - version: "6" - core_generated_by: "/usr/bin/cp_voice" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw deleted file mode 100644 index 63760eb5b2..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.raw +++ /dev/null @@ -1,23 +0,0 @@ - -Last Raw Log saved in Flash : -=========================== - -Device identifier : MBPBX30NT2BLUZ S/N T19380048300 -Software version : ONEOS9-MONO_FT-V5.2R2E13 -Software created on : 22/12/20 16:31:56 -Boot version : BOOT9-SEC-V3.4R3E38 -Boot created on : 12/06/18 14:43:32 -License token : None - -Crash time : 05/01/23 19:42:30 -Crash file name : crash_000019/crashLog_050123_194230 -Sys Up Time : 38710060 ticks (774201 sec.) - -FATAL ERROR - -code : 0 -message : Assertion failed: inuse(p) in function do_check_inuse_chunk -file /tmp/gnutools/1802/target/config/comps/src/oaComps/system/memoryMgr/oaSysMemMgr.c, line 2635 - - oaSysMemMgr.c - 0 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml deleted file mode 100644 index 247122df7d..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug212.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -parsed_sample: - - coredump_file: "" - crash_caused_by: "" - crash_time: "05/01/23 19:42:30" - crash_filename: "crash_000019/crashLog_050123_194230" - serial: - - "T19380048300" - deviceid: "MBPBX30NT2BLUZ" - software: "ONEOS9-MONO_FT-V5.2R2E13" - boot_version: "BOOT9-SEC-V3.4R3E38" - recovery_version: "" - restarted: "" - reload_reason: "" - uptime: "38710060 ticks (774201 sec.)" - uptime_seconds: "" - uptime_minutes: "" - uptime_hours: "" - uptime_days: "" - version: "5" - core_generated_by: "" diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw deleted file mode 100644 index f844586e9c..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.raw +++ /dev/null @@ -1,212 +0,0 @@ -coredump_01482_2022-09-25T0404_poscrash1-10-7651-0-0.txt --------------------------------------------------------- -Crash caused by : POS CRASH: Data TLB interrupt -Crash time : 2022-09-25 0404 -Crash filename : No coredumpfile (intentionally) -Device identifier : PBXPLUG_401 S/N T1817008168000443 - -Software version : OneOS-pCPE-PPC_pi2-6.6.1m3 (integci_r1_1pa266b5_dev_photo104) -Software created on : 2021-03-26 11:13:55 -Boot version : BOOT-PPC_hw2-2.0.5 (integ_r1_1pa16b1_dev_b205std (U-Boot 2014.01-oatools-r3_5pa7 )) -Boot created on : 2017-11-14 10:33:17 -Recovery version : OneOs-RCY-PPC_pi2-1.2.1 (integci_r1_1pa10b3_dev_photo2) -Recovery created on : 2017-10-13 16:47:13 - -System started : 2022-09-25 01:00:40 -Start caused by : Generic software reboot request -Sys Up time : 0d 3h 3m 53s -============================================================================= -======= CORE DUMP @ CORE 1 =====(V00.07) -============================================================================= -======= System information ================================================= -======= -> CORE 1 -======= -> System version 85280011 -======= -> System-up time 10954867 ms -======= Exception information ============================================== -======= -> Type "Data TLB interrupt" (0000000E) -============================================================================= -======= -> Registers Stack -============================================================================= -r0....0031EAC4 r8....00000000 r16...44000022 r24...8FC20A4C |SP-> 2C04FEE4 -r1....2C04FE74 r9....00700000 r17...0031AD44 r25...00000000 |+004 0031EAC4 -r2....00560308 r10...DDDDDDDD r18...00324FF0 r26...2C04FF50 |+008 00000000 -r3....00540CF0 r11...00000000 r19...FE0610B0 r27...FFFFFFFF |+00C 00000000 -r4....00000000 r12...0000000F r20...2C01F5C0 r28...2C04FF4C |+010 2C04D680 -r5....00000000 r13...00507FF0 r21...10008000 r29...00540CB8 |+014 00010000 -r6....0000003F r14...00000DF9 r22...00000000 r30...2C04FF54 |+018 00000000 -r7....0000000D r15...00000000 r23...00000000 r31...2C04FEEC |+01C 00000000 --------------------------------------------------------------- |+020 00000000 -XER...20000000 LR....0031EAF0 CTR...00000000 CR ...44000028 |+024 00000000 --------------------------------------------------------------- |+028 00000000 -SRR0..0031BAE0 SRR1..1002BB00 DEAR..DDDDDDE1 |+02C 00000000 -GSRR0.0031AD44 GSRR1.1002BB00 GDEAR.00000000 |+030 00000000 --------------------------------------------------------------- |+034 00000000 -SPRG0.............70076E80 GSPRG0.............2C04D680 |+038 00000000 -SPRG1.............70076E80 GSPRG1.............2C01F5C0 |+03C FFFFFFFF -SPRG2.............00000000 GSPRG2.............00005764 |+040 002BEAF4 -SPRG3.............AF14900C GSPRG3.............00507FF0 |+044 00560308 -SPRG4.............00000000 |+048 2C04FECC -SPRG5.............44000022 |+04C 00005E1C -SPRG6.............0031AD44 |+050 00325E10 -SPRG7.............00324FF0 |+054 00400C70 -SPRG8.............00000000 |+058 00000000 -SPRG9.............FE0610B0 |+05C 2C04FF54 -============================================================================= -======= -> Instructions (HV) |+060 00540680 -============================================================== |+064 2C04FF50 -[0031BA84]:.41DE000C..beq- cr7,0x000000000031ba90 |+068 2C04FF4C -[0031BA88]:.39000000..li r8,0 |+06C 00540680 -[0031BA8C]:.910A0004..stw r8,4(r10) |+070 2C04FF44 -[0031BA90]:.39400000..li r10,0 |+074 00321E88 -[0031BA94]:.7D234B78..mr r3,r9 |+078 00000000 -[0031BA98]:.91440004..stw r10,4(r4) |+07C 00000000 -[0031BA9C]:.91440000..stw r10,0(r4) |+080 00000002 -[0031BAA0]:.4E800020..blr |+084 00000005 -[0031BAA4]:.81490004..lwz r10,4(r9) |+088 01000000 -[0031BAA8]:.39000000..li r8,0 |+08C 000A0BB8 -[0031BAAC]:.91430004..stw r10,4(r3) |+090 00000000 -[0031BAB0]:.910A0000..stw r8,0(r10) |+094 2C04FF50 -[0031BAB4]:.4BFFFF90..b 0x000000000031ba44 |+098 00000000 -[0031BAB8]:.60000000..nop |+09C 00000000 -[0031BABC]:.60000000..nop |+0A0 00000000 -[0031BAC0]:.81230000..lwz r9,0(r3) |+0A4 00000000 -[0031BAC4]:.2F890000..cmpwi cr7,r9,0 |+0A8 00000000 -[0031BAC8]:.41DE0028..beq- cr7,0x000000000031baf0 |+0AC 8FC20A20 -[0031BACC]:.81490000..lwz r10,0(r9) |+0B0 2C04FF44 -[0031BAD0]:.2F8A0000..cmpwi cr7,r10,0 |+0B4 0031AE6C -[0031BAD4]:.91430000..stw r10,0(r3) |+0B8 00000000 -[0031BAD8]:.41DE000C..beq- cr7,0x000000000031bae4 |+0BC 00400C24 -[0031BADC]:.39000000..li r8,0 |+0C0 00400CF8 -[0031BAE0]:.910A0004..stw r8,4(r10) |+0C4 00000003 -============================================================================= -======= -> Instructions (SV) |+0C8 00501BC4 -============================================================== |+0CC 00500350 -[0031ACE8]:.913B0000..stw r9,0(r27) |+0D0 2C04FF84 -[0031ACEC]:.83810010..lwz r28,16(r1) |+0D4 002BEAF4 -[0031ACF0]:.7C0803A6..mtlr r0 |+0D8 00000000 -[0031ACF4]:.8361000C..lwz r27,12(r1) |+0DC 8FC20A4C -[0031ACF8]:.83A10014..lwz r29,20(r1) |+0E0 00000001 -[0031ACFC]:.83C10018..lwz r30,24(r1) |+0E4 002BEA50 -[0031AD00]:.83E1001C..lwz r31,28(r1) |+0E8 00000000 -[0031AD04]:.38210020..addi r1,r1,32 |+0EC 00000007 -[0031AD08]:.4E800020..blr |+0F0 00000000 -[0031AD0C]:.00000000...long 0x0 |+0F4 00000000 -[0031AD10]:.2C040000..cmpwi r4,0 |+0F8 00000000 -[0031AD14]:.4DC20020..beqlr- |+0FC 00000000 -[0031AD18]:.9421FFE0..stwu r1,-32(r1) |+100 00000000 -[0031AD1C]:.7C0802A6..mflr r0 |+104 00000000 -[0031AD20]:.90010024..stw r0,36(r1) |+108 00000000 -[0031AD24]:.93810010..stw r28,16(r1) |+10C 00000000 -[0031AD28]:.7C7C1B78..mr r28,r3 |+110 00000000 -[0031AD2C]:.93A10014..stw r29,20(r1) |+114 00000000 -[0031AD30]:.7C9D2378..mr r29,r4 |+118 00000000 -[0031AD34]:.93C10018..stw r30,24(r1) |+11C 00000000 -[0031AD38]:.3FC00054..lis r30,84 |+120 00000000 -[0031AD3C]:.93E1001C..stw r31,28(r1) |+124 00000000 -[0031AD40]:.48027049..bl 0x0000000000341d88 |+128 00000000 -[0031AD44]:.48027045..bl 0x0000000000341d88 |+12C 00000000 -============================================================================= -======= -> Current thread " CP2DP_IPSEC_COM" ID=0x2C04D680 -============================================================================= -Stack pointer : 0x2C04FDE8 -Program counter: 0x0031BAE0 -Stack start : 0x2C04D898 controlword 0x37510000 -Stack end : 0x2C04FFA4 controlword 0xEEEEEEEE -Stack frame below 0x2C04FDE8 -....0000 SRR0 0x0000006A -....0004 SRR1 0x8FC1A458 -....0008 LR 0x00000000 -....000C XER 0x2C04FE24 -....0010 CR 0x002BEDA4 -....0014 CTR 0x00000001 -....0018 R31 0x00000014 -....001C R30 0x2C04FE24 -....0020 R29 0x002BEC5C -....0024 R28 0x00000001 -....0028 R27 0x8FC1A44C -....002C R26 0x00400CF8 -....0030 R25 0x00000003 -....0034 R24 0x8FC20A58 -....0038 R23 0x8FC1A458 -....003C R22 0x2C04FF44 -....0040 R12 0x002A47F0 -....0044 R11 0x00000000 -....0048 R10 0x00000000 -....004C R9 0x00000002 -....0050 R8 0x1002BB00 -....0054 R7 0x0000000E -....0058 R6 0x0000003F -....005C R5 0x00000000 -....0060 R4 0xFFFFFFFF -....0064 R3 0x005429A0 -....0068 R0 0x00000000 -....006C -- 0xFFFFFFFF -....0070 - 0xFFFFFFFF -....0074 - 0xFFFFFFFF -============================================================================= -======= -> List of threads -============================================================================= - Sat Comms (0x2C067DF0) asleep - System@C1-SV (0x2C018C88) awake - OAMCAPI_DISP (0x2C01727C) awake - OAMCAPI_MEMPRX (0x2C015870) asleep - OAMCAPI_CTRL (0x2C013E64) asleep - MCAPI_CP2DPc1 (0x2C012458) asleep - MGMT_CP2DPc1 (0x2C010A4C) asleep - MCAPI_RIB2DP (0x2C03E620) asleep - MCAPI_MCPIM2DP (0x2C03CC14) asleep - MCAPI_MCIGMP2DP (0x2C03B208) asleep -IPI:Pos@C2->Pos@C1 (0x2C0397FC) asleep -IPI:Pos@C3->Pos@C1 (0x2C037DF0) asleep - Qos_shaper_0 (0x2C0363E4) asleep - IPSEC_SW_CE_Main (0x2C033A38) asleep - IPSEC_SW_CEc0 (0x2C03108C) asleep - CP2DP_IPSEC_COM (0x2C04D680) awake - Datapath@C1 (0x2C048B08) asleep - LocalTraffic@C1 (0x2C0470FC) asleep - Message parser@C1 (0x2C0456F0) asleep - Intf_Comms (0x2C04BC74) asleep - Arp_Comms (0x2C043CE4) asleep - Ipv4_Comms (0x2C0422D8) asleep - Ipv6_Comms (0x2C05E620) asleep - L2_Comms (0x2C05CC14) asleep - Multilink_Comms (0x2C05B208) asleep - Acl_Comms (0x2C0597FC) asleep - Nat_Comms (0x2C057DF0) asleep - Fap_Comms (0x2C0563E4) asleep - IpAcc_Comms (0x2C0549D8) asleep - DP2CP_NETFLOW (0x2C052FCC) asleep - NetApm_Comms (0x2C0515C0) asleep - Zbfw_Comms (0x2C06E620) asleep - Tic_Comms (0x2C06CC14) asleep - TicDb_Comms (0x2C06B208) asleep - TICDB_CP2DP_COM (0x2C0697FC) asleep -============================================================================= -======= -> Callstack -============================================================================= -Current..................Stacked -0031BAE0.................00321E88 -0031EAF0.................002BEAF4 -FFFFFFFF.................00000000 -FFFFFFFF.................00000000 -FFFFFFFF.................00000000 -============================================================================= -Current -============================================================================= -[0] 0X0031BAE0 oamcapi_dequeue_entry+0x20 -llist.c:163 - -[1] 0X0031EAF0 oamcapi_pkt_recv+0x90 -pkt_recv.c:56 - -============================================================================= -Stacked -============================================================================= -[0] 0X00321E88 mcapi_pktchan_recv+0x148 -mcapi_pktchan_recv.c:68 - -[1] 0X002BEAF4 ipsecmsg_ProcessMsgs+0xa4 -ipsec_msg.c:229 - -============================================================================= - diff --git a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml b/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml deleted file mode 100644 index ca5c40ea6c..0000000000 --- a/tests/oneaccess_oneos/show_system_secure-crashlog/show_system_secure-crashlog.plug401.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -parsed_sample: - - coredump_file: "coredump_01482_2022-09-25T0404_poscrash1-10-7651-0-0.txt" - crash_caused_by: "POS CRASH: Data TLB interrupt" - crash_time: "2022-09-25 0404" - crash_filename: "No coredumpfile (intentionally)" - serial: - - "T1817008168000443" - deviceid: "PBXPLUG_401" - software: "OneOS-pCPE-PPC_pi2-6.6.1m3 (integci_r1_1pa266b5_dev_photo104)" - boot_version: "BOOT-PPC_hw2-2.0.5 (integ_r1_1pa16b1_dev_b205std (U-Boot 2014.01-oatools-r3_5pa7\ - \ ))" - recovery_version: "OneOs-RCY-PPC_pi2-1.2.1 (integci_r1_1pa10b3_dev_photo2)" - restarted: "2022-09-25 01:00:40" - reload_reason: "Generic software reboot request" - uptime: "0d 3h 3m 53s" - uptime_seconds: "53" - uptime_minutes: "3" - uptime_hours: "3" - uptime_days: "0" - version: "6" - core_generated_by: "" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw deleted file mode 100644 index 1ece4d0c77..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.raw +++ /dev/null @@ -1,22 +0,0 @@ -System Information for device MB420SAVad0UFPE0BNW S/N T1703006230033175 - -Software version : ONEOS16-MONO_FT-V5.2R2E7_HA8 -Software created on : 04/08/20 18:14:48 -License token : None -Boot version : BOOT16-SEC-V3.4R3E40C -Boot created on : 14/06/16 09:34:31 - -Boot Flags : 0x00000008 - -Current system time : 29/09/22 13:41:52 -System started : 02/07/22 16:20:10 -Start caused by : Power Fail detection -Sys Up time : 88d 21h 21m 42s -System clock ticks : 384072819 - -Current CPU load : 16.1% -Current Critical Tasks CPU load : 14.4% -Current Non Critical Tasks CPU load : 1.7% -Average CPU load (5 / 60 Minutes) : 15.8% / 15.6% - -Free / Max RAM : 163,04 / 208,59 MB \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml deleted file mode 100644 index ee6e167520..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos5.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -parsed_sample: - - serial: - - "T1703006230033175" - deviceid: "MB420SAVad0UFPE0BNW" - software: "ONEOS16-MONO_FT-V5.2R2E7_HA8" - boot_version: "BOOT16-SEC-V3.4R3E40C" - recovery_version: "" - boot_flags: "0x00000008" - system_time: "29/09/22 13:41:52" - restarted: "02/07/22 16:20:10" - reload_reason: "Power Fail detection" - uptime: "88d 21h 21m 42s" - uptime_seconds: "42" - uptime_minutes: "21" - uptime_hours: "21" - uptime_days: "88" - version: "5" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw deleted file mode 100644 index 84f739fd3a..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.raw +++ /dev/null @@ -1,17 +0,0 @@ -System Information for device LBB_150 S/N T2121008554075089 - -Software version : OneOS-pCPE-ARM_pi1-6.6.1m3 -Software created on : 2021-03-26 11:13:54 -Boot version : BOOT-ARM_hw1-3.1.3 -Boot created on : 2019-05-27 11:11:55 -Recovery version : OneOs-RCY-ARM_pi1-1.3.4 -Recovery created on : 2019-05-21 11:16:59 - -Current system time : 2022-09-29 15:54:19+0200 -System started : 2022-09-22 06:24:19+0200 -Start caused by : Software requested / System defense - reboot after crash -Sys Up time : 7d 9h 30m 0s - -Core Type last sec last min last hour last day last 72 hours - 0 control 61.0 % 4.0 % 0.0 % 0.0 % 0.0 % - 1 forwarding 0.0 % 0.0 % 0.0 % 0.0 % 0.0 % \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml deleted file mode 100644 index 53f3e1ef3b..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.oneos6.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -parsed_sample: - - serial: - - "T2121008554075089" - deviceid: "LBB_150" - software: "OneOS-pCPE-ARM_pi1-6.6.1m3" - boot_version: "BOOT-ARM_hw1-3.1.3" - recovery_version: "OneOs-RCY-ARM_pi1-1.3.4" - boot_flags: "" - system_time: "2022-09-29 15:54:19+0200" - restarted: "2022-09-22 06:24:19+0200" - reload_reason: "Software requested / System defense - reboot after crash" - uptime: "7d 9h 30m 0s" - uptime_seconds: "0" - uptime_minutes: "30" - uptime_hours: "9" - uptime_days: "7" - version: "6" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw deleted file mode 100644 index 1944335fad..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.raw +++ /dev/null @@ -1,17 +0,0 @@ -System Information for device PBXPLUG_103 S/N T21370083440208 - -Software version : OneOS-pCPE-ARM_pi2-6.7.1m2 -Software created on : 2021-10-08 15:30:45 -Boot version : BOOT-ARM_hw2-3.1.3 -Boot created on : 2019-05-27 11:12:53 -Recovery version : OneOs-RCY-ARM_pi2-1.3.6 -Recovery created on : 2019-10-11 09:21:48 - -Current system time : 2023-01-06 09:32:53+0100 -System started : 2022-12-28 03:00:45+0100 -Start caused by : Generic software reboot request -Sys Up time : 9d 6h 32m 8s - -Core Type last sec last min last hour last day last 72 hours - 0 control 4.0 % 30.0 % 20.0 % 19.0 % 19.0 % - 1 forwarding 1.0 % 1.0 % 1.0 % 1.0 % 1.0 % diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml deleted file mode 100644 index 46c155b1b8..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug103.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -parsed_sample: - - serial: - - "T21370083440208" - deviceid: "PBXPLUG_103" - software: "OneOS-pCPE-ARM_pi2-6.7.1m2" - boot_version: "BOOT-ARM_hw2-3.1.3" - recovery_version: "OneOs-RCY-ARM_pi2-1.3.6" - boot_flags: "" - system_time: "2023-01-06 09:32:53+0100" - restarted: "2022-12-28 03:00:45+0100" - reload_reason: "Generic software reboot request" - uptime: "9d 6h 32m 8s" - uptime_seconds: "8" - uptime_minutes: "32" - uptime_hours: "6" - uptime_days: "9" - version: "6" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw deleted file mode 100644 index 6c72013bed..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.raw +++ /dev/null @@ -1,19 +0,0 @@ -System Information for device MBPBX30NT2BLUZ S/N T19380048300301 - -Software version : ONEOS9-MONO_FT-V5.2R2E13 -Software created on : 22/12/20 16:31:56 -License token : None -Boot version : BOOT9-SEC-V3.4R3E38 -Boot created on : 12/06/18 14:43:32 - -Boot Flags : 0x00000008 - -Current system time : 06/01/23 09:39:00 -System started : 05/01/23 19:43:59 -Start caused by : Software requested / System defense - reboot after crash -Sys Up time : 0d 13h 55m 1s -System clock ticks : 2505228 - -Current CPU load : 6.0% -Current Critical Tasks CPU load : 3.2% -Current Non Critical Tasks CPU load : 2.8% diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml deleted file mode 100644 index dc8c681583..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug212.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -parsed_sample: - - serial: - - "T19380048300301" - deviceid: "MBPBX30NT2BLUZ" - software: "ONEOS9-MONO_FT-V5.2R2E13" - boot_version: "BOOT9-SEC-V3.4R3E38" - recovery_version: "" - boot_flags: "0x00000008" - system_time: "06/01/23 09:39:00" - restarted: "05/01/23 19:43:59" - reload_reason: "Software requested / System defense - reboot after crash" - uptime: "0d 13h 55m 1s" - uptime_seconds: "1" - uptime_minutes: "55" - uptime_hours: "13" - uptime_days: "0" - version: "5" diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw deleted file mode 100644 index 0a7b982404..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.raw +++ /dev/null @@ -1,24 +0,0 @@ -System Information for device PBXPLUG_401 S/N T18170081680004 - -Software version : OneOS-pCPE-PPC_pi2-6.6.1m3 -Software created on : 2021-03-26 11:13:55 -Boot version : BOOT-PPC_hw2-2.0.5 -Boot created on : 2017-11-14 10:33:17 -Recovery version : OneOs-RCY-PPC_pi2-1.2.1 -Recovery created on : 2017-10-13 16:47:13 - -Current system time : 2023-01-06 09:38:12+0100 -System started : 2023-01-01 03:00:50+0100 -Start caused by : Generic software reboot request -Sys Up time : 5d 6h 37m 22s -PSU : normal - -Temperatures: - CPU normal 65.75 C (alarm level: 100.00 C) - board sensor 1 normal 47.00 C (alarm level: 80.00 C) - -Core Type last sec last min last hour last day last 72 hours - 0 control 59.0 % 25.0 % 21.0 % 21.0 % 21.0 % - 1 forwarding 1.0 % 1.0 % 1.0 % 0.0 % 0.0 % - 2 forwarding 1.0 % 1.0 % 1.0 % 0.0 % 0.0 % - 3 forwarding 1.0 % 1.0 % 1.0 % 1.0 % 1.0 % diff --git a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml b/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml deleted file mode 100644 index 62d66d4f49..0000000000 --- a/tests/oneaccess_oneos/show_system_status/show_system_status.plug401.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -parsed_sample: - - serial: - - "T18170081680004" - deviceid: "PBXPLUG_401" - software: "OneOS-pCPE-PPC_pi2-6.6.1m3" - boot_version: "BOOT-PPC_hw2-2.0.5" - recovery_version: "OneOs-RCY-PPC_pi2-1.2.1" - boot_flags: "" - system_time: "2023-01-06 09:38:12+0100" - restarted: "2023-01-01 03:00:50+0100" - reload_reason: "Generic software reboot request" - uptime: "5d 6h 37m 22s" - uptime_seconds: "22" - uptime_minutes: "37" - uptime_hours: "6" - uptime_days: "5" - version: "6" diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw deleted file mode 100644 index c8f602a60a..0000000000 --- a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.raw +++ /dev/null @@ -1,6 +0,0 @@ ------ List of TACACS+ server ----- - - IP address Port Secret Key Source address VRF - 1.1.1.1 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 - 2.2.2.2 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 - 3.3.3.3 49 6b57e38f62d089b98be63ff357fccc9e9d959eba64bc Loopback 1 diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml deleted file mode 100644 index 8c6c30db67..0000000000 --- a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos5.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -parsed_sample: - - tacacs_server: "1.1.1.1" - server_port: "49" - secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" - source: "Loopback 1" - vrf: "" - - tacacs_server: "2.2.2.2" - server_port: "49" - secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" - source: "Loopback 1" - vrf: "" - - tacacs_server: "3.3.3.3" - server_port: "49" - secret_key: "6b57e38f62d089b98be63ff357fccc9e9d959eba64bc" - source: "Loopback 1" - vrf: "" diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw deleted file mode 100644 index 7748effd04..0000000000 --- a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.raw +++ /dev/null @@ -1,8 +0,0 @@ - IP address Port number Secret Key Interface VRF - ----------------------------------- - -1.1.1.1 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router - -2.2.2.2 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router - -3.3.3.3 49 1400cea433ff79c9d69b58da81d2c7a3a29091c751cf loopback 1 Default-Router diff --git a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml b/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml deleted file mode 100644 index 1002b8ba05..0000000000 --- a/tests/oneaccess_oneos/show_tacacs-server/show_tacacs-server.oneos6.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -parsed_sample: - - tacacs_server: "1.1.1.1" - server_port: "49" - secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" - source: "loopback 1" - vrf: "" - - tacacs_server: "2.2.2.2" - server_port: "49" - secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" - source: "loopback 1" - vrf: "" - - tacacs_server: "3.3.3.3" - server_port: "49" - secret_key: "1400cea433ff79c9d69b58da81d2c7a3a29091c751cf" - source: "loopback 1" - vrf: "" diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw deleted file mode 100644 index 6e1278c57a..0000000000 --- a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.raw +++ /dev/null @@ -1,35 +0,0 @@ - TACACS+ SERVER Statistics - -------------------------- - Tacacs+ Server Address : 91.208.220.142 - Server port : 49 - Number of sockets open : 14196 - Number of sockets closed : 13677 - Number of sockets aborted : 0 - Number of sockets error : 0 - Number of sockets timeout : 0 - Number of connect fails : 4 - Number of packets sent : 14590 - Number of packets received : 14590 - - Tacacs+ Server Address : 1.2.3.4 - Server port : 49 - Number of sockets open : 5124 - Number of sockets closed : 4933 - Number of sockets aborted : 0 - Number of sockets error : 0 - Number of sockets timeout : 0 - Number of connect fails : 0 - Number of packets sent : 5264 - Number of packets received : 5264 - - Tacacs+ Server Address : 11.22.33.44 - Server port : 49 - Number of sockets open : 126 - Number of sockets closed : 119 - Number of sockets aborted : 0 - Number of sockets error : 0 - Number of sockets timeout : 0 - Number of connect fails : 21 - Number of packets sent : 105 - Number of packets received : 105 - diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml deleted file mode 100644 index 180485d1fc..0000000000 --- a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos5.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -parsed_sample: - - tacacs_server: "91.208.220.142" - server_port: "49" - socket_opens: "14196" - socket_closes: "13677" - socket_aborts: "0" - socket_errors: "0" - socket_timeouts: "0" - failed_connections: "4" - packets_sent: "14590" - packet_received: "14590" - - tacacs_server: "1.2.3.4" - server_port: "49" - socket_opens: "5124" - socket_closes: "4933" - socket_aborts: "0" - socket_errors: "0" - socket_timeouts: "0" - failed_connections: "0" - packets_sent: "5264" - packet_received: "5264" - - tacacs_server: "11.22.33.44" - server_port: "49" - socket_opens: "126" - socket_closes: "119" - socket_aborts: "0" - socket_errors: "0" - socket_timeouts: "0" - failed_connections: "21" - packets_sent: "105" - packet_received: "105" diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw deleted file mode 100644 index 13e9b6e069..0000000000 --- a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.raw +++ /dev/null @@ -1,34 +0,0 @@ - TACACS+ SERVER Statistics --------------------------- - Tacacs+ Server Address : 1.1.1.1 - Server port : 49 - Number of sockets open : 73 - Number of sockets closed : 73 - Number of sockets aborted : 0 - Number of sockets error : 8 - Number of sockets timeout : 0 - Number of connect fails : 40 - Number of packets sent : 55 - Number of packets received : 70 - - Tacacs+ Server Address : 2.2.2.2 - Server port : 49 - Number of sockets open : 88 - Number of sockets closed : 88 - Number of sockets aborted : 0 - Number of sockets error : 3 - Number of sockets timeout : 0 - Number of connect fails : 0 - Number of packets sent : 88 - Number of packets received : 97 - - Tacacs+ Server Address : 3.3.3.3 - Server port : 49 - Number of sockets open : 38 - Number of sockets closed : 38 - Number of sockets aborted : 0 - Number of sockets error : 0 - Number of sockets timeout : 0 - Number of connect fails : 0 - Number of packets sent : 38 - Number of packets received : 38 diff --git a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml b/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml deleted file mode 100644 index a2c8e1362f..0000000000 --- a/tests/oneaccess_oneos/show_tacacs/show_tacacs.oneos6.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -parsed_sample: - - tacacs_server: "1.1.1.1" - server_port: "49" - socket_opens: "73" - socket_closes: "73" - socket_aborts: "0" - socket_errors: "8" - socket_timeouts: "0" - failed_connections: "40" - packets_sent: "55" - packet_received: "70" - - tacacs_server: "2.2.2.2" - server_port: "49" - socket_opens: "88" - socket_closes: "88" - socket_aborts: "0" - socket_errors: "3" - socket_timeouts: "0" - failed_connections: "0" - packets_sent: "88" - packet_received: "97" - - tacacs_server: "3.3.3.3" - server_port: "49" - socket_opens: "38" - socket_closes: "38" - socket_aborts: "0" - socket_errors: "0" - socket_timeouts: "0" - failed_connections: "0" - packets_sent: "38" - packet_received: "38" diff --git a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw deleted file mode 100644 index 100b5f53a6..0000000000 --- a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.raw +++ /dev/null @@ -1,51 +0,0 @@ - - Track 1 - - interface GigabitEthernet 0/0 ip-routing - - Ip-routing is UP - - 1 Change, Last Change 12:48:41 - - Up Delay 2, Down Delay 2 - - Poll Interval (in msec) 1000 - - - Track 2 - - interface GigabitEthernet 0/1 ip-routing - - Ip-routing is UP - - 1 Change, Last Change 12:48:41 - - Up Delay 2, Down Delay 2 - - Poll Interval (in msec) 1000 - - - Track 3 - - interface GigabitEthernet 0/2 ip-routing - - Ip-routing is UP - - 1 Change, Last Change 12:48:41 - - Up Delay 2, Down Delay 2 - - Poll Interval (in msec) 1000 - - - Track 4 - - VRRP Id 4 vrf ORANGE_APN_WGKAIOT_0001 - - Vrrp is UP - - 3 Change, Last Change 09:14:18 - - Up Delay 2, Down Delay 2 - - Poll Interval (in msec) 3000 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml b/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml deleted file mode 100644 index a4885f2e3e..0000000000 --- a/tests/oneaccess_oneos/show_track_all/show_track_all.lbb320.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -parsed_sample: - - id: "1" - category: "ip-routing" - interface: "GigabitEthernet 0/0" - vrrp_id: "" - vrf: "" - state: "UP" - state_changes: "1" - last_change: "12:48:41" - up_delay: "2" - down_delay: "2" - poll_interval: "1000" - - id: "2" - category: "ip-routing" - interface: "GigabitEthernet 0/1" - vrrp_id: "" - vrf: "" - state: "UP" - state_changes: "1" - last_change: "12:48:41" - up_delay: "2" - down_delay: "2" - poll_interval: "1000" - - id: "3" - category: "ip-routing" - interface: "GigabitEthernet 0/2" - vrrp_id: "" - vrf: "" - state: "UP" - state_changes: "1" - last_change: "12:48:41" - up_delay: "2" - down_delay: "2" - poll_interval: "1000" - - id: "4" - category: "VRRP" - interface: "" - vrrp_id: "4" - vrf: "ORANGE_APN_WGKAIOT_0001" - state: "UP" - state_changes: "3" - last_change: "09:14:18" - up_delay: "2" - down_delay: "2" - poll_interval: "3000" diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw deleted file mode 100644 index e6592b6160..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.raw +++ /dev/null @@ -1,2 +0,0 @@ - -No SFP module present diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb140_empty.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw deleted file mode 100644 index 5596295293..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.raw +++ /dev/null @@ -1,64 +0,0 @@ -SFP 1/0: - Physical device = SFP transceiver - connector = LC - vendor: - name = ONE ACCESS - id = unspecified - partNumber = OA40681 - revision = A - serialNumber = F79B0FE - dateCode = 191218 - transceiver: - sonetOc48 = not available - sonetOc12_3 = not available - ethernetComplianceCode = 1000BASE-SX - 10G ethernetComplianceCode = not available - fiberLinkLen = intermediate distance - fiberTech = Shortwave laser w/o OFC - fiberTxMedia = not available - fiberSpeed = 100 MBytes/Sec - wavelength = 20995 nm - encoding = 8B10B - nominalBitRate = 1300 Mbps - Link length in: - single fiber mode = 0 m - 50u multi-mode fiber = 550 m - 62.5u multi-mode fiber = 270 m - copper cable = Not supported - options = Loss of Signal - TX_FAULT signal - TX_DISABLE signal - Max bit rate = not specified - Min bit rate = not specified - - Diagnostics calibration is internal - Temp High Alarm = 85.0 C - Temp Low Alarm = -10.0 C - Temp High Warning = 80.0 C - Temp Low Warning = -5.0 C - Voltage High Alarm = 3.60 V - Voltage Low Alarm = 2.90 V - Voltage High Warning = 3.50 V - Voltage Low Warning = 3.00 V - Bias High Alarm = 50.000 mA - Bias Low Alarm = 0.500 mA - Bias High Warning = 40.000 mA - Bias Low Warning = 0.100 mA - TX Power High Alarm = 0.7943 mW - TX Power Low Alarm = 0.0631 mW - TX Power High Warning = 0.6310 mW - TX Power Low Warning = 0.0794 mW - RX Power High Alarm = 1.2589 mW - RX Power Low Alarm = 0.0100 mW - RX Power High Warning = 1.0000 mW - RX Power Low Warning = 0.0126 mW - Internally Measured Module Temperature = 57.4 C - Internally Measured Supply Voltage = 3.30 V - Internally Measured Tx Bias Current = 10.700 mA - Measured Tx Output Power = 0.2153 mW (-6.67 dBm) - Measured Rx Input Power = 0.1287 mW (-8.90 dBm) - Optional Status Control Reg = 0x00 - Alarm and Warning Flag Reg offset 112 = 0x00 - Alarm and Warning Flag Reg offset 113 = 0x00 - Alarm and Warning Flag Reg offset 116 = 0x00 - Alarm and Warning Flag Reg offset 117 = 0x00 diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml deleted file mode 100644 index 05b136efca..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150.yml +++ /dev/null @@ -1,54 +0,0 @@ ---- -parsed_sample: - - port: "1/0" - physical_device: "SFP transceiver" - connector: "LC" - vendor_name: "ONE ACCESS" - vendor_id: "unspecified" - vendor_partnr: "OA40681" - vendor_revision: "A" - vendor_datecode: "191218" - tcvr_ether_compliance: "1000BASE-SX" - tcvr_10g_ether_compliance: "not available" - tcvr_fiber_linklen: "intermediate distance" - tcvr_fiber_tech: "Shortwave laser w/o OFC" - tcvr_fiber_txmedia: "not available" - tcvr_fiber_speed: "100 MBytes/Sec" - wavelength: "20995 nm" - encoding: "8B10B" - nominal_bitrate: "1300 Mbps" - linklen_sm: "0 m" - linklen_50_mm: "550 m" - linklen_625_mm: "270 m" - linklen_copper: "Not supported" - options: - - "Loss of Signal" - - "TX_FAULT signal" - - "TX_DISABLE signal" - max_bit_rate: "not specified" - min_bit_rate: "not specified" - temp_high_alarm: "85.0 C" - temp_low_alarm: "-10.0 C" - temp_high_warning: "80.0 C" - temp_low_warning: "-5.0 C" - voltage_high_alarm: "3.60 V" - voltage_low_alarm: "2.90 V" - voltage_high_warning: "3.50 V" - voltage_low_warning: "3.00 V" - bias_high_alarm: "50.000 mA" - bias_low_alarm: "0.500 mA" - bias_high_warning: "40.000 mA" - bias_low_warning: "0.100 mA" - tx_power_high_alarm: "0.7943 mW" - tx_power_low_alarm: "0.0631 mW" - tx_power_high_warning: "0.6310 mW" - tx_power_low_warning: "0.0794 mW" - rx_power_high_alarm: "1.2589 mW" - rx_power_low_alarm: "0.0100 mW" - rx_power_high_warning: "1.0000 mW" - rx_power_low_warning: "0.0126 mW" - measured_module_temp: "57.4 C" - measured_supply_voltage: "3.30 V" - measured_tx_bias_current: "10.700 mA" - measured_tx_output_power: "0.2153 mW (-6.67 dBm)" - measured_rx_input_power: "0.1287 mW (-8.90 dBm)" diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw deleted file mode 100644 index 656b14740f..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.raw +++ /dev/null @@ -1,2 +0,0 @@ -SFP 1/0: - No Inventory data available diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb150_empty.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw deleted file mode 100644 index 9c39489f5a..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.raw +++ /dev/null @@ -1,33 +0,0 @@ - -SFP module inventory information: -Physical device = SFP transceiver -connector = LC -vendor: - name = Hisense - id = unspecified - partNumber = LTD1302-BC+1 - revision = V1.2 - serialNumber = J233C006326 - dateCode = 131217 -transceiver: - sonetOc48 = not available - sonetOc12_3 = not available - ethernetComplianceCode = 1000BASE-LX - fiberLinkLen = long distance - fiberTech = Longwave laser (LL) - fiberTxMedia = Single Mode - fiberSpeed = 100 MBytes/Sec -wavelength = 1310 nm -encoding = NRZ -nominalBitRate = 1200 Mbps -Link length in: - single fiber mode = 10000 m - 50u multi-mode fiber = 0 m - 62.5u multi-mode fiber = 0 m - copper cable = 0 m -options = Loss of Signal - TX_FAULT signal - TX_DISABLE signal -Max bit rate = not specified -min bit rate = not specified - diff --git a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml b/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml deleted file mode 100644 index 58c7fd316a..0000000000 --- a/tests/oneaccess_oneos/show_transceiver_equipment/show_transceiver_equipment.lbb320.yml +++ /dev/null @@ -1,54 +0,0 @@ ---- -parsed_sample: - - port: "" - physical_device: "SFP transceiver" - connector: "LC" - vendor_name: "Hisense" - vendor_id: "unspecified" - vendor_partnr: "LTD1302-BC+1" - vendor_revision: "V1.2" - vendor_datecode: "131217" - tcvr_ether_compliance: "1000BASE-LX" - tcvr_10g_ether_compliance: "" - tcvr_fiber_linklen: "long distance" - tcvr_fiber_tech: "Longwave laser (LL)" - tcvr_fiber_txmedia: "Single Mode" - tcvr_fiber_speed: "100 MBytes/Sec" - wavelength: "1310 nm" - encoding: "NRZ" - nominal_bitrate: "1200 Mbps" - linklen_sm: "10000 m" - linklen_50_mm: "0 m" - linklen_625_mm: "0 m" - linklen_copper: "0 m" - options: - - "Loss of Signal" - - "TX_FAULT signal" - - "TX_DISABLE signal" - max_bit_rate: "not specified" - min_bit_rate: "not specified" - temp_high_alarm: "" - temp_low_alarm: "" - temp_high_warning: "" - temp_low_warning: "" - voltage_high_alarm: "" - voltage_low_alarm: "" - voltage_high_warning: "" - voltage_low_warning: "" - bias_high_alarm: "" - bias_low_alarm: "" - bias_high_warning: "" - bias_low_warning: "" - tx_power_high_alarm: "" - tx_power_low_alarm: "" - tx_power_high_warning: "" - tx_power_low_warning: "" - rx_power_high_alarm: "" - rx_power_low_alarm: "" - rx_power_high_warning: "" - rx_power_low_warning: "" - measured_module_temp: "" - measured_supply_voltage: "" - measured_tx_bias_current: "" - measured_tx_output_power: "" - measured_rx_input_power: "" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw deleted file mode 100644 index 0551d81a55..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.raw +++ /dev/null @@ -1,79 +0,0 @@ - Dial Peer 0 - Config state up - Operstatus up - Registration status unused - Current protocol sip (UDP) - lastOK 0 - User Agent (null) - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Current sip-protocol-mode ipv4 (config : ipv4) - Current Calls 0 - Outgoing Calls - Outgoing Calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Outgoing calls failures 0 - Q931 Call failures 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Incoming Calls - Incoming calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Incoming calls failures 0 - Local Port Call failures 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Unknown number 0 - Channel / port unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Voice & Fax statistics - Number of real dsp switching 0 - RTP statistics - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of excessive jitter events 0 - Number of lost packets 0 - Number of invalid packets 0 - Number of calls with frame error rate - total <0.01% <0.1% <0.5% <1% <5% >=5% - 0 0 0 0 0 0 0 - Modem passthrough - Number of switching to modem mode 0 - T38 FAX Calls - Number of outgoing fax 0 - Number of incoming fax 0 - Number of failures 0 - Request Mode failure 0 - Pre-message procedure failure 0 - Page failure 0 - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of lost packets 0 - diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml deleted file mode 100644 index ff0c22dfd9..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug103.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -parsed_sample: - - dial_peer: "0" - config_state: "up" - oper_status: "up" - registration_status: "unused" - current_protocol: "sip" - last_ok: "0" - user_agent: "null" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" - sip_protocol_mode: "ipv4" - sip_protocol_configured: "ipv4" - current_calls: "0" - outgoing_calls: "0" - outgoing_bw_used: "0" - outgoing_cac: "0" - outgoing_bw_unused: "2147483647" - outgoing_failures: "0" - outgoing_failures_q931: "0" - outgoing_failures_q931_0_normal: "0" - outgoing_failures_q931_1_normal: "0" - outgoing_failures_q931_16_normal: "0" - outgoing_failures_q931_17_busy: "0" - outgoing_failures_q931_18_no_answer: "0" - outgoing_failures_q931_2_unavailable_resources: "0" - outgoing_failures_q931_3_unavailable_service: "0" - outgoing_failures_q931_4_service_not_provided: "0" - outgoing_failures_q931_5_invalid_message: "0" - outgoing_failures_q931_6_protocol: "0" - outgoing_failures_q931_7_interworking: "0" - outgoing_failures_sip_call: "0" - outgoing_failures_capabilities: "0" - outgoing_failures_protocol: "0" - outgoing_failures_internal_call: "0" - outgoing_failures_dsp_unavailable: "0" - outgoing_failures_max_bw_exceeded: "0" - outgoing_failures_max_conn_exceeded: "0" - outgoing_failures_rtp_payload: "0" - outgoing_failures_not_specified: "0" - incoming_calls: "0" - incoming_bw_used: "0" - incoming_cac: "0" - incoming_bw_unused: "2147483647" - incoming_failures: "0" - incoming_failures_local_port: "0" - incoming_failures_sip_call: "0" - incoming_failures_capabilities: "0" - incoming_failures_protocol: "0" - incoming_failures_internal_call: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_unknown_number: "0" - incoming_failures_channel_or_port_unavailable: "0" - incoming_failures_max_bw_exceeded: "0" - incoming_failures_max_conn_exceeded: "0" - incoming_failures_rtp_payload: "0" - incoming_failures_not_specified: "0" - voice_fax_real_dsp_switching: "0" - rtp_pkts_transmitted: "0" - rtp_pkts_received: "0" - rtp_bytes_transmitted: "0" - rtp_bytes_received: "0" - rtp_excessive_jitter_events: "0" - rtp_pkts_lost: "0" - rtp_pkts_invalid: "0" - frame_error_rate_total: "0" - frame_error_rate_lt_0_01: "0" - frame_error_rate_lt_0_1: "0" - frame_error_rate_lt_0_5: "0" - frame_error_rate_lt_1: "0" - frame_error_rate_lt_5: "0" - frame_error_rate_ge_5: "0" - modem_switches: "0" - fax_outgoing: "0" - fax_incoming: "0" - fax_failures: "0" - fax_failures_request_mode: "0" - fax_failures_pre_msg: "0" - fax_failures_page: "0" - fax_pkts_transmitted: "0" - fax_pkts_received: "0" - fax_bytes_transmitted: "0" - fax_bytes_received: "0" - fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw deleted file mode 100644 index 432d3cfd47..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.raw +++ /dev/null @@ -1,79 +0,0 @@ - Dial Peer 0 - Config state up - Operstatus up - Registration status unused - Current protocol sip (UDP) - lastOK 0 - User Agent (null) - Bandwidth really used/CAC value/unused 4664800 / 4664800/ 2142818847 bps - Current sip-protocol-mode ipv4 (config : ipv4) - Current Calls 49 - Outgoing Calls - Outgoing Calls 71441 - Bandwidth really used/CAC value/unused 571200 / 571200/ 2142818847 bps - Outgoing calls failures 960 - Q931 Call failures 960 - Cause Class 0 (normal event) 3 - Cause Class 1 (normal event) 903 - Normal Cause (16) 0 - User busy (17) 581 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 54 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Incoming Calls - Incoming calls 272250 - Bandwidth really used/CAC value/unused 4093600 / 4093600/ 2142818847 bps - Incoming calls failures 20158 - Local Port Call failures 20158 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Unknown number 0 - Channel / port unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Voice & Fax statistics - Number of real dsp switching 0 - RTP statistics - Number of transmitted packets 3036357385 - Number of received packets 3025812387 - Number of transmitted bytes 2524133572 - Number of received bytes 700131267 - Number of excessive jitter events 631523 - Number of lost packets 38066146 - Number of invalid packets 0 - Number of calls with frame error rate - total <0.01% <0.1% <0.5% <1% <5% >=5% - 314464 223376 37054 38300 7658 7128 948 - Modem passthrough - Number of switching to modem mode 0 - T38 FAX Calls - Number of outgoing fax 0 - Number of incoming fax 0 - Number of failures 0 - Request Mode failure 0 - Pre-message procedure failure 0 - Page failure 0 - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of lost packets 0 - \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml deleted file mode 100644 index ba8a83bd0b..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all.plug401.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -parsed_sample: - - dial_peer: "0" - config_state: "up" - oper_status: "up" - registration_status: "unused" - current_protocol: "sip" - last_ok: "0" - user_agent: "null" - bw_used: "4664800" - cac: "4664800" - bw_unused: "2142818847" - sip_protocol_mode: "ipv4" - sip_protocol_configured: "ipv4" - current_calls: "49" - outgoing_calls: "71441" - outgoing_bw_used: "571200" - outgoing_cac: "571200" - outgoing_bw_unused: "2142818847" - outgoing_failures: "960" - outgoing_failures_q931: "960" - outgoing_failures_q931_0_normal: "3" - outgoing_failures_q931_1_normal: "3" - outgoing_failures_q931_16_normal: "0" - outgoing_failures_q931_17_busy: "581" - outgoing_failures_q931_18_no_answer: "0" - outgoing_failures_q931_2_unavailable_resources: "0" - outgoing_failures_q931_3_unavailable_service: "0" - outgoing_failures_q931_4_service_not_provided: "0" - outgoing_failures_q931_5_invalid_message: "0" - outgoing_failures_q931_6_protocol: "0" - outgoing_failures_q931_7_interworking: "4" - outgoing_failures_sip_call: "0" - outgoing_failures_capabilities: "0" - outgoing_failures_protocol: "0" - outgoing_failures_internal_call: "0" - outgoing_failures_dsp_unavailable: "0" - outgoing_failures_max_bw_exceeded: "0" - outgoing_failures_max_conn_exceeded: "0" - outgoing_failures_rtp_payload: "0" - outgoing_failures_not_specified: "0" - incoming_calls: "272250" - incoming_bw_used: "4093600" - incoming_cac: "4093600" - incoming_bw_unused: "2142818847" - incoming_failures: "20158" - incoming_failures_local_port: "20158" - incoming_failures_sip_call: "0" - incoming_failures_capabilities: "0" - incoming_failures_protocol: "0" - incoming_failures_internal_call: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_unknown_number: "0" - incoming_failures_channel_or_port_unavailable: "0" - incoming_failures_max_bw_exceeded: "0" - incoming_failures_max_conn_exceeded: "0" - incoming_failures_rtp_payload: "0" - incoming_failures_not_specified: "0" - voice_fax_real_dsp_switching: "0" - rtp_pkts_transmitted: "3036357385" - rtp_pkts_received: "3025812387" - rtp_bytes_transmitted: "2524133572" - rtp_bytes_received: "700131267" - rtp_excessive_jitter_events: "631523" - rtp_pkts_lost: "38066146" - rtp_pkts_invalid: "0" - frame_error_rate_total: "314464" - frame_error_rate_lt_0_01: "223376" - frame_error_rate_lt_0_1: "37054" - frame_error_rate_lt_0_5: "38300" - frame_error_rate_lt_1: "7658" - frame_error_rate_lt_5: "7128" - frame_error_rate_ge_5: "948" - modem_switches: "0" - fax_outgoing: "0" - fax_incoming: "0" - fax_failures: "0" - fax_failures_request_mode: "0" - fax_failures_pre_msg: "0" - fax_failures_page: "0" - fax_pkts_transmitted: "0" - fax_pkts_received: "0" - fax_bytes_transmitted: "0" - fax_bytes_received: "0" - fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw deleted file mode 100644 index a9cf2cc61d..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.raw +++ /dev/null @@ -1,76 +0,0 @@ - Dial Peer 0 - Config state up - Operstatus up - Current protocol sip (UDP) - User Agent (null) - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Current Calls 0 - Outgoing Calls - Outgoing Calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Outgoing calls failures 0 - Q931 Call failures 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Incoming Calls - Incoming calls 0 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Incoming calls failures 0 - Local Port Call failures 0 - SIP Call failures 0 - Incompatible capabilities 0 - Protocol errors 0 - Internal call failures 0 - DSP unavailable 0 - Unknown number 0 - Channel / port unavailable 0 - Max-bandwidth exceeded 0 - Max-connection exceeded 0 - RTP dynamic-payload error 0 - Not specified 0 - Voice & Fax statistics - Number of real dsp switching 0 - RTP statistics - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of excessive jitter events 0 - Number of lost packets 0 - Number of invalid packets 0 - Number of calls with frame error rate - total <0.01% <0.1% <0.5% <1% <5% >=5% - 0 0 0 0 0 0 0 - Modem passthrough - Number of switching to modem mode 0 - T38 FAX Calls - Number of outgoing fax 0 - Number of incoming fax 0 - Number of failures 0 - Request Mode failure 0 - Pre-message procedure failure 0 - Page failure 0 - Number of transmitted packets 0 - Number of received packets 0 - Number of transmitted bytes 0 - Number of received bytes 0 - Number of lost packets 0 - diff --git a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml b/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml deleted file mode 100644 index cc51fd53b8..0000000000 --- a/tests/oneaccess_oneos/show_voice_dial-peer_voice_voip_all/show_voice_dial-peer_voice_voip_all_al.plug212.yml +++ /dev/null @@ -1,85 +0,0 @@ ---- -parsed_sample: - - dial_peer: "0" - config_state: "up" - oper_status: "up" - registration_status: "" - current_protocol: "sip" - last_ok: "" - user_agent: "null" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" - sip_protocol_mode: "" - sip_protocol_configured: "" - current_calls: "0" - outgoing_calls: "0" - outgoing_bw_used: "0" - outgoing_cac: "0" - outgoing_bw_unused: "2147483647" - outgoing_failures: "0" - outgoing_failures_q931: "0" - outgoing_failures_q931_0_normal: "0" - outgoing_failures_q931_1_normal: "0" - outgoing_failures_q931_16_normal: "0" - outgoing_failures_q931_17_busy: "0" - outgoing_failures_q931_18_no_answer: "0" - outgoing_failures_q931_2_unavailable_resources: "0" - outgoing_failures_q931_3_unavailable_service: "0" - outgoing_failures_q931_4_service_not_provided: "0" - outgoing_failures_q931_5_invalid_message: "0" - outgoing_failures_q931_6_protocol: "0" - outgoing_failures_q931_7_interworking: "0" - outgoing_failures_sip_call: "0" - outgoing_failures_capabilities: "0" - outgoing_failures_protocol: "0" - outgoing_failures_internal_call: "0" - outgoing_failures_dsp_unavailable: "0" - outgoing_failures_max_bw_exceeded: "0" - outgoing_failures_max_conn_exceeded: "0" - outgoing_failures_rtp_payload: "0" - outgoing_failures_not_specified: "0" - incoming_calls: "0" - incoming_bw_used: "0" - incoming_cac: "0" - incoming_bw_unused: "2147483647" - incoming_failures: "0" - incoming_failures_local_port: "0" - incoming_failures_sip_call: "0" - incoming_failures_capabilities: "0" - incoming_failures_protocol: "0" - incoming_failures_internal_call: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_unknown_number: "0" - incoming_failures_channel_or_port_unavailable: "0" - incoming_failures_max_bw_exceeded: "0" - incoming_failures_max_conn_exceeded: "0" - incoming_failures_rtp_payload: "0" - incoming_failures_not_specified: "0" - voice_fax_real_dsp_switching: "0" - rtp_pkts_transmitted: "0" - rtp_pkts_received: "0" - rtp_bytes_transmitted: "0" - rtp_bytes_received: "0" - rtp_excessive_jitter_events: "0" - rtp_pkts_lost: "0" - rtp_pkts_invalid: "0" - frame_error_rate_total: "0" - frame_error_rate_lt_0_01: "0" - frame_error_rate_lt_0_1: "0" - frame_error_rate_lt_0_5: "0" - frame_error_rate_lt_1: "0" - frame_error_rate_lt_5: "0" - frame_error_rate_ge_5: "0" - modem_switches: "0" - fax_outgoing: "0" - fax_incoming: "0" - fax_failures: "0" - fax_failures_request_mode: "0" - fax_failures_pre_msg: "0" - fax_failures_page: "0" - fax_pkts_transmitted: "0" - fax_pkts_received: "0" - fax_bytes_transmitted: "0" - fax_bytes_received: "0" - fax_pkts_lost: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw deleted file mode 100644 index e1210c7478..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.raw +++ /dev/null @@ -1,27 +0,0 @@ - ------------------------- Call Quality ------------------------- - - ------------------------- Current hour ------------------------- - Number of Call : 0 - Average of MOS : 0.00 - Minimum MOS : 0.00 - Maximum MOS : 0.00 - Average of ERL : 0 - Average of ACOM : 0 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 0 - Average Pdd : 0 - - ------------------------- Previous hour ------------------------ - Number of Call : 1 - Average of MOS : 4.34 - Minimum MOS : 4.34 - Maximum MOS : 4.34 - Average of ERL : 14 - Average of ACOM : 43 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 3 - Average Pdd : 0 - - ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml deleted file mode 100644 index 7dd838cbeb..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug103.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -parsed_sample: - - curr_nbr_call: "0" - curr_avg_mos: "0.00" - curr_min_mos: "0.00" - curr_max_mos: "0.00" - curr_avg_erl: "0" - curr_avg_acom: "0" - curr_avg_loss_rate: "0" - curr_avg_jitter: "0" - curr_avg_max_delay: "0" - curr_avg_pdd: "0" - prev_nbr_call: "1" - prev_avg_mos: "4.34" - prev_min_mos: "4.34" - prev_max_mos: "4.34" - prev_avg_erl: "14" - prev_avg_acom: "43" - prev_avg_loss_rate: "0" - prev_avg_jitter: "0" - prev_avg_max_delay: "3" - prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw deleted file mode 100644 index 18cc1472ad..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.raw +++ /dev/null @@ -1,27 +0,0 @@ - ------------------------- Call Quality ------------------------- - - ------------------------- Current hour ------------------------- - Number of Call : 0 - Average of MOS : 0.0 - Minimum MOS : 0.0 - Maximum MOS : 0.0 - Average of ERL : 0 - Average of ACOM : 0 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 0 - Average Pdd : 0 - - ------------------------- Previous hour ------------------------ - Number of Call : 0 - Average of MOS : 0.0 - Minimum MOS : 0.0 - Maximum MOS : 0.0 - Average of ERL : 0 - Average of ACOM : 0 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 0 - Average Pdd : 0 - - ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml deleted file mode 100644 index 33c2f92122..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug212.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -parsed_sample: - - curr_nbr_call: "0" - curr_avg_mos: "0.0" - curr_min_mos: "0.0" - curr_max_mos: "0.0" - curr_avg_erl: "0" - curr_avg_acom: "0" - curr_avg_loss_rate: "0" - curr_avg_jitter: "0" - curr_avg_max_delay: "0" - curr_avg_pdd: "0" - prev_nbr_call: "0" - prev_avg_mos: "0.0" - prev_min_mos: "0.0" - prev_max_mos: "0.0" - prev_avg_erl: "0" - prev_avg_acom: "0" - prev_avg_loss_rate: "0" - prev_avg_jitter: "0" - prev_avg_max_delay: "0" - prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw deleted file mode 100644 index 2c15eed7a2..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.raw +++ /dev/null @@ -1,27 +0,0 @@ - ------------------------- Call Quality ------------------------- - - ------------------------- Current hour ------------------------- - Number of Call : 1 - Average of MOS : 4.35 - Minimum MOS : 4.35 - Maximum MOS : 4.35 - Average of ERL : 19 - Average of ACOM : 46 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 262144 - Average Pdd : 0 - - ------------------------- Previous hour ------------------------ - Number of Call : 6 - Average of MOS : 4.34 - Minimum MOS : 4.33 - Maximum MOS : 4.34 - Average of ERL : 29 - Average of ACOM : 57 - Average of loss-rate : 0 - Average of jitter : 0 - Average of Max delay : 43691 - Average Pdd : 0 - - ---------------------------------------------------------------- diff --git a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml b/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml deleted file mode 100644 index d042271f37..0000000000 --- a/tests/oneaccess_oneos/show_voice_mos/show_voice_mos.plug401.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -parsed_sample: - - curr_nbr_call: "1" - curr_avg_mos: "4.35" - curr_min_mos: "4.35" - curr_max_mos: "4.35" - curr_avg_erl: "19" - curr_avg_acom: "46" - curr_avg_loss_rate: "0" - curr_avg_jitter: "0" - curr_avg_max_delay: "262144" - curr_avg_pdd: "0" - prev_nbr_call: "6" - prev_avg_mos: "4.34" - prev_min_mos: "4.33" - prev_max_mos: "4.34" - prev_avg_erl: "29" - prev_avg_acom: "57" - prev_avg_loss_rate: "0" - prev_avg_jitter: "0" - prev_avg_max_delay: "43691" - prev_avg_pdd: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw deleted file mode 100644 index 989418b105..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.raw +++ /dev/null @@ -1,28 +0,0 @@ - Sip-Gateway statistics : - Gateway state up - Operstatus up - SIP-GW entity opened sockets: - UDP sockets: - Sockidx: 0, 1.2.3.4:5060 - Registration state registered - RTP monitoring disable - Nb Registered endpoints/Max to register/Registrar server: - [1/1] blabla:5060 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Threshold of bandwidth to switch unused - Max Bandwidth exceeded 0 - Number of lower switching 0 - Registration errors 0 - - Current sip-protocol-mode ipv4 (config : ipv4) - Current call 0 - Calls released by rtp monitoring 0 - - Authentication Rejects 0 - - Dropped packets 0 - due to rate limitation 0 - due to memory limitation 0 - due to CPU limitation 0 - due to denied by acl 0 - due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml deleted file mode 100644 index 0a95d4e474..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug103.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -parsed_sample: - - gw_state: "up" - gw_operstatus: "up" - sockets: - - "1.2.3.4:5060" - registration_state: "registered" - rtp_monitoring: "disable" - registrar: "blabla:5060" - registrar_nbr_registered: "1" - registrar_nbr_available: "1" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" - thold_bw_to_switch: "unused" - max_bw_exceeded: "0" - nbr_lower_switching: "0" - registration_errors: "0" - sip_protocol_mode: "ipv4" - sip_protocol_configured: "ipv4" - current_call: "0" - calls_released_rtp_monitoring: "0" - authentication_rejects: "0" - dropped_pkt: "0" - dropped_pkt_rate_limit: "0" - dropped_pkt_memory_limit: "0" - dropped_pkt_cpu_limit: "0" - dropped_pkt_acl: "0" - dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw deleted file mode 100644 index 6dbca11cb3..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.raw +++ /dev/null @@ -1,24 +0,0 @@ - Sip-Gateway statistics : - Gateway state up - Operstatus up - Registration state registered - RTP monitoring disable - Nb Registered endpoints/Max to register/Registrar server: - [1/1] sip.blabla.be:5060 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Threshold of bandwidth to switch unused - Max Bandwidth exceeded 0 - Number of lower switching 0 - Registration errors 0 - - Current call 0 - Calls released by rtp monitoring 0 - - Authentication Rejects 0 - - Dropped packets 0 - due to rate limitation 0 - due to memory limitation 0 - due to CPU limitation 0 - due to denied by acl 0 - due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml deleted file mode 100644 index fb46d1af91..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug212.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -parsed_sample: - - gw_state: "up" - gw_operstatus: "up" - sockets: [] - registration_state: "registered" - rtp_monitoring: "disable" - registrar: "sip.blabla.be:5060" - registrar_nbr_registered: "1" - registrar_nbr_available: "1" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" - thold_bw_to_switch: "unused" - max_bw_exceeded: "0" - nbr_lower_switching: "0" - registration_errors: "0" - sip_protocol_mode: "" - sip_protocol_configured: "" - current_call: "0" - calls_released_rtp_monitoring: "0" - authentication_rejects: "0" - dropped_pkt: "0" - dropped_pkt_rate_limit: "0" - dropped_pkt_memory_limit: "0" - dropped_pkt_cpu_limit: "0" - dropped_pkt_acl: "0" - dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw deleted file mode 100644 index e2ff948a6b..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.raw +++ /dev/null @@ -1,25 +0,0 @@ - Sip-Gateway statistics : - Gateway state up - Operstatus up - Registration state registered - RTP monitoring disable - Nb Registered endpoints/Max to register/Registrar server: - [1/1] sip.blabla.be:5060 - Bandwidth really used/CAC value/unused 0 / 0/ 2147483647 bps - Threshold of bandwidth to switch unused - Max Bandwidth exceeded 0 - Number of lower switching 0 - Registration errors 0 - - Current sip-protocol-mode ipv4 (config : ipv4) - Current call 0 - Calls released by rtp monitoring 0 - - Authentication Rejects 0 - - Dropped packets 0 - due to rate limitation 0 - due to memory limitation 0 - due to CPU limitation 0 - due to denied by acl 0 - due to unknown proxy 0 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml b/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml deleted file mode 100644 index e960e2cab7..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway/show_voice_sip-gateway.plug401.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -parsed_sample: - - gw_state: "up" - gw_operstatus: "up" - sockets: [] - registration_state: "registered" - rtp_monitoring: "disable" - registrar: "sip.blabla.be:5060" - registrar_nbr_registered: "1" - registrar_nbr_available: "1" - bw_used: "0" - cac: "0" - bw_unused: "2147483647" - thold_bw_to_switch: "unused" - max_bw_exceeded: "0" - nbr_lower_switching: "0" - registration_errors: "0" - sip_protocol_mode: "ipv4" - sip_protocol_configured: "ipv4" - current_call: "0" - calls_released_rtp_monitoring: "0" - authentication_rejects: "0" - dropped_pkt: "0" - dropped_pkt_rate_limit: "0" - dropped_pkt_memory_limit: "0" - dropped_pkt_cpu_limit: "0" - dropped_pkt_acl: "0" - dropped_pkt_unknown_proxy: "0" diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug103.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug212.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml b/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_sip-gateway_reset/show_voice_sip-gateway_reset.plug401.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw deleted file mode 100644 index 7b47761cc2..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.raw +++ /dev/null @@ -1,7 +0,0 @@ - port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) - port : 1 lp : 0 sense : BRI if-state : Shutdown (vp-state : noShutdown) - port : 2 lp : 1 sense : BRI if-state : Shutdown (vp-state : noShutdown) - port : 3 lp : 0 sense : POTS [FXS] vp-state : noShutdown - port : 4 lp : 1 sense : POTS [FXS] vp-state : noShutdown - port : 5 lp : 2 sense : POTS [FXS] vp-state : noShutdown - port : 6 lp : 3 sense : POTS [FXS] vp-state : noShutdown diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml deleted file mode 100644 index 0c62162cde..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug103.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -parsed_sample: - - port: "0" - lp: "0" - sense: "PRI" - if_state: "noShutdown" - vp_state: "noShutdown" - - port: "1" - lp: "0" - sense: "BRI" - if_state: "Shutdown" - vp_state: "noShutdown" - - port: "2" - lp: "1" - sense: "BRI" - if_state: "Shutdown" - vp_state: "noShutdown" - - port: "3" - lp: "0" - sense: "POTS [FXS]" - if_state: "" - vp_state: "noShutdown" - - port: "4" - lp: "1" - sense: "POTS [FXS]" - if_state: "" - vp_state: "noShutdown" - - port: "5" - lp: "2" - sense: "POTS [FXS]" - if_state: "" - vp_state: "noShutdown" - - port: "6" - lp: "3" - sense: "POTS [FXS]" - if_state: "" - vp_state: "noShutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw deleted file mode 100644 index 208832f382..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.raw +++ /dev/null @@ -1,3 +0,0 @@ - port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) - port : 1 lp : 0 sense : BRI if-state : Shutdown (vp-state : Shutdown ) - port : 2 lp : 1 sense : BRI if-state : Shutdown (vp-state : Shutdown ) diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml deleted file mode 100644 index 2b0b47d0d7..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug212.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -parsed_sample: - - port: "0" - lp: "0" - sense: "PRI" - if_state: "noShutdown" - vp_state: "noShutdown" - - port: "1" - lp: "0" - sense: "BRI" - if_state: "Shutdown" - vp_state: "Shutdown" - - port: "2" - lp: "1" - sense: "BRI" - if_state: "Shutdown" - vp_state: "Shutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw deleted file mode 100644 index 50d76f7b6c..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.raw +++ /dev/null @@ -1,8 +0,0 @@ - port : 0 lp : 0 sense : PRI if-state : noShutdown (vp-state : noShutdown) - port : 1 lp : 1 sense : PRI if-state : Shutdown (vp-state : Shutdown ) - port : 2 lp : 2 sense : PRI if-state : Shutdown (vp-state : Shutdown ) - port : 3 lp : 3 sense : PRI if-state : Shutdown (vp-state : Shutdown ) - port : 4 lp : 0 sense : POTS [FXS] vp-state : Shutdown - port : 5 lp : 1 sense : POTS [FXS] vp-state : Shutdown - port : 6 lp : 2 sense : POTS [FXS] vp-state : Shutdown - port : 7 lp : 3 sense : POTS [FXS] vp-state : Shutdown diff --git a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml deleted file mode 100644 index d24ac5737d..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_all/show_voice_voice-port_port_all.plug401.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- -parsed_sample: - - port: "0" - lp: "0" - sense: "PRI" - if_state: "noShutdown" - vp_state: "noShutdown" - - port: "1" - lp: "1" - sense: "PRI" - if_state: "Shutdown" - vp_state: "Shutdown" - - port: "2" - lp: "2" - sense: "PRI" - if_state: "Shutdown" - vp_state: "Shutdown" - - port: "3" - lp: "3" - sense: "PRI" - if_state: "Shutdown" - vp_state: "Shutdown" - - port: "4" - lp: "0" - sense: "POTS [FXS]" - if_state: "" - vp_state: "Shutdown" - - port: "5" - lp: "1" - sense: "POTS [FXS]" - if_state: "" - vp_state: "Shutdown" - - port: "6" - lp: "2" - sense: "POTS [FXS]" - if_state: "" - vp_state: "Shutdown" - - port: "7" - lp: "3" - sense: "POTS [FXS]" - if_state: "" - vp_state: "Shutdown" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw deleted file mode 100644 index e5758b7ccc..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.raw +++ /dev/null @@ -1,41 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - config state up - loop state down - framing DF - layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) ON - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RAI occurrence(s) 0 - layer 2 status deactivated - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml deleted file mode 100644 index cf748e6d05..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug103.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- -parsed_sample: - - port: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "up" - loop_state: "down" - framing: "DF" - l1_status: "deactivated" - ais: "OFF" - los: "ON" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rai_occurrences: "0" - l2_status: "deactivated" - pri_tx_frames_on_d_channel: "" - pri_rx_frames_on_d_channel: "" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw deleted file mode 100644 index d76a132917..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.raw +++ /dev/null @@ -1,46 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - config state up - loop state down - framing MF - layer 1 status activated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RAI occurrence(s) 0 - layer 2 status activated - ces: 1 , 0 , established - - pri Tx frames on D channel 4466 - pri Rx frames on D channel 4466 - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Insufficient pots-group resource 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml deleted file mode 100644 index 25d10ddd91..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug212.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- -parsed_sample: - - port: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "up" - loop_state: "down" - framing: "MF" - l1_status: "activated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rai_occurrences: "0" - l2_status: "activated" - pri_tx_frames_on_d_channel: "4466" - pri_rx_frames_on_d_channel: "4466" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw deleted file mode 100644 index 37590857a8..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.raw +++ /dev/null @@ -1,164 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - config state up - loop state down - framing DF - layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) ON - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 1 - pri RAI occurrence(s) 0 - layer 2 status deactivated - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 - voice port 5/1 - physical type E1 - protocol descriptor E1_PRI - config state down - loop state down - framing DF - layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RAI occurrence(s) 0 - layer 2 status deactivated - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 - voice port 5/2 - physical type E1 - protocol descriptor E1_PRI - config state down - loop state down - framing DF - layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RAI occurrence(s) 0 - layer 2 status deactivated - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 - voice port 5/3 - physical type E1 - protocol descriptor E1_PRI - config state down - loop state down - framing DF - layer 1 status deactivated - Alarm Indication Signal (AIS) OFF - Loss Off Signal (LOS) OFF - Remote Alarm Indication (RAI) OFF - pri AIS occurrence(s) 0 - pri LOS occurrence(s) 0 - pri RAI occurrence(s) 0 - layer 2 status deactivated - attached voip dial peer 0 - number of voice communication 0 - Channel(s) used - - Outgoing calls 0 - Outgoing calls failures 0 - Physical Interface down 0 - Cause Class 0 (normal event) 0 - Cause Class 1 (normal event) 0 - Normal Cause (16) 0 - User busy (17) 0 - No answer (18) 0 - Cause Class 2 (unavailable resources) 0 - Cause Class 3 (unavailable service) 0 - Cause Class 4 (service not provided) 0 - Cause Class 5 (invalid message) 0 - Cause Class 6 (protocol error) 0 - Cause Class 7 (interworking) 0 - - Incoming calls 0 - Incoming calls backup invoked 0 - Incoming calls failures 0 - Remote failure 0 - Unknown number 0 - DSP unavailable 0 - No VoIP resource available 0 - Not specified 0 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml deleted file mode 100644 index 841a3919cf..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all/show_voice_voice-port_pri_all.plug401.yml +++ /dev/null @@ -1,162 +0,0 @@ ---- -parsed_sample: - - port: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "up" - loop_state: "down" - framing: "DF" - l1_status: "deactivated" - ais: "OFF" - los: "ON" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "1" - pri_rai_occurrences: "0" - l2_status: "deactivated" - pri_tx_frames_on_d_channel: "" - pri_rx_frames_on_d_channel: "" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" - - port: "5/1" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "down" - loop_state: "down" - framing: "DF" - l1_status: "deactivated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rai_occurrences: "0" - l2_status: "deactivated" - pri_tx_frames_on_d_channel: "" - pri_rx_frames_on_d_channel: "" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" - - port: "5/2" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "down" - loop_state: "down" - framing: "DF" - l1_status: "deactivated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rai_occurrences: "0" - l2_status: "deactivated" - pri_tx_frames_on_d_channel: "" - pri_rx_frames_on_d_channel: "" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" - - port: "5/3" - physical_type: "E1" - proto_descriptor: "E1_PRI" - config_state: "down" - loop_state: "down" - framing: "DF" - l1_status: "deactivated" - ais: "OFF" - los: "OFF" - rai: "OFF" - pri_ais_occurrences: "0" - pri_los_occurrences: "0" - pri_rai_occurrences: "0" - l2_status: "deactivated" - pri_tx_frames_on_d_channel: "" - pri_rx_frames_on_d_channel: "" - attached_voip_dial_peer: "0" - nbr_voice_communication: "0" - outgoing_calls: "0" - outgoing_failures: "0" - outgoing_failures_physical_intf_down: "0" - outgoing_failures_0_normal: "0" - outgoing_failures_1_normal: "0" - outgoing_failures_16_normal: "0" - outgoing_failures_17_busy: "0" - outgoing_failures_18_no_answer: "0" - outgoing_failures_2_unavailable_resources: "0" - outgoing_failures_3_unavailable_service: "0" - outgoing_failures_4_service_not_provided: "0" - outgoing_failures_5_invalid_message: "0" - outgoing_failures_6_protocol: "0" - outgoing_failures_7_interworking: "0" - incoming_calls: "0" - incoming_calls_backup_invoked: "0" - incoming_failures: "0" - incoming_failures_remote: "0" - incoming_failures_unkown_number: "0" - incoming_failures_dsp_unavailable: "0" - incoming_failures_no_voip_resource_available: "0" - incoming_failures_not_specified: "0" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw deleted file mode 100644 index ef9339d3eb..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.raw +++ /dev/null @@ -1,20 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset 28/12/2022 03:05 - max channel(s) used 0/30 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml deleted file mode 100644 index 328d2ee76e..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug103.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -parsed_sample: - - port: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - attached_voip_dial_peer: "0" - date_last_reset: "28/12/2022 03:05" - max_channels_used: "0" - max_channels_available: "30" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw deleted file mode 100644 index ca5d8758b2..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.raw +++ /dev/null @@ -1,20 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset 1/2/2000 01:01 - max channel(s) used 0/30 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml deleted file mode 100644 index abd4ce70ae..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug212.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -parsed_sample: - - port: "5/0" - physical_type: "E1" - proto_descriptor: "E1_PRI" - attached_voip_dial_peer: "0" - date_last_reset: "1/2/2000 01:01" - max_channels_used: "0" - max_channels_available: "30" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw deleted file mode 100644 index e59ac1e280..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.raw +++ /dev/null @@ -1,87 +0,0 @@ - voice port 5/0 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset 1/1/2023 03:04 - max channel(s) used 0/30 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. - - - voice port 5/1 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset --/--/---- - max channel(s) used 0/32 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. - - - voice port 5/2 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset --/--/---- - max channel(s) used 0/32 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. - - - voice port 5/3 - physical type E1 - protocol descriptor E1_PRI - attached voip dial peer 0 - date of last reset --/--/---- - max channel(s) used 0/32 - daily occupancy of B channels - % - 100 | - 90 | - 80 | - 70 | - 60 | - 50 | - 40 | - 30 | - 20 | - 10 | - 0 +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ - 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 H. - diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml deleted file mode 100644 index 17a14ad006..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_histo/show_voice_voice-port_pri_all_histo.plug401.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -parsed_sample: - - port: "5/1" - physical_type: "E1" - proto_descriptor: "E1_PRI" - attached_voip_dial_peer: "0" - date_last_reset: "1/1/2023 03:04" - max_channels_used: "0" - max_channels_available: "30" - - port: "5/2" - physical_type: "E1" - proto_descriptor: "E1_PRI" - attached_voip_dial_peer: "0" - date_last_reset: "--/--/----" - max_channels_used: "0" - max_channels_available: "32" - - port: "5/3" - physical_type: "E1" - proto_descriptor: "E1_PRI" - attached_voip_dial_peer: "0" - date_last_reset: "--/--/----" - max_channels_used: "0" - max_channels_available: "32" diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug103.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug212.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml b/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_voice-port_pri_all_reset/show_voice_voice-port_pri_all_reset.plug401.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug103.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.raw deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml deleted file mode 100644 index e77add67ed..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug212.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -parsed_sample: [] diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw deleted file mode 100644 index b53e725e94..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.raw +++ /dev/null @@ -1,434 +0,0 @@ - - 1 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1001 (8100) active - calling : 93761462, called : 32472700 - setup time: 12/01/23 10h13m07s - connexion time: 12/01/23 10h13m09s - B channel (from B1..) : B15 - PDD duration: 282 msec - advice-of-charge: free - call priority: 100 - - 2 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1000 (8099) active - calling : 58518383, called : 32472362 - setup time: 12/01/23 10h13m07s - connexion time: --- - PDD duration: 170 msec - advice-of-charge: free - call priority: 100 - - 3 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 999 (8098) active - calling : 23742398, called : 38719001 - setup time: 12/01/23 10h13m05s - connexion time: 12/01/23 10h13m08s - B channel (from B1..) : B8 - PDD duration: 88 msec - advice-of-charge: free - call priority: 100 - - 4 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 998 (8097) active - calling : 14815190, called : 32472703 - setup time: 12/01/23 10h12m54s - connexion time: 12/01/23 10h12m57s - B channel (from B1..) : B13 - PDD duration: 88 msec - advice-of-charge: free - call priority: 100 - - 5 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 995 (8094) active - calling : 3232472111, called : 3232038555 - setup time: 12/01/23 10h12m48s - connexion time: 12/01/23 10h12m48s - B channel (from B1..) : B11 - PDD duration: 639 msec - advice-of-charge: free - call priority: 100 - - 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 993 (8092) active - calling : 3232475500, called : 3226457231 - setup time: 12/01/23 10h12m43s - connexion time: 12/01/23 10h13m03s - B channel (from B1..) : B2 - PDD duration: 1787 msec - advice-of-charge: free - call priority: 100 - - 7 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 994 (8093) active - calling : 3232472281, called : 3232177260 - setup time: 12/01/23 10h12m41s - connexion time: 12/01/23 10h12m53s - B channel (from B1..) : B2 - PDD duration: 1275 msec - advice-of-charge: free - call priority: 100 - - 8 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 992 (8091) active - calling : 3232475463, called : 3292202401 - setup time: 12/01/23 10h12m37s - connexion time: 12/01/23 10h12m38s - B channel (from B1..) : B5 - PDD duration: 1067 msec - advice-of-charge: free - call priority: 100 - - 9 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 991 (8090) active - calling : 32038511, called : 32472111 - setup time: 12/01/23 10h12m33s - connexion time: 12/01/23 10h12m36s - B channel (from B1..) : B7 - PDD duration: 100 msec - advice-of-charge: free - call priority: 100 - - 10 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 990 (8089) active - calling : 473440651, called : 32472111 - setup time: 12/01/23 10h12m24s - connexion time: 12/01/23 10h12m26s - B channel (from B1..) : B4 - PDD duration: 90 msec - advice-of-charge: free - call priority: 100 - - 11 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 988 (8087) active - calling : 32038511, called : 32474650 - setup time: 12/01/23 10h12m24s - connexion time: 12/01/23 10h12m27s - B channel (from B1..) : B5 - PDD duration: 86 msec - advice-of-charge: free - call priority: 100 - - 12 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 987 (8086) active - calling : 465869399, called : 32472111 - setup time: 12/01/23 10h12m06s - connexion time: 12/01/23 10h12m08s - B channel (from B1..) : B2 - PDD duration: 86 msec - advice-of-charge: free - call priority: 100 - - 13 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 986 (8085) active - calling : 14828220, called : 32472111 - setup time: 12/01/23 10h12m01s - connexion time: 12/01/23 10h12m04s - B channel (from B1..) : B14 - PDD duration: 41 msec - advice-of-charge: free - call priority: 100 - - 14 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 985 (8084) active - calling : 485930250, called : 32472111 - setup time: 12/01/23 10h12m01s - connexion time: 12/01/23 10h12m02s - B channel (from B1..) : B3 - PDD duration: 55 msec - advice-of-charge: free - call priority: 100 - - 15 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 984 (8083) active - calling : 486372736, called : 32472706 - setup time: 12/01/23 10h11m58s - connexion time: 12/01/23 10h12m01s - B channel (from B1..) : B3 - PDD duration: 91 msec - advice-of-charge: free - call priority: 100 - - 16 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 982 (8081) active - calling : 52212121, called : 32472705 - setup time: 12/01/23 10h11m38s - connexion time: 12/01/23 10h11m41s - B channel (from B1..) : B24 - PDD duration: 99 msec - advice-of-charge: free - call priority: 100 - - 17 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 981 (8080) active - calling : 479992249, called : 32472868 - setup time: 12/01/23 10h11m37s - connexion time: 12/01/23 10h11m45s - B channel (from B1..) : B1 - PDD duration: 87 msec - advice-of-charge: free - call priority: 100 - - 18 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 979 (8078) active - calling : 13461955, called : 32473116 - setup time: 12/01/23 10h11m14s - connexion time: 12/01/23 10h11m33s - B channel (from B1..) : B13 - PDD duration: 88 msec - advice-of-charge: free - call priority: 100 - - 19 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 976 (8075) active - calling : 479583380, called : 32429260 - setup time: 12/01/23 10h11m10s - connexion time: 12/01/23 10h11m12s - B channel (from B1..) : B14 - PDD duration: 101 msec - advice-of-charge: free - call priority: 100 - - 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 975 (8074) active - calling : 33122838, called : 32472243 - setup time: 12/01/23 10h11m10s - connexion time: 12/01/23 10h11m13s - B channel (from B1..) : B11 - PDD duration: 114 msec - advice-of-charge: free - call priority: 100 - - 21 - Call from local port: 5/1, to remote voip: 0 (UDP) call-id: 974 (8073) active - calling : 3232472761, called : 3234912779 - setup time: 12/01/23 10h11m09s - connexion time: 12/01/23 10h11m10s - B channel (from B1..) : B7 - PDD duration: 1389 msec - advice-of-charge: free - call priority: 100 - - 22 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 973 (8072) active - calling : 32175452, called : 32472243 - setup time: 12/01/23 10h11m08s - connexion time: 12/01/23 10h11m10s - B channel (from B1..) : B22 - PDD duration: 88 msec - advice-of-charge: free - call priority: 100 - - 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 971 (8070) active - calling : 55301616, called : 32472262 - setup time: 12/01/23 10h11m03s - connexion time: 12/01/23 10h11m07s - B channel (from B1..) : B10 - PDD duration: 109 msec - advice-of-charge: free - call priority: 100 - - 24 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 970 (8069) active - calling : 3232473510, called : 3289565826 - setup time: 12/01/23 10h11m03s - connexion time: 12/01/23 10h11m04s - B channel (from B1..) : B21 - PDD duration: 1305 msec - advice-of-charge: free - call priority: 100 - - 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 967 (8066) active - calling : 51816176, called : 32472111 - setup time: 12/01/23 10h10m50s - connexion time: 12/01/23 10h10m52s - B channel (from B1..) : B8 - PDD duration: 89 msec - advice-of-charge: free - call priority: 100 - - 26 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 965 (8064) active - calling : 14564412, called : 32472703 - setup time: 12/01/23 10h10m44s - connexion time: 12/01/23 10h10m46s - B channel (from B1..) : B10 - PDD duration: 86 msec - advice-of-charge: free - call priority: 100 - - 27 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 964 (8063) active - calling : 15220539, called : 32473171 - setup time: 12/01/23 10h10m42s - connexion time: 12/01/23 10h10m45s - B channel (from B1..) : B4 - PDD duration: 87 msec - advice-of-charge: free - call priority: 100 - - 28 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 963 (8062) active - calling : 3238719004, called : 3227239004 - setup time: 12/01/23 10h10m33s - connexion time: 12/01/23 10h10m34s - B channel (from B1..) : B3 - PDD duration: 768 msec - advice-of-charge: free - call priority: 100 - - 29 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 962 (8061) active - calling : 496550200, called : 38719004 - setup time: 12/01/23 10h10m33s - connexion time: 12/01/23 10h10m34s - B channel (from B1..) : B10 - PDD duration: 166 msec - advice-of-charge: free - call priority: 100 - - 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 960 (8059) active - calling : , called : 32472989 - setup time: 12/01/23 10h10m28s - connexion time: 12/01/23 10h10m40s - B channel (from B1..) : B1 - PDD duration: 86 msec - advice-of-charge: free - call priority: 100 - - 31 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 959 (8058) active - calling : 50506058, called : 32472924 - setup time: 12/01/23 10h10m20s - connexion time: 12/01/23 10h10m26s - B channel (from B1..) : B9 - PDD duration: 84 msec - advice-of-charge: free - call priority: 100 - - 32 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 958 (8057) active - calling : 498165779, called : 32472111 - setup time: 12/01/23 10h10m13s - connexion time: 12/01/23 10h10m15s - B channel (from B1..) : B8 - PDD duration: 87 msec - advice-of-charge: free - call priority: 100 - - 33 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 956 (8055) active - calling : 92512180, called : 32472111 - setup time: 12/01/23 10h09m50s - connexion time: 12/01/23 10h09m53s - B channel (from B1..) : B1 - PDD duration: 89 msec - advice-of-charge: free - call priority: 100 - - 34 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 941 (8040) active - calling : 92352220, called : 32475500 - setup time: 12/01/23 10h08m39s - connexion time: 12/01/23 10h08m40s - B channel (from B1..) : B17 - PDD duration: 93 msec - advice-of-charge: free - call priority: 100 - - 35 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 938 (8037) active - calling : 34402102, called : 32475562 - setup time: 12/01/23 10h08m34s - connexion time: 12/01/23 10h08m37s - B channel (from B1..) : B15 - PDD duration: 89 msec - advice-of-charge: free - call priority: 100 - - 36 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 924 (8023) active - calling : 474478482, called : 32475500 - setup time: 12/01/23 10h07m39s - connexion time: 12/01/23 10h07m42s - B channel (from B1..) : B12 - PDD duration: 87 msec - advice-of-charge: free - call priority: 100 - - 37 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 922 (8021) active - calling : 37705742, called : 32472111 - setup time: 12/01/23 10h07m35s - connexion time: 12/01/23 10h07m38s - B channel (from B1..) : B14 - PDD duration: 85 msec - advice-of-charge: free - call priority: 100 - - 38 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 918 (8017) active - calling : 488266068, called : 32472334 - setup time: 12/01/23 10h07m28s - connexion time: 12/01/23 10h07m43s - B channel (from B1..) : B9 - PDD duration: 87 msec - advice-of-charge: free - call priority: 100 - - 39 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 916 (8015) active - calling : 495583389, called : 32475500 - setup time: 12/01/23 10h07m22s - connexion time: 12/01/23 10h07m24s - B channel (from B1..) : B6 - PDD duration: 85 msec - advice-of-charge: free - call priority: 100 - - 40 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 914 (8013) active - calling : 50390141, called : 32472111 - setup time: 12/01/23 10h07m08s - connexion time: 12/01/23 10h07m12s - B channel (from B1..) : B7 - PDD duration: 93 msec - advice-of-charge: free - call priority: 100 - - 41 - Call from local port: 5/3, to remote voip: 0 (UDP) call-id: 332 (1499) active - calling : 3238719004, called : 3227239004 - setup time: 04/01/23 14h42m17s - connexion time: 04/01/23 14h42m17s - B channel (from B1..) : B12 - PDD duration: 791 msec - advice-of-charge: free - call priority: 100 - RTP Source ip :94.105.56.57 rtp:17648 /Dest ip :212.224.167.110 rtp:51728 (active) - Play time (voice) : 19h30m54s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1108 / 33752688 - RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.39 - ERL : 50 dB - ACOM : 73 dB - - - 42 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 331 (1498) active - calling : 489903858, called : 38719004 - setup time: 04/01/23 14h42m17s - connexion time: 04/01/23 14h42m18s - B channel (from B1..) : B6 - PDD duration: 167 msec - advice-of-charge: free - call priority: 100 - RTP Source ip :94.105.56.57 rtp:17650 /Dest ip :212.224.167.110 rtp:52852 (active) - Play time (voice) : 19h30m53s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1186 / 33752673 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 43 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 284 (1451) active - calling : 3238719004, called : 3227239004 - setup time: 04/01/23 14h35m52s - connexion time: 04/01/23 14h35m53s - B channel (from B1..) : B5 - PDD duration: 875 msec - advice-of-charge: free - call priority: 100 - RTP Source ip :94.105.56.57 rtp:17552 /Dest ip :212.224.167.110 rtp:52942 (active) - Play time (voice) : 19h37m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 20024 / 33771922 - RTP Packet lost&discarded RX / TX (RTCP reported) : 313 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.21 / 4.28 - ERL : 18 dB - ACOM : 42 dB - - - 44 - Call from remote voip: 0 (UDP), to local port: 5/3 call-id: 283 (1450) active - calling : 499353710, called : 38719004 - setup time: 04/01/23 14h35m52s - connexion time: 04/01/23 14h35m53s - B channel (from B1..) : B4 - PDD duration: 142 msec - advice-of-charge: free - call priority: 100 - RTP Source ip :94.105.56.57 rtp:17556 /Dest ip :212.224.167.110 rtp:51594 (active) - Play time (voice) : 19h37m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 20422 / 33771907 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 37 dB - ACOM : 64 dB diff --git a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml deleted file mode 100644 index 03aeeac3a2..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_active_all/show_voice_voip-call_active_all.plug401.yml +++ /dev/null @@ -1,1321 +0,0 @@ ---- -parsed_sample: - - call_idx: "1" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "1001 (8100)" - call_status: "active" - calling_number: "93761462" - called_number: "32472700" - setup_time: "12/01/23 10h13m07s" - connexion_time: "12/01/23 10h13m09s" - b_channels: - - "B15" - pdd_duration: "282 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "2" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "1000 (8099)" - call_status: "active" - calling_number: "58518383" - called_number: "32472362" - setup_time: "12/01/23 10h13m07s" - connexion_time: "---" - b_channels: [] - pdd_duration: "170 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "3" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "999 (8098)" - call_status: "active" - calling_number: "23742398" - called_number: "38719001" - setup_time: "12/01/23 10h13m05s" - connexion_time: "12/01/23 10h13m08s" - b_channels: - - "B8" - pdd_duration: "88 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "4" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "998 (8097)" - call_status: "active" - calling_number: "14815190" - called_number: "32472703" - setup_time: "12/01/23 10h12m54s" - connexion_time: "12/01/23 10h12m57s" - b_channels: - - "B13" - pdd_duration: "88 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "5" - calling_from: "local port: 5/1" - calling_to: "remote voip: 0 (UDP)" - call_id: "995 (8094)" - call_status: "active" - calling_number: "3232472111" - called_number: "3232038555" - setup_time: "12/01/23 10h12m48s" - connexion_time: "12/01/23 10h12m48s" - b_channels: - - "B11" - pdd_duration: "639 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "6" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "993 (8092)" - call_status: "active" - calling_number: "3232475500" - called_number: "3226457231" - setup_time: "12/01/23 10h12m43s" - connexion_time: "12/01/23 10h13m03s" - b_channels: - - "B2" - pdd_duration: "1787 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "7" - calling_from: "local port: 5/3" - calling_to: "remote voip: 0 (UDP)" - call_id: "994 (8093)" - call_status: "active" - calling_number: "3232472281" - called_number: "3232177260" - setup_time: "12/01/23 10h12m41s" - connexion_time: "12/01/23 10h12m53s" - b_channels: - - "B2" - pdd_duration: "1275 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "8" - calling_from: "local port: 5/1" - calling_to: "remote voip: 0 (UDP)" - call_id: "992 (8091)" - call_status: "active" - calling_number: "3232475463" - called_number: "3292202401" - setup_time: "12/01/23 10h12m37s" - connexion_time: "12/01/23 10h12m38s" - b_channels: - - "B5" - pdd_duration: "1067 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "9" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "991 (8090)" - call_status: "active" - calling_number: "32038511" - called_number: "32472111" - setup_time: "12/01/23 10h12m33s" - connexion_time: "12/01/23 10h12m36s" - b_channels: - - "B7" - pdd_duration: "100 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "10" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "990 (8089)" - call_status: "active" - calling_number: "473440651" - called_number: "32472111" - setup_time: "12/01/23 10h12m24s" - connexion_time: "12/01/23 10h12m26s" - b_channels: - - "B4" - pdd_duration: "90 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "11" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "988 (8087)" - call_status: "active" - calling_number: "32038511" - called_number: "32474650" - setup_time: "12/01/23 10h12m24s" - connexion_time: "12/01/23 10h12m27s" - b_channels: - - "B5" - pdd_duration: "86 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "12" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "987 (8086)" - call_status: "active" - calling_number: "465869399" - called_number: "32472111" - setup_time: "12/01/23 10h12m06s" - connexion_time: "12/01/23 10h12m08s" - b_channels: - - "B2" - pdd_duration: "86 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "13" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "986 (8085)" - call_status: "active" - calling_number: "14828220" - called_number: "32472111" - setup_time: "12/01/23 10h12m01s" - connexion_time: "12/01/23 10h12m04s" - b_channels: - - "B14" - pdd_duration: "41 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "14" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "985 (8084)" - call_status: "active" - calling_number: "485930250" - called_number: "32472111" - setup_time: "12/01/23 10h12m01s" - connexion_time: "12/01/23 10h12m02s" - b_channels: - - "B3" - pdd_duration: "55 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "15" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "984 (8083)" - call_status: "active" - calling_number: "486372736" - called_number: "32472706" - setup_time: "12/01/23 10h11m58s" - connexion_time: "12/01/23 10h12m01s" - b_channels: - - "B3" - pdd_duration: "91 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "16" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "982 (8081)" - call_status: "active" - calling_number: "52212121" - called_number: "32472705" - setup_time: "12/01/23 10h11m38s" - connexion_time: "12/01/23 10h11m41s" - b_channels: - - "B24" - pdd_duration: "99 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "17" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "981 (8080)" - call_status: "active" - calling_number: "479992249" - called_number: "32472868" - setup_time: "12/01/23 10h11m37s" - connexion_time: "12/01/23 10h11m45s" - b_channels: - - "B1" - pdd_duration: "87 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "18" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "979 (8078)" - call_status: "active" - calling_number: "13461955" - called_number: "32473116" - setup_time: "12/01/23 10h11m14s" - connexion_time: "12/01/23 10h11m33s" - b_channels: - - "B13" - pdd_duration: "88 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "19" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "976 (8075)" - call_status: "active" - calling_number: "479583380" - called_number: "32429260" - setup_time: "12/01/23 10h11m10s" - connexion_time: "12/01/23 10h11m12s" - b_channels: - - "B14" - pdd_duration: "101 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "20" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "975 (8074)" - call_status: "active" - calling_number: "33122838" - called_number: "32472243" - setup_time: "12/01/23 10h11m10s" - connexion_time: "12/01/23 10h11m13s" - b_channels: - - "B11" - pdd_duration: "114 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "21" - calling_from: "local port: 5/1" - calling_to: "remote voip: 0 (UDP)" - call_id: "974 (8073)" - call_status: "active" - calling_number: "3232472761" - called_number: "3234912779" - setup_time: "12/01/23 10h11m09s" - connexion_time: "12/01/23 10h11m10s" - b_channels: - - "B7" - pdd_duration: "1389 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "22" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "973 (8072)" - call_status: "active" - calling_number: "32175452" - called_number: "32472243" - setup_time: "12/01/23 10h11m08s" - connexion_time: "12/01/23 10h11m10s" - b_channels: - - "B22" - pdd_duration: "88 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "23" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "971 (8070)" - call_status: "active" - calling_number: "55301616" - called_number: "32472262" - setup_time: "12/01/23 10h11m03s" - connexion_time: "12/01/23 10h11m07s" - b_channels: - - "B10" - pdd_duration: "109 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "24" - calling_from: "local port: 5/3" - calling_to: "remote voip: 0 (UDP)" - call_id: "970 (8069)" - call_status: "active" - calling_number: "3232473510" - called_number: "3289565826" - setup_time: "12/01/23 10h11m03s" - connexion_time: "12/01/23 10h11m04s" - b_channels: - - "B21" - pdd_duration: "1305 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "25" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "967 (8066)" - call_status: "active" - calling_number: "51816176" - called_number: "32472111" - setup_time: "12/01/23 10h10m50s" - connexion_time: "12/01/23 10h10m52s" - b_channels: - - "B8" - pdd_duration: "89 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "26" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "965 (8064)" - call_status: "active" - calling_number: "14564412" - called_number: "32472703" - setup_time: "12/01/23 10h10m44s" - connexion_time: "12/01/23 10h10m46s" - b_channels: - - "B10" - pdd_duration: "86 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "27" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "964 (8063)" - call_status: "active" - calling_number: "15220539" - called_number: "32473171" - setup_time: "12/01/23 10h10m42s" - connexion_time: "12/01/23 10h10m45s" - b_channels: - - "B4" - pdd_duration: "87 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "28" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "963 (8062)" - call_status: "active" - calling_number: "3238719004" - called_number: "3227239004" - setup_time: "12/01/23 10h10m33s" - connexion_time: "12/01/23 10h10m34s" - b_channels: - - "B3" - pdd_duration: "768 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "29" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "962 (8061)" - call_status: "active" - calling_number: "496550200" - called_number: "38719004" - setup_time: "12/01/23 10h10m33s" - connexion_time: "12/01/23 10h10m34s" - b_channels: - - "B10" - pdd_duration: "166 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "30" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "960 (8059)" - call_status: "active" - calling_number: "" - called_number: "" - setup_time: "12/01/23 10h10m28s" - connexion_time: "12/01/23 10h10m40s" - b_channels: - - "B1" - pdd_duration: "86 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "31" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "959 (8058)" - call_status: "active" - calling_number: "50506058" - called_number: "32472924" - setup_time: "12/01/23 10h10m20s" - connexion_time: "12/01/23 10h10m26s" - b_channels: - - "B9" - pdd_duration: "84 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "32" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "958 (8057)" - call_status: "active" - calling_number: "498165779" - called_number: "32472111" - setup_time: "12/01/23 10h10m13s" - connexion_time: "12/01/23 10h10m15s" - b_channels: - - "B8" - pdd_duration: "87 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "33" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "956 (8055)" - call_status: "active" - calling_number: "92512180" - called_number: "32472111" - setup_time: "12/01/23 10h09m50s" - connexion_time: "12/01/23 10h09m53s" - b_channels: - - "B1" - pdd_duration: "89 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "34" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "941 (8040)" - call_status: "active" - calling_number: "92352220" - called_number: "32475500" - setup_time: "12/01/23 10h08m39s" - connexion_time: "12/01/23 10h08m40s" - b_channels: - - "B17" - pdd_duration: "93 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "35" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "938 (8037)" - call_status: "active" - calling_number: "34402102" - called_number: "32475562" - setup_time: "12/01/23 10h08m34s" - connexion_time: "12/01/23 10h08m37s" - b_channels: - - "B15" - pdd_duration: "89 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "36" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "924 (8023)" - call_status: "active" - calling_number: "474478482" - called_number: "32475500" - setup_time: "12/01/23 10h07m39s" - connexion_time: "12/01/23 10h07m42s" - b_channels: - - "B12" - pdd_duration: "87 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "37" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "922 (8021)" - call_status: "active" - calling_number: "37705742" - called_number: "32472111" - setup_time: "12/01/23 10h07m35s" - connexion_time: "12/01/23 10h07m38s" - b_channels: - - "B14" - pdd_duration: "85 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "38" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "918 (8017)" - call_status: "active" - calling_number: "488266068" - called_number: "32472334" - setup_time: "12/01/23 10h07m28s" - connexion_time: "12/01/23 10h07m43s" - b_channels: - - "B9" - pdd_duration: "87 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "39" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "916 (8015)" - call_status: "active" - calling_number: "495583389" - called_number: "32475500" - setup_time: "12/01/23 10h07m22s" - connexion_time: "12/01/23 10h07m24s" - b_channels: - - "B6" - pdd_duration: "85 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "40" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "914 (8013)" - call_status: "active" - calling_number: "50390141" - called_number: "32472111" - setup_time: "12/01/23 10h07m08s" - connexion_time: "12/01/23 10h07m12s" - b_channels: - - "B7" - pdd_duration: "93 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "41" - calling_from: "local port: 5/3" - calling_to: "remote voip: 0 (UDP)" - call_id: "332 (1499)" - call_status: "active" - calling_number: "3238719004" - called_number: "3227239004" - setup_time: "04/01/23 14h42m17s" - connexion_time: "04/01/23 14h42m17s" - b_channels: - - "B12" - pdd_duration: "791 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.57" - rtp_src_port: "17648" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "51728" - rtp_play_time: "19h30m54s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1108" - rtp_pkts_tx: "33752688" - rtp_pkts_lost_rx: "2" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.39" - rtp_erl_db: "50" - rtp_acom_db: "73" - - call_idx: "42" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "331 (1498)" - call_status: "active" - calling_number: "489903858" - called_number: "38719004" - setup_time: "04/01/23 14h42m17s" - connexion_time: "04/01/23 14h42m18s" - b_channels: - - "B6" - pdd_duration: "167 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.57" - rtp_src_port: "17650" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "52852" - rtp_play_time: "19h30m53s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1186" - rtp_pkts_tx: "33752673" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "43" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "284 (1451)" - call_status: "active" - calling_number: "3238719004" - called_number: "3227239004" - setup_time: "04/01/23 14h35m52s" - connexion_time: "04/01/23 14h35m53s" - b_channels: - - "B5" - pdd_duration: "875 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.57" - rtp_src_port: "17552" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "52942" - rtp_play_time: "19h37m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "20024" - rtp_pkts_tx: "33771922" - rtp_pkts_lost_rx: "313" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.21" - rtp_mos_lq: "4.28" - rtp_erl_db: "18" - rtp_acom_db: "42" - - call_idx: "44" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/3" - call_id: "283 (1450)" - call_status: "active" - calling_number: "499353710" - called_number: "38719004" - setup_time: "04/01/23 14h35m52s" - connexion_time: "04/01/23 14h35m53s" - b_channels: - - "B4" - pdd_duration: "142 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.57" - rtp_src_port: "17556" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "51594" - rtp_play_time: "19h37m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "20422" - rtp_pkts_tx: "33771907" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "37" - rtp_acom_db: "64" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw deleted file mode 100644 index 08d6c75eeb..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.raw +++ /dev/null @@ -1,2113 +0,0 @@ - - 1 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 151 (390) - calling : 490446941, called : 55335275 - setup time: 11/01/23 21h52m53s - connexion time: 11/01/23 21h53m07s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:31 - PDD duration: 283 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:23394 - Play time (voice) : 00h02m31s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7544 / 7531 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 14 dB - ACOM : 43 dB - - - 2 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 150 (389) - calling : 490446941, called : 55335275 - setup time: 11/01/23 21h27m06s - connexion time: 11/01/23 21h27m33s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:36 - PDD duration: 270 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:23492 - Play time (voice) : 00h01m36s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4814 / 4807 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 13 dB - ACOM : 40 dB - - - 3 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 149 (388) - calling : 488313757, called : 55337751 - setup time: 11/01/23 20h25m09s - connexion time: 11/01/23 20h25m09s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 102 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:23440 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 244 / 245 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 4 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 148 (387) - calling : 488313757, called : 55337751 - setup time: 11/01/23 20h24m56s - connexion time: 11/01/23 20h24m56s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:06 - PDD duration: 155 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:23418 - Play time (voice) : 00h00m06s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 272 / 273 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 5 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 147 (386) - calling : 3255335278, called : 3250703433 - setup time: 11/01/23 16h33m08s - connexion time: 11/01/23 16h33m09s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:11 - PDD duration: 847 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:23192 - Play time (voice) : 00h02m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6529 / 6529 - RTP Packet lost&discarded RX / TX (RTCP reported) : 13 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 40 dB - ACOM : 66 dB - - - 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 144 (383) - calling : 3255335278, called : 3250703433 - setup time: 11/01/23 16h15m11s - connexion time: 11/01/23 16h15m12s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:13:29 - PDD duration: 708 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:23156 - Play time (voice) : 00h13m29s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 40459 / 40459 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 37 dB - ACOM : 64 dB - - - 7 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 146 (385) - calling : 32491169975, called : 32490661143 - setup time: 11/01/23 16h22m35s - connexion time: 11/01/23 16h22m39s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:48 - PDD duration: 599 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:23196 - Play time (voice) : 00h02m48s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 8567 / 8567 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 24 dB - ACOM : 73 dB - - - 8 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 145 (384) - calling : 491169975, called : 55337505 - setup time: 11/01/23 16h22m35s - connexion time: 11/01/23 16h22m39s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:48 - PDD duration: 852 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:23180 - Play time (voice) : 00h02m48s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 8390 / 8382 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 32 dB - ACOM : 58 dB - - - 9 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 143 (382) - calling : 492819960, called : 55335206 - setup time: 11/01/23 16h06m05s - connexion time: 11/01/23 16h06m08s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 377 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:23128 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 943 / 929 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 42 dB - ACOM : 67 dB - - - 10 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 142 (381) - calling : 3255335346, called : 32490661137 - setup time: 11/01/23 16h04m09s - connexion time: 11/01/23 16h04m17s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:10 - PDD duration: 2088 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:23122 - Play time (voice) : 00h00m10s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 801 / 801 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 28 dB - ACOM : 51 dB - - - 11 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 141 (380) - calling : 3255335241, called : 32498178799 - setup time: 11/01/23 15h59m31s - connexion time: 11/01/23 15h59m55s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 1422 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:23074 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1182 / 1199 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 66 dB - ACOM : 90 dB - - - 12 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 140 (379) - calling : 3255335278, called : 32492819960 - setup time: 11/01/23 15h42m36s - connexion time: 11/01/23 15h43m00s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:04 - PDD duration: 967 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:23008 - Play time (voice) : 00h00m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1318 / 1334 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 67 dB - ACOM : 91 dB - - - 13 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 139 (378) - calling : 3255335278, called : 32492819960 - setup time: 11/01/23 15h41m50s - connexion time: 11/01/23 15h42m14s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 1041 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:23006 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1379 / 1391 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 67 dB - ACOM : 91 dB - - - 14 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 138 (377) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 15h10m36s - connexion time: 11/01/23 15h10m48s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:17 - PDD duration: 1464 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:22878 - Play time (voice) : 00h00m17s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1356 / 1373 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 54 dB - - - 15 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 137 (376) - calling : 3255337739, called : 32491169927 - setup time: 11/01/23 15h07m19s - connexion time: 11/01/23 15h07m43s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:07 - PDD duration: 1515 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:22890 - Play time (voice) : 00h00m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1458 / 1462 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 41 dB - ACOM : 71 dB - - - 16 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 136 (375) - calling : 490661133, called : 55335206 - setup time: 11/01/23 15h02m05s - connexion time: 11/01/23 15h02m07s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:04 - PDD duration: 361 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:22866 - Play time (voice) : 00h01m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3199 / 3187 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 38 dB - ACOM : 65 dB - - - 17 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 135 (374) - calling : 495914834, called : 55335241 - setup time: 11/01/23 14h58m35s - connexion time: 11/01/23 14h58m38s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:05 - PDD duration: 321 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:22838 - Play time (voice) : 00h02m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6214 / 6200 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 18 dB - ACOM : 42 dB - - - 18 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 134 (373) - calling : 3255337758, called : 32490661150 - setup time: 11/01/23 14h54m36s - connexion time: 11/01/23 14h54m49s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:51 - PDD duration: 3148 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:22826 - Play time (voice) : 00h01m51s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6031 / 6066 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.38 / 4.39 - ERL : 40 dB - ACOM : 59 dB - - - 19 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 133 (372) - calling : 32499172658, called : 32490446941 - setup time: 11/01/23 14h53m42s - connexion time: 11/01/23 14h54m06s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 1136 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:22808 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1758 / 1760 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 28 dB - ACOM : 66 dB - - - 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 132 (371) - calling : 499172658, called : 55335361 - setup time: 11/01/23 14h53m42s - connexion time: 11/01/23 14h54m06s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 1393 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:22802 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 598 / 602 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 20 dB - ACOM : 75 dB - - - 21 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 131 (370) - calling : 3255335346, called : 32490661134 - setup time: 11/01/23 14h41m09s - connexion time: 11/01/23 14h41m21s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:30 - PDD duration: 2115 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16412 /Dest ip :212.224.167.110 rtp:22776 - Play time (voice) : 00h00m30s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2003 / 2004 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 53 dB - - - 22 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 130 (369) - calling : 32490661150, called : 32479844827 - setup time: 11/01/23 14h12m45s - connexion time: 11/01/23 14h12m46s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:23 - PDD duration: 1109 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16410 /Dest ip :212.224.167.110 rtp:22630 - Play time (voice) : 00h00m23s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1140 / 1141 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 2 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 48 dB - ACOM : 77 dB - - - 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 129 (368) - calling : 490661150, called : 55337758 - setup time: 11/01/23 14h12m45s - connexion time: 11/01/23 14h12m46s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:22 - PDD duration: 1401 msec - advice-of-charge: free - call priority: 100 - - - 24 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 128 (367) - calling : 495504138, called : 55335211 - setup time: 11/01/23 14h07m36s - connexion time: 11/01/23 14h07m43s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:20 - PDD duration: 263 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16408 /Dest ip :212.224.167.110 rtp:22634 - Play time (voice) : 00h02m20s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7005 / 7003 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 44 dB - ACOM : 68 dB - - - 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 127 (366) - calling : 475453097, called : 55335278 - setup time: 11/01/23 13h31m44s - connexion time: 11/01/23 13h31m51s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:05:38 - PDD duration: 254 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16406 /Dest ip :212.224.167.110 rtp:22452 - Play time (voice) : 00h05m38s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 16865 / 16867 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 46 dB - ACOM : 73 dB - - - 26 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 126 (365) - calling : 3255337741, called : 32492819960 - setup time: 11/01/23 13h18m28s - connexion time: 11/01/23 13h18m38s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:33 - PDD duration: 899 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16404 /Dest ip :212.224.167.110 rtp:22392 - Play time (voice) : 00h00m33s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2118 / 2136 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 20 dB - ACOM : 52 dB - - - 27 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 125 (364) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 13h16m15s - connexion time: 11/01/23 13h16m27s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:14 - PDD duration: 1409 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16402 /Dest ip :212.224.167.110 rtp:22348 - Play time (voice) : 00h00m15s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1217 / 1234 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 47 dB - ACOM : 78 dB - - - 28 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 123 (362) - calling : 32039693, called : 55337755 - setup time: 11/01/23 12h36m17s - connexion time: 11/01/23 12h36m22s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:48 - PDD duration: 1241 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16400 /Dest ip :212.224.167.110 rtp:22232 - Play time (voice) : 00h00m48s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2365 / 2362 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 30 dB - ACOM : 54 dB - - - 29 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 124 (363) - calling : 3232039693, called : 32495914860 - setup time: 11/01/23 12h36m17s - connexion time: 11/01/23 12h36m22s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:48 - PDD duration: 1020 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16398 /Dest ip :212.224.167.110 rtp:22160 - Play time (voice) : 00h00m48s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2574 / 2574 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 30 dB - ACOM : 57 dB - - - 30 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 122 (361) - calling : 3255335206, called : 32492136378 - setup time: 11/01/23 12h11m38s - connexion time: 11/01/23 12h11m52s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 3277 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16396 /Dest ip :212.224.167.110 rtp:22132 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1107 / 1112 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 39 dB - ACOM : 62 dB - - - 31 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 121 (360) - calling : 3255335206, called : 32495914834 - setup time: 11/01/23 12h10m24s - connexion time: 11/01/23 12h10m27s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:27 - PDD duration: 1219 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16394 /Dest ip :212.224.167.110 rtp:22136 - Play time (voice) : 00h00m27s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1444 / 1444 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 37 dB - ACOM : 63 dB - - - 32 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 120 (359) - calling : 3255335206, called : 32490661154 - setup time: 11/01/23 12h09m51s - connexion time: 11/01/23 12h10m18s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 3375 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16392 /Dest ip :212.224.167.110 rtp:22142 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1287 / 1290 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 60 dB - ACOM : 89 dB - - - 33 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 119 (358) - calling : 3255335241, called : 32491169975 - setup time: 11/01/23 12h02m16s - connexion time: 11/01/23 12h02m24s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 1208 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16390 /Dest ip :212.224.167.110 rtp:22090 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1323 / 1323 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 21 dB - ACOM : 41 dB - - - 34 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 118 (357) - calling : 3255337741, called : 32470635841 - setup time: 11/01/23 11h48m06s - connexion time: 11/01/23 11h48m16s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:55 - PDD duration: 1406 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16388 /Dest ip :212.224.167.110 rtp:21946 - Play time (voice) : 00h01m55s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6164 / 6170 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 25 dB - ACOM : 47 dB - - - 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 117 (356) - calling : 470635841, called : 55335211 - setup time: 11/01/23 11h46m22s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 258 msec - advice-of-charge: free - call priority: 100 - - - 36 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 116 (355) - calling : 495914834, called : 55335395 - setup time: 11/01/23 11h41m18s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 343 msec - advice-of-charge: free - call priority: 100 - - - 37 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 115 (354) - calling : 495914834, called : 55335395 - setup time: 11/01/23 11h41m15s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 114 (353) - calling : 495914834, called : 55335395 - setup time: 11/01/23 11h38m56s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 302 msec - advice-of-charge: free - call priority: 100 - - - 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 113 (352) - calling : 495914834, called : 55335395 - setup time: 11/01/23 11h36m21s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 356 msec - advice-of-charge: free - call priority: 100 - - - 40 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 111 (350) - calling : 476215202, called : 55335234 - setup time: 11/01/23 11h30m51s - connexion time: 11/01/23 11h31m03s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:13 - PDD duration: 3942 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16386 /Dest ip :212.224.167.110 rtp:21918 - Play time (voice) : 00h00m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 646 / 644 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 52 dB - - - 41 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 112 (351) - calling : 32476215202, called : 32490661131 - setup time: 11/01/23 11h30m51s - connexion time: 11/01/23 11h31m03s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:13 - PDD duration: 3646 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16384 /Dest ip :212.224.167.110 rtp:21936 - Play time (voice) : 00h00m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1060 / 1065 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 41 dB - ACOM : 65 dB - - - 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 110 (349) - calling : 490661150, called : 55335241 - setup time: 11/01/23 11h23m17s - connexion time: 11/01/23 11h23m44s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 301 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16454 /Dest ip :212.224.167.110 rtp:21848 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 76 / 62 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : 27 dB - ACOM : 82 dB - - - 43 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 109 (348) - calling : 55218750, called : 55335241 - setup time: 11/01/23 11h21m13s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 355 msec - advice-of-charge: free - call priority: 100 - - - 44 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 108 (347) - calling : 3255335334, called : 32475638295 - setup time: 11/01/23 11h17m51s - connexion time: 11/01/23 11h17m57s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:24 - PDD duration: 814 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:21814 - Play time (voice) : 00h01m24s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4463 / 4464 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 20 dB - ACOM : 53 dB - - - 45 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 107 (346) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 11h16m33s - connexion time: 11/01/23 11h16m46s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:11 - PDD duration: 900 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:21764 - Play time (voice) : 00h00m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1159 / 1177 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 40 dB - ACOM : 64 dB - - - 46 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 106 (345) - calling : 3255335278, called : 32492819960 - setup time: 11/01/23 11h13m41s - connexion time: 11/01/23 11h13m51s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:58 - PDD duration: 1332 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:21776 - Play time (voice) : 00h01m58s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6322 / 6335 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 24 dB - ACOM : 57 dB - - - 47 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 104 (343) - calling : 3255335241, called : 32491169975 - setup time: 11/01/23 11h09m16s - connexion time: 11/01/23 11h09m21s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:03:01 - PDD duration: 1464 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:21738 - Play time (voice) : 00h03m01s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9207 / 9207 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 25 dB - ACOM : 62 dB - - - 48 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 105 (344) - calling : 3255335278, called : 32474810035 - setup time: 11/01/23 11h10m19s - connexion time: 11/01/23 11h10m26s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:38 - PDD duration: 1209 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:21724 - Play time (voice) : 00h01m38s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5201 / 5202 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 31 dB - ACOM : 61 dB - - - 49 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 103 (342) - calling : 55218750, called : 55335241 - setup time: 11/01/23 11h05m39s - connexion time: 11/01/23 11h06m06s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 350 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:21744 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 102 / 106 - RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : 28 dB - ACOM : 83 dB - - - 50 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 102 (341) - calling : 3255335278, called : 32479790455 - setup time: 11/01/23 11h04m18s - connexion time: 11/01/23 11h04m30s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:04 - PDD duration: 1099 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:21706 - Play time (voice) : 00h00m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 732 / 761 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 25 dB - ACOM : 53 dB - - - 51 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 101 (340) - calling : 3255335241, called : 3255218750 - setup time: 11/01/23 11h03m15s - connexion time: 11/01/23 11h03m15s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:43 - PDD duration: 554 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:21686 - Play time (voice) : 00h00m43s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2131 / 2148 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 2 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 48 dB - ACOM : 71 dB - - - 52 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 100 (339) - calling : 3255335241, called : 32495914834 - setup time: 11/01/23 11h01m29s - connexion time: 11/01/23 11h01m33s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:24 - PDD duration: 1491 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:21718 - Play time (voice) : 00h01m24s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4315 / 4315 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 32 dB - ACOM : 64 dB - - - 53 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 98 (337) - calling : 3255335241, called : 32486141517 - setup time: 11/01/23 10h59m16s - connexion time: 11/01/23 10h59m30s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:53 - PDD duration: 1433 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:21672 - Play time (voice) : 00h01m53s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6280 / 6281 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 43 dB - ACOM : 77 dB - - - 54 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 99 (338) - calling : 3255335275, called : 32495914834 - setup time: 11/01/23 11h00m11s - connexion time: 11/01/23 11h00m15s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:22 - PDD duration: 998 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:21662 - Play time (voice) : 00h00m22s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1256 / 1256 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 14 dB - ACOM : 53 dB - - - 55 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 97 (336) - calling : 3255335241, called : 3255235858 - setup time: 11/01/23 10h58m23s - connexion time: 11/01/23 10h58m25s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:41 - PDD duration: 1643 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:21684 - Play time (voice) : 00h00m41s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2053 / 2080 - RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.32 / 4.38 - ERL : 45 dB - ACOM : 76 dB - - - 56 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 96 (335) - calling : 3255335241, called : 32495914834 - setup time: 11/01/23 10h57m17s - connexion time: 11/01/23 10h57m21s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:40 - PDD duration: 1310 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:21618 - Play time (voice) : 00h00m40s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2136 / 2136 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 54 dB - ACOM : 88 dB - - - 57 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 95 (334) - calling : 3255335241, called : 3256303372 - setup time: 11/01/23 10h54m14s - connexion time: 11/01/23 10h54m16s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:57 - PDD duration: 1601 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:21642 - Play time (voice) : 00h02m57s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 8815 / 8872 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 14 dB - ACOM : 40 dB - - - 58 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 93 (332) - calling : 3255335334, called : 32475638295 - setup time: 11/01/23 10h52m58s - connexion time: 11/01/23 10h53m22s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:03:03 - PDD duration: 1153 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:21632 - Play time (voice) : 00h03m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 10275 / 10276 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 29 dB - ACOM : 54 dB - - - 59 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 94 (333) - calling : 3255337755, called : 32474718109 - setup time: 11/01/23 10h53m32s - connexion time: 11/01/23 10h53m36s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:06 - PDD duration: 1327 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:21612 - Play time (voice) : 00h01m06s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3428 / 3428 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 33 dB - ACOM : 59 dB - - - 60 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 92 (331) - calling : 3255335241, called : 3256627111 - setup time: 11/01/23 10h52m03s - connexion time: 11/01/23 10h52m05s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:57 - PDD duration: 649 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:21634 - Play time (voice) : 00h01m57s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5846 / 5893 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 2.87 / 4.39 - ERL : 49 dB - ACOM : 76 dB - - - 61 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 91 (330) - calling : 3255335241, called : 3255218750 - setup time: 11/01/23 10h47m31s - connexion time: 11/01/23 10h47m31s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:04:05 - PDD duration: 566 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:21590 - Play time (voice) : 00h04m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 12176 / 12215 - RTP Packet lost&discarded RX / TX (RTCP reported) : 10786 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 1.00 / 1.00 - ERL : 37 dB - ACOM : 65 dB - - - 62 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 90 (329) - calling : 3255335346, called : 32490661135 - setup time: 11/01/23 10h47m26s - connexion time: 11/01/23 10h47m36s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:37 - PDD duration: 1731 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:21586 - Play time (voice) : 00h00m37s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2283 / 2283 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 31 dB - ACOM : 55 dB - - - 63 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 89 (328) - calling : 3255335346, called : 32490661135 - setup time: 11/01/23 10h44m55s - connexion time: 11/01/23 10h44m58s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 2197 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:21574 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 166 / 168 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 64 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 88 (327) - calling : 3255337741, called : 31228355612 - setup time: 11/01/23 10h39m59s - connexion time: 11/01/23 10h40m06s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:09 - PDD duration: 1017 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16412 /Dest ip :212.224.167.110 rtp:21570 - Play time (voice) : 00h01m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3717 / 3723 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.29 / 4.39 - ERL : 35 dB - ACOM : 61 dB - - - 65 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 87 (326) - calling : 32491169975, called : 32490661134 - setup time: 11/01/23 10h37m30s - connexion time: 11/01/23 10h37m41s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:14 - PDD duration: 2045 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16408 /Dest ip :212.224.167.110 rtp:21544 - Play time (voice) : 00h03m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 10140 / 10141 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 18 dB - ACOM : 44 dB - - - 66 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 86 (325) - calling : 491169975, called : 55335341 - setup time: 11/01/23 10h37m30s - connexion time: 11/01/23 10h37m41s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:03:14 - PDD duration: 2247 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16410 /Dest ip :212.224.167.110 rtp:21532 - Play time (voice) : 00h03m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9688 / 9681 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 20 dB - ACOM : 48 dB - - - 67 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 84 (323) - calling : 3255218750, called : 32495914836 - setup time: 11/01/23 10h32m20s - connexion time: 11/01/23 10h32m35s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:18 - PDD duration: 1840 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16402 /Dest ip :212.224.167.110 rtp:21520 - Play time (voice) : 00h00m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1560 / 1561 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 51 dB - ACOM : 75 dB - - - 68 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 83 (322) - calling : 55218750, called : 55335241 - setup time: 11/01/23 10h32m20s - connexion time: 11/01/23 10h32m35s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:18 - PDD duration: 2104 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16406 /Dest ip :212.224.167.110 rtp:21528 - Play time (voice) : 00h00m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 884 / 896 - RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 42 dB - ACOM : 73 dB - - - 69 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 85 (324) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 10h32m23s - connexion time: 11/01/23 10h32m31s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:10 - PDD duration: 931 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16404 /Dest ip :212.224.167.110 rtp:21542 - Play time (voice) : 00h00m10s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 817 / 835 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 36 dB - ACOM : 64 dB - - - 70 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 82 (321) - calling : 3255335334, called : 32490661126 - setup time: 11/01/23 10h31m03s - connexion time: 11/01/23 10h31m16s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:07 - PDD duration: 3170 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16400 /Dest ip :212.224.167.110 rtp:21498 - Play time (voice) : 00h00m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 811 / 847 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 34 dB - ACOM : 59 dB - - - 71 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 81 (320) - calling : 3255335346, called : 32495914836 - setup time: 11/01/23 10h23m33s - connexion time: 11/01/23 10h23m46s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:14 - PDD duration: 678 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16398 /Dest ip :212.224.167.110 rtp:21460 - Play time (voice) : 00h02m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7352 / 7352 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 29 dB - ACOM : 62 dB - - - 72 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 80 (319) - calling : 32460973920, called : 32495914836 - setup time: 11/01/23 10h23m24s - connexion time: 11/01/23 10h23m31s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:13 - PDD duration: 1492 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16394 /Dest ip :212.224.167.110 rtp:21454 - Play time (voice) : 00h00m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 936 / 937 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 29 dB - ACOM : 54 dB - - - 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 79 (318) - calling : 460973920, called : 55335241 - setup time: 11/01/23 10h23m24s - connexion time: 11/01/23 10h23m31s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:13 - PDD duration: 1727 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16396 /Dest ip :212.224.167.110 rtp:21452 - Play time (voice) : 00h00m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 652 / 657 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 28 dB - ACOM : 55 dB - - - 74 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 78 (317) - calling : 3255335346, called : 32490661124 - setup time: 11/01/23 10h19m03s - connexion time: 11/01/23 10h19m19s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:22 - PDD duration: 3237 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16392 /Dest ip :212.224.167.110 rtp:21438 - Play time (voice) : 00h01m22s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4726 / 4729 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 31 dB - ACOM : 56 dB - - - 75 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 77 (316) - calling : 3255335346, called : 32474718109 - setup time: 11/01/23 10h18m16s - connexion time: 11/01/23 10h18m20s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:39 - PDD duration: 919 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16390 /Dest ip :212.224.167.110 rtp:21450 - Play time (voice) : 00h00m39s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2137 / 2137 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 27 dB - ACOM : 51 dB - - - 76 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 76 (315) - calling : 3255335346, called : 32490661135 - setup time: 11/01/23 10h16m51s - connexion time: 11/01/23 10h17m05s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:11 - PDD duration: 2327 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16388 /Dest ip :212.224.167.110 rtp:21430 - Play time (voice) : 00h00m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1166 / 1166 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 28 dB - ACOM : 53 dB - - - 77 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 75 (314) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 10h07m53s - connexion time: 11/01/23 10h08m17s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 1453 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16386 /Dest ip :212.224.167.110 rtp:21352 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1224 / 1239 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 66 dB - ACOM : 90 dB - - - 78 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 73 (312) - calling : 491169975, called : 55335354 - setup time: 11/01/23 10h05m41s - connexion time: 11/01/23 10h05m55s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:35 - PDD duration: 2467 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16384 /Dest ip :212.224.167.110 rtp:21354 - Play time (voice) : 00h00m35s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1746 / 1738 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 17 dB - ACOM : 44 dB - - - 79 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 74 (313) - calling : 32491169975, called : 32490661135 - setup time: 11/01/23 10h05m41s - connexion time: 11/01/23 10h05m54s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:35 - PDD duration: 2259 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16454 /Dest ip :212.224.167.110 rtp:21356 - Play time (voice) : 00h00m35s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2294 / 2295 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 17 dB - ACOM : 60 dB - - - 80 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 72 (311) - calling : 3255335346, called : 32495914834 - setup time: 11/01/23 09h58m30s - connexion time: 11/01/23 09h58m53s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:04 - PDD duration: 961 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16452 /Dest ip :212.224.167.110 rtp:21314 - Play time (voice) : 00h00m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1305 / 1307 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 60 dB - ACOM : 90 dB - - - 81 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 71 (310) - calling : 3255335346, called : 32495914834 - setup time: 11/01/23 09h57m58s - connexion time: 11/01/23 09h58m22s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 1369 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16450 /Dest ip :212.224.167.110 rtp:21324 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1261 / 1263 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 60 dB - ACOM : 90 dB - - - 82 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 70 (309) - calling : 3255337741, called : 3256232940 - setup time: 11/01/23 09h49m37s - connexion time: 11/01/23 09h49m38s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:02 - PDD duration: 1118 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16448 /Dest ip :212.224.167.110 rtp:21266 - Play time (voice) : 00h01m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 622 / 3093 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 3998976 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 33 dB - ACOM : 58 dB - - - 83 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 69 (308) - calling : 3255337741, called : 3256232940 - setup time: 11/01/23 09h49m34s - connexion time: 11/01/23 09h49m36s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:04 - PDD duration: 1325 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16446 /Dest ip :212.224.167.110 rtp:21262 - Play time (voice) : 00h01m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 628 / 3220 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 2684106 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 84 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 68 (307) - calling : 3255337741, called : 3256232940 - setup time: 11/01/23 09h48m47s - connexion time: 11/01/23 09h48m48s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:34 - PDD duration: 1098 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16444 /Dest ip :212.224.167.110 rtp:21252 - Play time (voice) : 00h00m34s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 619 / 1707 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 1121577 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 34 dB - ACOM : 61 dB - - - 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 67 (306) - calling : 495914834, called : 55335241 - setup time: 11/01/23 09h48m07s - connexion time: 11/01/23 09h48m23s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:17 - PDD duration: 308 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16442 /Dest ip :212.224.167.110 rtp:21268 - Play time (voice) : 00h00m17s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 824 / 813 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 23 dB - ACOM : 72 dB - - - 86 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 66 (305) - calling : 3255335241, called : 32495914834 - setup time: 11/01/23 09h41m58s - connexion time: 11/01/23 09h42m00s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:13 - PDD duration: 1335 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16440 /Dest ip :212.224.167.110 rtp:21216 - Play time (voice) : 00h00m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 678 / 680 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 87 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 65 (304) - calling : 31113760035, called : 55335278 - setup time: 11/01/23 09h36m21s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 263 msec - advice-of-charge: free - call priority: 100 - - - 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 64 (303) - calling : 460973920, called : 55335241 - setup time: 11/01/23 09h21m11s - connexion time: 11/01/23 09h21m14s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:46 - PDD duration: 311 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16438 /Dest ip :212.224.167.110 rtp:21108 - Play time (voice) : 00h01m46s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5330 / 5332 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 19 dB - ACOM : 44 dB - - - 89 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 63 (302) - calling : 3255337741, called : 32492819960 - setup time: 11/01/23 09h02m42s - connexion time: 11/01/23 09h02m51s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 1052 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16436 /Dest ip :212.224.167.110 rtp:20998 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1336 / 1356 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 35 dB - ACOM : 57 dB - - - 90 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 62 (301) - calling : 3255337741, called : 3292349010 - setup time: 11/01/23 08h55m10s - connexion time: 11/01/23 08h55m13s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:07:20 - PDD duration: 1490 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16434 /Dest ip :212.224.167.110 rtp:20990 - Play time (voice) : 00h07m20s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 17752 / 22075 - RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 32 dB - ACOM : 58 dB - - - 91 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 61 (300) - calling : 3255337741, called : 32492819960 - setup time: 11/01/23 08h51m58s - connexion time: 11/01/23 08h52m22s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:04 - PDD duration: 1153 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16432 /Dest ip :212.224.167.110 rtp:20970 - Play time (voice) : 00h00m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1298 / 1315 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 73 dB - - - 92 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 60 (299) - calling : 3255337741, called : 32492819960 - setup time: 11/01/23 08h44m49s - connexion time: 11/01/23 08h45m13s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 1285 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16430 /Dest ip :212.224.167.110 rtp:20888 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1243 / 1262 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 56 dB - ACOM : 75 dB - - - 93 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 59 (298) - calling : 3255335206, called : 32492819960 - setup time: 11/01/23 08h42m47s - connexion time: 11/01/23 08h42m59s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:09 - PDD duration: 1183 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16428 /Dest ip :212.224.167.110 rtp:20902 - Play time (voice) : 00h00m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 994 / 1009 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 33 dB - ACOM : 58 dB - - - 94 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 58 (297) - calling : 3255335286, called : 32490661144 - setup time: 11/01/23 08h27m13s - connexion time: 11/01/23 08h27m26s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:21 - PDD duration: 2148 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16426 /Dest ip :212.224.167.110 rtp:20874 - Play time (voice) : 00h00m21s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1600 / 1600 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 95 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 57 (296) - calling : 3255337758, called : 32490661150 - setup time: 11/01/23 08h26m27s - connexion time: 11/01/23 08h26m36s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:06 - PDD duration: 3073 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16424 /Dest ip :212.224.167.110 rtp:20882 - Play time (voice) : 00h01m06s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3578 / 3611 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.24 / 4.39 - ERL : 25 dB - ACOM : 50 dB - - - 96 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 56 (295) - calling : 3255335241, called : 32490446941 - setup time: 11/01/23 08h12m33s - connexion time: 11/01/23 08h12m42s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:31 - PDD duration: 1404 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16422 /Dest ip :212.224.167.110 rtp:20840 - Play time (voice) : 00h03m32s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 10973 / 10974 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 12 dB - ACOM : 45 dB - - - 97 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 55 (294) - calling : 32491169927, called : 32490446941 - setup time: 11/01/23 07h58m45s - connexion time: 11/01/23 07h59m09s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 1072 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16418 /Dest ip :212.224.167.110 rtp:20780 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1377 / 1378 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 49 dB - ACOM : 78 dB - - - 98 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 54 (293) - calling : 491169927, called : 55335361 - setup time: 11/01/23 07h58m45s - connexion time: 11/01/23 07h59m09s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 1343 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16420 /Dest ip :212.224.167.110 rtp:20778 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 227 / 216 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : 20 dB - ACOM : 65 dB - - - 99 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 53 (292) - calling : 3255335286, called : 32490661144 - setup time: 11/01/23 07h04m54s - connexion time: 11/01/23 07h05m00s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:44 - PDD duration: 2156 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16416 /Dest ip :212.224.167.110 rtp:20716 - Play time (voice) : 00h00m44s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2416 / 2417 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 15 dB - ACOM : 42 dB - - - 100 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 51 (290) - calling : 476215202, called : 55335234 - setup time: 11/01/23 07h04m14s - connexion time: 11/01/23 07h04m27s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 3735 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.114 rtp:16414 /Dest ip :212.224.167.110 rtp:20682 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 577 / 575 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 26 dB - ACOM : 50 dB - diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml deleted file mode 100644 index c34bddfb24..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug103.yml +++ /dev/null @@ -1,3295 +0,0 @@ ---- -parsed_sample: - - call_idx: "1" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "151 (390)" - calling_number: "490446941" - called_number: "55335275" - setup_time: "11/01/23 21h52m53s" - connexion_time: "11/01/23 21h53m07s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:31" - pdd_duration: "283 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23394" - rtp_play_time: "00h02m31s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7544" - rtp_pkts_tx: "7531" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "14" - rtp_acom_db: "43" - - call_idx: "2" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "150 (389)" - calling_number: "490446941" - called_number: "55335275" - setup_time: "11/01/23 21h27m06s" - connexion_time: "11/01/23 21h27m33s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:36" - pdd_duration: "270 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23492" - rtp_play_time: "00h01m36s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4814" - rtp_pkts_tx: "4807" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "13" - rtp_acom_db: "40" - - call_idx: "3" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "149 (388)" - calling_number: "488313757" - called_number: "55337751" - setup_time: "11/01/23 20h25m09s" - connexion_time: "11/01/23 20h25m09s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "102 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16448" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23440" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "244" - rtp_pkts_tx: "245" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "4" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "148 (387)" - calling_number: "488313757" - called_number: "55337751" - setup_time: "11/01/23 20h24m56s" - connexion_time: "11/01/23 20h24m56s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:06" - pdd_duration: "155 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16446" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23418" - rtp_play_time: "00h00m06s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "272" - rtp_pkts_tx: "273" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "5" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "147 (386)" - calling_number: "3255335278" - called_number: "3250703433" - setup_time: "11/01/23 16h33m08s" - connexion_time: "11/01/23 16h33m09s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:11" - pdd_duration: "847 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16444" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23192" - rtp_play_time: "00h02m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6529" - rtp_pkts_tx: "6529" - rtp_pkts_lost_rx: "13" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "40" - rtp_acom_db: "66" - - call_idx: "6" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "144 (383)" - calling_number: "3255335278" - called_number: "3250703433" - setup_time: "11/01/23 16h15m11s" - connexion_time: "11/01/23 16h15m12s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:13:29" - pdd_duration: "708 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16438" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23156" - rtp_play_time: "00h13m29s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "40459" - rtp_pkts_tx: "40459" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "37" - rtp_acom_db: "64" - - call_idx: "7" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "146 (385)" - calling_number: "32491169975" - called_number: "32490661143" - setup_time: "11/01/23 16h22m35s" - connexion_time: "11/01/23 16h22m39s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:48" - pdd_duration: "599 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16440" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23196" - rtp_play_time: "00h02m48s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "8567" - rtp_pkts_tx: "8567" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "73" - - call_idx: "8" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "145 (384)" - calling_number: "491169975" - called_number: "55337505" - setup_time: "11/01/23 16h22m35s" - connexion_time: "11/01/23 16h22m39s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:48" - pdd_duration: "852 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16442" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23180" - rtp_play_time: "00h02m48s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "8390" - rtp_pkts_tx: "8382" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "32" - rtp_acom_db: "58" - - call_idx: "9" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "143 (382)" - calling_number: "492819960" - called_number: "55335206" - setup_time: "11/01/23 16h06m05s" - connexion_time: "11/01/23 16h06m08s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "377 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16436" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23128" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "943" - rtp_pkts_tx: "929" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "42" - rtp_acom_db: "67" - - call_idx: "10" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "142 (381)" - calling_number: "3255335346" - called_number: "32490661137" - setup_time: "11/01/23 16h04m09s" - connexion_time: "11/01/23 16h04m17s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:10" - pdd_duration: "2088 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16434" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23122" - rtp_play_time: "00h00m10s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "801" - rtp_pkts_tx: "801" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "51" - - call_idx: "11" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "141 (380)" - calling_number: "3255335241" - called_number: "32498178799" - setup_time: "11/01/23 15h59m31s" - connexion_time: "11/01/23 15h59m55s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "1422 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16432" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23074" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1182" - rtp_pkts_tx: "1199" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "66" - rtp_acom_db: "90" - - call_idx: "12" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "140 (379)" - calling_number: "3255335278" - called_number: "32492819960" - setup_time: "11/01/23 15h42m36s" - connexion_time: "11/01/23 15h43m00s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:04" - pdd_duration: "967 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16430" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23008" - rtp_play_time: "00h00m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1318" - rtp_pkts_tx: "1334" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "67" - rtp_acom_db: "91" - - call_idx: "13" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "139 (378)" - calling_number: "3255335278" - called_number: "32492819960" - setup_time: "11/01/23 15h41m50s" - connexion_time: "11/01/23 15h42m14s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "1041 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16428" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23006" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1379" - rtp_pkts_tx: "1391" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "67" - rtp_acom_db: "91" - - call_idx: "14" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "138 (377)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 15h10m36s" - connexion_time: "11/01/23 15h10m48s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:17" - pdd_duration: "1464 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16426" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22878" - rtp_play_time: "00h00m17s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1356" - rtp_pkts_tx: "1373" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "54" - - call_idx: "15" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "137 (376)" - calling_number: "3255337739" - called_number: "32491169927" - setup_time: "11/01/23 15h07m19s" - connexion_time: "11/01/23 15h07m43s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:07" - pdd_duration: "1515 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16424" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22890" - rtp_play_time: "00h00m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1458" - rtp_pkts_tx: "1462" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "41" - rtp_acom_db: "71" - - call_idx: "16" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "136 (375)" - calling_number: "490661133" - called_number: "55335206" - setup_time: "11/01/23 15h02m05s" - connexion_time: "11/01/23 15h02m07s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:04" - pdd_duration: "361 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16422" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22866" - rtp_play_time: "00h01m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3199" - rtp_pkts_tx: "3187" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "38" - rtp_acom_db: "65" - - call_idx: "17" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "135 (374)" - calling_number: "495914834" - called_number: "55335241" - setup_time: "11/01/23 14h58m35s" - connexion_time: "11/01/23 14h58m38s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:05" - pdd_duration: "321 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16420" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22838" - rtp_play_time: "00h02m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6214" - rtp_pkts_tx: "6200" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "18" - rtp_acom_db: "42" - - call_idx: "18" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "134 (373)" - calling_number: "3255337758" - called_number: "32490661150" - setup_time: "11/01/23 14h54m36s" - connexion_time: "11/01/23 14h54m49s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:51" - pdd_duration: "3148 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16418" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22826" - rtp_play_time: "00h01m51s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6031" - rtp_pkts_tx: "6066" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.38" - rtp_mos_lq: "4.39" - rtp_erl_db: "40" - rtp_acom_db: "59" - - call_idx: "19" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "133 (372)" - calling_number: "32499172658" - called_number: "32490446941" - setup_time: "11/01/23 14h53m42s" - connexion_time: "11/01/23 14h54m06s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "1136 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16414" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22808" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1758" - rtp_pkts_tx: "1760" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "66" - - call_idx: "20" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "132 (371)" - calling_number: "499172658" - called_number: "55335361" - setup_time: "11/01/23 14h53m42s" - connexion_time: "11/01/23 14h54m06s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "1393 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16416" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22802" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "598" - rtp_pkts_tx: "602" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "20" - rtp_acom_db: "75" - - call_idx: "21" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "131 (370)" - calling_number: "3255335346" - called_number: "32490661134" - setup_time: "11/01/23 14h41m09s" - connexion_time: "11/01/23 14h41m21s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:30" - pdd_duration: "2115 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16412" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22776" - rtp_play_time: "00h00m30s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2003" - rtp_pkts_tx: "2004" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "53" - - call_idx: "22" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "130 (369)" - calling_number: "32490661150" - called_number: "32479844827" - setup_time: "11/01/23 14h12m45s" - connexion_time: "11/01/23 14h12m46s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:23" - pdd_duration: "1109 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16410" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22630" - rtp_play_time: "00h00m23s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1140" - rtp_pkts_tx: "1141" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "2" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "48" - rtp_acom_db: "77" - - call_idx: "23" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "129 (368)" - calling_number: "490661150" - called_number: "55337758" - setup_time: "11/01/23 14h12m45s" - connexion_time: "11/01/23 14h12m46s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:22" - pdd_duration: "1401 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "24" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "128 (367)" - calling_number: "495504138" - called_number: "55335211" - setup_time: "11/01/23 14h07m36s" - connexion_time: "11/01/23 14h07m43s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:20" - pdd_duration: "263 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16408" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22634" - rtp_play_time: "00h02m20s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7005" - rtp_pkts_tx: "7003" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "44" - rtp_acom_db: "68" - - call_idx: "25" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "127 (366)" - calling_number: "475453097" - called_number: "55335278" - setup_time: "11/01/23 13h31m44s" - connexion_time: "11/01/23 13h31m51s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:05:38" - pdd_duration: "254 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16406" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22452" - rtp_play_time: "00h05m38s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "16865" - rtp_pkts_tx: "16867" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "46" - rtp_acom_db: "73" - - call_idx: "26" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "126 (365)" - calling_number: "3255337741" - called_number: "32492819960" - setup_time: "11/01/23 13h18m28s" - connexion_time: "11/01/23 13h18m38s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:33" - pdd_duration: "899 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16404" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22392" - rtp_play_time: "00h00m33s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2118" - rtp_pkts_tx: "2136" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "20" - rtp_acom_db: "52" - - call_idx: "27" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "125 (364)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 13h16m15s" - connexion_time: "11/01/23 13h16m27s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:14" - pdd_duration: "1409 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16402" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22348" - rtp_play_time: "00h00m15s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1217" - rtp_pkts_tx: "1234" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "47" - rtp_acom_db: "78" - - call_idx: "28" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "123 (362)" - calling_number: "32039693" - called_number: "55337755" - setup_time: "11/01/23 12h36m17s" - connexion_time: "11/01/23 12h36m22s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:48" - pdd_duration: "1241 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16400" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22232" - rtp_play_time: "00h00m48s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2365" - rtp_pkts_tx: "2362" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "30" - rtp_acom_db: "54" - - call_idx: "29" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "124 (363)" - calling_number: "3232039693" - called_number: "32495914860" - setup_time: "11/01/23 12h36m17s" - connexion_time: "11/01/23 12h36m22s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:48" - pdd_duration: "1020 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16398" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22160" - rtp_play_time: "00h00m48s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2574" - rtp_pkts_tx: "2574" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "30" - rtp_acom_db: "57" - - call_idx: "30" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "122 (361)" - calling_number: "3255335206" - called_number: "32492136378" - setup_time: "11/01/23 12h11m38s" - connexion_time: "11/01/23 12h11m52s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "3277 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16396" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22132" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1107" - rtp_pkts_tx: "1112" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "39" - rtp_acom_db: "62" - - call_idx: "31" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "121 (360)" - calling_number: "3255335206" - called_number: "32495914834" - setup_time: "11/01/23 12h10m24s" - connexion_time: "11/01/23 12h10m27s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:27" - pdd_duration: "1219 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16394" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22136" - rtp_play_time: "00h00m27s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1444" - rtp_pkts_tx: "1444" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "37" - rtp_acom_db: "63" - - call_idx: "32" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "120 (359)" - calling_number: "3255335206" - called_number: "32490661154" - setup_time: "11/01/23 12h09m51s" - connexion_time: "11/01/23 12h10m18s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "3375 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16392" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22142" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1287" - rtp_pkts_tx: "1290" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "60" - rtp_acom_db: "89" - - call_idx: "33" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "119 (358)" - calling_number: "3255335241" - called_number: "32491169975" - setup_time: "11/01/23 12h02m16s" - connexion_time: "11/01/23 12h02m24s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "1208 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16390" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22090" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1323" - rtp_pkts_tx: "1323" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "21" - rtp_acom_db: "41" - - call_idx: "34" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "118 (357)" - calling_number: "3255337741" - called_number: "32470635841" - setup_time: "11/01/23 11h48m06s" - connexion_time: "11/01/23 11h48m16s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:55" - pdd_duration: "1406 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16388" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21946" - rtp_play_time: "00h01m55s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6164" - rtp_pkts_tx: "6170" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "47" - - call_idx: "35" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "117 (356)" - calling_number: "470635841" - called_number: "55335211" - setup_time: "11/01/23 11h46m22s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "258 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "36" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "116 (355)" - calling_number: "495914834" - called_number: "55335395" - setup_time: "11/01/23 11h41m18s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "343 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "37" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "115 (354)" - calling_number: "495914834" - called_number: "55335395" - setup_time: "11/01/23 11h41m15s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "38" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "114 (353)" - calling_number: "495914834" - called_number: "55335395" - setup_time: "11/01/23 11h38m56s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "302 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "39" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "113 (352)" - calling_number: "495914834" - called_number: "55335395" - setup_time: "11/01/23 11h36m21s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "356 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "40" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "111 (350)" - calling_number: "476215202" - called_number: "55335234" - setup_time: "11/01/23 11h30m51s" - connexion_time: "11/01/23 11h31m03s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:13" - pdd_duration: "3942 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16386" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21918" - rtp_play_time: "00h00m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "646" - rtp_pkts_tx: "644" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "52" - - call_idx: "41" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "112 (351)" - calling_number: "32476215202" - called_number: "32490661131" - setup_time: "11/01/23 11h30m51s" - connexion_time: "11/01/23 11h31m03s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:13" - pdd_duration: "3646 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16384" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21936" - rtp_play_time: "00h00m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1060" - rtp_pkts_tx: "1065" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "41" - rtp_acom_db: "65" - - call_idx: "42" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "110 (349)" - calling_number: "490661150" - called_number: "55335241" - setup_time: "11/01/23 11h23m17s" - connexion_time: "11/01/23 11h23m44s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "301 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16454" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21848" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "76" - rtp_pkts_tx: "62" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "27" - rtp_acom_db: "82" - - call_idx: "43" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "109 (348)" - calling_number: "55218750" - called_number: "55335241" - setup_time: "11/01/23 11h21m13s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "355 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "44" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "108 (347)" - calling_number: "3255335334" - called_number: "32475638295" - setup_time: "11/01/23 11h17m51s" - connexion_time: "11/01/23 11h17m57s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:24" - pdd_duration: "814 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21814" - rtp_play_time: "00h01m24s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4463" - rtp_pkts_tx: "4464" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "20" - rtp_acom_db: "53" - - call_idx: "45" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "107 (346)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 11h16m33s" - connexion_time: "11/01/23 11h16m46s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:11" - pdd_duration: "900 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21764" - rtp_play_time: "00h00m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1159" - rtp_pkts_tx: "1177" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "40" - rtp_acom_db: "64" - - call_idx: "46" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "106 (345)" - calling_number: "3255335278" - called_number: "32492819960" - setup_time: "11/01/23 11h13m41s" - connexion_time: "11/01/23 11h13m51s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:58" - pdd_duration: "1332 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16448" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21776" - rtp_play_time: "00h01m58s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6322" - rtp_pkts_tx: "6335" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "57" - - call_idx: "47" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "104 (343)" - calling_number: "3255335241" - called_number: "32491169975" - setup_time: "11/01/23 11h09m16s" - connexion_time: "11/01/23 11h09m21s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:01" - pdd_duration: "1464 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16444" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21738" - rtp_play_time: "00h03m01s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9207" - rtp_pkts_tx: "9207" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "62" - - call_idx: "48" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "105 (344)" - calling_number: "3255335278" - called_number: "32474810035" - setup_time: "11/01/23 11h10m19s" - connexion_time: "11/01/23 11h10m26s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:38" - pdd_duration: "1209 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16446" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21724" - rtp_play_time: "00h01m38s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5201" - rtp_pkts_tx: "5202" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "31" - rtp_acom_db: "61" - - call_idx: "49" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "103 (342)" - calling_number: "55218750" - called_number: "55335241" - setup_time: "11/01/23 11h05m39s" - connexion_time: "11/01/23 11h06m06s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "350 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16442" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21744" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "102" - rtp_pkts_tx: "106" - rtp_pkts_lost_rx: "1" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "28" - rtp_acom_db: "83" - - call_idx: "50" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "102 (341)" - calling_number: "3255335278" - called_number: "32479790455" - setup_time: "11/01/23 11h04m18s" - connexion_time: "11/01/23 11h04m30s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:04" - pdd_duration: "1099 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16440" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21706" - rtp_play_time: "00h00m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "732" - rtp_pkts_tx: "761" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "53" - - call_idx: "51" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "101 (340)" - calling_number: "3255335241" - called_number: "3255218750" - setup_time: "11/01/23 11h03m15s" - connexion_time: "11/01/23 11h03m15s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:43" - pdd_duration: "554 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16438" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21686" - rtp_play_time: "00h00m43s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2131" - rtp_pkts_tx: "2148" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "2" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "48" - rtp_acom_db: "71" - - call_idx: "52" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "100 (339)" - calling_number: "3255335241" - called_number: "32495914834" - setup_time: "11/01/23 11h01m29s" - connexion_time: "11/01/23 11h01m33s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:24" - pdd_duration: "1491 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16436" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21718" - rtp_play_time: "00h01m24s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4315" - rtp_pkts_tx: "4315" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "32" - rtp_acom_db: "64" - - call_idx: "53" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "98 (337)" - calling_number: "3255335241" - called_number: "32486141517" - setup_time: "11/01/23 10h59m16s" - connexion_time: "11/01/23 10h59m30s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:53" - pdd_duration: "1433 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16432" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21672" - rtp_play_time: "00h01m53s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6280" - rtp_pkts_tx: "6281" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "43" - rtp_acom_db: "77" - - call_idx: "54" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "99 (338)" - calling_number: "3255335275" - called_number: "32495914834" - setup_time: "11/01/23 11h00m11s" - connexion_time: "11/01/23 11h00m15s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:22" - pdd_duration: "998 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16434" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21662" - rtp_play_time: "00h00m22s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1256" - rtp_pkts_tx: "1256" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "14" - rtp_acom_db: "53" - - call_idx: "55" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "97 (336)" - calling_number: "3255335241" - called_number: "3255235858" - setup_time: "11/01/23 10h58m23s" - connexion_time: "11/01/23 10h58m25s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:41" - pdd_duration: "1643 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16430" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21684" - rtp_play_time: "00h00m41s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2053" - rtp_pkts_tx: "2080" - rtp_pkts_lost_rx: "7" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.32" - rtp_mos_lq: "4.38" - rtp_erl_db: "45" - rtp_acom_db: "76" - - call_idx: "56" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "96 (335)" - calling_number: "3255335241" - called_number: "32495914834" - setup_time: "11/01/23 10h57m17s" - connexion_time: "11/01/23 10h57m21s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:40" - pdd_duration: "1310 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16428" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21618" - rtp_play_time: "00h00m40s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2136" - rtp_pkts_tx: "2136" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "54" - rtp_acom_db: "88" - - call_idx: "57" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "95 (334)" - calling_number: "3255335241" - called_number: "3256303372" - setup_time: "11/01/23 10h54m14s" - connexion_time: "11/01/23 10h54m16s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:57" - pdd_duration: "1601 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16426" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21642" - rtp_play_time: "00h02m57s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "8815" - rtp_pkts_tx: "8872" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "14" - rtp_acom_db: "40" - - call_idx: "58" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "93 (332)" - calling_number: "3255335334" - called_number: "32475638295" - setup_time: "11/01/23 10h52m58s" - connexion_time: "11/01/23 10h53m22s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:03" - pdd_duration: "1153 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16422" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21632" - rtp_play_time: "00h03m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "10275" - rtp_pkts_tx: "10276" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "29" - rtp_acom_db: "54" - - call_idx: "59" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "94 (333)" - calling_number: "3255337755" - called_number: "32474718109" - setup_time: "11/01/23 10h53m32s" - connexion_time: "11/01/23 10h53m36s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:06" - pdd_duration: "1327 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16424" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21612" - rtp_play_time: "00h01m06s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3428" - rtp_pkts_tx: "3428" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "33" - rtp_acom_db: "59" - - call_idx: "60" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "92 (331)" - calling_number: "3255335241" - called_number: "3256627111" - setup_time: "11/01/23 10h52m03s" - connexion_time: "11/01/23 10h52m05s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:57" - pdd_duration: "649 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16420" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21634" - rtp_play_time: "00h01m57s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5846" - rtp_pkts_tx: "5893" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "2.87" - rtp_mos_lq: "4.39" - rtp_erl_db: "49" - rtp_acom_db: "76" - - call_idx: "61" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "91 (330)" - calling_number: "3255335241" - called_number: "3255218750" - setup_time: "11/01/23 10h47m31s" - connexion_time: "11/01/23 10h47m31s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:04:05" - pdd_duration: "566 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16418" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21590" - rtp_play_time: "00h04m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "12176" - rtp_pkts_tx: "12215" - rtp_pkts_lost_rx: "10786" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "1.00" - rtp_mos_lq: "1.00" - rtp_erl_db: "37" - rtp_acom_db: "65" - - call_idx: "62" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "90 (329)" - calling_number: "3255335346" - called_number: "32490661135" - setup_time: "11/01/23 10h47m26s" - connexion_time: "11/01/23 10h47m36s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:37" - pdd_duration: "1731 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16416" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21586" - rtp_play_time: "00h00m37s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2283" - rtp_pkts_tx: "2283" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "31" - rtp_acom_db: "55" - - call_idx: "63" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "89 (328)" - calling_number: "3255335346" - called_number: "32490661135" - setup_time: "11/01/23 10h44m55s" - connexion_time: "11/01/23 10h44m58s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "2197 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16414" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21574" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "166" - rtp_pkts_tx: "168" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "64" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "88 (327)" - calling_number: "3255337741" - called_number: "31228355612" - setup_time: "11/01/23 10h39m59s" - connexion_time: "11/01/23 10h40m06s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:09" - pdd_duration: "1017 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16412" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21570" - rtp_play_time: "00h01m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3717" - rtp_pkts_tx: "3723" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.29" - rtp_mos_lq: "4.39" - rtp_erl_db: "35" - rtp_acom_db: "61" - - call_idx: "65" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "87 (326)" - calling_number: "32491169975" - called_number: "32490661134" - setup_time: "11/01/23 10h37m30s" - connexion_time: "11/01/23 10h37m41s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:14" - pdd_duration: "2045 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16408" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21544" - rtp_play_time: "00h03m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "10140" - rtp_pkts_tx: "10141" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "18" - rtp_acom_db: "44" - - call_idx: "66" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "86 (325)" - calling_number: "491169975" - called_number: "55335341" - setup_time: "11/01/23 10h37m30s" - connexion_time: "11/01/23 10h37m41s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:14" - pdd_duration: "2247 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16410" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21532" - rtp_play_time: "00h03m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9688" - rtp_pkts_tx: "9681" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "20" - rtp_acom_db: "48" - - call_idx: "67" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "84 (323)" - calling_number: "3255218750" - called_number: "32495914836" - setup_time: "11/01/23 10h32m20s" - connexion_time: "11/01/23 10h32m35s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:18" - pdd_duration: "1840 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16402" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21520" - rtp_play_time: "00h00m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1560" - rtp_pkts_tx: "1561" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "51" - rtp_acom_db: "75" - - call_idx: "68" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "83 (322)" - calling_number: "55218750" - called_number: "55335241" - setup_time: "11/01/23 10h32m20s" - connexion_time: "11/01/23 10h32m35s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:18" - pdd_duration: "2104 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16406" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21528" - rtp_play_time: "00h00m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "884" - rtp_pkts_tx: "896" - rtp_pkts_lost_rx: "1" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "42" - rtp_acom_db: "73" - - call_idx: "69" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "85 (324)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 10h32m23s" - connexion_time: "11/01/23 10h32m31s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:10" - pdd_duration: "931 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16404" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21542" - rtp_play_time: "00h00m10s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "817" - rtp_pkts_tx: "835" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "36" - rtp_acom_db: "64" - - call_idx: "70" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "82 (321)" - calling_number: "3255335334" - called_number: "32490661126" - setup_time: "11/01/23 10h31m03s" - connexion_time: "11/01/23 10h31m16s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:07" - pdd_duration: "3170 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16400" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21498" - rtp_play_time: "00h00m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "811" - rtp_pkts_tx: "847" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "34" - rtp_acom_db: "59" - - call_idx: "71" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "81 (320)" - calling_number: "3255335346" - called_number: "32495914836" - setup_time: "11/01/23 10h23m33s" - connexion_time: "11/01/23 10h23m46s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:14" - pdd_duration: "678 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16398" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21460" - rtp_play_time: "00h02m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7352" - rtp_pkts_tx: "7352" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "29" - rtp_acom_db: "62" - - call_idx: "72" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "80 (319)" - calling_number: "32460973920" - called_number: "32495914836" - setup_time: "11/01/23 10h23m24s" - connexion_time: "11/01/23 10h23m31s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:13" - pdd_duration: "1492 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16394" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21454" - rtp_play_time: "00h00m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "936" - rtp_pkts_tx: "937" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "29" - rtp_acom_db: "54" - - call_idx: "73" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "79 (318)" - calling_number: "460973920" - called_number: "55335241" - setup_time: "11/01/23 10h23m24s" - connexion_time: "11/01/23 10h23m31s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:13" - pdd_duration: "1727 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16396" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21452" - rtp_play_time: "00h00m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "652" - rtp_pkts_tx: "657" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "55" - - call_idx: "74" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "78 (317)" - calling_number: "3255335346" - called_number: "32490661124" - setup_time: "11/01/23 10h19m03s" - connexion_time: "11/01/23 10h19m19s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:22" - pdd_duration: "3237 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16392" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21438" - rtp_play_time: "00h01m22s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4726" - rtp_pkts_tx: "4729" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "31" - rtp_acom_db: "56" - - call_idx: "75" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "77 (316)" - calling_number: "3255335346" - called_number: "32474718109" - setup_time: "11/01/23 10h18m16s" - connexion_time: "11/01/23 10h18m20s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:39" - pdd_duration: "919 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16390" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21450" - rtp_play_time: "00h00m39s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2137" - rtp_pkts_tx: "2137" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "27" - rtp_acom_db: "51" - - call_idx: "76" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "76 (315)" - calling_number: "3255335346" - called_number: "32490661135" - setup_time: "11/01/23 10h16m51s" - connexion_time: "11/01/23 10h17m05s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:11" - pdd_duration: "2327 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16388" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21430" - rtp_play_time: "00h00m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1166" - rtp_pkts_tx: "1166" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "53" - - call_idx: "77" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "75 (314)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 10h07m53s" - connexion_time: "11/01/23 10h08m17s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "1453 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16386" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21352" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1224" - rtp_pkts_tx: "1239" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "66" - rtp_acom_db: "90" - - call_idx: "78" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "73 (312)" - calling_number: "491169975" - called_number: "55335354" - setup_time: "11/01/23 10h05m41s" - connexion_time: "11/01/23 10h05m55s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:35" - pdd_duration: "2467 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16384" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21354" - rtp_play_time: "00h00m35s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1746" - rtp_pkts_tx: "1738" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "17" - rtp_acom_db: "44" - - call_idx: "79" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "74 (313)" - calling_number: "32491169975" - called_number: "32490661135" - setup_time: "11/01/23 10h05m41s" - connexion_time: "11/01/23 10h05m54s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:35" - pdd_duration: "2259 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16454" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21356" - rtp_play_time: "00h00m35s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2294" - rtp_pkts_tx: "2295" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "17" - rtp_acom_db: "60" - - call_idx: "80" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "72 (311)" - calling_number: "3255335346" - called_number: "32495914834" - setup_time: "11/01/23 09h58m30s" - connexion_time: "11/01/23 09h58m53s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:04" - pdd_duration: "961 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21314" - rtp_play_time: "00h00m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1305" - rtp_pkts_tx: "1307" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "60" - rtp_acom_db: "90" - - call_idx: "81" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "71 (310)" - calling_number: "3255335346" - called_number: "32495914834" - setup_time: "11/01/23 09h57m58s" - connexion_time: "11/01/23 09h58m22s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "1369 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21324" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1261" - rtp_pkts_tx: "1263" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "60" - rtp_acom_db: "90" - - call_idx: "82" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "70 (309)" - calling_number: "3255337741" - called_number: "3256232940" - setup_time: "11/01/23 09h49m37s" - connexion_time: "11/01/23 09h49m38s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:02" - pdd_duration: "1118 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16448" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21266" - rtp_play_time: "00h01m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "622" - rtp_pkts_tx: "3093" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "3998976" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "33" - rtp_acom_db: "58" - - call_idx: "83" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "69 (308)" - calling_number: "3255337741" - called_number: "3256232940" - setup_time: "11/01/23 09h49m34s" - connexion_time: "11/01/23 09h49m36s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:04" - pdd_duration: "1325 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16446" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21262" - rtp_play_time: "00h01m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "628" - rtp_pkts_tx: "3220" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "2684106" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "84" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "68 (307)" - calling_number: "3255337741" - called_number: "3256232940" - setup_time: "11/01/23 09h48m47s" - connexion_time: "11/01/23 09h48m48s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:34" - pdd_duration: "1098 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16444" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21252" - rtp_play_time: "00h00m34s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "619" - rtp_pkts_tx: "1707" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "1121577" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "34" - rtp_acom_db: "61" - - call_idx: "85" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "67 (306)" - calling_number: "495914834" - called_number: "55335241" - setup_time: "11/01/23 09h48m07s" - connexion_time: "11/01/23 09h48m23s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:17" - pdd_duration: "308 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16442" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21268" - rtp_play_time: "00h00m17s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "824" - rtp_pkts_tx: "813" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "23" - rtp_acom_db: "72" - - call_idx: "86" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "66 (305)" - calling_number: "3255335241" - called_number: "32495914834" - setup_time: "11/01/23 09h41m58s" - connexion_time: "11/01/23 09h42m00s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:13" - pdd_duration: "1335 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16440" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21216" - rtp_play_time: "00h00m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "678" - rtp_pkts_tx: "680" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "87" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "65 (304)" - calling_number: "31113760035" - called_number: "55335278" - setup_time: "11/01/23 09h36m21s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "263 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "88" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "64 (303)" - calling_number: "460973920" - called_number: "55335241" - setup_time: "11/01/23 09h21m11s" - connexion_time: "11/01/23 09h21m14s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:46" - pdd_duration: "311 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16438" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "21108" - rtp_play_time: "00h01m46s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5330" - rtp_pkts_tx: "5332" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "19" - rtp_acom_db: "44" - - call_idx: "89" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "63 (302)" - calling_number: "3255337741" - called_number: "32492819960" - setup_time: "11/01/23 09h02m42s" - connexion_time: "11/01/23 09h02m51s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "1052 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16436" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20998" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1336" - rtp_pkts_tx: "1356" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "35" - rtp_acom_db: "57" - - call_idx: "90" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "62 (301)" - calling_number: "3255337741" - called_number: "3292349010" - setup_time: "11/01/23 08h55m10s" - connexion_time: "11/01/23 08h55m13s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:07:20" - pdd_duration: "1490 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16434" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20990" - rtp_play_time: "00h07m20s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "17752" - rtp_pkts_tx: "22075" - rtp_pkts_lost_rx: "1" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "32" - rtp_acom_db: "58" - - call_idx: "91" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "61 (300)" - calling_number: "3255337741" - called_number: "32492819960" - setup_time: "11/01/23 08h51m58s" - connexion_time: "11/01/23 08h52m22s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:04" - pdd_duration: "1153 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16432" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20970" - rtp_play_time: "00h00m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1298" - rtp_pkts_tx: "1315" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "73" - - call_idx: "92" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "60 (299)" - calling_number: "3255337741" - called_number: "32492819960" - setup_time: "11/01/23 08h44m49s" - connexion_time: "11/01/23 08h45m13s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "1285 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16430" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20888" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1243" - rtp_pkts_tx: "1262" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "56" - rtp_acom_db: "75" - - call_idx: "93" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "59 (298)" - calling_number: "3255335206" - called_number: "32492819960" - setup_time: "11/01/23 08h42m47s" - connexion_time: "11/01/23 08h42m59s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:09" - pdd_duration: "1183 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16428" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20902" - rtp_play_time: "00h00m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "994" - rtp_pkts_tx: "1009" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "33" - rtp_acom_db: "58" - - call_idx: "94" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "58 (297)" - calling_number: "3255335286" - called_number: "32490661144" - setup_time: "11/01/23 08h27m13s" - connexion_time: "11/01/23 08h27m26s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:21" - pdd_duration: "2148 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16426" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20874" - rtp_play_time: "00h00m21s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1600" - rtp_pkts_tx: "1600" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "95" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "57 (296)" - calling_number: "3255337758" - called_number: "32490661150" - setup_time: "11/01/23 08h26m27s" - connexion_time: "11/01/23 08h26m36s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:06" - pdd_duration: "3073 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16424" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20882" - rtp_play_time: "00h01m06s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3578" - rtp_pkts_tx: "3611" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.24" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "50" - - call_idx: "96" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "56 (295)" - calling_number: "3255335241" - called_number: "32490446941" - setup_time: "11/01/23 08h12m33s" - connexion_time: "11/01/23 08h12m42s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:31" - pdd_duration: "1404 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16422" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20840" - rtp_play_time: "00h03m32s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "10973" - rtp_pkts_tx: "10974" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "12" - rtp_acom_db: "45" - - call_idx: "97" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "55 (294)" - calling_number: "32491169927" - called_number: "32490446941" - setup_time: "11/01/23 07h58m45s" - connexion_time: "11/01/23 07h59m09s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "1072 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16418" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20780" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1377" - rtp_pkts_tx: "1378" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "49" - rtp_acom_db: "78" - - call_idx: "98" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "54 (293)" - calling_number: "491169927" - called_number: "55335361" - setup_time: "11/01/23 07h58m45s" - connexion_time: "11/01/23 07h59m09s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "1343 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16420" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20778" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "227" - rtp_pkts_tx: "216" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "20" - rtp_acom_db: "65" - - call_idx: "99" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "53 (292)" - calling_number: "3255335286" - called_number: "32490661144" - setup_time: "11/01/23 07h04m54s" - connexion_time: "11/01/23 07h05m00s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:44" - pdd_duration: "2156 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16416" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20716" - rtp_play_time: "00h00m44s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2416" - rtp_pkts_tx: "2417" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "15" - rtp_acom_db: "42" - - call_idx: "100" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "51 (290)" - calling_number: "476215202" - called_number: "55335234" - setup_time: "11/01/23 07h04m14s" - connexion_time: "11/01/23 07h04m27s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "3735 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.114" - rtp_src_port: "16414" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "20682" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "577" - rtp_pkts_tx: "575" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "26" - rtp_acom_db: "50" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw deleted file mode 100644 index 2e737bd480..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.raw +++ /dev/null @@ -1,2119 +0,0 @@ - - 1 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 9 (44) - calling : 3232041212, called : 32499572278 - setup time: 11/01/23 22h24m31s - connexion time: 11/01/23 22h24m38s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:15 - PDD duration: 1012 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 22h24m31s - RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15638 - Play time (voice) : 00h00m15s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1017 / 1018 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 19 dB - ACOM : 46 dB - - - 2 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 8 (43) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 22h06m46s - connexion time: 11/01/23 22h07m09s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:07 - PDD duration: 851 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 22h06m46s - RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15644 - Play time (voice) : 00h00m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1464 / 1465 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 23 dB - ACOM : 56 dB - - - 3 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 7 (42) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 22h05m48s - connexion time: 11/01/23 22h06m12s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 1451 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 22h05m48s - RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15642 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1370 / 1371 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 20 dB - ACOM : 59 dB - - - 4 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 6 (41) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 21h59m56s - connexion time: 11/01/23 22h00m21s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:08 - PDD duration: 1211 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h59m56s - RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15636 - Play time (voice) : 00h00m08s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1564 / 1566 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 20 dB - ACOM : 64 dB - - - 5 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 5 (40) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 21h55m39s - connexion time: 11/01/23 21h56m03s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:08 - PDD duration: 1301 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h55m39s - RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15632 - Play time (voice) : 00h00m08s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1526 / 1526 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 19 dB - ACOM : 61 dB - - - 6 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 4 (39) - calling : 3232041212, called : 32499572278 - setup time: 11/01/23 21h18m43s - connexion time: 11/01/23 21h18m45s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:31 - PDD duration: 921 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h18m43s - RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15634 - Play time (voice) : 00h02m31s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7608 / 7609 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 22 dB - ACOM : 53 dB - - - 7 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (38) - calling : 3232041212, called : 32499572278 - setup time: 11/01/23 21h16m55s - connexion time: 11/01/23 21h17m03s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:18 - PDD duration: 1211 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h16m55s - RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15630 - Play time (voice) : 00h00m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1224 / 1226 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 18 dB - ACOM : 58 dB - - - 8 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 2 (37) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 21h14m01s - connexion time: 11/01/23 21h14m14s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:44 - PDD duration: 1751 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h14m01s - RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15628 - Play time (voice) : 00h00m44s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2733 / 2735 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 19 dB - ACOM : 46 dB - - - 9 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 1 (36) - calling : 3232041212, called : 32499565390 - setup time: 11/01/23 21h10m37s - connexion time: 11/01/23 21h10m46s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:23 - PDD duration: 3701 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 21h10m37s - RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15626 - Play time (voice) : 00h00m23s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1355 / 1425 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.35 - ERL : 29 dB - ACOM : 73 dB - - - 10 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 0 (35) - calling : 3232041212, called : 32499572278 - setup time: 11/01/23 20h58m02s - connexion time: 11/01/23 20h58m08s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:40 - PDD duration: 951 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 20h58m02s - RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15622 - Play time (voice) : 00h00m40s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2235 / 2236 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 17 dB - ACOM : 49 dB - - - 11 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 35 (34) - calling : 3232041212, called : 32499565392 - setup time: 11/01/23 20h54m34s - connexion time: 11/01/23 20h54m52s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:27 - PDD duration: 3621 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 20h54m34s - RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15624 - Play time (voice) : 00h00m27s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1990 / 2038 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 2 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 40 dB - ACOM : 66 dB - - - 12 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 34 (33) - calling : 3232041212, called : 32499572283 - setup time: 11/01/23 20h22m04s - connexion time: 11/01/23 20h22m05s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 561 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 20h22m04s - RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15620 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 931 / 931 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 37 dB - ACOM : 68 dB - - - 13 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 33 (32) - calling : 3232041212, called : 32499572283 - setup time: 11/01/23 20h21m36s - connexion time: 11/01/23 20h22m00s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 1111 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 20h21m36s - RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15618 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1218 / 1217 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 34 dB - ACOM : 63 dB - - - 14 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 31 (30) - calling : 33091465, called : 32041214 - setup time: 11/01/23 19h35m29s - connexion time: 11/01/23 19h35m33s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:18:52 - PDD duration: 62 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 19h35m33s - RTP Source ip :94.105.56.10 rtp:16446 /Dest ip :212.224.167.110 rtp:15614 - Play time (voice) : 00h18m52s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 56596 / 56592 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 22 dB - ACOM : 51 dB - - - 15 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 32 (31) - calling : 3232041212, called : 032 - setup time: 11/01/23 19h43m07s - connexion time: 11/01/23 19h43m07s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 182 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 19h43m07s - RTP Source ip :94.105.56.10 rtp:16448 /Dest ip :212.224.167.110 rtp:15616 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 91 / 98 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 16 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 30 (29) - calling : 3232041212, called : 3233091465 - setup time: 11/01/23 19h34m53s - connexion time: 11/01/23 19h34m54s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 471 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 19h34m53s - RTP Source ip :94.105.56.10 rtp:16444 /Dest ip :212.224.167.110 rtp:15612 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 127 / 126 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 17 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (28) - calling : 3232041212, called : 3233091465 - setup time: 11/01/23 19h02m09s - connexion time: 11/01/23 19h02m09s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 459 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 19h02m09s - RTP Source ip :94.105.56.10 rtp:16442 /Dest ip :212.224.167.110 rtp:15610 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 134 / 134 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 18 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (27) - calling : 33320148410, called : 32048595 - setup time: 11/01/23 18h59m25s - connexion time: --- - disconnected by local port: 5/0 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: 58 msec - advice-of-charge: free - call priority: 100 - - - 19 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 26 (25) - calling : 31610669704, called : 32041212 - setup time: 11/01/23 18h40m17s - connexion time: 11/01/23 18h40m19s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:17:56 - PDD duration: 55 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h40m19s - RTP Source ip :94.105.56.10 rtp:16438 /Dest ip :212.224.167.110 rtp:15602 - Play time (voice) : 00h17m56s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 53819 / 53806 - RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 20 dB - ACOM : 47 dB - - - 20 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 27 (26) - calling : 31651915707, called : 32041212 - setup time: 11/01/23 18h54m45s - connexion time: 11/01/23 18h54m47s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:03 - PDD duration: 55 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h54m47s - RTP Source ip :94.105.56.10 rtp:16440 /Dest ip :212.224.167.110 rtp:15606 - Play time (voice) : 00h01m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3155 / 3142 - RTP Packet lost&discarded RX / TX (RTCP reported) : 6 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.28 / 4.33 - ERL : 23 dB - ACOM : 56 dB - - - 21 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 23 (22) - calling : 31610669704, called : 32041212 - setup time: 11/01/23 18h39m07s - connexion time: 11/01/23 18h39m09s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:00 - PDD duration: 59 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h39m09s - RTP Source ip :94.105.56.10 rtp:16436 /Dest ip :212.224.167.110 rtp:15604 - Play time (voice) : 00h01m00s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2993 / 2991 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 50 dB - ACOM : 82 dB - - - 22 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 21 (20) - calling : 33761671482, called : 32041212 - setup time: 11/01/23 18h23m01s - connexion time: 11/01/23 18h23m03s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:03:51 - PDD duration: 56 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h23m03s - RTP Source ip :94.105.56.10 rtp:16432 /Dest ip :212.224.167.110 rtp:15596 - Play time (voice) : 00h03m52s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 11558 / 11564 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 51 dB - ACOM : 76 dB - - - 23 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (21) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 18h23m21s - connexion time: 11/01/23 18h23m24s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:30 - PDD duration: 418 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h23m21s - RTP Source ip :94.105.56.10 rtp:16434 /Dest ip :212.224.167.110 rtp:15600 - Play time (voice) : 00h03m30s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 10646 / 10644 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 30 dB - ACOM : 60 dB - - - 24 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 20 (19) - calling : 478047439, called : 32041212 - setup time: 11/01/23 18h14m02s - connexion time: 11/01/23 18h14m04s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:38 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h14m04s - RTP Source ip :94.105.56.10 rtp:16430 /Dest ip :212.224.167.110 rtp:15594 - Play time (voice) : 00h01m38s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4867 / 4868 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 23 dB - ACOM : 52 dB - - - 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 19 (18) - calling : 51280120, called : 32048635 - setup time: 11/01/23 18h09m57s - connexion time: 11/01/23 18h10m14s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 69 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h10m14s - RTP Source ip :94.105.56.10 rtp:16428 /Dest ip :212.224.167.110 rtp:15592 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 205 / 216 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 26 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 18 (17) - calling : 3232041212, called : 32499565392 - setup time: 11/01/23 18h08m18s - connexion time: 11/01/23 18h08m31s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:31 - PDD duration: 4061 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h08m18s - RTP Source ip :94.105.56.10 rtp:16426 /Dest ip :212.224.167.110 rtp:15590 - Play time (voice) : 00h00m31s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1958 / 2007 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.35 - ERL : 26 dB - ACOM : 54 dB - - - 27 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 17 (16) - calling : 3232041212, called : 32499565391 - setup time: 11/01/23 18h08m06s - connexion time: 11/01/23 18h08m07s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:06 - PDD duration: 941 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h08m06s - RTP Source ip :94.105.56.10 rtp:16424 /Dest ip :212.224.167.110 rtp:15588 - Play time (voice) : 00h00m06s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 287 / 286 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 28 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 16 (15) - calling : 3232041212, called : 32499572269 - setup time: 11/01/23 18h02m50s - connexion time: 11/01/23 18h02m51s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:03 - PDD duration: 251 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 18h02m50s - RTP Source ip :94.105.56.10 rtp:16422 /Dest ip :212.224.167.110 rtp:15586 - Play time (voice) : 00h00m03s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 146 / 146 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 29 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 14 (13) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 17h49m16s - connexion time: 11/01/23 17h49m19s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:09:21 - PDD duration: 427 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h49m16s - RTP Source ip :94.105.56.10 rtp:16418 /Dest ip :212.224.167.110 rtp:15580 - Play time (voice) : 00h09m21s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 28173 / 28178 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 52 dB - ACOM : 76 dB - - - 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 13 (12) - calling : 477920299, called : 32041212 - setup time: 11/01/23 17h48m48s - connexion time: 11/01/23 17h48m50s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:09:50 - PDD duration: 73 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h48m50s - RTP Source ip :94.105.56.10 rtp:16416 /Dest ip :212.224.167.110 rtp:15584 - Play time (voice) : 00h09m50s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 29483 / 29480 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 46 dB - ACOM : 64 dB - - - 31 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 15 (14) - calling : 477649116, called : 32041212 - setup time: 11/01/23 17h51m38s - connexion time: 11/01/23 17h51m40s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:42 - PDD duration: 66 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h51m41s - RTP Source ip :94.105.56.10 rtp:16420 /Dest ip :212.224.167.110 rtp:15582 - Play time (voice) : 00h01m41s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5057 / 5059 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 20 dB - ACOM : 50 dB - - - 32 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 12 (11) - calling : 3232041212, called : 32499572263 - setup time: 11/01/23 17h46m16s - connexion time: 11/01/23 17h46m23s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:15 - PDD duration: 1331 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h46m16s - RTP Source ip :94.105.56.10 rtp:16412 /Dest ip :212.224.167.110 rtp:15576 - Play time (voice) : 00h02m15s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7019 / 7026 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 45 dB - ACOM : 70 dB - - - 33 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 11 (10) - calling : 16314545049, called : 32041229 - setup time: 11/01/23 17h46m16s - connexion time: 11/01/23 17h46m23s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:15 - PDD duration: 73 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h46m23s - RTP Source ip :94.105.56.10 rtp:16414 /Dest ip :212.224.167.110 rtp:15578 - Play time (voice) : 00h02m15s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6749 / 6746 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 27 dB - ACOM : 51 dB - - - 34 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 6 (5) - calling : 34935479692, called : 32041212 - setup time: 11/01/23 17h25m55s - connexion time: 11/01/23 17h25m57s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:08:20 - PDD duration: 62 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h25m57s - RTP Source ip :94.105.56.10 rtp:16406 /Dest ip :212.224.167.110 rtp:15572 - Play time (voice) : 00h08m20s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 24993 / 24989 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 21 dB - ACOM : 49 dB - - - 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 9 (8) - calling : 495471646, called : 32041212 - setup time: 11/01/23 17h29m28s - connexion time: 11/01/23 17h29m30s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:42 - PDD duration: 55 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h29m30s - RTP Source ip :94.105.56.10 rtp:16408 /Dest ip :212.224.167.110 rtp:15560 - Play time (voice) : 00h01m42s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5113 / 5113 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 29 dB - ACOM : 56 dB - - - 36 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 10 (9) - calling : 3232041212, called : 32499572264 - setup time: 11/01/23 17h30m14s - connexion time: 11/01/23 17h30m16s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 1900 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h30m14s - RTP Source ip :94.105.56.10 rtp:16410 /Dest ip :212.224.167.110 rtp:15558 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 267 / 266 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : -- dB - ACOM : 255 dB - - - 37 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 8 (7) - calling : 473608618, called : 32048398 - setup time: 11/01/23 17h27m00s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 7 (6) - calling : 473608618, called : 32048398 - setup time: 11/01/23 17h26m53s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 4 (3) - calling : 34935479692, called : 32048281 - setup time: 11/01/23 17h25m42s - connexion time: 11/01/23 17h25m45s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:08 - PDD duration: 69 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h25m45s - RTP Source ip :94.105.56.10 rtp:16404 /Dest ip :212.224.167.110 rtp:15566 - Play time (voice) : 00h00m08s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 385 / 394 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 40 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 5 (4) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 17h25m42s - connexion time: 11/01/23 17h25m45s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:08 - PDD duration: 358 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h25m42s - RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15568 - Play time (voice) : 00h00m08s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 550 / 550 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : -- dB - ACOM : 255 dB - - - 41 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (2) - calling : 3232041212, called : 32499572263 - setup time: 11/01/23 17h10m47s - connexion time: 11/01/23 17h10m54s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:32 - PDD duration: 1171 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h10m47s - RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15564 - Play time (voice) : 00h00m32s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1901 / 1900 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 27 dB - ACOM : 67 dB - - - 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 2 (1) - calling : 12137889760, called : 32048690 - setup time: 11/01/23 17h09m49s - connexion time: 11/01/23 17h09m55s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 17h09m55s - RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15562 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 251 / 259 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 43 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 1 (0) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 16h59m23s - connexion time: 11/01/23 16h59m27s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:05:19 - PDD duration: 408 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h59m23s - RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15556 - Play time (voice) : 00h05m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 16125 / 16130 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 13 dB - ACOM : 43 dB - - - 44 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 0 (395) - calling : 13022615018, called : 32041212 - setup time: 11/01/23 16h59m05s - connexion time: 11/01/23 16h59m07s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:05:39 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h59m07s - RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15554 - Play time (voice) : 00h05m39s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 16551 / 16933 - RTP Packet lost&discarded RX / TX (RTCP reported) : 3 / 0 - Number of Excessive Jitter events : 35 - MOS-CQ / MOS-LQ : 4.32 / 4.35 - ERL : 49 dB - ACOM : 73 dB - - - 45 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 35 (394) - calling : 38216459, called : 32041206 - setup time: 11/01/23 16h54m41s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - - 46 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 30 (389) - calling : 34935479693, called : 32048281 - setup time: 11/01/23 16h34m56s - connexion time: 11/01/23 16h34m59s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:15:14 - PDD duration: 74 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h34m59s - RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15542 - Play time (voice) : 00h15m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 45674 / 45681 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 53 dB - ACOM : 78 dB - - - 47 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 31 (390) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 16h34m56s - connexion time: 11/01/23 16h34m59s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:15:14 - PDD duration: 458 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h34m56s - RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15544 - Play time (voice) : 00h15m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 45828 / 45827 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 15 dB - ACOM : 40 dB - - - 48 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 34 (393) - calling : 31202008260, called : 32041212 - setup time: 11/01/23 16h44m02s - connexion time: 11/01/23 16h44m05s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:04:46 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h44m05s - RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15550 - Play time (voice) : 00h04m46s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 14339 / 14327 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 26 dB - ACOM : 54 dB - - - 49 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 33 (392) - calling : 31202008260, called : 32041212 - setup time: 11/01/23 16h39m00s - connexion time: 11/01/23 16h39m02s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:16 - PDD duration: 64 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h39m03s - RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15548 - Play time (voice) : 00h03m15s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9763 / 9745 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 26 dB - ACOM : 67 dB - - - 50 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 32 (391) - calling : 3232041212, called : 32499565390 - setup time: 11/01/23 16h36m15s - connexion time: 11/01/23 16h36m25s - B channel (from B1..) : B3 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:51 - PDD duration: 3610 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h36m15s - RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15546 - Play time (voice) : 00h00m51s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2825 / 2873 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.32 / 4.35 - ERL : 19 dB - ACOM : 59 dB - - - 51 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (388) - calling : 3232041212, called : 3234433533 - setup time: 11/01/23 16h26m42s - connexion time: 11/01/23 16h26m43s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:56 - PDD duration: 678 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h26m42s - RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15540 - Play time (voice) : 00h02m56s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 8767 / 8812 - RTP Packet lost&discarded RX / TX (RTCP reported) : 25 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.28 / 4.33 - ERL : 26 dB - ACOM : 55 dB - - - 52 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (387) - calling : 496407383, called : 32041212 - setup time: 11/01/23 16h10m46s - connexion time: 11/01/23 16h10m48s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:01 - PDD duration: 56 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h10m48s - RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15538 - Play time (voice) : 00h02m01s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6061 / 6049 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 21 dB - ACOM : 51 dB - - - 53 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 27 (386) - calling : 3232041212, called : 32499572271 - setup time: 11/01/23 16h05m31s - connexion time: 11/01/23 16h05m41s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:07 - PDD duration: 3401 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 16h05m31s - RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15536 - Play time (voice) : 00h00m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 648 / 695 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 26 dB - ACOM : 53 dB - - - 54 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 26 (385) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 15h59m07s - connexion time: 11/01/23 15h59m10s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:17 - PDD duration: 428 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h59m07s - RTP Source ip :94.105.56.10 rtp:16448 /Dest ip :212.224.167.110 rtp:15534 - Play time (voice) : 00h00m17s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 959 / 957 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.29 / 4.34 - ERL : 18 dB - ACOM : 41 dB - - - 55 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 25 (384) - calling : 3232041212, called : 32499565392 - setup time: 11/01/23 15h55m56s - connexion time: 11/01/23 15h56m11s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 5451 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h55m56s - RTP Source ip :94.105.56.10 rtp:16446 /Dest ip :212.224.167.110 rtp:15532 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1397 / 1448 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 18 dB - ACOM : 43 dB - - - 56 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 24 (383) - calling : 3232041212, called : 3222724802 - setup time: 11/01/23 15h53m25s - connexion time: 11/01/23 15h53m29s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:19 - PDD duration: 389 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h53m25s - RTP Source ip :94.105.56.10 rtp:16444 /Dest ip :212.224.167.110 rtp:15530 - Play time (voice) : 00h00m19s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1100 / 1105 - RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 2.82 / 4.33 - ERL : 13 dB - ACOM : 57 dB - - - 57 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 23 (382) - calling : 3232041212, called : 3222724802 - setup time: 11/01/23 15h52m56s - connexion time: 11/01/23 15h53m00s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:14 - PDD duration: 447 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h52m56s - RTP Source ip :94.105.56.10 rtp:16442 /Dest ip :212.224.167.110 rtp:15528 - Play time (voice) : 00h00m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 897 / 898 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 14 dB - ACOM : 60 dB - - - 58 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (381) - calling : 3232041212, called : 3222724802 - setup time: 11/01/23 15h52m31s - connexion time: 11/01/23 15h52m35s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:11 - PDD duration: 416 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h52m31s - RTP Source ip :94.105.56.10 rtp:16440 /Dest ip :212.224.167.110 rtp:15520 - Play time (voice) : 00h00m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 714 / 716 - RTP Packet lost&discarded RX / TX (RTCP reported) : 1 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.28 / 4.33 - ERL : 14 dB - ACOM : 56 dB - - - 59 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 14 (373) - calling : 479252454, called : 32041212 - setup time: 11/01/23 15h28m45s - connexion time: 11/01/23 15h28m47s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:08:02 - PDD duration: 66 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h28m47s - RTP Source ip :94.105.56.10 rtp:16424 /Dest ip :212.224.167.110 rtp:15512 - Play time (voice) : 00h08m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 24050 / 24058 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 55 dB - ACOM : 79 dB - - - 60 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 15 (374) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 15h28m54s - connexion time: 11/01/23 15h28m57s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:07:52 - PDD duration: 467 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h28m54s - RTP Source ip :94.105.56.10 rtp:16426 /Dest ip :212.224.167.110 rtp:15510 - Play time (voice) : 00h07m52s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 23722 / 23721 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 25 dB - ACOM : 42 dB - - - 61 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 16 (375) - calling : 475276840, called : 32048281 - setup time: 11/01/23 15h29m29s - connexion time: 11/01/23 15h29m32s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:03:59 - PDD duration: 75 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h29m32s - RTP Source ip :94.105.56.10 rtp:16430 /Dest ip :212.224.167.110 rtp:15514 - Play time (voice) : 00h03m59s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 11932 / 11944 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 53 dB - ACOM : 77 dB - - - 62 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 17 (376) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 15h29m29s - connexion time: 11/01/23 15h29m32s - B channel (from B1..) : B4 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:59 - PDD duration: 397 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h29m29s - RTP Source ip :94.105.56.10 rtp:16428 /Dest ip :212.224.167.110 rtp:15516 - Play time (voice) : 00h03m59s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 12062 / 12063 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 2.84 / 4.35 - ERL : 35 dB - ACOM : 64 dB - - - 63 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 20 (379) - calling : 31202008260, called : 32041212 - setup time: 11/01/23 15h31m25s - connexion time: 11/01/23 15h31m27s - B channel (from B1..) : B5 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:30 - PDD duration: 58 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h31m27s - RTP Source ip :94.105.56.10 rtp:16436 /Dest ip :212.224.167.110 rtp:15524 - Play time (voice) : 00h01m30s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4524 / 4510 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 21 dB - ACOM : 53 dB - - - 64 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 21 (380) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 15h32m21s - connexion time: 11/01/23 15h32m24s - B channel (from B1..) : B6 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 395 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h32m21s - RTP Source ip :94.105.56.10 rtp:16438 /Dest ip :212.224.167.110 rtp:15526 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 713 / 712 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : -- dB - ACOM : 255 dB - - - 65 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 18 (377) - calling : 31202008260, called : 32048281 - setup time: 11/01/23 15h31m14s - connexion time: 11/01/23 15h31m17s - B channel (from B1..) : B5 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 75 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h31m17s - RTP Source ip :94.105.56.10 rtp:16434 /Dest ip :212.224.167.110 rtp:15518 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 214 / 220 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 66 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 19 (378) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 15h31m14s - connexion time: 11/01/23 15h31m17s - B channel (from B1..) : B6 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 406 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h31m14s - RTP Source ip :94.105.56.10 rtp:16432 /Dest ip :212.224.167.110 rtp:15522 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 357 / 356 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 67 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 13 (372) - calling : 31614310606, called : 32041212 - setup time: 11/01/23 15h23m03s - connexion time: 11/01/23 15h23m05s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:13 - PDD duration: 59 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h23m05s - RTP Source ip :94.105.56.10 rtp:16422 /Dest ip :212.224.167.110 rtp:15508 - Play time (voice) : 00h03m13s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9666 / 9655 - RTP Packet lost&discarded RX / TX (RTCP reported) : 2 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 17 dB - ACOM : 40 dB - - - 68 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 12 (371) - calling : 33648251574, called : 32048627 - setup time: 11/01/23 15h21m29s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 56 msec - advice-of-charge: free - call priority: 100 - - - 69 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 11 (370) - calling : 31202050443, called : 32041212 - setup time: 11/01/23 15h07m12s - connexion time: 11/01/23 15h07m14s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:30 - PDD duration: 62 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 15h07m14s - RTP Source ip :94.105.56.10 rtp:16420 /Dest ip :212.224.167.110 rtp:15506 - Play time (voice) : 00h02m30s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7512 / 7496 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 18 dB - ACOM : 47 dB - - - 70 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 10 (369) - calling : 51280120, called : 32048470 - setup time: 11/01/23 14h56m52s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 71 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 8 (367) - calling : 3232041212, called : 3222724802 - setup time: 11/01/23 14h53m16s - connexion time: 11/01/23 14h53m25s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:10 - PDD duration: 395 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h53m16s - RTP Source ip :94.105.56.10 rtp:16418 /Dest ip :212.224.167.110 rtp:15498 - Play time (voice) : 00h00m10s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 935 / 934 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 18 dB - ACOM : 75 dB - - - 72 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 9 (368) - calling : 51280120, called : 32048364 - setup time: 11/01/23 14h53m24s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 7 (366) - calling : 51280120, called : 32048468 - setup time: 11/01/23 14h53m08s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 74 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 6 (365) - calling : 3232041212, called : 3222724802 - setup time: 11/01/23 14h52m31s - connexion time: 11/01/23 14h52m46s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:20 - PDD duration: 451 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h52m31s - RTP Source ip :94.105.56.10 rtp:16416 /Dest ip :212.224.167.110 rtp:15494 - Play time (voice) : 00h00m20s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1718 / 1719 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 13 dB - ACOM : 60 dB - - - 75 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 5 (364) - calling : 51280120, called : 32048599 - setup time: 11/01/23 14h51m50s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 76 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 4 (363) - calling : 3232041212, called : 32499565390 - setup time: 11/01/23 14h50m20s - connexion time: 11/01/23 14h50m36s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:11 - PDD duration: 1221 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h50m20s - RTP Source ip :94.105.56.10 rtp:16414 /Dest ip :212.224.167.110 rtp:15492 - Play time (voice) : 00h00m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1273 / 1279 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.29 / 4.34 - ERL : 20 dB - ACOM : 49 dB - - - 77 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 3 (362) - calling : 3232041212, called : 32499565390 - setup time: 11/01/23 14h48m57s - connexion time: 11/01/23 14h49m06s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:26 - PDD duration: 3360 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h48m57s - RTP Source ip :94.105.56.10 rtp:16412 /Dest ip :212.224.167.110 rtp:15488 - Play time (voice) : 00h01m26s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4548 / 4600 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 2 - MOS-CQ / MOS-LQ : 4.33 / 4.35 - ERL : 28 dB - ACOM : 53 dB - - - 78 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 2 (361) - calling : 3232041212, called : 32491928186 - setup time: 11/01/23 14h48m16s - connexion time: 11/01/23 14h48m23s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:37 - PDD duration: 961 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h48m16s - RTP Source ip :94.105.56.10 rtp:16410 /Dest ip :212.224.167.110 rtp:15486 - Play time (voice) : 00h00m37s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2129 / 2145 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 19 dB - ACOM : 48 dB - - - 79 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 0 (359) - calling : 499572283, called : 32041216 - setup time: 11/01/23 14h43m30s - connexion time: 11/01/23 14h43m35s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:23 - PDD duration: 74 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h43m35s - RTP Source ip :94.105.56.10 rtp:16408 /Dest ip :212.224.167.110 rtp:15482 - Play time (voice) : 00h00m23s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1187 / 1180 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 16 dB - ACOM : 41 dB - - - 80 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 34 (357) - calling : 448081648741, called : 32041212 - setup time: 11/01/23 14h41m29s - connexion time: 11/01/23 14h41m31s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:02:11 - PDD duration: 61 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h41m31s - RTP Source ip :94.105.56.10 rtp:16406 /Dest ip :212.224.167.110 rtp:15476 - Play time (voice) : 00h02m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6535 / 6516 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 20 dB - ACOM : 41 dB - - - 81 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1 (360) - calling : 51280120, called : 32048500 - setup time: 11/01/23 14h43m35s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 82 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 35 (358) - calling : 51280120, called : 32048606 - setup time: 11/01/23 14h43m12s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 83 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 33 (356) - calling : 51280120, called : 32048312 - setup time: 11/01/23 14h40m58s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 84 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 32 (355) - calling : 51280120, called : 32048465 - setup time: 11/01/23 14h40m18s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 31 (354) - calling : 51280120, called : 32048562 - setup time: 11/01/23 14h38m17s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 86 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 30 (353) - calling : 3232041212, called : 32499565392 - setup time: 11/01/23 14h33m07s - connexion time: 11/01/23 14h33m18s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 3521 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h33m07s - RTP Source ip :94.105.56.10 rtp:16404 /Dest ip :212.224.167.110 rtp:15470 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 945 / 997 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 36 dB - ACOM : 64 dB - - - 87 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 29 (352) - calling : 3232041212, called : 32499572283 - setup time: 11/01/23 14h32m12s - connexion time: 11/01/23 14h32m22s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:12 - PDD duration: 1341 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h32m12s - RTP Source ip :94.105.56.10 rtp:16402 /Dest ip :212.224.167.110 rtp:15468 - Play time (voice) : 00h00m12s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1041 / 1041 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 28 dB - ACOM : 53 dB - - - 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 28 (351) - calling : 441189817377, called : 32041220 - setup time: 11/01/23 14h28m13s - connexion time: 11/01/23 14h28m15s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:50 - PDD duration: 63 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h28m15s - RTP Source ip :94.105.56.10 rtp:16400 /Dest ip :212.224.167.110 rtp:15466 - Play time (voice) : 00h01m50s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5531 / 5533 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 16 dB - ACOM : 42 dB - - - 89 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 27 (350) - calling : 31628113204, called : 32041212 - setup time: 11/01/23 14h26m01s - connexion time: 11/01/23 14h26m03s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:03:09 - PDD duration: 57 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h26m03s - RTP Source ip :94.105.56.10 rtp:16398 /Dest ip :212.224.167.110 rtp:15464 - Play time (voice) : 00h03m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9422 / 9424 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 20 dB - ACOM : 45 dB - - - 90 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 25 (348) - calling : 31653732902, called : 32041212 - setup time: 11/01/23 14h18m18s - connexion time: 11/01/23 14h18m20s - B channel (from B1..) : B3 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:05:02 - PDD duration: 71 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h18m20s - RTP Source ip :94.105.56.10 rtp:16394 /Dest ip :212.224.167.110 rtp:15460 - Play time (voice) : 00h05m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 15094 / 15088 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 54 dB - ACOM : 79 dB - - - 91 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 26 (349) - calling : 3232041212, called : 3227106308 - setup time: 11/01/23 14h18m29s - connexion time: 11/01/23 14h18m31s - B channel (from B1..) : B4 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:04:51 - PDD duration: 406 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h18m29s - RTP Source ip :94.105.56.10 rtp:16396 /Dest ip :212.224.167.110 rtp:15462 - Play time (voice) : 00h04m51s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 14644 / 14644 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.31 / 4.35 - ERL : 49 dB - ACOM : 77 dB - - - 92 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 24 (347) - calling : 3232041212, called : 32499572263 - setup time: 11/01/23 14h18m17s - connexion time: 11/01/23 14h18m29s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:58 - PDD duration: 1111 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h18m17s - RTP Source ip :94.105.56.10 rtp:16392 /Dest ip :212.224.167.110 rtp:15458 - Play time (voice) : 00h01m58s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6432 / 6432 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 31 dB - ACOM : 48 dB - - - 93 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 23 (346) - calling : 478291430, called : 32048280 - setup time: 11/01/23 14h18m08s - connexion time: 11/01/23 14h18m12s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:34 - PDD duration: 73 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h18m12s - RTP Source ip :94.105.56.10 rtp:16390 /Dest ip :212.224.167.110 rtp:15456 - Play time (voice) : 00h01m34s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4693 / 4696 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 22 dB - ACOM : 59 dB - - - 94 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 22 (345) - calling : 3232041212, called : 32490653442 - setup time: 11/01/23 14h16m39s - connexion time: 11/01/23 14h16m46s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:11 - PDD duration: 1237 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h16m39s - RTP Source ip :94.105.56.10 rtp:16388 /Dest ip :212.224.167.110 rtp:15454 - Play time (voice) : 00h00m11s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 810 / 809 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 29 dB - ACOM : 52 dB - - - 95 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 21 (344) - calling : 3232041212, called : 32491928186 - setup time: 11/01/23 14h04m42s - connexion time: 11/01/23 14h04m49s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:45 - PDD duration: 1311 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h04m42s - RTP Source ip :94.105.56.10 rtp:16386 /Dest ip :212.224.167.110 rtp:15452 - Play time (voice) : 00h00m45s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2526 / 2544 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 26 dB - ACOM : 54 dB - - - 96 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 20 (343) - calling : 3232041212, called : 32499572268 - setup time: 11/01/23 14h03m15s - connexion time: 11/01/23 14h03m16s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:09 - PDD duration: 861 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 14h03m15s - RTP Source ip :94.105.56.10 rtp:16384 /Dest ip :212.224.167.110 rtp:15450 - Play time (voice) : 00h00m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 489 / 488 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 97 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 19 (342) - calling : 3232041212, called : 3233552818 - setup time: 11/01/23 13h49m52s - connexion time: 11/01/23 13h50m02s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:48 - PDD duration: 412 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 13h49m52s - RTP Source ip :94.105.56.10 rtp:16454 /Dest ip :212.224.167.110 rtp:15448 - Play time (voice) : 00h01m48s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5887 / 5904 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.29 / 4.35 - ERL : 31 dB - ACOM : 58 dB - - - 98 - Call from local port: 5/0, to remote voip: 0 (UDP) call-id: 18 (341) - calling : 3232041212, called : 32499572273 - setup time: 11/01/23 13h43m19s - connexion time: 11/01/23 13h43m46s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 3741 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 13h43m19s - RTP Source ip :94.105.56.10 rtp:16452 /Dest ip :212.224.167.110 rtp:15446 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1207 / 1259 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 3 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 30 dB - ACOM : 58 dB - - - 99 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 16 (339) - calling : 487347844, called : 32048280 - setup time: 11/01/23 13h41m11s - connexion time: 11/01/23 13h41m18s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:02 - PDD duration: 59 msec - advice-of-charge: free - call priority: 100 - - 11/01/23 13h41m18s - RTP Source ip :94.105.56.10 rtp:16450 /Dest ip :212.224.167.110 rtp:15442 - Play time (voice) : 00h01m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3108 / 3106 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.30 / 4.35 - ERL : 29 dB - ACOM : 62 dB - - - 100 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 17 (340) - calling : 51280120, called : 32048312 - setup time: 11/01/23 13h42m09s - connexion time: --- - disconnected by local port: 5/0 cause :(28)[Invalid number format (address incomplete)] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml deleted file mode 100644 index 83c63eb6e6..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug212.yml +++ /dev/null @@ -1,3287 +0,0 @@ ---- -parsed_sample: - - call_idx: "1" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "9 (44)" - calling_number: "3232041212" - called_number: "32499572278" - setup_time: "11/01/23 22h24m31s" - connexion_time: "11/01/23 22h24m38s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:15" - pdd_duration: "1012 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16402" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15638" - rtp_play_time: "00h00m15s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1017" - rtp_pkts_tx: "1018" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "19" - rtp_acom_db: "46" - - call_idx: "2" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "8 (43)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 22h06m46s" - connexion_time: "11/01/23 22h07m09s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:07" - pdd_duration: "851 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16400" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15644" - rtp_play_time: "00h00m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1464" - rtp_pkts_tx: "1465" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "23" - rtp_acom_db: "56" - - call_idx: "3" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "7 (42)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 22h05m48s" - connexion_time: "11/01/23 22h06m12s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "1451 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16398" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15642" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1370" - rtp_pkts_tx: "1371" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "59" - - call_idx: "4" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "6 (41)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 21h59m56s" - connexion_time: "11/01/23 22h00m21s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:08" - pdd_duration: "1211 msec" - advice_of_charge: "free " - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16396" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15636" - rtp_play_time: "00h00m08s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1564" - rtp_pkts_tx: "1566" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "64" - - call_idx: "5" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "5 (40)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 21h55m39s" - connexion_time: "11/01/23 21h56m03s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:08" - pdd_duration: "1301 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16394" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15632" - rtp_play_time: "00h00m08s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1526" - rtp_pkts_tx: "1526" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "19" - rtp_acom_db: "61" - - call_idx: "6" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "4 (39)" - calling_number: "3232041212" - called_number: "32499572278" - setup_time: "11/01/23 21h18m43s" - connexion_time: "11/01/23 21h18m45s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:31" - pdd_duration: "921 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16392" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15634" - rtp_play_time: "00h02m31s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7608" - rtp_pkts_tx: "7609" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "22" - rtp_acom_db: "53" - - call_idx: "7" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "3 (38)" - calling_number: "3232041212" - called_number: "32499572278" - setup_time: "11/01/23 21h16m55s" - connexion_time: "11/01/23 21h17m03s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:18" - pdd_duration: "1211 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16390" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15630" - rtp_play_time: "00h00m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1224" - rtp_pkts_tx: "1226" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "18" - rtp_acom_db: "58" - - call_idx: "8" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "2 (37)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 21h14m01s" - connexion_time: "11/01/23 21h14m14s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:44" - pdd_duration: "1751 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16388" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15628" - rtp_play_time: "00h00m44s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2733" - rtp_pkts_tx: "2735" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "19" - rtp_acom_db: "46" - - call_idx: "9" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "1 (36)" - calling_number: "3232041212" - called_number: "32499565390" - setup_time: "11/01/23 21h10m37s" - connexion_time: "11/01/23 21h10m46s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:23" - pdd_duration: "3701 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16386" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15626" - rtp_play_time: "00h00m23s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1355" - rtp_pkts_tx: "1425" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.35" - rtp_erl_db: "29" - rtp_acom_db: "73" - - call_idx: "10" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "0 (35)" - calling_number: "3232041212" - called_number: "32499572278" - setup_time: "11/01/23 20h58m02s" - connexion_time: "11/01/23 20h58m08s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:40" - pdd_duration: "951 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16384" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15622" - rtp_play_time: "00h00m40s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2235" - rtp_pkts_tx: "2236" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "17" - rtp_acom_db: "49" - - call_idx: "11" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "35 (34)" - calling_number: "3232041212" - called_number: "32499565392" - setup_time: "11/01/23 20h54m34s" - connexion_time: "11/01/23 20h54m52s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:27" - pdd_duration: "3621 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16454" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15624" - rtp_play_time: "00h00m27s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1990" - rtp_pkts_tx: "2038" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "2" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "40" - rtp_acom_db: "66" - - call_idx: "12" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "34 (33)" - calling_number: "3232041212" - called_number: "32499572283" - setup_time: "11/01/23 20h22m04s" - connexion_time: "11/01/23 20h22m05s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "561 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15620" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "931" - rtp_pkts_tx: "931" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "37" - rtp_acom_db: "68" - - call_idx: "13" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "33 (32)" - calling_number: "3232041212" - called_number: "32499572283" - setup_time: "11/01/23 20h21m36s" - connexion_time: "11/01/23 20h22m00s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "1111 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15618" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1218" - rtp_pkts_tx: "1217" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "34" - rtp_acom_db: "63" - - call_idx: "14" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "31 (30)" - calling_number: "33091465" - called_number: "32041214" - setup_time: "11/01/23 19h35m29s" - connexion_time: "11/01/23 19h35m33s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:18:52" - pdd_duration: "62 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16446" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15614" - rtp_play_time: "00h18m52s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "56596" - rtp_pkts_tx: "56592" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "22" - rtp_acom_db: "51" - - call_idx: "15" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "32 (31)" - calling_number: "3232041212" - called_number: "032" - setup_time: "11/01/23 19h43m07s" - connexion_time: "11/01/23 19h43m07s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "182 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16448" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15616" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "91" - rtp_pkts_tx: "98" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "16" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "30 (29)" - calling_number: "3232041212" - called_number: "3233091465" - setup_time: "11/01/23 19h34m53s" - connexion_time: "11/01/23 19h34m54s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "471 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16444" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15612" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "127" - rtp_pkts_tx: "126" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "17" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "29 (28)" - calling_number: "3232041212" - called_number: "3233091465" - setup_time: "11/01/23 19h02m09s" - connexion_time: "11/01/23 19h02m09s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "459 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16442" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15610" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "134" - rtp_pkts_tx: "134" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "18" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "28 (27)" - calling_number: "33320148410" - called_number: "32048595" - setup_time: "11/01/23 18h59m25s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "58 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "19" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "26 (25)" - calling_number: "31610669704" - called_number: "32041212" - setup_time: "11/01/23 18h40m17s" - connexion_time: "11/01/23 18h40m19s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:17:56" - pdd_duration: "55 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16438" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15602" - rtp_play_time: "00h17m56s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "53819" - rtp_pkts_tx: "53806" - rtp_pkts_lost_rx: "2" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "47" - - call_idx: "20" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "27 (26)" - calling_number: "31651915707" - called_number: "32041212" - setup_time: "11/01/23 18h54m45s" - connexion_time: "11/01/23 18h54m47s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:03" - pdd_duration: "55 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16440" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15606" - rtp_play_time: "00h01m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3155" - rtp_pkts_tx: "3142" - rtp_pkts_lost_rx: "6" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.28" - rtp_mos_lq: "4.33" - rtp_erl_db: "23" - rtp_acom_db: "56" - - call_idx: "21" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "23 (22)" - calling_number: "31610669704" - called_number: "32041212" - setup_time: "11/01/23 18h39m07s" - connexion_time: "11/01/23 18h39m09s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:00" - pdd_duration: "59 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16436" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15604" - rtp_play_time: "00h01m00s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2993" - rtp_pkts_tx: "2991" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "50" - rtp_acom_db: "82" - - call_idx: "22" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "21 (20)" - calling_number: "33761671482" - called_number: "32041212" - setup_time: "11/01/23 18h23m01s" - connexion_time: "11/01/23 18h23m03s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:51" - pdd_duration: "56 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16432" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15596" - rtp_play_time: "00h03m52s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "11558" - rtp_pkts_tx: "11564" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "51" - rtp_acom_db: "76" - - call_idx: "23" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "22 (21)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 18h23m21s" - connexion_time: "11/01/23 18h23m24s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:30" - pdd_duration: "418 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16434" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15600" - rtp_play_time: "00h03m30s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "10646" - rtp_pkts_tx: "10644" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "30" - rtp_acom_db: "60" - - call_idx: "24" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "20 (19)" - calling_number: "478047439" - called_number: "32041212" - setup_time: "11/01/23 18h14m02s" - connexion_time: "11/01/23 18h14m04s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:38" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16430" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15594" - rtp_play_time: "00h01m38s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4867" - rtp_pkts_tx: "4868" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "23" - rtp_acom_db: "52" - - call_idx: "25" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "19 (18)" - calling_number: "51280120" - called_number: "32048635" - setup_time: "11/01/23 18h09m57s" - connexion_time: "11/01/23 18h10m14s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "69 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16428" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15592" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "205" - rtp_pkts_tx: "216" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "26" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "18 (17)" - calling_number: "3232041212" - called_number: "32499565392" - setup_time: "11/01/23 18h08m18s" - connexion_time: "11/01/23 18h08m31s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:31" - pdd_duration: "4061 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16426" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15590" - rtp_play_time: "00h00m31s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1958" - rtp_pkts_tx: "2007" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.35" - rtp_erl_db: "26" - rtp_acom_db: "54" - - call_idx: "27" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "17 (16)" - calling_number: "3232041212" - called_number: "32499565391" - setup_time: "11/01/23 18h08m06s" - connexion_time: "11/01/23 18h08m07s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:06" - pdd_duration: "941 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16424" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15588" - rtp_play_time: "00h00m06s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "287" - rtp_pkts_tx: "286" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "28" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "16 (15)" - calling_number: "3232041212" - called_number: "32499572269" - setup_time: "11/01/23 18h02m50s" - connexion_time: "11/01/23 18h02m51s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:03" - pdd_duration: "251 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16422" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15586" - rtp_play_time: "00h00m03s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "146" - rtp_pkts_tx: "146" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "29" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "14 (13)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 17h49m16s" - connexion_time: "11/01/23 17h49m19s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:09:21" - pdd_duration: "427 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16418" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15580" - rtp_play_time: "00h09m21s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "28173" - rtp_pkts_tx: "28178" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "52" - rtp_acom_db: "76" - - call_idx: "30" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "13 (12)" - calling_number: "477920299" - called_number: "32041212" - setup_time: "11/01/23 17h48m48s" - connexion_time: "11/01/23 17h48m50s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:09:50" - pdd_duration: "73 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16416" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15584" - rtp_play_time: "00h09m50s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "29483" - rtp_pkts_tx: "29480" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "46" - rtp_acom_db: "64" - - call_idx: "31" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "15 (14)" - calling_number: "477649116" - called_number: "32041212" - setup_time: "11/01/23 17h51m38s" - connexion_time: "11/01/23 17h51m40s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:42" - pdd_duration: "66 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16420" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15582" - rtp_play_time: "00h01m41s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5057" - rtp_pkts_tx: "5059" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "50" - - call_idx: "32" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "12 (11)" - calling_number: "3232041212" - called_number: "32499572263" - setup_time: "11/01/23 17h46m16s" - connexion_time: "11/01/23 17h46m23s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:15" - pdd_duration: "1331 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16412" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15576" - rtp_play_time: "00h02m15s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7019" - rtp_pkts_tx: "7026" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "45" - rtp_acom_db: "70" - - call_idx: "33" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "11 (10)" - calling_number: "16314545049" - called_number: "32041229" - setup_time: "11/01/23 17h46m16s" - connexion_time: "11/01/23 17h46m23s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:15" - pdd_duration: "73 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16414" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15578" - rtp_play_time: "00h02m15s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6749" - rtp_pkts_tx: "6746" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "27" - rtp_acom_db: "51" - - call_idx: "34" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "6 (5)" - calling_number: "34935479692" - called_number: "32041212" - setup_time: "11/01/23 17h25m55s" - connexion_time: "11/01/23 17h25m57s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:08:20" - pdd_duration: "62 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16406" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15572" - rtp_play_time: "00h08m20s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "24993" - rtp_pkts_tx: "24989" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "21" - rtp_acom_db: "49" - - call_idx: "35" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "9 (8)" - calling_number: "495471646" - called_number: "32041212" - setup_time: "11/01/23 17h29m28s" - connexion_time: "11/01/23 17h29m30s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:42" - pdd_duration: "55 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16408" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15560" - rtp_play_time: "00h01m42s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5113" - rtp_pkts_tx: "5113" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "29" - rtp_acom_db: "56" - - call_idx: "36" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "10 (9)" - calling_number: "3232041212" - called_number: "32499572264" - setup_time: "11/01/23 17h30m14s" - connexion_time: "11/01/23 17h30m16s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "1900 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16410" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15558" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "267" - rtp_pkts_tx: "266" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "37" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "8 (7)" - calling_number: "473608618" - called_number: "32048398" - setup_time: "11/01/23 17h27m00s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "38" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "7 (6)" - calling_number: "473608618" - called_number: "32048398" - setup_time: "11/01/23 17h26m53s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "39" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "4 (3)" - calling_number: "34935479692" - called_number: "32048281" - setup_time: "11/01/23 17h25m42s" - connexion_time: "11/01/23 17h25m45s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:08" - pdd_duration: "69 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16404" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15566" - rtp_play_time: "00h00m08s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "385" - rtp_pkts_tx: "394" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "40" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "5 (4)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 17h25m42s" - connexion_time: "11/01/23 17h25m45s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:08" - pdd_duration: "358 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16402" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15568" - rtp_play_time: "00h00m08s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "550" - rtp_pkts_tx: "550" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "41" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "3 (2)" - calling_number: "3232041212" - called_number: "32499572263" - setup_time: "11/01/23 17h10m47s" - connexion_time: "11/01/23 17h10m54s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:32" - pdd_duration: "1171 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16400" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15564" - rtp_play_time: "00h00m32s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1901" - rtp_pkts_tx: "1900" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "27" - rtp_acom_db: "67" - - call_idx: "42" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "2 (1)" - calling_number: "12137889760" - called_number: "32048690" - setup_time: "11/01/23 17h09m49s" - connexion_time: "11/01/23 17h09m55s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16398" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15562" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "251" - rtp_pkts_tx: "259" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "43" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "1 (0)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 16h59m23s" - connexion_time: "11/01/23 16h59m27s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:05:19" - pdd_duration: "408 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16396" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15556" - rtp_play_time: "00h05m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "16125" - rtp_pkts_tx: "16130" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "13" - rtp_acom_db: "43" - - call_idx: "44" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "0 (395)" - calling_number: "13022615018" - called_number: "32041212" - setup_time: "11/01/23 16h59m05s" - connexion_time: "11/01/23 16h59m07s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:05:39" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16394" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15554" - rtp_play_time: "00h05m39s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "16551" - rtp_pkts_tx: "16933" - rtp_pkts_lost_rx: "3" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "35" - rtp_mos_cq: "4.32" - rtp_mos_lq: "4.35" - rtp_erl_db: "49" - rtp_acom_db: "73" - - call_idx: "45" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "35 (394)" - calling_number: "38216459" - called_number: "32041206" - setup_time: "11/01/23 16h54m41s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "46" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "30 (389)" - calling_number: "34935479693" - called_number: "32048281" - setup_time: "11/01/23 16h34m56s" - connexion_time: "11/01/23 16h34m59s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:15:14" - pdd_duration: "74 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16386" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15542" - rtp_play_time: "00h15m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "45674" - rtp_pkts_tx: "45681" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "53" - rtp_acom_db: "78" - - call_idx: "47" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "31 (390)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 16h34m56s" - connexion_time: "11/01/23 16h34m59s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:15:14" - pdd_duration: "458 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16384" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15544" - rtp_play_time: "00h15m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "45828" - rtp_pkts_tx: "45827" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "15" - rtp_acom_db: "40" - - call_idx: "48" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "34 (393)" - calling_number: "31202008260" - called_number: "32041212" - setup_time: "11/01/23 16h44m02s" - connexion_time: "11/01/23 16h44m05s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:04:46" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16392" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15550" - rtp_play_time: "00h04m46s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "14339" - rtp_pkts_tx: "14327" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "26" - rtp_acom_db: "54" - - call_idx: "49" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "33 (392)" - calling_number: "31202008260" - called_number: "32041212" - setup_time: "11/01/23 16h39m00s" - connexion_time: "11/01/23 16h39m02s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:16" - pdd_duration: "64 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16390" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15548" - rtp_play_time: "00h03m15s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9763" - rtp_pkts_tx: "9745" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "26" - rtp_acom_db: "67" - - call_idx: "50" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "32 (391)" - calling_number: "3232041212" - called_number: "32499565390" - setup_time: "11/01/23 16h36m15s" - connexion_time: "11/01/23 16h36m25s" - b_channels: - - "B3" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:51" - pdd_duration: "3610 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16388" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15546" - rtp_play_time: "00h00m51s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2825" - rtp_pkts_tx: "2873" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.32" - rtp_mos_lq: "4.35" - rtp_erl_db: "19" - rtp_acom_db: "59" - - call_idx: "51" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "29 (388)" - calling_number: "3232041212" - called_number: "3234433533" - setup_time: "11/01/23 16h26m42s" - connexion_time: "11/01/23 16h26m43s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:56" - pdd_duration: "678 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16454" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15540" - rtp_play_time: "00h02m56s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "8767" - rtp_pkts_tx: "8812" - rtp_pkts_lost_rx: "25" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.28" - rtp_mos_lq: "4.33" - rtp_erl_db: "26" - rtp_acom_db: "55" - - call_idx: "52" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "28 (387)" - calling_number: "496407383" - called_number: "32041212" - setup_time: "11/01/23 16h10m46s" - connexion_time: "11/01/23 16h10m48s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:01" - pdd_duration: "56 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15538" - rtp_play_time: "00h02m01s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6061" - rtp_pkts_tx: "6049" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "21" - rtp_acom_db: "51" - - call_idx: "53" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "27 (386)" - calling_number: "3232041212" - called_number: "32499572271" - setup_time: "11/01/23 16h05m31s" - connexion_time: "11/01/23 16h05m41s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:07" - pdd_duration: "3401 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15536" - rtp_play_time: "00h00m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "648" - rtp_pkts_tx: "695" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "26" - rtp_acom_db: "53" - - call_idx: "54" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "26 (385)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 15h59m07s" - connexion_time: "11/01/23 15h59m10s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:17" - pdd_duration: "428 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16448" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15534" - rtp_play_time: "00h00m17s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "959" - rtp_pkts_tx: "957" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.29" - rtp_mos_lq: "4.34" - rtp_erl_db: "18" - rtp_acom_db: "41" - - call_idx: "55" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "25 (384)" - calling_number: "3232041212" - called_number: "32499565392" - setup_time: "11/01/23 15h55m56s" - connexion_time: "11/01/23 15h56m11s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "5451 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16446" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15532" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1397" - rtp_pkts_tx: "1448" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "18" - rtp_acom_db: "43" - - call_idx: "56" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "24 (383)" - calling_number: "3232041212" - called_number: "3222724802" - setup_time: "11/01/23 15h53m25s" - connexion_time: "11/01/23 15h53m29s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:19" - pdd_duration: "389 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16444" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15530" - rtp_play_time: "00h00m19s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1100" - rtp_pkts_tx: "1105" - rtp_pkts_lost_rx: "2" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "2.82" - rtp_mos_lq: "4.33" - rtp_erl_db: "13" - rtp_acom_db: "57" - - call_idx: "57" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "23 (382)" - calling_number: "3232041212" - called_number: "3222724802" - setup_time: "11/01/23 15h52m56s" - connexion_time: "11/01/23 15h53m00s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:14" - pdd_duration: "447 msec " - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16442" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15528" - rtp_play_time: "00h00m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "897" - rtp_pkts_tx: "898" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "14" - rtp_acom_db: "60" - - call_idx: "58" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "22 (381)" - calling_number: "3232041212" - called_number: "3222724802" - setup_time: "11/01/23 15h52m31s" - connexion_time: "11/01/23 15h52m35s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:11" - pdd_duration: "416 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16440" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15520" - rtp_play_time: "00h00m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "714" - rtp_pkts_tx: "716" - rtp_pkts_lost_rx: "1" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.28" - rtp_mos_lq: "4.33" - rtp_erl_db: "14" - rtp_acom_db: "56" - - call_idx: "59" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "14 (373)" - calling_number: "479252454" - called_number: "32041212" - setup_time: "11/01/23 15h28m45s" - connexion_time: "11/01/23 15h28m47s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:08:02" - pdd_duration: "66 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16424" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15512" - rtp_play_time: "00h08m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "24050" - rtp_pkts_tx: "24058" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "55" - rtp_acom_db: "79" - - call_idx: "60" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "15 (374)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 15h28m54s" - connexion_time: "11/01/23 15h28m57s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:07:52" - pdd_duration: "467 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16426" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15510" - rtp_play_time: "00h07m52s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "23722" - rtp_pkts_tx: "23721" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "25" - rtp_acom_db: "42" - - call_idx: "61" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "16 (375)" - calling_number: "475276840" - called_number: "32048281" - setup_time: "11/01/23 15h29m29s" - connexion_time: "11/01/23 15h29m32s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:59" - pdd_duration: "75 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16430" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15514" - rtp_play_time: "00h03m59s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "11932" - rtp_pkts_tx: "11944" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "53" - rtp_acom_db: "77" - - call_idx: "62" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "17 (376)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 15h29m29s" - connexion_time: "11/01/23 15h29m32s" - b_channels: - - "B4" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:59" - pdd_duration: "397 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16428" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15516" - rtp_play_time: "00h03m59s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "12062" - rtp_pkts_tx: "12063" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "2.84" - rtp_mos_lq: "4.35" - rtp_erl_db: "35" - rtp_acom_db: "64" - - call_idx: "63" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "20 (379)" - calling_number: "31202008260" - called_number: "32041212" - setup_time: "11/01/23 15h31m25s" - connexion_time: "11/01/23 15h31m27s" - b_channels: - - "B5" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:30" - pdd_duration: "58 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16436" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15524" - rtp_play_time: "00h01m30s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4524" - rtp_pkts_tx: "4510" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "21" - rtp_acom_db: "53" - - call_idx: "64" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "21 (380)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 15h32m21s" - connexion_time: "11/01/23 15h32m24s" - b_channels: - - "B6" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "395 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16438" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15526" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "713" - rtp_pkts_tx: "712" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "65" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "18 (377)" - calling_number: "31202008260" - called_number: "32048281" - setup_time: "11/01/23 15h31m14s" - connexion_time: "11/01/23 15h31m17s" - b_channels: - - "B5" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "75 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16434" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15518" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "214" - rtp_pkts_tx: "220" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "66" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "19 (378)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 15h31m14s" - connexion_time: "11/01/23 15h31m17s" - b_channels: - - "B6" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "406 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16432" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15522" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "357" - rtp_pkts_tx: "356" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "67" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "13 (372)" - calling_number: "31614310606" - called_number: "32041212" - setup_time: "11/01/23 15h23m03s" - connexion_time: "11/01/23 15h23m05s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:13" - pdd_duration: "59 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16422" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15508" - rtp_play_time: "00h03m13s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9666" - rtp_pkts_tx: "9655" - rtp_pkts_lost_rx: "2" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "17" - rtp_acom_db: "40" - - call_idx: "68" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "12 (371)" - calling_number: "33648251574" - called_number: "32048627" - setup_time: "11/01/23 15h21m29s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "56 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "69" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "11 (370)" - calling_number: "31202050443" - called_number: "32041212" - setup_time: "11/01/23 15h07m12s" - connexion_time: "11/01/23 15h07m14s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:30" - pdd_duration: "62 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16420" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15506" - rtp_play_time: "00h02m30s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7512" - rtp_pkts_tx: "7496" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "18" - rtp_acom_db: "47" - - call_idx: "70" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "10 (369)" - calling_number: "51280120" - called_number: "32048470" - setup_time: "11/01/23 14h56m52s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "71" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "8 (367)" - calling_number: "3232041212" - called_number: "3222724802" - setup_time: "11/01/23 14h53m16s" - connexion_time: "11/01/23 14h53m25s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:10" - pdd_duration: "395 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16418" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15498" - rtp_play_time: "00h00m10s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "935" - rtp_pkts_tx: "934" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "18" - rtp_acom_db: "75" - - call_idx: "72" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "9 (368)" - calling_number: "51280120" - called_number: "32048364" - setup_time: "11/01/23 14h53m24s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "73" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "7 (366)" - calling_number: "51280120" - called_number: "32048468" - setup_time: "11/01/23 14h53m08s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "74" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "6 (365)" - calling_number: "3232041212" - called_number: "3222724802" - setup_time: "11/01/23 14h52m31s" - connexion_time: "11/01/23 14h52m46s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:20" - pdd_duration: "451 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16416" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15494" - rtp_play_time: "00h00m20s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1718" - rtp_pkts_tx: "1719" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "13" - rtp_acom_db: "60" - - call_idx: "75" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "5 (364)" - calling_number: "51280120" - called_number: "32048599" - setup_time: "11/01/23 14h51m50s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "76" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "4 (363)" - calling_number: "3232041212" - called_number: "32499565390" - setup_time: "11/01/23 14h50m20s" - connexion_time: "11/01/23 14h50m36s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:11" - pdd_duration: "1221 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16414" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15492" - rtp_play_time: "00h00m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1273" - rtp_pkts_tx: "1279" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.29" - rtp_mos_lq: "4.34" - rtp_erl_db: "20" - rtp_acom_db: "49" - - call_idx: "77" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "3 (362)" - calling_number: "3232041212" - called_number: "32499565390" - setup_time: "11/01/23 14h48m57s" - connexion_time: "11/01/23 14h49m06s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:26" - pdd_duration: "3360 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16412" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15488" - rtp_play_time: "00h01m26s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4548" - rtp_pkts_tx: "4600" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "2" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.35" - rtp_erl_db: "28" - rtp_acom_db: "53" - - call_idx: "78" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "2 (361)" - calling_number: "3232041212" - called_number: "32491928186" - setup_time: "11/01/23 14h48m16s" - connexion_time: "11/01/23 14h48m23s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:37" - pdd_duration: "961 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16410" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15486" - rtp_play_time: "00h00m37s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2129" - rtp_pkts_tx: "2145" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "19" - rtp_acom_db: "48" - - call_idx: "79" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "0 (359)" - calling_number: "499572283" - called_number: "32041216" - setup_time: "11/01/23 14h43m30s" - connexion_time: "11/01/23 14h43m35s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:23" - pdd_duration: "74 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16408" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15482" - rtp_play_time: "00h00m23s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1187" - rtp_pkts_tx: "1180" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "16" - rtp_acom_db: "41" - - call_idx: "80" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "34 (357)" - calling_number: "448081648741" - called_number: "32041212" - setup_time: "11/01/23 14h41m29s" - connexion_time: "11/01/23 14h41m31s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:11" - pdd_duration: "61 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16406" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15476" - rtp_play_time: "00h02m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6535" - rtp_pkts_tx: "6516" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "41" - - call_idx: "81" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "1 (360)" - calling_number: "51280120" - called_number: "32048500" - setup_time: "11/01/23 14h43m35s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "82" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "35 (358)" - calling_number: "51280120" - called_number: "32048606" - setup_time: "11/01/23 14h43m12s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "83" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "33 (356)" - calling_number: "51280120" - called_number: "32048312" - setup_time: "11/01/23 14h40m58s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "84" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "32 (355)" - calling_number: "51280120" - called_number: "32048465" - setup_time: "11/01/23 14h40m18s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "85" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "31 (354)" - calling_number: "51280120" - called_number: "32048562" - setup_time: "11/01/23 14h38m17s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "86" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "30 (353)" - calling_number: "3232041212" - called_number: "32499565392" - setup_time: "11/01/23 14h33m07s" - connexion_time: "11/01/23 14h33m18s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "3521 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16404" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15470" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "945" - rtp_pkts_tx: "997" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "36" - rtp_acom_db: "64" - - call_idx: "87" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "29 (352)" - calling_number: "3232041212" - called_number: "32499572283" - setup_time: "11/01/23 14h32m12s" - connexion_time: "11/01/23 14h32m22s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:12" - pdd_duration: "1341 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16402" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15468" - rtp_play_time: "00h00m12s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1041" - rtp_pkts_tx: "1041" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "28" - rtp_acom_db: "53" - - call_idx: "88" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "28 (351)" - calling_number: "441189817377" - called_number: "32041220" - setup_time: "11/01/23 14h28m13s" - connexion_time: "11/01/23 14h28m15s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:50" - pdd_duration: "63 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16400" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15466" - rtp_play_time: "00h01m50s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5531" - rtp_pkts_tx: "5533" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "16" - rtp_acom_db: "42" - - call_idx: "89" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "27 (350)" - calling_number: "31628113204" - called_number: "32041212" - setup_time: "11/01/23 14h26m01s" - connexion_time: "11/01/23 14h26m03s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:09" - pdd_duration: "57 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16398" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15464" - rtp_play_time: "00h03m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9422" - rtp_pkts_tx: "9424" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "20" - rtp_acom_db: "45" - - call_idx: "90" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "25 (348)" - calling_number: "31653732902" - called_number: "32041212" - setup_time: "11/01/23 14h18m18s" - connexion_time: "11/01/23 14h18m20s" - b_channels: - - "B3" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:05:02" - pdd_duration: "71 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16394" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15460" - rtp_play_time: "00h05m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "15094" - rtp_pkts_tx: "15088" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "54" - rtp_acom_db: "79" - - call_idx: "91" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "26 (349)" - calling_number: "3232041212" - called_number: "3227106308" - setup_time: "11/01/23 14h18m29s" - connexion_time: "11/01/23 14h18m31s" - b_channels: - - "B4" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:04:51" - pdd_duration: "406 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16396" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15462" - rtp_play_time: "00h04m51s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "14644" - rtp_pkts_tx: "14644" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.31" - rtp_mos_lq: "4.35" - rtp_erl_db: "49" - rtp_acom_db: "77" - - call_idx: "92" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "24 (347)" - calling_number: "3232041212" - called_number: "32499572263" - setup_time: "11/01/23 14h18m17s" - connexion_time: "11/01/23 14h18m29s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:58" - pdd_duration: "1111 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16392" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15458" - rtp_play_time: "00h01m58s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6432" - rtp_pkts_tx: "6432" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "31" - rtp_acom_db: "48" - - call_idx: "93" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "23 (346)" - calling_number: "478291430" - called_number: "32048280" - setup_time: "11/01/23 14h18m08s" - connexion_time: "11/01/23 14h18m12s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:34" - pdd_duration: "73 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16390" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15456" - rtp_play_time: "00h01m34s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4693" - rtp_pkts_tx: "4696" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "22" - rtp_acom_db: "59" - - call_idx: "94" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "22 (345)" - calling_number: "3232041212" - called_number: "32490653442" - setup_time: "11/01/23 14h16m39s" - connexion_time: "11/01/23 14h16m46s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:11" - pdd_duration: "1237 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16388" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15454" - rtp_play_time: "00h00m11s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "810" - rtp_pkts_tx: "809" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "29" - rtp_acom_db: "52" - - call_idx: "95" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "21 (344)" - calling_number: "3232041212" - called_number: "32491928186" - setup_time: "11/01/23 14h04m42s" - connexion_time: "11/01/23 14h04m49s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:45" - pdd_duration: "1311 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16386" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15452" - rtp_play_time: "00h00m45s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2526" - rtp_pkts_tx: "2544" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "26" - rtp_acom_db: "54" - - call_idx: "96" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "20 (343)" - calling_number: "3232041212" - called_number: "32499572268" - setup_time: "11/01/23 14h03m15s" - connexion_time: "11/01/23 14h03m16s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:09" - pdd_duration: "861 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16384" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15450" - rtp_play_time: "00h00m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "489" - rtp_pkts_tx: "488" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "97" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "19 (342)" - calling_number: "3232041212" - called_number: "3233552818" - setup_time: "11/01/23 13h49m52s" - connexion_time: "11/01/23 13h50m02s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:48" - pdd_duration: "412 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16454" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15448" - rtp_play_time: "00h01m48s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5887" - rtp_pkts_tx: "5904" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.29" - rtp_mos_lq: "4.35" - rtp_erl_db: "31" - rtp_acom_db: "58" - - call_idx: "98" - calling_from: "local port: 5/0" - calling_to: "remote voip: 0 (UDP)" - call_id: "18 (341)" - calling_number: "3232041212" - called_number: "32499572273" - setup_time: "11/01/23 13h43m19s" - connexion_time: "11/01/23 13h43m46s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "3741 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16452" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15446" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1207" - rtp_pkts_tx: "1259" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "3" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "30" - rtp_acom_db: "58" - - call_idx: "99" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "16 (339)" - calling_number: "487347844" - called_number: "32048280" - setup_time: "11/01/23 13h41m11s" - connexion_time: "11/01/23 13h41m18s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:02" - pdd_duration: "59 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.10" - rtp_src_port: "16450" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "15442" - rtp_play_time: "00h01m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3108" - rtp_pkts_tx: "3106" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.30" - rtp_mos_lq: "4.35" - rtp_erl_db: "29" - rtp_acom_db: "62" - - call_idx: "100" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "17 (340)" - calling_number: "51280120" - called_number: "32048312" - setup_time: "11/01/23 13h42m09s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "28" - disconnect_cause_text: "Invalid number format (address incomplete)" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw deleted file mode 100644 index d1fb7df5fd..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.raw +++ /dev/null @@ -1,1627 +0,0 @@ - - 1 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1005 (2204) - calling : 465868145, called : 27649014 - setup time: 11/01/23 22h45m58s - connexion time: --- - disconnected by local port: 5/0 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 2 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1004 (2203) - calling : 465868145, called : 27649014 - setup time: 11/01/23 22h45m55s - connexion time: --- - disconnected by local port: 5/1 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 3 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1003 (2202) - calling : 465868145, called : 27649014 - setup time: 11/01/23 22h45m54s - connexion time: --- - disconnected by local port: 5/0 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 4 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1002 (2201) - calling : 465868145, called : 27649014 - setup time: 11/01/23 22h45m39s - connexion time: --- - disconnected by local port: 5/1 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 5 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 1001 (2200) - calling : 472765918, called : 27641602 - setup time: 11/01/23 22h30m32s - connexion time: 11/01/23 22h30m32s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:12:08 - PDD duration: 41 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17782 /Dest ip :212.224.167.110 rtp:25690 - Play time (voice) : 00h12m08s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 36400 / 36385 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 19 dB - ACOM : 46 dB - - - 6 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 1000 (2199) - calling : 476883166, called : 27642734 - setup time: 11/01/23 22h17m19s - connexion time: 11/01/23 22h17m25s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:00:50 - PDD duration: 217 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17780 /Dest ip :212.224.167.110 rtp:26202 - Play time (voice) : 00h00m50s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2530 / 2529 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 31 dB - ACOM : 84 dB - - - 7 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 999 (2198) - calling : 468429012, called : 27649393 - setup time: 11/01/23 22h11m32s - connexion time: 11/01/23 22h11m41s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:44 - PDD duration: 69 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17778 /Dest ip :212.224.167.110 rtp:24530 - Play time (voice) : 00h00m44s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2212 / 2203 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 35 dB - ACOM : 59 dB - - - 8 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 998 (2197) - calling : 24207829, called : 27641111 - setup time: 11/01/23 22h02m49s - connexion time: 11/01/23 22h02m49s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:01:41 - PDD duration: 41 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17776 /Dest ip :212.224.167.110 rtp:25118 - Play time (voice) : 00h01m41s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5059 / 5058 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 49 dB - ACOM : 63 dB - - - 9 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 997 (2196) - calling : 487112012, called : 27643203 - setup time: 11/01/23 21h54m38s - connexion time: 11/01/23 21h55m11s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:49 - PDD duration: 626 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17774 /Dest ip :212.224.167.110 rtp:26092 - Play time (voice) : 00h00m49s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2467 / 2465 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 48 dB - - - 10 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 996 (2195) - calling : 456545176, called : 27642723 - setup time: 11/01/23 21h43m45s - connexion time: 11/01/23 21h43m59s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:05:14 - PDD duration: 633 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17772 /Dest ip :212.224.167.110 rtp:23004 - Play time (voice) : 00h05m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 15697 / 15699 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 18 dB - ACOM : 43 dB - - - 11 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 995 (2194) - calling : 10885259, called : 27641602 - setup time: 11/01/23 21h43m28s - connexion time: 11/01/23 21h43m28s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:23 - PDD duration: 44 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17770 /Dest ip :212.224.167.110 rtp:25888 - Play time (voice) : 00h01m23s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4136 / 4137 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 23 dB - ACOM : 56 dB - - - 12 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 994 (2193) - calling : 473211404, called : 27647027 - setup time: 11/01/23 21h30m07s - connexion time: --- - disconnected by local port: 5/1 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 13 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 992 (2191) - calling : 483598429, called : 27642753 - setup time: 11/01/23 21h26m22s - connexion time: 11/01/23 21h26m31s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:56 - PDD duration: 612 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17768 /Dest ip :212.224.167.110 rtp:25432 - Play time (voice) : 00h02m56s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 8827 / 8805 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 38 dB - ACOM : 64 dB - - - 14 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 993 (2192) - calling : 496106073, called : 27642702 - setup time: 11/01/23 21h27m32s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 506 msec - advice-of-charge: free - call priority: 100 - - - 15 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 991 (2190) - calling : 27724672, called : 27642733 - setup time: 11/01/23 21h21m42s - connexion time: 11/01/23 21h21m52s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:54 - PDD duration: 561 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17766 /Dest ip :212.224.167.110 rtp:25278 - Play time (voice) : 00h00m55s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2717 / 2715 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 21 dB - ACOM : 45 dB - - - 16 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 989 (2188) - calling : , called : 27646751 - setup time: 11/01/23 21h08m40s - connexion time: 11/01/23 21h08m47s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:04 - PDD duration: 124 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17764 /Dest ip :212.224.167.110 rtp:25640 - Play time (voice) : 00h01m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3155 / 3159 - RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 17 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 990 (2189) - calling : 465786907, called : 27649603 - setup time: 11/01/23 21h08m41s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 633 msec - advice-of-charge: free - call priority: 100 - - - 18 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 988 (2187) - calling : , called : 27646751 - setup time: 11/01/23 21h07m16s - connexion time: 11/01/23 21h07m24s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:01:02 - PDD duration: 118 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17762 /Dest ip :212.224.167.110 rtp:25122 - Play time (voice) : 00h01m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3063 / 3074 - RTP Packet lost&discarded RX / TX (RTCP reported) : 7 / 0 - Number of Excessive Jitter events : 1 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 19 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 987 (2186) - calling : 472207590, called : 27647097 - setup time: 11/01/23 20h49m27s - connexion time: --- - disconnected by local port: 5/0 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 20 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 986 (2185) - calling : 22720800, called : 27641111 - setup time: 11/01/23 20h42m09s - connexion time: 11/01/23 20h42m10s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:04:09 - PDD duration: 43 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17760 /Dest ip :212.224.167.110 rtp:26722 - Play time (voice) : 00h04m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 12474 / 12479 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 12 dB - ACOM : 47 dB - - - 21 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 983 (2182) - calling : 22219275, called : 27641602 - setup time: 11/01/23 20h39m00s - connexion time: 11/01/23 20h39m00s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(19)[No answer from user (user alerted)] - call duration: 00:03:53 - PDD duration: 46 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17756 /Dest ip :212.224.167.110 rtp:26832 - Play time (voice) : 00h03m53s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 11625 / 11625 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 52 dB - ACOM : 82 dB - - - 22 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 984 (2183) - calling : 477531031, called : 27641602 - setup time: 11/01/23 20h39m16s - connexion time: 11/01/23 20h39m16s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:03:02 - PDD duration: 60 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17758 /Dest ip :212.224.167.110 rtp:25738 - Play time (voice) : 00h03m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 9078 / 9076 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 27 dB - ACOM : 62 dB - - - 23 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 985 (2184) - calling : 492458256, called : 27642840 - setup time: 11/01/23 20h41m04s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 176 msec - advice-of-charge: free - call priority: 100 - - - 24 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 982 (2181) - calling : 498089031, called : 27640286 - setup time: 11/01/23 20h36m15s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 138 msec - advice-of-charge: free - call priority: 100 - - - 25 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 981 (2180) - calling : 393288948408, called : 27641867 - setup time: 11/01/23 20h34m52s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 257 msec - advice-of-charge: free - call priority: 100 - - - 26 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 980 (2179) - calling : 473258393, called : 27645603 - setup time: 11/01/23 20h31m12s - connexion time: --- - disconnected by local port: 5/1 cause :(21)[Call rejected] - call duration: 00:00:00 - PDD duration: 734 msec - advice-of-charge: free - call priority: 100 - - - 27 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 979 (2178) - calling : 93985010, called : 27646930 - setup time: 11/01/23 20h28m11s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 125 msec - advice-of-charge: free - call priority: 100 - - - 28 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 978 (2177) - calling : 93985010, called : 27646930 - setup time: 11/01/23 20h27m07s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 131 msec - advice-of-charge: free - call priority: 100 - - - 29 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 976 (2175) - calling : 488268009, called : 27649103 - setup time: 11/01/23 20h26m43s - connexion time: 11/01/23 20h27m00s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:01:04 - PDD duration: 877 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17752 /Dest ip :212.224.167.110 rtp:24704 - Play time (voice) : 00h01m04s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3225 / 3224 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 24 dB - ACOM : 51 dB - - - 30 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 977 (2176) - calling : 466253631, called : 27649603 - setup time: 11/01/23 20h27m01s - connexion time: 11/01/23 20h27m04s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:10 - PDD duration: 688 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17754 /Dest ip :212.224.167.110 rtp:22762 - Play time (voice) : 00h00m10s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 478 / 486 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 31 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 975 (2174) - calling : 473111057, called : 27643203 - setup time: 11/01/23 20h26m31s - connexion time: 11/01/23 20h26m38s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:33 - PDD duration: 881 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17750 /Dest ip :212.224.167.110 rtp:28060 - Play time (voice) : 00h00m33s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1606 / 1606 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 23 dB - ACOM : 47 dB - - - 32 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 974 (2173) - calling : 27362673, called : 27641111 - setup time: 11/01/23 20h26m21s - connexion time: 11/01/23 20h26m21s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:07 - PDD duration: 42 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17748 /Dest ip :212.224.167.110 rtp:25330 - Play time (voice) : 00h00m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 309 / 312 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 33 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 971 (2170) - calling : 473658327, called : 27641602 - setup time: 11/01/23 20h15m10s - connexion time: 11/01/23 20h15m10s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:06:58 - PDD duration: 49 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17744 /Dest ip :212.224.167.110 rtp:25234 - Play time (voice) : 00h06m58s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 20881 / 20879 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 15 dB - ACOM : 40 dB - - - 34 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 970 (2169) - calling : 22219275, called : 27641602 - setup time: 11/01/23 20h14m48s - connexion time: 11/01/23 20h14m48s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:06:56 - PDD duration: 52 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17742 /Dest ip :212.224.167.110 rtp:24802 - Play time (voice) : 00h06m56s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 20829 / 20829 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 22 dB - ACOM : 57 dB - - - 35 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 973 (2172) - calling : 93985010, called : 27646930 - setup time: 11/01/23 20h16m06s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 127 msec - advice-of-charge: free - call priority: 100 - - - 36 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 972 (2171) - calling : 494086485, called : 27645303 - setup time: 11/01/23 20h15m23s - connexion time: 11/01/23 20h15m30s - B channel (from B1..) : B2 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:00:53 - PDD duration: 939 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17746 /Dest ip :212.224.167.110 rtp:25840 - Play time (voice) : 00h00m54s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2654 / 2641 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 18 dB - ACOM : 44 dB - - - 37 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 968 (2167) - calling : 476882711, called : 27648203 - setup time: 11/01/23 20h03m36s - connexion time: 11/01/23 20h03m47s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:06:05 - PDD duration: 931 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17738 /Dest ip :212.224.167.110 rtp:23572 - Play time (voice) : 00h06m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 18277 / 18275 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 33 dB - ACOM : 60 dB - - - 38 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 969 (2168) - calling : 65971863, called : 27642713 - setup time: 11/01/23 20h05m35s - connexion time: 11/01/23 20h05m45s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:55 - PDD duration: 757 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17740 /Dest ip :212.224.167.110 rtp:26740 - Play time (voice) : 00h01m55s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 5767 / 5761 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.35 / 4.39 - ERL : 49 dB - ACOM : 73 dB - - - 39 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 967 (2166) - calling : 478342433, called : 27646403 - setup time: 11/01/23 20h00m13s - connexion time: 11/01/23 20h00m21s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:52 - PDD duration: 878 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17736 /Dest ip :212.224.167.110 rtp:27464 - Play time (voice) : 00h00m52s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2592 / 2595 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 15 dB - ACOM : 43 dB - - - 40 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 966 (2165) - calling : 473934233, called : 27642743 - setup time: 11/01/23 19h58m24s - connexion time: 11/01/23 19h58m37s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:01:07 - PDD duration: 372 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17734 /Dest ip :212.224.167.110 rtp:24682 - Play time (voice) : 00h01m07s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3309 / 3306 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 26 dB - ACOM : 60 dB - - - 41 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 965 (2164) - calling : 476332293, called : 27649393 - setup time: 11/01/23 19h52m03s - connexion time: 11/01/23 19h52m12s - B channel (from B1..) : B2 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:33 - PDD duration: 67 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17732 /Dest ip :212.224.167.110 rtp:25110 - Play time (voice) : 00h01m33s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4629 / 4628 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 29 dB - ACOM : 57 dB - - - 42 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 963 (2162) - calling : 493878372, called : 27641111 - setup time: 11/01/23 19h50m30s - connexion time: 11/01/23 19h50m30s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:02 - PDD duration: 46 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17730 /Dest ip :212.224.167.110 rtp:26584 - Play time (voice) : 00h02m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 6072 / 6062 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 28 dB - ACOM : 60 dB - - - 43 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 964 (2163) - calling : 472290857, called : 27648251 - setup time: 11/01/23 19h51m43s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 271 msec - advice-of-charge: free - call priority: 100 - - - 44 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 962 (2161) - calling : 478773565, called : 27642723 - setup time: 11/01/23 19h49m59s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 604 msec - advice-of-charge: free - call priority: 100 - - - 45 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 961 (2160) - calling : 488569589, called : 27641800 - setup time: 11/01/23 19h42m41s - connexion time: 11/01/23 19h42m41s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:02 - PDD duration: 46 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17728 /Dest ip :212.224.167.110 rtp:24876 - Play time (voice) : 00h01m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3073 / 3093 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 46 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 960 (2159) - calling : 14697951355, called : 27649177 - setup time: 11/01/23 19h38m16s - connexion time: 11/01/23 19h38m24s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:40 - PDD duration: 119 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17726 /Dest ip :212.224.167.110 rtp:26622 - Play time (voice) : 00h00m40s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1984 / 1985 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 47 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 959 (2158) - calling : 495200394, called : 27641920 - setup time: 11/01/23 19h38m01s - connexion time: 11/01/23 19h38m01s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:14 - PDD duration: 58 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17724 /Dest ip :212.224.167.110 rtp:26572 - Play time (voice) : 00h00m14s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 698 / 688 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : -- dB - ACOM : 255 dB - - - 48 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 957 (2156) - calling : 24772048, called : 27641111 - setup time: 11/01/23 19h28m41s - connexion time: 11/01/23 19h28m42s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:07:43 - PDD duration: 43 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17722 /Dest ip :212.224.167.110 rtp:24714 - Play time (voice) : 00h07m43s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 23133 / 23129 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 28 dB - ACOM : 53 dB - - - 49 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 958 (2157) - calling : 27207387, called : 27640314 - setup time: 11/01/23 19h29m59s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 50 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 955 (2154) - calling : 470983656, called : 27641111 - setup time: 11/01/23 19h21m16s - connexion time: 11/01/23 19h21m16s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:04:05 - PDD duration: 50 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17718 /Dest ip :212.224.167.110 rtp:26002 - Play time (voice) : 00h04m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 12234 / 12232 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 21 dB - ACOM : 62 dB - - - 51 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 956 (2155) - calling : 477366037, called : 27642812 - setup time: 11/01/23 19h23m37s - connexion time: 11/01/23 19h23m38s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:05 - PDD duration: 46 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17720 /Dest ip :212.224.167.110 rtp:24998 - Play time (voice) : 00h00m05s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 264 / 265 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 52 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 954 (2153) - calling : 476239129, called : 27648076 - setup time: 11/01/23 19h19m35s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 470 msec - advice-of-charge: free - call priority: 100 - - - 53 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 953 (2152) - calling : 479078031, called : 27646203 - setup time: 11/01/23 19h19m28s - connexion time: 11/01/23 19h19m34s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:02 - PDD duration: 836 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17716 /Dest ip :212.224.167.110 rtp:26838 - Play time (voice) : 00h00m02s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 73 / 89 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : -- / -- - ERL : -- dB - ACOM : 255 dB - - - 54 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 952 (2151) - calling : 473399322, called : 27643700 - setup time: 11/01/23 19h15m13s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 390 msec - advice-of-charge: free - call priority: 100 - - - 55 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 951 (2150) - calling : 483598429, called : 27642753 - setup time: 11/01/23 19h09m10s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 232 msec - advice-of-charge: free - call priority: 100 - - - 56 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 945 (2144) - calling : 19325073, called : 27640287 - setup time: 11/01/23 19h07m16s - connexion time: 11/01/23 19h07m29s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:33 - PDD duration: 137 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17714 /Dest ip :212.224.167.110 rtp:25244 - Play time (voice) : 00h02m33s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7646 / 7649 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 17 dB - ACOM : 47 dB - - - 57 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 950 (2149) - calling : 27207387, called : 27640314 - setup time: 11/01/23 19h08m18s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 58 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 949 (2148) - calling : 25135994, called : 27646021 - setup time: 11/01/23 19h08m02s - connexion time: --- - disconnected by local port: 5/0 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 59 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 948 (2147) - calling : 25135994, called : 27646021 - setup time: 11/01/23 19h08m01s - connexion time: --- - disconnected by local port: 5/1 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 60 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 947 (2146) - calling : 25135994, called : 27646021 - setup time: 11/01/23 19h07m59s - connexion time: --- - disconnected by local port: 5/0 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 61 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 946 (2145) - calling : 25135994, called : 27646021 - setup time: 11/01/23 19h07m58s - connexion time: --- - disconnected by local port: 5/1 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 62 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 944 (2143) - calling : 497257441, called : 27646056 - setup time: 11/01/23 19h07m16s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 239 msec - advice-of-charge: free - call priority: 100 - - - 63 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 943 (2142) - calling : 477738093, called : 27641483 - setup time: 11/01/23 19h06m36s - connexion time: --- - disconnected by local port: 5/0 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 64 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 942 (2141) - calling : 27207387, called : 27640314 - setup time: 11/01/23 19h06m31s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 65 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 941 (2140) - calling : 477738093, called : 27641483 - setup time: 11/01/23 19h05m27s - connexion time: --- - disconnected by local port: 5/0 cause :(20)[Subscriber absent] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 66 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 940 (2139) - calling : 472509100, called : 27641610 - setup time: 11/01/23 19h03m58s - connexion time: 11/01/23 19h04m04s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:00:26 - PDD duration: 200 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17712 /Dest ip :212.224.167.110 rtp:26548 - Play time (voice) : 00h00m26s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1326 / 1323 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 34 dB - ACOM : 59 dB - - - 67 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 939 (2138) - calling : 478792136, called : 27648150 - setup time: 11/01/23 19h03m57s - connexion time: --- - disconnected by local port: 5/0 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 68 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 938 (2137) - calling : 478792136, called : 27648150 - setup time: 11/01/23 19h03m48s - connexion time: --- - disconnected by local port: 5/1 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 69 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 934 (2133) - calling : 33671050013, called : 27641111 - setup time: 11/01/23 18h59m27s - connexion time: 11/01/23 18h59m27s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:02:21 - PDD duration: 46 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17708 /Dest ip :212.224.167.110 rtp:25090 - Play time (voice) : 00h02m21s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7044 / 7058 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 22 dB - ACOM : 43 dB - - - 70 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 937 (2136) - calling : 27207387, called : 27640314 - setup time: 11/01/23 19h01m41s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 71 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 935 (2134) - calling : , called : 27641111 - setup time: 11/01/23 19h00m02s - connexion time: 11/01/23 19h00m02s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:54 - PDD duration: 42 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17710 /Dest ip :212.224.167.110 rtp:25882 - Play time (voice) : 00h00m54s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 2658 / 2660 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 53 dB - ACOM : 76 dB - - - 72 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 936 (2135) - calling : 27207387, called : 27640314 - setup time: 11/01/23 19h00m35s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 73 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 933 (2132) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h56m10s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 74 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 931 (2130) - calling : 33784557704, called : 27642100 - setup time: 11/01/23 18h52m16s - connexion time: 11/01/23 18h52m19s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:09 - PDD duration: 357 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17706 /Dest ip :212.224.167.110 rtp:26266 - Play time (voice) : 00h01m09s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3466 / 3454 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 18 dB - ACOM : 43 dB - - - 75 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 932 (2131) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h52m41s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 76 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 929 (2128) - calling : 486120510, called : 27641432 - setup time: 11/01/23 18h50m41s - connexion time: 11/01/23 18h50m47s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:18 - PDD duration: 296 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17704 /Dest ip :212.224.167.110 rtp:25708 - Play time (voice) : 00h01m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3889 / 3880 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / -- - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 22 dB - ACOM : 54 dB - - - 77 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 930 (2129) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h50m54s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 78 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 928 (2127) - calling : 498477443, called : 27643630 - setup time: 11/01/23 18h50m23s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 1195 msec - advice-of-charge: free - call priority: 100 - - - 79 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 927 (2126) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h47m06s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 80 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 926 (2125) - calling : 352621177808, called : 27642344 - setup time: 11/01/23 18h45m34s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 225 msec - advice-of-charge: free - call priority: 100 - - - 81 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 925 (2124) - calling : 475515111, called : 27648080 - setup time: 11/01/23 18h44m31s - connexion time: 11/01/23 18h44m38s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:01:01 - PDD duration: 262 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17702 /Dest ip :212.224.167.110 rtp:22556 - Play time (voice) : 00h01m01s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 3057 / 3027 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 16 dB - ACOM : 45 dB - - - 82 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 924 (2123) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h40m44s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 83 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 923 (2122) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h39m56s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 84 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 922 (2121) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h37m00s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 85 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 921 (2120) - calling : 81708185, called : 27641111 - setup time: 11/01/23 18h34m48s - connexion time: 11/01/23 18h34m48s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:01:28 - PDD duration: 43 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17700 /Dest ip :212.224.167.110 rtp:24584 - Play time (voice) : 00h01m28s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 4365 / 4370 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 51 dB - ACOM : 78 dB - - - 86 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 920 (2119) - calling : 488388210, called : 27648848 - setup time: 11/01/23 18h34m28s - connexion time: --- - disconnected by local port: 5/1 cause :(17)[User busy] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 87 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 916 (2115) - calling : 498274158, called : 27642050 - setup time: 11/01/23 18h31m34s - connexion time: 11/01/23 18h31m47s - B channel (from B1..) : B1 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:02:35 - PDD duration: 623 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17696 /Dest ip :212.224.167.110 rtp:24788 - Play time (voice) : 00h02m35s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 7737 / 7734 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 20 dB - ACOM : 48 dB - - - 88 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 919 (2118) - calling : 474682949, called : 27647820 - setup time: 11/01/23 18h33m19s - connexion time: 11/01/23 18h33m22s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:00:26 - PDD duration: 208 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17698 /Dest ip :212.224.167.110 rtp:25580 - Play time (voice) : 00h00m26s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 1327 / 1325 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 29 dB - ACOM : 53 dB - - - 89 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 917 (2116) - calling : 477893610, called : 27640675 - setup time: 11/01/23 18h31m43s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 168 msec - advice-of-charge: free - call priority: 100 - - - 90 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 918 (2117) - calling : 466290063, called : 27642121 - setup time: 11/01/23 18h32m42s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 62 msec - advice-of-charge: free - call priority: 100 - - - 91 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 915 (2114) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h31m13s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 92 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 914 (2113) - calling : 474746373, called : 27641623 - setup time: 11/01/23 18h28m50s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 259 msec - advice-of-charge: free - call priority: 100 - - - 93 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 909 (2108) - calling : 495603607, called : 27640631 - setup time: 11/01/23 18h18m39s - connexion time: 11/01/23 18h18m49s - B channel (from B1..) : B2 - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:09:59 - PDD duration: 308 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17692 /Dest ip :212.224.167.110 rtp:22596 - Play time (voice) : 00h09m59s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 29964 / 29961 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 25 dB - ACOM : 62 dB - - - 94 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 906 (2105) - calling : 479090112, called : 27647043 - setup time: 11/01/23 18h17m36s - connexion time: 11/01/23 18h17m38s - B channel (from B1..) : B1 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:08:49 - PDD duration: 325 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17688 /Dest ip :212.224.167.110 rtp:26678 - Play time (voice) : 00h08m49s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 26453 / 26448 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 19 dB - ACOM : 42 dB - - - 95 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 913 (2112) - calling : 484156371, called : 27641826 - setup time: 11/01/23 18h26m06s - connexion time: --- - disconnected by remote voip: 0 (UDP) cause :(16)[Normal call clearing] - call duration: 00:00:00 - PDD duration: 102 msec - advice-of-charge: free - call priority: 100 - - - 96 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 912 (2111) - calling : 460215424, called : 27645555 - setup time: 11/01/23 18h24m30s - connexion time: 11/01/23 18h24m38s - B channel (from B1..) : B2 - disconnected by local port: 5/1 cause :(16)[Normal call clearing] - call duration: 00:00:18 - PDD duration: 392 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17694 /Dest ip :212.224.167.110 rtp:26426 - Play time (voice) : 00h00m18s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 788 / 905 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.33 / 4.39 - ERL : 21 dB - ACOM : 59 dB - - - 97 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 907 (2106) - calling : 465195352, called : 27641111 - setup time: 11/01/23 18h17m50s - connexion time: 11/01/23 18h17m50s - B channel (from B1..) : B1 - disconnected by local port: 5/0 cause :(16)[Normal call clearing] - call duration: 00:06:31 - PDD duration: 47 msec - advice-of-charge: free - call priority: 100 - - RTP Source ip :94.105.56.196 rtp:17690 /Dest ip :212.224.167.110 rtp:24994 - Play time (voice) : 00h06m31s - Tx Coder : G711 A Law / 20 ms ; Rx Coder : G711 A Law - RTP Packets RX / TX : 19530 / 19541 - RTP Packet lost&discarded RX / TX (RTCP reported) : 0 / 0 - Number of Excessive Jitter events : 0 - MOS-CQ / MOS-LQ : 4.34 / 4.39 - ERL : 25 dB - ACOM : 63 dB - - - 98 - Call from remote voip: 0 (UDP), to local port: 5/0 call-id: 911 (2110) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h23m50s - connexion time: --- - disconnected by local port: 5/0 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 99 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 910 (2109) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h21m34s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 - - - 100 - Call from remote voip: 0 (UDP), to local port: 5/1 call-id: 908 (2107) - calling : 27207387, called : 27640314 - setup time: 11/01/23 18h18m04s - connexion time: --- - disconnected by local port: 5/1 cause :(27)[Destination out of order] - call duration: 00:00:00 - PDD duration: - - advice-of-charge: free - call priority: 100 diff --git a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml b/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml deleted file mode 100644 index 3f160b2eb5..0000000000 --- a/tests/oneaccess_oneos/show_voice_voip-call_any_all/show_voice_voip-call_any_all.plug401.yml +++ /dev/null @@ -1,3250 +0,0 @@ ---- -parsed_sample: - - call_idx: "1" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "1005 (2204)" - calling_number: "465868145" - called_number: "27649014" - setup_time: "11/01/23 22h45m58s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "2" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "1004 (2203)" - calling_number: "465868145" - called_number: "27649014" - setup_time: "11/01/23 22h45m55s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "3" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "1003 (2202)" - calling_number: "465868145" - called_number: "27649014" - setup_time: "11/01/23 22h45m54s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "4" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "1002 (2201)" - calling_number: "465868145" - called_number: "27649014" - setup_time: "11/01/23 22h45m39s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "5" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "1001 (2200)" - calling_number: "472765918" - called_number: "27641602" - setup_time: "11/01/23 22h30m32s" - connexion_time: "11/01/23 22h30m32s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:12:08" - pdd_duration: "41 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17782" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25690" - rtp_play_time: "00h12m08s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "36400" - rtp_pkts_tx: "36385" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "19" - rtp_acom_db: "46" - - call_idx: "6" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "1000 (2199)" - calling_number: "476883166" - called_number: "27642734" - setup_time: "11/01/23 22h17m19s" - connexion_time: "11/01/23 22h17m25s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:50" - pdd_duration: "217 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17780" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26202" - rtp_play_time: "00h00m50s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2530" - rtp_pkts_tx: "2529" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "31" - rtp_acom_db: "84" - - call_idx: "7" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "999 (2198)" - calling_number: "468429012" - called_number: "27649393" - setup_time: "11/01/23 22h11m32s" - connexion_time: "11/01/23 22h11m41s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:44" - pdd_duration: "69 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17778" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24530" - rtp_play_time: "00h00m44s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2212" - rtp_pkts_tx: "2203" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "35" - rtp_acom_db: "59" - - call_idx: "8" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "998 (2197)" - calling_number: "24207829" - called_number: "27641111" - setup_time: "11/01/23 22h02m49s" - connexion_time: "11/01/23 22h02m49s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:41" - pdd_duration: "41 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17776" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25118" - rtp_play_time: "00h01m41s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5059" - rtp_pkts_tx: "5058" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "49" - rtp_acom_db: "63" - - call_idx: "9" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "997 (2196)" - calling_number: "487112012" - called_number: "27643203" - setup_time: "11/01/23 21h54m38s" - connexion_time: "11/01/23 21h55m11s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:49" - pdd_duration: "626 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17774" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26092" - rtp_play_time: "00h00m49s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2467" - rtp_pkts_tx: "2465" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "48" - - call_idx: "10" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "996 (2195)" - calling_number: "456545176" - called_number: "27642723" - setup_time: "11/01/23 21h43m45s" - connexion_time: "11/01/23 21h43m59s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:05:14" - pdd_duration: "633 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17772" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23004" - rtp_play_time: "00h05m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "15697" - rtp_pkts_tx: "15699" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "18" - rtp_acom_db: "43" - - call_idx: "11" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "995 (2194)" - calling_number: "10885259" - called_number: "27641602" - setup_time: "11/01/23 21h43m28s" - connexion_time: "11/01/23 21h43m28s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:23" - pdd_duration: "44 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17770" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25888" - rtp_play_time: "00h01m23s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4136" - rtp_pkts_tx: "4137" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "23" - rtp_acom_db: "56" - - call_idx: "12" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "994 (2193)" - calling_number: "473211404" - called_number: "27647027" - setup_time: "11/01/23 21h30m07s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "13" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "992 (2191)" - calling_number: "483598429" - called_number: "27642753" - setup_time: "11/01/23 21h26m22s" - connexion_time: "11/01/23 21h26m31s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:56" - pdd_duration: "612 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17768" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25432" - rtp_play_time: "00h02m56s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "8827" - rtp_pkts_tx: "8805" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "38" - rtp_acom_db: "64" - - call_idx: "14" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "993 (2192)" - calling_number: "496106073" - called_number: "27642702" - setup_time: "11/01/23 21h27m32s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "506 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "15" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "991 (2190)" - calling_number: "27724672" - called_number: "27642733" - setup_time: "11/01/23 21h21m42s" - connexion_time: "11/01/23 21h21m52s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:54" - pdd_duration: "561 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17766" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25278" - rtp_play_time: "00h00m55s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2717" - rtp_pkts_tx: "2715" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "21" - rtp_acom_db: "45" - - call_idx: "16" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "989 (2188)" - calling_number: "" - called_number: "" - setup_time: "11/01/23 21h08m40s" - connexion_time: "11/01/23 21h08m47s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:04" - pdd_duration: "124 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17764" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25640" - rtp_play_time: "00h01m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3155" - rtp_pkts_tx: "3159" - rtp_pkts_lost_rx: "7" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "17" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "990 (2189)" - calling_number: "465786907" - called_number: "27649603" - setup_time: "11/01/23 21h08m41s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "633 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "18" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "988 (2187)" - calling_number: "" - called_number: "" - setup_time: "11/01/23 21h07m16s" - connexion_time: "11/01/23 21h07m24s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:02" - pdd_duration: "118 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17762" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25122" - rtp_play_time: "00h01m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3063" - rtp_pkts_tx: "3074" - rtp_pkts_lost_rx: "7" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "1" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "19" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "987 (2186)" - calling_number: "472207590" - called_number: "27647097" - setup_time: "11/01/23 20h49m27s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "20" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "986 (2185)" - calling_number: "22720800" - called_number: "27641111" - setup_time: "11/01/23 20h42m09s" - connexion_time: "11/01/23 20h42m10s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:04:09" - pdd_duration: "43 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17760" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26722" - rtp_play_time: "00h04m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "12474" - rtp_pkts_tx: "12479" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "12" - rtp_acom_db: "47" - - call_idx: "21" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "983 (2182)" - calling_number: "22219275" - called_number: "27641602" - setup_time: "11/01/23 20h39m00s" - connexion_time: "11/01/23 20h39m00s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "19" - disconnect_cause_text: "No answer from user (user alerted)" - call_duration: "00:03:53" - pdd_duration: "46 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17756" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26832" - rtp_play_time: "00h03m53s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "11625" - rtp_pkts_tx: "11625" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "52" - rtp_acom_db: "82" - - call_idx: "22" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "984 (2183)" - calling_number: "477531031" - called_number: "27641602" - setup_time: "11/01/23 20h39m16s" - connexion_time: "11/01/23 20h39m16s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:03:02" - pdd_duration: "60 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17758" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25738" - rtp_play_time: "00h03m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "9078" - rtp_pkts_tx: "9076" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "27" - rtp_acom_db: "62" - - call_idx: "23" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "985 (2184)" - calling_number: "492458256" - called_number: "27642840" - setup_time: "11/01/23 20h41m04s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "176 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "24" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "982 (2181)" - calling_number: "498089031" - called_number: "27640286" - setup_time: "11/01/23 20h36m15s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "138 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "25" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "981 (2180)" - calling_number: "393288948408" - called_number: "27641867" - setup_time: "11/01/23 20h34m52s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "257 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "26" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "980 (2179)" - calling_number: "473258393" - called_number: "27645603" - setup_time: "11/01/23 20h31m12s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "21" - disconnect_cause_text: "Call rejected" - call_duration: "00:00:00" - pdd_duration: "734 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "27" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "979 (2178)" - calling_number: "93985010" - called_number: "27646930" - setup_time: "11/01/23 20h28m11s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "125 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "28" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "978 (2177)" - calling_number: "93985010" - called_number: "27646930" - setup_time: "11/01/23 20h27m07s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "131 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "29" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "976 (2175)" - calling_number: "488268009" - called_number: "27649103" - setup_time: "11/01/23 20h26m43s" - connexion_time: "11/01/23 20h27m00s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:04" - pdd_duration: "877 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17752" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24704" - rtp_play_time: "00h01m04s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3225" - rtp_pkts_tx: "3224" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "24" - rtp_acom_db: "51" - - call_idx: "30" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "977 (2176)" - calling_number: "466253631" - called_number: "27649603" - setup_time: "11/01/23 20h27m01s" - connexion_time: "11/01/23 20h27m04s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:10" - pdd_duration: "688 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17754" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22762" - rtp_play_time: "00h00m10s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "478" - rtp_pkts_tx: "486" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "31" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "975 (2174)" - calling_number: "473111057" - called_number: "27643203" - setup_time: "11/01/23 20h26m31s" - connexion_time: "11/01/23 20h26m38s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:33" - pdd_duration: "881 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17750" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "28060" - rtp_play_time: "00h00m33s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1606" - rtp_pkts_tx: "1606" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "23" - rtp_acom_db: "47" - - call_idx: "32" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "974 (2173)" - calling_number: "27362673" - called_number: "27641111" - setup_time: "11/01/23 20h26m21s" - connexion_time: "11/01/23 20h26m21s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:07" - pdd_duration: "42 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17748" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25330" - rtp_play_time: "00h00m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "309" - rtp_pkts_tx: "312" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "33" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "971 (2170)" - calling_number: "473658327" - called_number: "27641602" - setup_time: "11/01/23 20h15m10s" - connexion_time: "11/01/23 20h15m10s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:06:58" - pdd_duration: "49 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17744" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25234" - rtp_play_time: "00h06m58s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "20881" - rtp_pkts_tx: "20879" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "15" - rtp_acom_db: "40" - - call_idx: "34" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "970 (2169)" - calling_number: "22219275" - called_number: "27641602" - setup_time: "11/01/23 20h14m48s" - connexion_time: "11/01/23 20h14m48s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:06:56" - pdd_duration: "52 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17742" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24802" - rtp_play_time: "00h06m56s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "20829" - rtp_pkts_tx: "20829" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "22" - rtp_acom_db: "57" - - call_idx: "35" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "973 (2172)" - calling_number: "93985010" - called_number: "27646930" - setup_time: "11/01/23 20h16m06s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "127 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "36" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "972 (2171)" - calling_number: "494086485" - called_number: "27645303" - setup_time: "11/01/23 20h15m23s" - connexion_time: "11/01/23 20h15m30s" - b_channels: - - "B2" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:53" - pdd_duration: "939 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17746" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25840" - rtp_play_time: "00h00m54s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2654" - rtp_pkts_tx: "2641" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "18" - rtp_acom_db: "44" - - call_idx: "37" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "968 (2167)" - calling_number: "476882711" - called_number: "27648203" - setup_time: "11/01/23 20h03m36s" - connexion_time: "11/01/23 20h03m47s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:06:05" - pdd_duration: "931 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17738" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "23572" - rtp_play_time: "00h06m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "18277" - rtp_pkts_tx: "18275" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "33" - rtp_acom_db: "60" - - call_idx: "38" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "969 (2168)" - calling_number: "65971863" - called_number: "27642713" - setup_time: "11/01/23 20h05m35s" - connexion_time: "11/01/23 20h05m45s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:55" - pdd_duration: "757 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17740" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26740" - rtp_play_time: "00h01m55s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "5767" - rtp_pkts_tx: "5761" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.35" - rtp_mos_lq: "4.39" - rtp_erl_db: "49" - rtp_acom_db: "73" - - call_idx: "39" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "967 (2166)" - calling_number: "478342433" - called_number: "27646403" - setup_time: "11/01/23 20h00m13s" - connexion_time: "11/01/23 20h00m21s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:52" - pdd_duration: "878 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17736" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "27464" - rtp_play_time: "00h00m52s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2592" - rtp_pkts_tx: "2595" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "15" - rtp_acom_db: "43" - - call_idx: "40" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "966 (2165)" - calling_number: "473934233" - called_number: "27642743" - setup_time: "11/01/23 19h58m24s" - connexion_time: "11/01/23 19h58m37s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:07" - pdd_duration: "372 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17734" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24682" - rtp_play_time: "00h01m07s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3309" - rtp_pkts_tx: "3306" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "26" - rtp_acom_db: "60" - - call_idx: "41" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "965 (2164)" - calling_number: "476332293" - called_number: "27649393" - setup_time: "11/01/23 19h52m03s" - connexion_time: "11/01/23 19h52m12s" - b_channels: - - "B2" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:33" - pdd_duration: "67 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17732" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25110" - rtp_play_time: "00h01m33s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4629" - rtp_pkts_tx: "4628" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "29" - rtp_acom_db: "57" - - call_idx: "42" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "963 (2162)" - calling_number: "493878372" - called_number: "27641111" - setup_time: "11/01/23 19h50m30s" - connexion_time: "11/01/23 19h50m30s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:02" - pdd_duration: "46 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17730" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26584" - rtp_play_time: "00h02m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "6072" - rtp_pkts_tx: "6062" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "60" - - call_idx: "43" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "964 (2163)" - calling_number: "472290857" - called_number: "27648251" - setup_time: "11/01/23 19h51m43s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "271 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "44" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "962 (2161)" - calling_number: "478773565" - called_number: "27642723" - setup_time: "11/01/23 19h49m59s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "604 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "45" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "961 (2160)" - calling_number: "488569589" - called_number: "27641800" - setup_time: "11/01/23 19h42m41s" - connexion_time: "11/01/23 19h42m41s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:02" - pdd_duration: "46 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17728" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24876" - rtp_play_time: "00h01m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3073" - rtp_pkts_tx: "3093" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "46" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "960 (2159)" - calling_number: "14697951355" - called_number: "27649177" - setup_time: "11/01/23 19h38m16s" - connexion_time: "11/01/23 19h38m24s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:40" - pdd_duration: "119 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17726" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26622" - rtp_play_time: "00h00m40s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1984" - rtp_pkts_tx: "1985" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "47" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "959 (2158)" - calling_number: "495200394" - called_number: "27641920" - setup_time: "11/01/23 19h38m01s" - connexion_time: "11/01/23 19h38m01s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:14" - pdd_duration: "58 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17724" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26572" - rtp_play_time: "00h00m14s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "698" - rtp_pkts_tx: "688" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "48" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "957 (2156)" - calling_number: "24772048" - called_number: "27641111" - setup_time: "11/01/23 19h28m41s" - connexion_time: "11/01/23 19h28m42s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:07:43" - pdd_duration: "43 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17722" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24714" - rtp_play_time: "00h07m43s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "23133" - rtp_pkts_tx: "23129" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "28" - rtp_acom_db: "53" - - call_idx: "49" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "958 (2157)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 19h29m59s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "50" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "955 (2154)" - calling_number: "470983656" - called_number: "27641111" - setup_time: "11/01/23 19h21m16s" - connexion_time: "11/01/23 19h21m16s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:04:05" - pdd_duration: "50 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17718" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26002" - rtp_play_time: "00h04m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "12234" - rtp_pkts_tx: "12232" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "21" - rtp_acom_db: "62" - - call_idx: "51" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "956 (2155)" - calling_number: "477366037" - called_number: "27642812" - setup_time: "11/01/23 19h23m37s" - connexion_time: "11/01/23 19h23m38s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:05" - pdd_duration: "46 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17720" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24998" - rtp_play_time: "00h00m05s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "264" - rtp_pkts_tx: "265" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "52" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "954 (2153)" - calling_number: "476239129" - called_number: "27648076" - setup_time: "11/01/23 19h19m35s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "470 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "53" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "953 (2152)" - calling_number: "479078031" - called_number: "27646203" - setup_time: "11/01/23 19h19m28s" - connexion_time: "11/01/23 19h19m34s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:02" - pdd_duration: "836 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17716" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26838" - rtp_play_time: "00h00m02s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "73" - rtp_pkts_tx: "89" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "255" - - call_idx: "54" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "952 (2151)" - calling_number: "473399322" - called_number: "27643700" - setup_time: "11/01/23 19h15m13s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "390 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "55" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "951 (2150)" - calling_number: "483598429" - called_number: "27642753" - setup_time: "11/01/23 19h09m10s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "232 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "56" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "945 (2144)" - calling_number: "19325073" - called_number: "27640287" - setup_time: "11/01/23 19h07m16s" - connexion_time: "11/01/23 19h07m29s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:33" - pdd_duration: "137 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17714" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25244" - rtp_play_time: "00h02m33s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7646" - rtp_pkts_tx: "7649" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "17" - rtp_acom_db: "47" - - call_idx: "57" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "950 (2149)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 19h08m18s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "58" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "949 (2148)" - calling_number: "25135994" - called_number: "27646021" - setup_time: "11/01/23 19h08m02s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "59" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "948 (2147)" - calling_number: "25135994" - called_number: "27646021" - setup_time: "11/01/23 19h08m01s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "60" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "947 (2146)" - calling_number: "25135994" - called_number: "27646021" - setup_time: "11/01/23 19h07m59s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "61" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "946 (2145)" - calling_number: "25135994" - called_number: "27646021" - setup_time: "11/01/23 19h07m58s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "62" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "944 (2143)" - calling_number: "497257441" - called_number: "27646056" - setup_time: "11/01/23 19h07m16s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "239 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "63" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "943 (2142)" - calling_number: "477738093" - called_number: "27641483" - setup_time: "11/01/23 19h06m36s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "64" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "942 (2141)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 19h06m31s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "65" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "941 (2140)" - calling_number: "477738093" - called_number: "27641483" - setup_time: "11/01/23 19h05m27s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "20" - disconnect_cause_text: "Subscriber absent" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "66" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "940 (2139)" - calling_number: "472509100" - called_number: "27641610" - setup_time: "11/01/23 19h03m58s" - connexion_time: "11/01/23 19h04m04s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:26" - pdd_duration: "200 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17712" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26548" - rtp_play_time: "00h00m26s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1326" - rtp_pkts_tx: "1323" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "34" - rtp_acom_db: "59" - - call_idx: "67" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "939 (2138)" - calling_number: "478792136" - called_number: "27648150" - setup_time: "11/01/23 19h03m57s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "68" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "938 (2137)" - calling_number: "478792136" - called_number: "27648150" - setup_time: "11/01/23 19h03m48s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "69" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "934 (2133)" - calling_number: "33671050013" - called_number: "27641111" - setup_time: "11/01/23 18h59m27s" - connexion_time: "11/01/23 18h59m27s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:21" - pdd_duration: "46 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17708" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25090" - rtp_play_time: "00h02m21s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7044" - rtp_pkts_tx: "7058" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "22" - rtp_acom_db: "43" - - call_idx: "70" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "937 (2136)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 19h01m41s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "71" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "935 (2134)" - calling_number: "" - called_number: "" - setup_time: "11/01/23 19h00m02s" - connexion_time: "11/01/23 19h00m02s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:54" - pdd_duration: "42 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17710" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25882" - rtp_play_time: "00h00m54s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "2658" - rtp_pkts_tx: "2660" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "53" - rtp_acom_db: "76" - - call_idx: "72" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "936 (2135)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 19h00m35s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "73" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "933 (2132)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h56m10s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "74" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "931 (2130)" - calling_number: "33784557704" - called_number: "27642100" - setup_time: "11/01/23 18h52m16s" - connexion_time: "11/01/23 18h52m19s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:09" - pdd_duration: "357 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17706" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26266" - rtp_play_time: "00h01m09s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3466" - rtp_pkts_tx: "3454" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "18" - rtp_acom_db: "43" - - call_idx: "75" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "932 (2131)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h52m41s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "76" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "929 (2128)" - calling_number: "486120510" - called_number: "27641432" - setup_time: "11/01/23 18h50m41s" - connexion_time: "11/01/23 18h50m47s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:18" - pdd_duration: "296 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17704" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25708" - rtp_play_time: "00h01m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3889" - rtp_pkts_tx: "3880" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "22" - rtp_acom_db: "54" - - call_idx: "77" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "930 (2129)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h50m54s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "78" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "928 (2127)" - calling_number: "498477443" - called_number: "27643630" - setup_time: "11/01/23 18h50m23s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "1195 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "79" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "927 (2126)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h47m06s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "80" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "926 (2125)" - calling_number: "352621177808" - called_number: "27642344" - setup_time: "11/01/23 18h45m34s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "225 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "81" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "925 (2124)" - calling_number: "475515111" - called_number: "27648080" - setup_time: "11/01/23 18h44m31s" - connexion_time: "11/01/23 18h44m38s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:01" - pdd_duration: "262 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17702" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22556" - rtp_play_time: "00h01m01s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "3057" - rtp_pkts_tx: "3027" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "16" - rtp_acom_db: "45" - - call_idx: "82" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "924 (2123)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h40m44s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "83" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "923 (2122)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h39m56s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "84" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "922 (2121)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h37m00s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "85" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "921 (2120)" - calling_number: "81708185" - called_number: "27641111" - setup_time: "11/01/23 18h34m48s" - connexion_time: "11/01/23 18h34m48s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:01:28" - pdd_duration: "43 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17700" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24584" - rtp_play_time: "00h01m28s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "4365" - rtp_pkts_tx: "4370" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "51" - rtp_acom_db: "78" - - call_idx: "86" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "920 (2119)" - calling_number: "488388210" - called_number: "27648848" - setup_time: "11/01/23 18h34m28s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "17" - disconnect_cause_text: "User busy" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "87" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "916 (2115)" - calling_number: "498274158" - called_number: "27642050" - setup_time: "11/01/23 18h31m34s" - connexion_time: "11/01/23 18h31m47s" - b_channels: - - "B1" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:02:35" - pdd_duration: "623 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17696" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24788" - rtp_play_time: "00h02m35s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "7737" - rtp_pkts_tx: "7734" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "20" - rtp_acom_db: "48" - - call_idx: "88" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "919 (2118)" - calling_number: "474682949" - called_number: "27647820" - setup_time: "11/01/23 18h33m19s" - connexion_time: "11/01/23 18h33m22s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:26" - pdd_duration: "208 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17698" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "25580" - rtp_play_time: "00h00m26s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "1327" - rtp_pkts_tx: "1325" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "29" - rtp_acom_db: "53" - - call_idx: "89" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "917 (2116)" - calling_number: "477893610" - called_number: "27640675" - setup_time: "11/01/23 18h31m43s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "168 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "90" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "918 (2117)" - calling_number: "466290063" - called_number: "27642121" - setup_time: "11/01/23 18h32m42s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "62 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "91" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "915 (2114)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h31m13s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "92" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "914 (2113)" - calling_number: "474746373" - called_number: "27641623" - setup_time: "11/01/23 18h28m50s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "259 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "93" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "909 (2108)" - calling_number: "495603607" - called_number: "27640631" - setup_time: "11/01/23 18h18m39s" - connexion_time: "11/01/23 18h18m49s" - b_channels: - - "B2" - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:09:59" - pdd_duration: "308 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17692" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "22596" - rtp_play_time: "00h09m59s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "29964" - rtp_pkts_tx: "29961" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "62" - - call_idx: "94" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "906 (2105)" - calling_number: "479090112" - called_number: "27647043" - setup_time: "11/01/23 18h17m36s" - connexion_time: "11/01/23 18h17m38s" - b_channels: - - "B1" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:08:49" - pdd_duration: "325 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17688" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26678" - rtp_play_time: "00h08m49s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "26453" - rtp_pkts_tx: "26448" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "19" - rtp_acom_db: "42" - - call_idx: "95" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "913 (2112)" - calling_number: "484156371" - called_number: "27641826" - setup_time: "11/01/23 18h26m06s" - connexion_time: "---" - b_channels: [] - disconnected_by: "remote voip: 0 (UDP)" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:00" - pdd_duration: "102 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "96" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "912 (2111)" - calling_number: "460215424" - called_number: "27645555" - setup_time: "11/01/23 18h24m30s" - connexion_time: "11/01/23 18h24m38s" - b_channels: - - "B2" - disconnected_by: "local port: 5/1" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:00:18" - pdd_duration: "392 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17694" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "26426" - rtp_play_time: "00h00m18s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "788" - rtp_pkts_tx: "905" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.33" - rtp_mos_lq: "4.39" - rtp_erl_db: "21" - rtp_acom_db: "59" - - call_idx: "97" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "907 (2106)" - calling_number: "465195352" - called_number: "27641111" - setup_time: "11/01/23 18h17m50s" - connexion_time: "11/01/23 18h17m50s" - b_channels: - - "B1" - disconnected_by: "local port: 5/0" - disconnect_cause_code: "16" - disconnect_cause_text: "Normal call clearing" - call_duration: "00:06:31" - pdd_duration: "47 msec" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "94.105.56.196" - rtp_src_port: "17690" - rtp_dst_ip: "212.224.167.110" - rtp_dst_port: "24994" - rtp_play_time: "00h06m31s" - rtp_tx_coder: "G711 A Law / 20 ms" - rtp_rx_coder: "G711 A Law" - rtp_pkts_rx: "19530" - rtp_pkts_tx: "19541" - rtp_pkts_lost_rx: "0" - rtp_pkts_lost_tx: "0" - rtp_excessive_jitter: "0" - rtp_mos_cq: "4.34" - rtp_mos_lq: "4.39" - rtp_erl_db: "25" - rtp_acom_db: "63" - - call_idx: "98" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/0" - call_id: "911 (2110)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h23m50s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/0" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "99" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "910 (2109)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h21m34s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" - - call_idx: "100" - calling_from: "remote voip: 0 (UDP)" - calling_to: "local port: 5/1" - call_id: "908 (2107)" - calling_number: "27207387" - called_number: "27640314" - setup_time: "11/01/23 18h18m04s" - connexion_time: "---" - b_channels: [] - disconnected_by: "local port: 5/1" - disconnect_cause_code: "27" - disconnect_cause_text: "Destination out of order" - call_duration: "00:00:00" - pdd_duration: "-" - advice_of_charge: "free" - call_priority: "100" - rtp_src_ip: "" - rtp_src_port: "" - rtp_dst_ip: "" - rtp_dst_port: "" - rtp_play_time: "" - rtp_tx_coder: "" - rtp_rx_coder: "" - rtp_pkts_rx: "" - rtp_pkts_tx: "" - rtp_pkts_lost_rx: "" - rtp_pkts_lost_tx: "" - rtp_excessive_jitter: "" - rtp_mos_cq: "" - rtp_mos_lq: "" - rtp_erl_db: "" - rtp_acom_db: "" diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw deleted file mode 100644 index d9c1dd59b3..0000000000 --- a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.raw +++ /dev/null @@ -1,36 +0,0 @@ -GigabitEthernet 0/0 - Group 1 - State is master - Version 2 - Virtual IP address 172.16.0.240, Netmask 255.255.255.0 (1) - Virtual MAC address is 00:00:5e:00:01:01 - Advertisement interval is 5 sec - Preemption is enabled, min delay is 15 sec - Priority 105 - Master router is 172.16.0.241 (local), priority is 105 -GigabitEthernet 0/1 - Group 3 - State is master - Version 2 - Virtual IP address 172.16.3.240, Netmask 255.255.255.0 (1) - Virtual MAC address is 00:00:5e:00:01:03 - Advertisement interval is 5 sec - Preemption is enabled, min delay is 15 sec - Priority 105 - Master router is 172.16.3.241 (local), priority is 105 -GigabitEthernet 0/2 - Group 2 - State is master - Version 2 - Virtual IP address 172.16.5.240, Netmask 255.255.255.0 (1) - Virtual MAC address is 00:00:5e:00:01:02 - Advertisement interval is 5 sec - Preemption is enabled, min delay is 15 sec - Priority 105 - Master router is 172.16.5.241 (local), priority is 105 -GigabitEthernet 0/3 - Group 4 - State is master - Version 2 - Virtual IP address 172.16.6.240, Netmask 255.255.255.0 (1) - Virtual MAC address is 00:00:5e:00:01:04 - Advertisement interval is 5 sec - Preemption is enabled, min delay is 15 sec - Priority 105 - Master router is 172.16.6.241 (local), priority is 105 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml deleted file mode 100644 index 5479e6d7d0..0000000000 --- a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb320.yml +++ /dev/null @@ -1,58 +0,0 @@ ---- -parsed_sample: - - iface: "GigabitEthernet 0/0" - group: "1" - state: "master" - version: "2" - virtualip: "172.16.0.240" - virtualnetmask: "255.255.255.0" - virtual_mac: "00:00:5e:00:01:01" - adv_interval: "5" - preempt: "enabled" - preempt_min_delay: "15" - priority: "105" - master_ip: "172.16.0.241" - master_priority: "105" - master_state: "local" - - iface: "GigabitEthernet 0/1" - group: "3" - state: "master" - version: "2" - virtualip: "172.16.3.240" - virtualnetmask: "255.255.255.0" - virtual_mac: "00:00:5e:00:01:03" - adv_interval: "5" - preempt: "enabled" - preempt_min_delay: "15" - priority: "105" - master_ip: "172.16.3.241" - master_priority: "105" - master_state: "local" - - iface: "GigabitEthernet 0/2" - group: "2" - state: "master" - version: "2" - virtualip: "172.16.5.240" - virtualnetmask: "255.255.255.0" - virtual_mac: "00:00:5e:00:01:02" - adv_interval: "5" - preempt: "enabled" - preempt_min_delay: "15" - priority: "105" - master_ip: "172.16.5.241" - master_priority: "105" - master_state: "local" - - iface: "GigabitEthernet 0/3" - group: "4" - state: "master" - version: "2" - virtualip: "172.16.6.240" - virtualnetmask: "255.255.255.0" - virtual_mac: "00:00:5e:00:01:04" - adv_interval: "5" - preempt: "enabled" - preempt_min_delay: "15" - priority: "105" - master_ip: "172.16.6.241" - master_priority: "105" - master_state: "local" diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw deleted file mode 100644 index d57a548933..0000000000 --- a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.raw +++ /dev/null @@ -1,9 +0,0 @@ -GigabitEthernet 0/0 - Group 1 - State is backup - Version 2 - Virtual IP address 192.168.140.1, Netmask 255.255.255.0 (0) - Virtual MAC address is 00:00:5e:00:01:01 - Advertisement interval is 5 sec - Preemption is enabled, min delay is 15 sec - Priority 100 - Master router is 192.168.140.2 (remote), priority is 105 \ No newline at end of file diff --git a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml b/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml deleted file mode 100644 index 3426ae5143..0000000000 --- a/tests/oneaccess_oneos/show_vrrp_interface/show_vrrp_interface.lbb4g.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -parsed_sample: - - iface: "GigabitEthernet 0/0" - group: "1" - state: "backup" - version: "2" - virtualip: "192.168.140.1" - virtualnetmask: "255.255.255.0" - virtual_mac: "00:00:5e:00:01:01" - adv_interval: "5" - preempt: "enabled" - preempt_min_delay: "15" - priority: "100" - master_ip: "192.168.140.2" - master_priority: "105" - master_state: "remote" From 12ec153be4feb7782d783b3fe83b4e925380770f Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 17 Jul 2024 10:30:08 -0400 Subject: [PATCH 31/31] Fix tests --- ntc_templates/templates/index | 2 +- ...neaccess_oneos_show_ip_bgp_summary.textfsm | 23 +-- ..._show_ip_helper-address_statistics.textfsm | 12 -- ...cess_oneos_show_ip_interface_brief.textfsm | 13 +- ...neaccess_oneos_show_ip_prefix-list.textfsm | 9 +- .../oneaccess_oneos_show_ip_ssh.textfsm | 13 +- .../oneaccess_oneos_show_ip_vrf_brief.textfsm | 12 ++ .../show_ip_bgp_summary.oneos5.raw | 2 +- .../show_ip_bgp_summary.oneos5.yml | 18 +- .../show_ip_bgp_summary.oneos6.raw | 2 +- .../show_ip_bgp_summary.oneos6.yml | 36 ++-- .../show_ip_interface_brief.oneos5.raw | 2 +- .../show_ip_interface_brief.oneos5.yml | 160 ++++++++--------- .../show_ip_interface_brief.oneos6.raw | 2 +- .../show_ip_interface_brief.oneos6.yml | 168 +++++++++--------- .../show_ip_prefix-list.oneos5.yml | 36 ++-- .../show_ip_prefix-list.oneos6.yml | 36 ++-- .../show_ip_ssh/show_ip_ssh.oneos5.raw | 2 +- .../show_ip_ssh/show_ip_ssh.oneos5.yml | 2 +- ..._ssh.oneos6.raw => show_ip_ssh.oneos6.raw} | 0 ..._ssh.oneos6.yml => show_ip_ssh.oneos6.yml} | 2 +- .../show_ip_vrf_brief.oneos5.raw | 7 + .../show_ip_vrf_brief.oneos5.yml | 16 ++ .../show_ip_vrf_brief.oneos6.raw | 8 + .../show_ip_vrf_brief.oneos6.yml | 29 +++ 25 files changed, 338 insertions(+), 274 deletions(-) delete mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm create mode 100644 ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm rename tests/oneaccess_oneos/show_ip_ssh/{show_ips_ssh.oneos6.raw => show_ip_ssh.oneos6.raw} (100%) rename tests/oneaccess_oneos/show_ip_ssh/{show_ips_ssh.oneos6.yml => show_ip_ssh.oneos6.yml} (92%) create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw create mode 100644 tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index 134dcf51bd..962b7b2bfd 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -684,10 +684,10 @@ mikrotik_routeros_user_active_print.textfsm, .*, mikrotik_routeros, [[/]]us[[er] mikrotik_routeros_ip_address_print.textfsm, .*, mikrotik_routeros, [[/]]ip ad[[dress]] p[[rint]] mikrotik_routeros_ping.textfsm, .*, mikrotik_routeros, [[/]]pin[[g]] -oneaccess_oneos_show_ip_helper-address_statistics.textfsm, .*, oneaccess_oneos, sh[[ow]] ip helper-address statistics oneaccess_oneos_show_ip_interface_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip int[[erface]] brief oneaccess_oneos_show_ip_bgp_summary.textfsm, .*, oneaccess_oneos, sh[[ow]] ip bgp summary oneaccess_oneos_show_ip_prefix-list.textfsm, .*, oneaccess_oneos, sh[[ow]] ip prefix-list +oneaccess_oneos_show_ip_vrf_brief.textfsm, .*, oneaccess_oneos, sh[[ow]] ip vrf brief oneaccess_oneos_show_ip_ssh.textfsm, .*, oneaccess_oneos, sh[[ow]] ip ssh paloalto_panos_show_running_security-policy.textfsm, .*, paloalto_panos, sh[[ow]] runn[[ing]] security[[-policy]] diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm index 478a167fc8..7c284e8d2d 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_bgp_summary.textfsm @@ -7,16 +7,16 @@ Value Filldown PEERS (\d+) Value Filldown BGP_MEMORY (\d+\s\S+) Value Filldown AS_PATH_ENTRIES (\d+) Value Filldown COMMUNTIY_ENTRIES (\d+) -Value BGP_NEIGH (\d+\.\d+\.\d+\.\d+) -Value ADDR_FAMILY (\d+) -Value NEIGH_AS (\d+) -Value MSG_RCVD (\d+) -Value MSG_SENT (\d+) -Value TBL_VER (\d+) -Value IN_Q (\d+) -Value OUT_Q (\d+) +Value BGP_NEIGHBOR (\d+\.\d+\.\d+\.\d+) +Value ADDRESS_FAMILY (\d+) +Value NEIGHBOR_AS (\d+) +Value MESSAGE_RECEIVED (\d+) +Value MESSAGE_SENT (\d+) +Value TABLE_VERSION (\d+) +Value IN_QUEUE (\d+) +Value OUT_QUEUE (\d+) Value UP_DOWN (\S+?) -Value STATE_PFXRCD (\S+\s+\S+|\S+) +Value STATE_PREFIX_RECEIVED (\S+\s+\S+|\S+) Value Fillup TOTAL_NEIGHBORS (\d+) Start @@ -25,9 +25,10 @@ Start ^Peers\s${PEERS},\susing\s${BGP_MEMORY}\sof\smemory ^${AS_PATH_ENTRIES}\sBGP\sAS-PATH\sentries ^${COMMUNTIY_ENTRIES}\sBGP\scommunity\sentries - ^Neighbor\s - ^${BGP_NEIGH}\s+${ADDR_FAMILY}\s+${NEIGH_AS}\s+${MSG_RCVD}\s+${MSG_SENT}\s+${TBL_VER}\s+${IN_Q}\s+${OUT_Q}\s+${UP_DOWN}\s+${STATE_PFXRCD} -> Record + ^Neighbor\s+V\s+AS\s+MsgRcvd\s+MsgSent\s+TblVer\s+InQ\s+OutQ\s+Up/Down\s+State/PfxRcd\s*$$ + ^${BGP_NEIGHBOR}\s+${ADDRESS_FAMILY}\s+${NEIGHBOR_AS}\s+${MESSAGE_RECEIVED}\s+${MESSAGE_SENT}\s+${TABLE_VERSION}\s+${IN_QUEUE}\s+${OUT_QUEUE}\s+${UP_DOWN}\s+${STATE_PREFIX_RECEIVED} -> Record ^Total\snumber\sof\sneighbors\s${TOTAL_NEIGHBORS} ^\s*$$ + ^. -> Error EOF diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm deleted file mode 100644 index 4d8423ed1a..0000000000 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_helper-address_statistics.textfsm +++ /dev/null @@ -1,12 +0,0 @@ -Value Required INTERFACE (.*) -Value List HELPERS (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) - -Start - ^.*:\s\d+\sbroadcasts\sforwarded -> Continue.Record - ^${INTERFACE}:\s\d+\sbroadcasts\sforwarded - ^\s*${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){1}${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){2}${HELPERS} -> Continue - ^(\s*\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\s+){3}${HELPERS} - ^.*$$ - ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm index d36f44103a..b1fc09d9ef 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_interface_brief.textfsm @@ -1,11 +1,12 @@ -Value INTF (\S+(?:\s\S+)?) -Value IPADDR (\S+) +Value INTERFACE (\S+(?:\s\S+)?) +Value IP_ADDRESS (\S+) Value OK (YES|NO|Yes|No|yes|no) Value STATUS (up|down|administratively down) -Value PROTO (up|down) -Value IFDESCR (.*) +Value PROTOCOL (up|down) +Value DESCRIPTION (.*?) Start - ^${INTF}\s+${IPADDR}\s+${OK}\s+${STATUS}\s+${PROTO}\s+${IFDESCR} -> Record - ^.*$$ + ^Interface\s+IP[-\s]Address\s+OK\?\s+Status\s+Protocol\s+Description\s*$$ + ^${INTERFACE}\s+${IP_ADDRESS}\s+${OK}\s+${STATUS}\s+${PROTOCOL}\s+${DESCRIPTION}\s*$$ -> Record + ^\s*$$ ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm index d089337c53..3beb97c137 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_prefix-list.textfsm @@ -1,7 +1,7 @@ -Value Required,Filldown PROTCOL (\S+) +Value Required,Filldown PROTOCOL (\S+) Value Required,Filldown NAME (\S+) Value Filldown DESCRIPTION (.*) -Value Required SEQ (\d+) +Value Required SEQUENCE (\d+) Value ACTION (\S+) Value NETWORK ([0-9a-f:\.]+|any) Value NETMASK (\d+) @@ -9,9 +9,8 @@ Value LE (\d+) Value GE (\d+) Start - ^${PROTCOL}:\sip\s+prefix-list\s+${NAME} + ^${PROTOCOL}:\sip\s+prefix-list\s+${NAME} ^\s+Description:\s${DESCRIPTION} - ^\s+seq\s+${SEQ}\s+${ACTION}\s+${NETWORK}(/${NETMASK}|)(?:\s+ge\s+${GE}|)(?:\s+le\s+${LE}|)\s*$$ -> Record + ^\s+seq\s+${SEQUENCE}\s+${ACTION}\s+${NETWORK}(/${NETMASK}|)(?:\s+ge\s+${GE}|)(?:\s+le\s+${LE}|)\s*$$ -> Record ^\s*$$ ^.+ -> Error - diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm index 4b7eb73d48..1298d168c5 100644 --- a/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_ssh.textfsm @@ -1,6 +1,6 @@ Value SSH (\S+) Value SCP (\S+) -Value ENCR (ssh\-\S+|\S+) +Value ENCRYPTION (ssh\-\S+|\S+) Value BITS (\d+) Value FINGERPRINT ([a-f0-9:]+) Value MAX_SESSIONS (\d+) @@ -18,11 +18,14 @@ Start ^Session\stimeout\s${SESSION_TIMEOUT}\ssecs ^Maximum\snumber\sof\ssessions\s${MAX_SESSIONS} ^Maximum\snumber\sof\schannels\sper\ssession\s${MAX_CHANNELS_SESSION} + ^Authorized\s+public\s+keys: + ^none ^Key\sfingerprint -> FINGERPRINT - ^.*$$ + ^\s*$$ ^. -> Error FINGERPRINT - ^${ENCR}\s${BITS}\s${FINGERPRINT}\s*$$ -> Start - ^${BITS}\sMD5:${FINGERPRINT}.*\s\(${ENCR}\)$$ -> Start - + ^${ENCRYPTION}\s${BITS}\s${FINGERPRINT}\s*$$ -> Start + ^${BITS}\sMD5:${FINGERPRINT}.*\s\(${ENCRYPTION}\)$$ -> Start + ^\s*$$ + ^. -> Error diff --git a/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm b/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm new file mode 100644 index 0000000000..e4ef0b24c6 --- /dev/null +++ b/ntc_templates/templates/oneaccess_oneos_show_ip_vrf_brief.textfsm @@ -0,0 +1,12 @@ +Value VRF (\w+) +Value VRF_ID (\d+) +Value List INTERFACES ([\w\-]+\s?[\w\/\.]+) + +Start + ^\s*VRF\s+Name\s+VRF\s+I[Dd]\s+Interfaces\s*$$ + ^\s?\w+\s+\d+ -> Continue.Record + ^\s?${VRF}?\s+${VRF_ID}\s+${INTERFACES}$$ + ^\s?${VRF}?\s+${VRF_ID}\s*$$ + ^\s+${INTERFACES}$$ + ^\s*$$ + ^. -> Error diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw index ed928fdf1c..4898598f52 100644 --- a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.raw @@ -5,4 +5,4 @@ BGP router identifier 194.5.12.148, local AS number 65000, vrf (null) Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd 194.5.163.29 4 14737 13360 12237 34 0 0 4d05h57m 28 -Total number of neighbors 1 \ No newline at end of file +Total number of neighbors 1 diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml index a492e63452..4028770603 100644 --- a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos5.yml @@ -9,14 +9,14 @@ parsed_sample: bgp_memory: "" as_path_entries: "6" communtiy_entries: "0" - bgp_neigh: "194.5.163.29" - addr_family: "4" - neigh_as: "14737" - msg_rcvd: "13360" - msg_sent: "12237" - tbl_ver: "34" - in_q: "0" - out_q: "0" + bgp_neighbor: "194.5.163.29" + address_family: "4" + neighbor_as: "14737" + message_received: "13360" + message_sent: "12237" + table_version: "34" + in_queue: "0" + out_queue: "0" up_down: "4d05h57m" - state_pfxrcd: "28" + state_prefix_received: "28" total_neighbors: "1" diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw index cad0dfe0e1..b12bc87083 100644 --- a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.raw @@ -6,4 +6,4 @@ Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd 192.4.21.254 4 61400 38962 26256 78123 0 0 20:35:48 881 192.4.91.254 4 61400 38876 26260 78123 0 0 20:35:48 881 -Total number of neighbors 2 \ No newline at end of file +Total number of neighbors 2 diff --git a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml index d7b92c65d1..cea8e23d45 100644 --- a/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml +++ b/tests/oneaccess_oneos/show_ip_bgp_summary/show_ip_bgp_summary.oneos6.yml @@ -9,16 +9,16 @@ parsed_sample: bgp_memory: "5128 bytes" as_path_entries: "" communtiy_entries: "" - bgp_neigh: "192.4.21.254" - addr_family: "4" - neigh_as: "61400" - msg_rcvd: "38962" - msg_sent: "26256" - tbl_ver: "78123" - in_q: "0" - out_q: "0" + bgp_neighbor: "192.4.21.254" + address_family: "4" + neighbor_as: "61400" + message_received: "38962" + message_sent: "26256" + table_version: "78123" + in_queue: "0" + out_queue: "0" up_down: "20:35:48" - state_pfxrcd: "881" + state_prefix_received: "881" total_neighbors: "2" - router_id: "1.105.35.17" local_as: "65000" @@ -29,14 +29,14 @@ parsed_sample: bgp_memory: "5128 bytes" as_path_entries: "" communtiy_entries: "" - bgp_neigh: "192.4.91.254" - addr_family: "4" - neigh_as: "61400" - msg_rcvd: "38876" - msg_sent: "26260" - tbl_ver: "78123" - in_q: "0" - out_q: "0" + bgp_neighbor: "192.4.91.254" + address_family: "4" + neighbor_as: "61400" + message_received: "38876" + message_sent: "26260" + table_version: "78123" + in_queue: "0" + out_queue: "0" up_down: "20:35:48" - state_pfxrcd: "881" + state_prefix_received: "881" total_neighbors: "2" diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw index 9b3e4c9274..045be80d64 100644 --- a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.raw @@ -18,4 +18,4 @@ Bvi 200 94.105.16.129 YES up down *IPE dot11radio 0/0.1 YES up up dot11radio 0/0.2 YES up up Null 0 YES up up -dot11radio 0/0 YES up up \ No newline at end of file +dot11radio 0/0 YES up up diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml index f5d35e818e..8f5ca00c60 100644 --- a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos5.yml @@ -1,126 +1,126 @@ --- parsed_sample: - - intf: "GigabitEthernet 0/0" - ipaddr: "" + - interface: "GigabitEthernet 0/0" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** PBXPLUG 212 - BACKUP TEST - 94.105.1.119 ***" - - intf: "GigabitEthernet 0/1" - ipaddr: "" + protocol: "up" + description: "*** PBXPLUG 212 - BACKUP TEST - 94.105.1.119 ***" + - interface: "GigabitEthernet 0/1" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** PBXPLUG 401 - BACKUP TEST - 94.105.34.2 ***" - - intf: "GigabitEthernet 0/2" - ipaddr: "" + protocol: "up" + description: "*** PBXPLUG 401 - BACKUP TEST - 94.105.34.2 ***" + - interface: "GigabitEthernet 0/2" + ip_address: "" ok: "YES" status: "up" - proto: "down" - ifdescr: "*IPERF*" - - intf: "GigabitEthernet 0/3" - ipaddr: "" + protocol: "down" + description: "*IPERF*" + - interface: "GigabitEthernet 0/3" + ip_address: "" ok: "YES" status: "up" - proto: "down" - ifdescr: "" - - intf: "FastEthernet 1/0" - ipaddr: "" + protocol: "down" + description: "" + - interface: "FastEthernet 1/0" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** WAN INTERFACE ***" - - intf: "FastEthernet 1/0.1" - ipaddr: "192.168.1.2" + protocol: "up" + description: "*** WAN INTERFACE ***" + - interface: "FastEthernet 1/0.1" + ip_address: "192.168.1.2" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** management A-modem (modem ip = 192.168.1.1) ***" - - intf: "FastEthernet 1/0.10" - ipaddr: "" + protocol: "up" + description: "*** management A-modem (modem ip = 192.168.1.1) ***" + - interface: "FastEthernet 1/0.10" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "up" + description: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ \ - Loopback503941 ***" - - intf: "Dialer 1" - ipaddr: "94.105.163.30" + - interface: "Dialer 1" + ip_address: "94.105.163.30" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "up" + description: "*** VT096910 - GS20170330107 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ \ - Loopback503941" - - intf: "Dialer 2" - ipaddr: "" + - interface: "Dialer 2" + ip_address: "" ok: "NO" status: "administratively down" - proto: "down" - ifdescr: "*** VT108085 - GS20190640686 - CI - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "down" + description: "*** VT108085 - GS20190640686 - CI - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ \ - LOOPBACK 503899 ***" - - intf: "Dialer 3" - ipaddr: "94.104.254.138" + - interface: "Dialer 3" + ip_address: "94.104.254.138" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** DATA VDSL shared VLAN - GSID0004_MAIN - CI TEST - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "up" + description: "*** DATA VDSL shared VLAN - GSID0004_MAIN - CI TEST - NOS-EMLP-01/ANT-EMLP-01\ \ - LOOPBACK 500000***" - - intf: "Loopback 0" - ipaddr: "127.0.0.1" + - interface: "Loopback 0" + ip_address: "127.0.0.1" ok: "YES" status: "up" - proto: "up" - ifdescr: "" - - intf: "Loopback 1" - ipaddr: "94.105.12.148" + protocol: "up" + description: "" + - interface: "Loopback 1" + ip_address: "94.105.12.148" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** VT096910 - GS20170330107 ***" - - intf: "Loopback 777" - ipaddr: "94.107.245.249" + protocol: "up" + description: "*** VT096910 - GS20170330107 ***" + - interface: "Loopback 777" + ip_address: "94.107.245.249" ok: "YES" status: "up" - proto: "up" - ifdescr: "" - - intf: "Bvi 10" - ipaddr: "192.168.10.1" + protocol: "up" + description: "" + - interface: "Bvi 10" + ip_address: "192.168.10.1" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** VT108085 - GS20190640686 - CI ACCESS ***" - - intf: "Bvi 100" - ipaddr: "192.168.100.1" + protocol: "up" + description: "*** VT108085 - GS20190640686 - CI ACCESS ***" + - interface: "Bvi 100" + ip_address: "192.168.100.1" ok: "YES" status: "up" - proto: "up" - ifdescr: "*** TEST MAARTEN - BACKUP SCRIPT PBXPLUG ***" - - intf: "Bvi 200" - ipaddr: "94.105.16.129" + protocol: "up" + description: "*** TEST MAARTEN - BACKUP SCRIPT PBXPLUG ***" + - interface: "Bvi 200" + ip_address: "94.105.16.129" ok: "YES" status: "up" - proto: "down" - ifdescr: "*IPERF*" - - intf: "dot11radio 0/0.1" - ipaddr: "" + protocol: "down" + description: "*IPERF*" + - interface: "dot11radio 0/0.1" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "" - - intf: "dot11radio 0/0.2" - ipaddr: "" + protocol: "up" + description: "" + - interface: "dot11radio 0/0.2" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "" - - intf: "Null 0" - ipaddr: "" + protocol: "up" + description: "" + - interface: "Null 0" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "" - - intf: "dot11radio 0/0" - ipaddr: "" + protocol: "up" + description: "" + - interface: "dot11radio 0/0" + ip_address: "" ok: "YES" status: "up" - proto: "up" - ifdescr: "" + protocol: "up" + description: "" diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw index a021349e0f..a99e1c1e3d 100644 --- a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.raw @@ -19,4 +19,4 @@ Tunnel 21 94.105.9.192 Yes up up Tunnel 91 94.105.9.192 Yes up up GRE tunnel to NOS-IPSEC-02 Dialer 1 Yes up down * VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 * Dialer 3 No administratively down down * VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01 - Loopback503210 * -Dialer 32 Yes up down \ No newline at end of file +Dialer 32 Yes up down diff --git a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml index 52e77de6e6..4c3558382e 100644 --- a/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml +++ b/tests/oneaccess_oneos/show_ip_interface_brief/show_ip_interface_brief.oneos6.yml @@ -1,132 +1,132 @@ --- parsed_sample: - - intf: "GigabitEthernet 0/0" - ipaddr: "94.107.208.169" + - interface: "GigabitEthernet 0/0" + ip_address: "94.107.208.169" ok: "Yes" status: "up" - proto: "down" - ifdescr: "*** LAN INTERFACE ***" - - intf: "GigabitEthernet 0/1" - ipaddr: "20.20.20.1" + protocol: "down" + description: "*** LAN INTERFACE ***" + - interface: "GigabitEthernet 0/1" + ip_address: "20.20.20.1" ok: "Yes" status: "up" - proto: "up" - ifdescr: "*** LAB_C891F - GigabitEthernet0 ***" - - intf: "GigabitEthernet 0/2" - ipaddr: "" + protocol: "up" + description: "*** LAB_C891F - GigabitEthernet0 ***" + - interface: "GigabitEthernet 0/2" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "" - - intf: "GigabitEthernet 0/3" - ipaddr: "10.100.1.254" + protocol: "down" + description: "" + - interface: "GigabitEthernet 0/3" + ip_address: "10.100.1.254" ok: "Yes" status: "up" - proto: "up" - ifdescr: "TO LBB156 " - - intf: "GigabitEthernet 1/0" - ipaddr: "" + protocol: "up" + description: "TO LBB156" + - interface: "GigabitEthernet 1/0" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "*** WAN INTERFACE ***" - - intf: "GigabitEthernet 1/0.1" - ipaddr: "" + protocol: "down" + description: "*** WAN INTERFACE ***" + - interface: "GigabitEthernet 1/0.1" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "" - - intf: "GigabitEthernet 1/0.10" - ipaddr: "" + protocol: "down" + description: "" + - interface: "GigabitEthernet 1/0.10" + ip_address: "" ok: "No" status: "administratively down" - proto: "down" - ifdescr: "" - - intf: "GigabitEthernet 1/0.200" - ipaddr: "" + protocol: "down" + description: "" + - interface: "GigabitEthernet 1/0.200" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ + protocol: "down" + description: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ \ - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 *" - - intf: "GigabitEthernet 1/0.300" - ipaddr: "" + - interface: "GigabitEthernet 1/0.300" + ip_address: "" ok: "No" status: "administratively down" - proto: "down" - ifdescr: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "down" + description: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ \ - Loopback503210 *" - - intf: "Bvi 300" - ipaddr: "94.107.224.226" + - interface: "Bvi 300" + ip_address: "94.107.224.226" ok: "Yes" status: "up" - proto: "down" - ifdescr: "" - - intf: "Virtual-Ethernet 1" - ipaddr: "10.94.50.22" + protocol: "down" + description: "" + - interface: "Virtual-Ethernet 1" + ip_address: "10.94.50.22" ok: "Yes" status: "up" - proto: "up" - ifdescr: "* Mobile access 4G - UNTRUST - CORPORATE INTERNET - 4G *" - - intf: "Null 0" - ipaddr: "" + protocol: "up" + description: "* Mobile access 4G - UNTRUST - CORPORATE INTERNET - 4G *" + - interface: "Null 0" + ip_address: "" ok: "Yes" status: "up" - proto: "up" - ifdescr: "Null 0 " - - intf: "Loopback 0" - ipaddr: "" + protocol: "up" + description: "Null 0" + - interface: "Loopback 0" + ip_address: "" ok: "Yes" status: "up" - proto: "up" - ifdescr: "" - - intf: "Loopback 1" - ipaddr: "94.105.9.192" + protocol: "up" + description: "" + - interface: "Loopback 1" + ip_address: "94.105.9.192" ok: "Yes" status: "up" - proto: "up" - ifdescr: "" - - intf: "Loopback 21" - ipaddr: "192.4.21.238" + protocol: "up" + description: "" + - interface: "Loopback 21" + ip_address: "192.4.21.238" ok: "Yes" status: "up" - proto: "up" - ifdescr: "*** Mobile access 4G - BGP PEER LOOPBACK ANT ***" - - intf: "Loopback 91" - ipaddr: "192.4.91.238" + protocol: "up" + description: "*** Mobile access 4G - BGP PEER LOOPBACK ANT ***" + - interface: "Loopback 91" + ip_address: "192.4.91.238" ok: "Yes" status: "up" - proto: "up" - ifdescr: "*** Mobile access 4G - BGP PEER LOOPBACK NOS ***" - - intf: "Tunnel 21" - ipaddr: "94.105.9.192" + protocol: "up" + description: "*** Mobile access 4G - BGP PEER LOOPBACK NOS ***" + - interface: "Tunnel 21" + ip_address: "94.105.9.192" ok: "Yes" status: "up" - proto: "up" - ifdescr: "GRE tunnel to ANT-IPSEC-02 - NO IPSEC" - - intf: "Tunnel 91" - ipaddr: "94.105.9.192" + protocol: "up" + description: "GRE tunnel to ANT-IPSEC-02 - NO IPSEC" + - interface: "Tunnel 91" + ip_address: "94.105.9.192" ok: "Yes" status: "up" - proto: "up" - ifdescr: "GRE tunnel to NOS-IPSEC-02" - - intf: "Dialer 1" - ipaddr: "" + protocol: "up" + description: "GRE tunnel to NOS-IPSEC-02" + - interface: "Dialer 1" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ + protocol: "down" + description: "* VT108085 - - GS20190640686 - CORPORATE INTERNET - VDSL2 SHARED VLAN\ \ - NOS-EMLP-01/ANT-EMLP-01 - LOOPBACK 503899 *" - - intf: "Dialer 3" - ipaddr: "" + - interface: "Dialer 3" + ip_address: "" ok: "No" status: "administratively down" - proto: "down" - ifdescr: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ + protocol: "down" + description: "* VT096908 - - GS20170330105 - IP-VPN - VDSL2 SHARED VLAN - NOS-EMLP-01/ANT-EMLP-01\ \ - Loopback503210 *" - - intf: "Dialer 32" - ipaddr: "" + - interface: "Dialer 32" + ip_address: "" ok: "Yes" status: "up" - proto: "down" - ifdescr: "" + protocol: "down" + description: "" diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml index 7c58771bb6..46e2515577 100644 --- a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos5.yml @@ -1,81 +1,81 @@ --- parsed_sample: - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" le: "" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" le: "" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" diff --git a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml index 7c58771bb6..46e2515577 100644 --- a/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml +++ b/tests/oneaccess_oneos/show_ip_prefix-list/show_ip_prefix-list.oneos6.yml @@ -1,81 +1,81 @@ --- parsed_sample: - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "RIP" + - protocol: "RIP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" le: "" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "OSPF" + - protocol: "OSPF" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" le: "" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "5" + sequence: "5" action: "permit" network: "192.4.21.0" netmask: "24" le: "32" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "10" + sequence: "10" action: "permit" network: "192.4.91.0" netmask: "24" le: "32" ge: "" - - protcol: "BGP" + - protocol: "BGP" name: "DENY-BGP:" description: "** do not advertise to BGP neighbors **" - seq: "15" + sequence: "15" action: "deny" network: "any" netmask: "" diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw index 79a6e3aa0d..f805882468 100644 --- a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.raw @@ -8,4 +8,4 @@ Authorized public keys: none Key fingerprint: ssh-rsa 4096 bc:f8:c3:67:8f:de:f3:ec:5c:29:b5:a4:e4:25:de:7a -SCP server enabled \ No newline at end of file +SCP server enabled diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml index a2ede5bc51..2244fc3619 100644 --- a/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos5.yml @@ -2,7 +2,7 @@ parsed_sample: - ssh: "Enabled" scp: "enabled" - encr: "ssh-rsa" + encryption: "ssh-rsa" bits: "4096" fingerprint: "bc:f8:c3:67:8f:de:f3:ec:5c:29:b5:a4:e4:25:de:7a" max_sessions: "5" diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos6.raw similarity index 100% rename from tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.raw rename to tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos6.raw diff --git a/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos6.yml similarity index 92% rename from tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml rename to tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos6.yml index 83bf41bc09..c519fbb738 100644 --- a/tests/oneaccess_oneos/show_ip_ssh/show_ips_ssh.oneos6.yml +++ b/tests/oneaccess_oneos/show_ip_ssh/show_ip_ssh.oneos6.yml @@ -2,7 +2,7 @@ parsed_sample: - ssh: "Enabled" scp: "disabled" - encr: "RSA" + encryption: "RSA" bits: "4096" fingerprint: "5e:70:36:5a:20:93:14:18:93:04:03:df:f0:72:f4:fc" max_sessions: "5" diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw new file mode 100644 index 0000000000..5a101b499b --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.raw @@ -0,0 +1,7 @@ + VRF Name VRF Id Interfaces + MODEM 1 FastEthernet 1/0.1 + INTERNET 2 Dialer 2 + Dialer 3 + Loopback 777 + Bvi 10 + TEST 3 diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml new file mode 100644 index 0000000000..60a8e0587e --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos5.yml @@ -0,0 +1,16 @@ +--- +parsed_sample: + - vrf: "MODEM" + vrf_id: "1" + interfaces: + - "FastEthernet 1/0.1" + - vrf: "INTERNET" + vrf_id: "2" + interfaces: + - "Dialer 2" + - "Dialer 3" + - "Loopback 777" + - "Bvi 10" + - vrf: "TEST" + vrf_id: "3" + interfaces: [] diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw new file mode 100644 index 0000000000..f5fe34bc04 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.raw @@ -0,0 +1,8 @@ +AUTO_PROVISIONING_0001 5 Dialer 32 +CORPORATE_INTERNET_0001 3 GigabitEthernet 0/0 +MODEM 4 GigabitEthernet 1/0.1 +O_SWOPS_LAB_0001 6 Dialer 3 +TRUST 7 +UNTRUST 2 GigabitEthernet 0/1 + Virtual-Ethernet 1 +Yavuz 8 diff --git a/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml new file mode 100644 index 0000000000..6ca7c26784 --- /dev/null +++ b/tests/oneaccess_oneos/show_ip_vrf_brief/show_ip_vrf_brief.oneos6.yml @@ -0,0 +1,29 @@ +--- +parsed_sample: + - vrf: "AUTO_PROVISIONING_0001" + vrf_id: "5" + interfaces: + - "Dialer 32" + - vrf: "CORPORATE_INTERNET_0001" + vrf_id: "3" + interfaces: + - "GigabitEthernet 0/0" + - vrf: "MODEM" + vrf_id: "4" + interfaces: + - "GigabitEthernet 1/0.1" + - vrf: "O_SWOPS_LAB_0001" + vrf_id: "6" + interfaces: + - "Dialer 3" + - vrf: "TRUST" + vrf_id: "7" + interfaces: [] + - vrf: "UNTRUST" + vrf_id: "2" + interfaces: + - "GigabitEthernet 0/1" + - "Virtual-Ethernet 1" + - vrf: "Yavuz" + vrf_id: "8" + interfaces: []