From 900717092fee08dfcb18791b0e6b1f532c9e1274 Mon Sep 17 00:00:00 2001 From: sfarouq-ext <116093375+sfarouq-ext@users.noreply.github.com> Date: Mon, 27 Jan 2025 15:50:19 +0100 Subject: [PATCH] feat(cyberoam): Add modes ha-status, license, list-vpns & vpn-status (#5335) Add new mode for cyberoam equipment Refs: CTOR-102 Co-authored-by: Roman Morandell <46994680+rmorandell-pgum@users.noreply.github.com> Co-authored-by: omercier --- .gitignore | 2 + .../deb.json | 5 +- .../rpm.json | 5 +- src/network/cyberoam/snmp/mode/hastatus.pm | 191 +++ src/network/cyberoam/snmp/mode/license.pm | 294 ++++ src/network/cyberoam/snmp/mode/listvpns.pm | 232 ++++ src/network/cyberoam/snmp/mode/vpnstatus.pm | 386 ++++++ src/network/cyberoam/snmp/plugin.pm | 18 +- tests/network/cyberoam/snmp/ha-status.robot | 32 + tests/network/cyberoam/snmp/interfaces.robot | 34 + tests/network/cyberoam/snmp/license.robot | 34 + .../cyberoam/snmp/list-interfaces.robot | 40 + tests/network/cyberoam/snmp/list-vpns.robot | 32 + tests/network/cyberoam/snmp/memory.robot | 34 + tests/network/cyberoam/snmp/requests.robot | 39 + tests/network/cyberoam/snmp/services.robot | 32 + .../cyberoam/snmp/slim_sophos.snmpwalk | 1231 +++++++++++++++++ .../cyberoam/snmp/slim_sophos_no_ha.snmpwalk | 1231 +++++++++++++++++ tests/network/cyberoam/snmp/storage.robot | 30 + tests/network/cyberoam/snmp/vpn-status.robot | 40 + tests/resources/spellcheck/stopwords.txt | 9 +- 21 files changed, 3936 insertions(+), 15 deletions(-) create mode 100644 src/network/cyberoam/snmp/mode/hastatus.pm create mode 100644 src/network/cyberoam/snmp/mode/license.pm create mode 100644 src/network/cyberoam/snmp/mode/listvpns.pm create mode 100644 src/network/cyberoam/snmp/mode/vpnstatus.pm create mode 100644 tests/network/cyberoam/snmp/ha-status.robot create mode 100644 tests/network/cyberoam/snmp/interfaces.robot create mode 100644 tests/network/cyberoam/snmp/license.robot create mode 100644 tests/network/cyberoam/snmp/list-interfaces.robot create mode 100644 tests/network/cyberoam/snmp/list-vpns.robot create mode 100644 tests/network/cyberoam/snmp/memory.robot create mode 100644 tests/network/cyberoam/snmp/requests.robot create mode 100644 tests/network/cyberoam/snmp/services.robot create mode 100644 tests/network/cyberoam/snmp/slim_sophos.snmpwalk create mode 100644 tests/network/cyberoam/snmp/slim_sophos_no_ha.snmpwalk create mode 100644 tests/network/cyberoam/snmp/storage.robot create mode 100644 tests/network/cyberoam/snmp/vpn-status.robot diff --git a/.gitignore b/.gitignore index 21c3e1f4b..832e6bb1b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ log.html output.xml report.html +.editorconfig +.idea diff --git a/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json b/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json index 663aaaceb..3eb4dc696 100644 --- a/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json +++ b/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json @@ -1,5 +1,6 @@ { "dependencies": [ - "libsnmp-perl" + "libsnmp-perl", + "libdatetime-format-strptime-perl" ] -} \ No newline at end of file +} diff --git a/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json index 418a331fc..84e108169 100644 --- a/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json +++ b/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json @@ -1,5 +1,6 @@ { "dependencies": [ - "perl(SNMP)" + "perl(SNMP)", + "perl(DateTime::Format::Strptime)" ] -} \ No newline at end of file +} diff --git a/src/network/cyberoam/snmp/mode/hastatus.pm b/src/network/cyberoam/snmp/mode/hastatus.pm new file mode 100644 index 000000000..c1bd9d9c4 --- /dev/null +++ b/src/network/cyberoam/snmp/mode/hastatus.pm @@ -0,0 +1,191 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::cyberoam::snmp::mode::hastatus; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_status_output { + my ($self, %options) = @_; + + my $msg = "HA is '" . $self->{result_values}->{hastatus} . "' - "; + $msg .= "Current HA State: '" . $self->{result_values}->{hastate} . "' - "; + $msg .= "Peer HA State: '" . $self->{result_values}->{peer_hastate} . "' - "; + $msg .= "HA Port: '" . $self->{result_values}->{ha_port} . "' - "; + $msg .= "HA IP: '" . $self->{result_values}->{ha_ip} . "' - "; + $msg .= "Peer IP: '" . $self->{result_values}->{ha_peer_ip} . "'"; + return $msg; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'ha', type => 0 }, + ]; + + $self->{maps_counters}->{ha} = [ + { + label => 'status', + type => 2, + set => { + key_values => [ + { name => 'hastate' }, + { name => 'hastatus' }, + { name => 'peer_hastate' }, + { name => 'ha_port' }, + { name => 'ha_ip' }, + { name => 'ha_peer_ip' } + ], + default_critical => '%{hastatus} =~ /^enabled$/ && %{hastate} =~ /^faulty$/', + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'no-ha-status:s' => { name => 'no_ha_status', default => 'UNKNOWN' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + $self->change_macros(macros => [ 'warning_status', 'critical_status' ]); +} +# snmptranslate -Td .1.3.6.1.4.1.2604.5.1.4.1.0 +# SFOS-FIREWALL-MIB::sfosHAStatus.0 +# sfosHAStatus OBJECT-TYPE +# -- FROM SFOS-FIREWALL-MIB +# -- TEXTUAL CONVENTION HaStatusType +# SYNTAX INTEGER {disabled(0), enabled(1)} +# MAX-ACCESS read-only +# STATUS current +# DESCRIPTION " " +# ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) sophosMIB(2604) sfosXGMIB(5) sfosXGMIBObjects(1) sfosXGHAStats(4) sfosHAStatus(1) 0 } + +my %map_status = ( + 0 => 'disabled', + 1 => 'enabled' +); + +# snmptranslate -Td .1.3.6.1.4.1.2604.5.1.4.4.0 +# SFOS-FIREWALL-MIB::sfosDeviceCurrentHAState.0 +# sfosDeviceCurrentHAState OBJECT-TYPE +# -- FROM SFOS-FIREWALL-MIB +# -- TEXTUAL CONVENTION HaState +# SYNTAX INTEGER {notapplicable(0), auxiliary(1), standAlone(2), primary(3), faulty(4), ready(5)} +# MAX-ACCESS read-only +# STATUS current +# DESCRIPTION "HA State of current Device" +# ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) sophosMIB(2604) sfosXGMIB(5) sfosXGMIBObjects(1) sfosXGHAStats(4) sfosDeviceCurrentHAState(4) 0 } + +my %map_state = ( + 0 => 'notapplicable', + 1 => 'auxiliary', + 2 => 'standAlone', + 3 => 'primary', + 4 => 'faulty', + 5 => 'ready' +); + +sub manage_selection { + my ($self, %options) = @_; + + my $oid_ha_status = '.1.3.6.1.4.1.2604.5.1.4.1.0'; + my $oid_ha_state = '.1.3.6.1.4.1.2604.5.1.4.4.0'; + my $oid_peer_ha_state = '.1.3.6.1.4.1.2604.5.1.4.5.0'; + my $oid_ha_port = '.1.3.6.1.4.1.2604.5.1.4.8.0'; + my $oid_ha_ip = '.1.3.6.1.4.1.2604.5.1.4.9.0'; + my $oid_ha_peer_ip = '.1.3.6.1.4.1.2604.5.1.4.10.0'; + + $self->{ha} = {}; + + my $result = $options{snmp}->get_leef( + oids => + [ $oid_ha_status, $oid_ha_state, $oid_peer_ha_state, $oid_ha_port, $oid_ha_ip, $oid_ha_peer_ip ], + nothing_quit => + 1 + ); + + if ($result->{$oid_ha_status} == 0 or $result->{$oid_ha_state} == 0) { + $self->{output}->output_add( + severity => $self->{option_results}->{no_ha_status}, + short_msg => sprintf("Looks like HA is not enabled, or not applicable .."), + long_msg => sprintf( + "HA Enabled : '%u' HA Status : '%s'", + $map_status{$result->{$oid_ha_status}}, $map_status{$result->{$oid_ha_state}} + ), + ); + $self->{output}->display(); + $self->{output}->exit(); + } + $self->{ha} = { + hastatus => $map_status{$result->{$oid_ha_status}}, + hastate => $map_state{$result->{$oid_ha_state}}, + peer_hastate => $map_state{$result->{$oid_peer_ha_state}}, + ha_port => $result->{$oid_ha_port}, + ha_ip => $result->{$oid_ha_ip}, + ha_peer_ip => $result->{$oid_ha_peer_ip} + }; +} + +1; + +__END__ + +=head1 MODE + +Check current HA-State. +HA-States: notapplicable, auxiliary, standAlone, primary, faulty, ready + +=over 8 + +=item B<--warning-status> + +Trigger warning on %{hastatus} or %{hastate} or %{peer_hastate} values. + +=item B<--critical-status> + +Trigger critical on %{hastatus} or %{hastate} or %{peer_hastate} values. +(default: '%{hastatus} =~ /^enabled$/ && %{hastate} =~ /^faulty$/'). + +=item B<--no-ha-status> + +Status to return when HA not running or not installed (default: 'UNKNOWN'). + +=back + +=cut diff --git a/src/network/cyberoam/snmp/mode/license.pm b/src/network/cyberoam/snmp/mode/license.pm new file mode 100644 index 000000000..75db24c8c --- /dev/null +++ b/src/network/cyberoam/snmp/mode/license.pm @@ -0,0 +1,294 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::cyberoam::snmp::mode::license; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; +use POSIX; +use Time::Local; +use DateTime::Format::Strptime; + +my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; +my $unitdiv_long = { s => 'seconds', w => 'weeks', d => 'days', h => 'hours', m => 'minutes' }; + +sub custom_expires_perfdata { + my ($self, %options) = @_; + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel} . '.' . $unitdiv_long->{ $self->{instance_mode}->{option_results}->{unit} }, + unit => $self->{instance_mode}->{option_results}->{unit}, + instances => $self->{result_values}->{name}, + value => floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub custom_expires_threshold { + my ($self, %options) = @_; + + return $self->{perfdata}->threshold_check( + value => + floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + threshold => + [ + { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, + { label => 'warning-' . $self->{thlabel}, exit_litteral => 'warning' }, + { label => 'unknown-' . $self->{thlabel}, exit_litteral => 'unknown' } + ] + ); +} + +sub custom_status_output { + my ($self, %options) = @_; + + return 'status: ' . $self->{result_values}->{status} . ', expires in ' . $self->{result_values}->{expires_human}; +} + +sub prefix_license_output { + my ($self, %options) = @_; + + return sprintf( + "License '%s' ", + $options{instance_value}->{name} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { + name => 'licenses', + type => 1, + cb_prefix_output => 'prefix_license_output', + message_multiple => 'All licenses are ok', + skipped_code => { -10 => 1 } + } + ]; + + $self->{maps_counters}->{licenses} = [ + { + label => 'status', + type => 2, + critical_default => '%{status} =~ /expired/i', + set => { + key_values => [ { name => 'name' }, { name => 'status' }, { name => 'expires_human' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { + label => 'expires', + type => 1, + nlabel => 'license.expires', + set => { + key_values => [ { name => 'expires_seconds' }, { name => 'expires_human' }, { name => 'name' } ], + output_template => 'expires in %s', + output_use => 'expires_human', + closure_custom_perfdata => $self->can('custom_expires_perfdata'), + closure_custom_threshold_check => $self->can('custom_expires_threshold') + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' }, + 'unit:s' => { name => 'unit', default => 's' } + }); + + return $self; +} + +my %map_lic_status = ( + 0 => 'none', + 1 => 'evaluating', + 2 => 'notsubscribed', + 3 => 'subscribed', + 4 => 'expired', + 5 => 'deactivated' +); + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + if ($self->{option_results}->{unit} eq '' || !defined($unitdiv->{$self->{option_results}->{unit}})) { + $self->{option_results}->{unit} = 's'; + } +} + +sub add_license { + my ($self, %options) = @_; + + return if (!defined($options{status})); + return if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $options{name} !~ /$self->{option_results}->{filter_name}/); + + $self->{licenses}->{ $options{name} } = { + name => $options{name}, + status => $options{status}, + expires => $options{expires} + }; + + if (defined($options{expires}) && $options{expires} ne "fail" && $options{status} =~ /subscribed|expired|evaluating/i) { + my $strp = DateTime::Format::Strptime->new( + pattern => '%b %d %Y', + locale => 'en_US', + ); + + my $dt = $strp->parse_datetime($options{expires}); + + $self->{licenses}->{ $options{name} }->{expires_seconds} = $dt->epoch - time(); + $self->{licenses}->{ $options{name} }->{expires_seconds} = 0 if ($self->{licenses}->{ $options{name} }->{expires_seconds} < 0); + $self->{licenses}->{ $options{name} }->{expires_human} = centreon::plugins::misc::change_seconds( + value => $self->{licenses}->{ $options{name} }->{expires_seconds} + ); + } else { + $self->{licenses}->{ $options{name} }->{expires_human} = "n.d."; + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $oid_base_fw_lic_status = '.1.3.6.1.4.1.2604.5.1.5.1.1.0';# sfosBaseFWLicRegStatus + my $oid_base_fw_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.1.2.0';# sfosBaseFWLicExpiryDate + my $oid_net_protection_lic_status = '.1.3.6.1.4.1.2604.5.1.5.2.1.0';# sfosNetProtectionLicRegStatus + my $oid_net_protection_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.2.2.0';# sfosNetProtectionLicExpiryDate + my $oid_web_protection_lic_status = '.1.3.6.1.4.1.2604.5.1.5.3.1.0';# sfosWebProtectionLicRegStatus + my $oid_web_protection_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.3.2.0';# sfosWebProtectionLicExpiryDate + my $oid_mail_protection_lic_status = '.1.3.6.1.4.1.2604.5.1.5.4.1.0';# sfosMailProtectionLicRegStatus + my $oid_mail_protection_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.4.2.0';# sfosMailProtectionLicExpiryDate + my $oid_web_server_protection_lic_status = '.1.3.6.1.4.1.2604.5.1.5.5.1';# sfosWebServerProtectionLicRegStatus + my $oid_web_server_protection_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.5.2';# sfosWebServerProtectionLicExpiryDate + my $oid_sand_storm_lic_status = '.1.3.6.1.4.1.2604.5.1.5.6.1';# sfosSandstromLicRegStatus + my $oid_sand_storm_protection_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.6.2';# sfosSandstromLicExpiryDate + my $oid_enhanced_support_lic_status = '.1.3.6.1.4.1.2604.5.1.5.7.1';# sfosEnhancedSupportLicRegStatus + my $oid_enhanced_support_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.7.2';# sfosEnhancedSupportLicExpiryDate + my $oid_enhanced_plus_lic_status = '.1.3.6.1.4.1.2604.5.1.5.8.1';# sfosEnhancedPlusLicRegStatus + my $oid_enhanced_plus_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.8.2';# sfosEnhancedPlusLicExpiryDate + my $oid_central_orchestra_lic_status = '.1.3.6.1.4.1.2604.5.1.5.9.1';# sfosCentralOrchestrationLicRegStatus + my $oid_central_orchestra_lic_expiry_date = '.1.3.6.1.4.1.2604.5.1.5.9.2';# sfosCentralOrchestrationLicExpiryDate + + my $result = $options{snmp}->get_leef( + oids => [ + $oid_base_fw_lic_status, + $oid_base_fw_lic_expiry_date, + $oid_net_protection_lic_status, + $oid_net_protection_lic_expiry_date, + $oid_web_protection_lic_status, + $oid_web_protection_lic_expiry_date, + $oid_mail_protection_lic_status, + $oid_mail_protection_lic_expiry_date, + # $oid_web_server_protection_lic_status, + # $oid_web_server_protection_lic_expiry_date, + # $oid_sand_storm_lic_status, + # $oid_sand_storm_protection_lic_expiry_date, + # $oid_enhanced_support_lic_status, + # $oid_enhanced_support_lic_expiry_date, + # $oid_enhanced_plus_lic_status, + # $oid_mail_protection_lic_status, + # $oid_enhanced_plus_lic_expiry_date, + # $oid_central_orchestra_lic_status, + # $oid_central_orchestra_lic_expiry_date + ], + nothing_quit => 1 + ); + + $self->{licenses} = {}; + $self->add_license( + name => 'base_fw', + status => $map_lic_status{$result->{$oid_base_fw_lic_status}}, + expires => $result->{$oid_base_fw_lic_expiry_date} + ); + $self->add_license( + name => 'net_protection', + status => $map_lic_status{$result->{$oid_net_protection_lic_status}}, + expires => $result->{$oid_net_protection_lic_expiry_date} + ); + $self->add_license( + name => 'web_protection', + status => $map_lic_status{$result->{$oid_web_protection_lic_status}}, + expires => $result->{$oid_web_protection_lic_expiry_date} + ); + $self->add_license( + name => 'mail_protection', + status => $map_lic_status{$result->{$oid_mail_protection_lic_status}}, + expires => $result->{$oid_mail_protection_lic_expiry_date} + ); +} + +1; + +__END__ + +=head1 MODE + +Check license (SFOS-FIREWALL-MIB). + +=over 8 + +=item B<--filter-name> + +Filter licenses by name (can be a regexp). + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING. +You can use the following variables: %{name}, %{status}. + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (default: '%{status} =~ /expired/i'). +You can use the following variables: %{name}, %{status}. + +=item B<--unit> + +Select the time unit for the expiration thresholds. May be 's' for seconds, 'm' for minutes, 'h' for hours, 'd' for days, 'w' for weeks. Default is seconds. + +=item B<--warning-expires> + +Threshold. +Example: C<--unit=w --warning-expires=2:> will result in a WARNING state when one of the licenses expires in less than +two weeks. + +=item B<--critical-expires> + +Threshold. +Example: C<--unit=w --critical-expires=2:> will result in a CRITICAL state when one of the licenses expires in less than +two weeks. + +=back + +=cut diff --git a/src/network/cyberoam/snmp/mode/listvpns.pm b/src/network/cyberoam/snmp/mode/listvpns.pm new file mode 100644 index 000000000..eafbd4983 --- /dev/null +++ b/src/network/cyberoam/snmp/mode/listvpns.pm @@ -0,0 +1,232 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::cyberoam::snmp::mode::listvpns; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + "filter-name:s" => { name => 'filter_name' }, + "filter-connection-status:s" => { name => 'filter_connection_status' }, + "filter-vpn-activated:s" => { name => 'filter_vpn_activated' }, + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $map_connection_status = { + 0 => 'inactive', + 1 => 'active', + 2 => 'partially-active' + }; + + my $map_vpn_activated = { + 0 => 'inactive', + 1 => 'active' + }; + + my $map_connection_type = { + 1 => 'host-to-host', + 2 => 'site-to-site', + 3 => 'tunnel-interface' + }; + + my $mapping = { + name => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2' },# sfosIPSecVpnConnName + policy => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4' },# sfosIPSecVpnPolicyUsed + description => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3' },# sfosIPSecVpnConnDes + connection_mode => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5' },# sfosIPSecVpnConnMode + connection_type => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6', map => $map_connection_type },# sfosIPSecVpnConnType + connection_status => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9', map => $map_connection_status },# sfosIPSecVpnConnStatus + activated => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10', map => $map_vpn_activated }# sfosIPSecVpnActivated + }; + # parent oid for all the mapping usage + my $oid_bsnAPEntry = '.1.3.6.1.4.1.2604.5.1.6.1.1.1'; + + my $snmp_result = $options{snmp}->get_table( + oid => $oid_bsnAPEntry, + start => $mapping->{name}->{oid},# First oid of the mapping => here : 2 + end => $mapping->{activated}->{oid}# Last oid of the mapping => here : 23 + ); + + my $results = {}; + # Iterate for all oids catch in snmp result above + foreach my $oid (keys %$snmp_result) { + next if ($oid !~ /^$mapping->{name}->{oid}\.(.*)$/); + my $oid_path = $1; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $oid_path); + + if (!defined($result->{name}) || $result->{name} eq '') { + $self->{output}->output_add(long_msg => + "skipping VPN '$oid_path': cannot get a name. please set it.", + debug => + 1); + next; + } + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{name} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => + "skipping '" . $result->{name} . "': no matching name filter.", + debug => + 1); + next; + } + + if (defined($self->{option_results}->{filter_connection_status}) && $self->{option_results}->{filter_connection_status} ne '' && + $result->{connection_status} !~ /$self->{option_results}->{filter_connection_status}/) { + $self->{output}->output_add(long_msg => + "skipping '" . $result->{connection_status} . "': no matching connection_status filter.", + debug => + 1); + next; + } + + if (defined($self->{option_results}->{filter_vpn_activated}) && $self->{option_results}->{filter_vpn_activated} ne '' && + $result->{activated} !~ /$self->{option_results}->{filter_vpn_activated}/) { + $self->{output}->output_add(long_msg => + "skipping '" . $result->{activated} . "': no matching activated filter.", + debug => + 1); + next; + } + + $results->{$oid_path} = { + name => $result->{name}, + policy => $result->{policy}, + description => $result->{description}, + connection_mode => $result->{connection_mode}, + connection_type => $result->{connection_type}, + connection_status => $result->{connection_status}, + activated => $result->{activated} + }; + } + + return $results; +} + +sub run { + my ($self, %options) = @_; + + my $results = $self->manage_selection(snmp => $options{snmp}); + foreach my $oid_path (sort keys %$results) { + $self->{output}->output_add( + long_msg => sprintf( + '[oid_path: %s] [name: %s] [policy: %s] [description: %s] [connection_mode: %s] [connection_type: %s] [connection_status: %s] [activated: %s]', + $oid_path, + $results->{$oid_path}->{name}, + $results->{$oid_path}->{policy}, + $results->{$oid_path}->{description}, + $results->{$oid_path}->{connection_mode}, + $results->{$oid_path}->{connection_type}, + $results->{$oid_path}->{connection_status}, + $results->{$oid_path}->{activated} + ) + ); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List vpn' + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => + [ 'name', 'policy', 'description', 'connection_mode', 'connection_type', 'connection_status', 'activated' ]); +} + +sub disco_show { + my ($self, %options) = @_; + + my $results = $self->manage_selection(snmp => $options{snmp}); + foreach my $oid_path (sort keys %$results) { + $self->{output}->add_disco_entry( + name => + $results->{$oid_path}->{name}, + policy => + $results->{$oid_path}->{policy}, + description => + $results->{$oid_path}->{description}, + connection_mode => + $results->{$oid_path}->{connection_mode}, + connection_type => + $results->{$oid_path}->{connection_type}, + connection_status => + $results->{$oid_path}->{connection_status}, + activated => + $results->{$oid_path}->{activated} + ); + } +} + +1; + +__END__ + +=head1 MODE + +List VPN. + +=over 8 + +=item B<--filter-name> + +Display VPN matching the filter. + +=item B<--filter-connection-status> + +Display VPN matching the filter. + +=item B<--filter-vpn-activated> + +Display VPN matching the filter. + +=back + +=cut diff --git a/src/network/cyberoam/snmp/mode/vpnstatus.pm b/src/network/cyberoam/snmp/mode/vpnstatus.pm new file mode 100644 index 000000000..b5e1277ba --- /dev/null +++ b/src/network/cyberoam/snmp/mode/vpnstatus.pm @@ -0,0 +1,386 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::cyberoam::snmp::mode::vpnstatus; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_status_output { + my ($self, %options) = @_; + + my $msg = 'status: ' . $self->{result_values}->{connection_status}; + return $msg; +} + +sub prefix_global_output { + my ($self, %options) = @_; + + return 'VPN '; +} + +sub vpn_long_output { + my ($self, %options) = @_; + + return "checking vpn '" . $options{instance_value}->{display} . "'"; +} + +sub prefix_vpn_output { + my ($self, %options) = @_; + + my $output = "VPN '" . $options{instance_value}->{display} . "' "; + + if (defined(($options{instance_value}->{vpn_global}->{description})) + && ($options{instance_value}->{vpn_global}->{description})) { + $output .= "($options{instance_value}->{vpn_global}->{description}) "; + } + + return $output; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { + name => 'global', + type => 0, + cb_prefix_output => 'prefix_global_output' + }, + { + name => 'vpn', + type => 3, + cb_prefix_output => 'prefix_vpn_output', + cb_long_output => 'vpn_long_output', + indent_long_output => ' ', + message_multiple => 'All VPNs are ok', + group => [ + { name => 'vpn_global', type => 0 } + ] + } + ]; + + $self->{maps_counters}->{global} = [ + { + label => 'total', + type => 1, + nlabel => 'vpn.total.count', + set => { + key_values => [ { name => 'total' } ], + output_template => 'total: %s', + perfdatas => [ + { label => 'total', template => '%s', min => 0 } + ] + } + }, + { + label => 'total-inactive', + type => 1, + nlabel => 'vpn.inactive.count', + set => { + key_values => [ { name => 'inactive' } ], + output_template => 'inactive: %s', + perfdatas => [ + { label => 'total_inactive', template => '%s', min => 0 } + ] + } + }, + { + label => 'total-active', + type => 1, + nlabel => 'vpn.active.count', + set => { + key_values => [ { name => 'active' } ], + output_template => 'active: %s', + perfdatas => [ + { label => 'total_active', template => '%s', min => 0 } + ] + } + }, + { + label => 'total-partially-active', + type => 1, + nlabel => 'vpn.partiallyactive.count', + set => { + key_values => [ { name => 'partiallyActive' } ], + output_template => 'partially active: %s', + perfdatas => [ + { label => 'total_partially_active', template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{vpn_global} = [ + { + label => 'status', + type => 2, + critical_default => '%{connection_status} =~ /inactive/', + warning_default => '%{connection_status} =~ /partiallyActive/', + set => { + key_values => [ { name => 'connection_status' }, { name => 'display' }, { name => 'description' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + "filter-name:s" => { name => 'filter_name' }, + "filter-vpn-activated:s" => { name => 'filter_vpn_activated' }, + "filter-connection-mode:s" => { name => 'filter_connection_mode' }, + "filter-connection-type:s" => { name => 'filter_connection_type' } + }); + + return $self; +} + +# SFOS-FIREWALL-MIB::sfosIPSecVpnConnStatus +# sfosIPSecVpnConnStatus OBJECT-TYPE +# -- FROM SFOS-FIREWALL-MIB +# -- TEXTUAL CONVENTION IPSecVPNConnectionStatus +# SYNTAX INTEGER {inactive(0), active(1), partially-active(2)} +# MAX-ACCESS read-only +# STATUS current +# DESCRIPTION "Connection status of IPsec tunnel" +# ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) sophosMIB(2604) sfosXGMIB(5) sfosXGMIBObjects(1) sfosXGTunnelInfo(6) sfosVPNInfo(1) sfosIPSecVPNConnInfo(1) sfosIPSecVpnTunnelTable(1) sfosIPSecVpnTunnelEntry(1) 9 } +my $map_connection_status = { + 0 => 'inactive', + 1 => 'active', + 2 => 'partiallyActive' +}; + +# SFOS-FIREWALL-MIB::sfosIPSecVpnActivated +# sfosIPSecVpnActivated OBJECT-TYPE +# -- FROM SFOS-FIREWALL-MIB +# -- TEXTUAL CONVENTION IPSecVPNActivationStatus +# SYNTAX INTEGER {inactive(0), active(1)} +# MAX-ACCESS read-only +# STATUS current +# DESCRIPTION "Activation status of IPsec tunnel" +# ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) sophosMIB(2604) sfosXGMIB(5) sfosXGMIBObjects(1) sfosXGTunnelInfo(6) sfosVPNInfo(1) sfosIPSecVPNConnInfo(1) sfosIPSecVpnTunnelTable(1) sfosIPSecVpnTunnelEntry(1) 10 } +my $map_vpn_activated = { + 0 => 'inactive', + 1 => 'active' +}; + +# SFOS-FIREWALL-MIB::sfosIPSecVpnConnType +# sfosIPSecVpnConnType OBJECT-TYPE +# -- FROM SFOS-FIREWALL-MIB +# -- TEXTUAL CONVENTION IPSecVPNConnectionType +# SYNTAX INTEGER {host-to-host(1), site-to-site(2), tunnel-interface(3)} +# MAX-ACCESS read-only +# STATUS current +# DESCRIPTION "Connection Type of IPsec Tunnel" +# ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) sophosMIB(2604) sfosXGMIB(5) sfosXGMIBObjects(1) sfosXGTunnelInfo(6) sfosVPNInfo(1) sfosIPSecVPNConnInfo(1) sfosIPSecVpnTunnelTable(1) sfosIPSecVpnTunnelEntry(1) 6 } +my $map_connection_type = { + 1 => 'host-to-host', + 2 => 'site-to-site', + 3 => 'tunnel-interface' +}; + +my $mapping = { + name => { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2' },# sfosIPSecVpnConnName + connection_mode => { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5' },# sfosIPSecVpnConnMode + connection_type => { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6', map => $map_connection_type },# sfosIPSecVpnConnType + activated => { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10', map => $map_vpn_activated }# sfosIPSecVpnActivated +}; + +my $mapping_stat = { + description => { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3' },# sfosIPSecVpnConnDes + connection_status => + { oid => '.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9', map => $map_connection_status }# sfosIPSecVpnConnStatus +}; + +sub manage_selection { + my ($self, %options) = @_; + + $self->{vpn} = {}; + $self->{global} = { + inactive => 0, + active => 0, + partiallyActive => 0 + }; + + my $request = [ { oid => $mapping->{name}->{oid} } ]; + push @$request, { oid => $mapping->{activated}->{oid} } + if (defined($self->{option_results}->{filter_vpn_activated}) && $self->{option_results}->{filter_vpn_activated} ne ''); + + push @$request, { oid => $mapping->{connection_mode}->{oid} } + if (defined($self->{option_results}->{filter_connection_mode}) && $self->{option_results}->{filter_connection_mode} ne ''); + + push @$request, { oid => $mapping->{connection_type}->{oid} } + if (defined($self->{option_results}->{filter_connection_type}) && $self->{option_results}->{filter_connection_type} ne ''); + + my $snmp_result = $options{snmp}->get_multiple_table( + oids => $request, + return_type => 1, + nothing_quit => 1 + ); + + foreach (keys %$snmp_result) { + next if (!/^$mapping->{name}->{oid}\.(.*)/); + my $instance = $1; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{name} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{name} . "': not matching name filter."); + next; + } + + if (defined($self->{option_results}->{filter_connection_type}) && $self->{option_results}->{filter_connection_type} ne '' && + $result->{connection_type} !~ /$self->{option_results}->{filter_connection_type}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{connection_type} . "': not matching connection-type filter."); + next; + } + + if (defined($self->{option_results}->{filter_connection_mode}) && $self->{option_results}->{filter_connection_mode} ne '' && + $result->{connection_mode} !~ /$self->{option_results}->{filter_connection_mode}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{connection_mode} . "': not matching connection-mode filter."); + next; + } + + if (defined($self->{option_results}->{filter_vpn_activated}) && $self->{option_results}->{filter_vpn_activated} ne '' && + $result->{activated} !~ /$self->{option_results}->{filter_vpn_activated}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{activated} . "': not matching vpn-activated filter " . $self->{option_results}->{filter_vpn_activated} . "."); + next; + } + + $self->{vpn}->{ $result->{name} } = { + instance => $instance, + display => $result->{name}, + vpn_global => { display => $result->{name} } }; + } + + if (scalar(keys %{$self->{vpn}}) <= 0) { + $self->{output}->output_add(long_msg => 'no VPN associated'); + return; + } + + $options{snmp}->load( + oids => [ map($_->{oid}, values(%$mapping_stat)) ], + instances => [ map($_->{instance}, values %{$self->{vpn}}) ], + instance_regexp => '^(.*)$' + ); + $snmp_result = $options{snmp}->get_leef(); + + foreach (keys %{$self->{vpn}}) { + my $result = $options{snmp}->map_instance( + mapping => $mapping_stat, + results => $snmp_result, + instance => $self->{vpn}->{$_}->{instance}); + + $self->{global}->{total}++; + $self->{global}->{ $result->{connection_status} }++; + $self->{vpn}->{$_}->{vpn_global}->{connection_status} = $result->{connection_status}; + $self->{vpn}->{$_}->{vpn_global}->{description} = $result->{description}; + } +} + +1; + +__END__ + +=head1 MODE + +Check VPN status. +VPN-Connection-Status: inactive, active, partiallyActive + +=over 8 + +=item B<--filter-counters> + +Only display some counters (regexp can be used). +Example: --filter-counters='^total$|^total-normal$' + +=item B<--filter-name> + +Filter VPN name (can be a regexp). + +=item B<--filter-vpn-activated> + +Filter by the activation status of the VPN (can be a regexp). +Values: active, inactive + +=item B<--filter-connection-mode> + +Filter by the connection mode of the VPN (can be a regexp). + +=item B<--connection-type> + +Filter by the connection type of the VPN (can be a regexp). +Values: host-to-host, site-to-site, tunnel-interface + +=item B<--warning-status> + +Trigger warning on %{connection_status} values. +(default: '%{connection_status} =~ /partiallyActive/'). + +=item B<--critical-status> + +Trigger critical on %{connection_status} values. +(default: '%{connection_status} =~ /inactive/'). + +=item B<--warning-total> + +Thresholds. + +=item B<--critical-total> + +Thresholds. + +=item B<--warning-total-inactive> + +Thresholds. + +=item B<--critical-total-inactive> + +Thresholds. + +=item B<--warning-total-partiallyActive> + +Thresholds. + +=item B<--critical-total-partiallyActive> + +Thresholds. + +=item B<--warning-total-active> + +Thresholds. + +=item B<--critical-total-active> + +Thresholds. + +=back + +=cut diff --git a/src/network/cyberoam/snmp/plugin.pm b/src/network/cyberoam/snmp/plugin.pm index 9f5370f0f..f44578051 100644 --- a/src/network/cyberoam/snmp/plugin.pm +++ b/src/network/cyberoam/snmp/plugin.pm @@ -31,13 +31,17 @@ sub new { $self->{version} = '0.1'; $self->{modes} = { - 'cpu' => 'network::cyberoam::snmp::mode::cpu', - 'interfaces' => 'snmp_standard::mode::interfaces', - 'list-interfaces' => 'snmp_standard::mode::listinterfaces', - 'memory' => 'network::cyberoam::snmp::mode::memory', - 'requests' => 'network::cyberoam::snmp::mode::requests', - 'services' => 'network::cyberoam::snmp::mode::services', - 'storage' => 'network::cyberoam::snmp::mode::storage' + 'cpu' => 'network::cyberoam::snmp::mode::cpu', + 'ha-status' => 'network::cyberoam::snmp::mode::hastatus', + 'interfaces' => 'snmp_standard::mode::interfaces', + 'license' => 'network::cyberoam::snmp::mode::license', + 'list-interfaces' => 'snmp_standard::mode::listinterfaces', + 'list-vpns' => 'network::cyberoam::snmp::mode::listvpns', + 'memory' => 'network::cyberoam::snmp::mode::memory', + 'requests' => 'network::cyberoam::snmp::mode::requests', + 'services' => 'network::cyberoam::snmp::mode::services', + 'storage' => 'network::cyberoam::snmp::mode::storage', + 'vpn-status' => 'network::cyberoam::snmp::mode::vpnstatus' }; return $self; diff --git a/tests/network/cyberoam/snmp/ha-status.robot b/tests/network/cyberoam/snmp/ha-status.robot new file mode 100644 index 000000000..0d73df690 --- /dev/null +++ b/tests/network/cyberoam/snmp/ha-status.robot @@ -0,0 +1,32 @@ +*** Settings *** +Documentation Check Cyberoam equipments in SNMP. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +ha-status ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=ha-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=${SNMPCOMMUNITY} + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options SNMPCOMMUNITY expected_result -- + ... 1 ${EMPTY} network/cyberoam/snmp/slim_sophos OK: HA is 'enabled' - Current HA State: 'primary' - Peer HA State: 'auxiliary' - HA Port: 'Anonymized 007' - HA IP: '192.168.42.167' - Peer IP: '192.168.42.23' + ... 2 --warning-status='\\\%{hastate} ne "down"' network/cyberoam/snmp/slim_sophos WARNING: HA is 'enabled' - Current HA State: 'primary' - Peer HA State: 'auxiliary' - HA Port: 'Anonymized 007' - HA IP: '192.168.42.167' - Peer IP: '192.168.42.23' + ... 3 --critical-status='\\\%{hastatus} ne "down"' network/cyberoam/snmp/slim_sophos CRITICAL: HA is 'enabled' - Current HA State: 'primary' - Peer HA State: 'auxiliary' - HA Port: 'Anonymized 007' - HA IP: '192.168.42.167' - Peer IP: '192.168.42.23' + ... 4 --no-ha-status='UNKNOWN' network/cyberoam/snmp/slim_sophos_no_ha UNKNOWN: Looks like HA is not enabled, or not applicable .. \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/interfaces.robot b/tests/network/cyberoam/snmp/interfaces.robot new file mode 100644 index 000000000..565219665 --- /dev/null +++ b/tests/network/cyberoam/snmp/interfaces.robot @@ -0,0 +1,34 @@ +*** Settings *** +Documentation Check interfaces. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +interfaces ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=interfaces + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + # first run to build cache + Run ${command} + # second run to control the output + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} CRITICAL: Interface 'Anonymized 232' Status : down (admin: up) - Interface 'Anonymized 191' Status : down (admin: up) - Interface 'Anonymized 141' Status : down (admin: up) + ... 2 --warning-total-admin-down=0 --critical-total-admin-down=0 CRITICAL: Interface 'Anonymized 232' Status : down (admin: up) - Interface 'Anonymized 191' Status : down (admin: up) - Interface 'Anonymized 141' Status : down (admin: up) + ... 3 --interface='.*' --name --add-status --add-traffic --critical-status='' --warning-in-traffic='80' --critical-in-traffic='90' --warning-out-traffic='80' --critical-out-traffic='90' --verbose OK: All interfaces are ok | 'traffic_in_Anonymized 250'=0.00b/s;0:8000000;0:9000000;0;10000000 'traffic_out_Anonymized 250'=0.00b/s;0:8000000;0:9000000;0;10000000 'traffic_in_Anonymized 012'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 012'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 118'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 118'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 073'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 073'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 073'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 073'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 242'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 242'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 037'=0.00b/s;;;0; 'traffic_out_Anonymized 037'=0.00b/s;;;0; 'traffic_in_Anonymized 080'=0.00b/s;;;0; 'traffic_out_Anonymized 080'=0.00b/s;;;0; 'traffic_in_Anonymized 103'=0.00b/s;;;0; 'traffic_out_Anonymized 103'=0.00b/s;;;0; 'traffic_in_Anonymized 151'=0.00b/s;;;0; 'traffic_out_Anonymized 151'=0.00b/s;;;0; 'traffic_in_Anonymized 171'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 171'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 107'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 107'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 239'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 239'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 137'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_out_Anonymized 137'=0.00b/s;0:800000000;0:900000000;0;1000000000 'traffic_in_Anonymized 028'=0.00b/s;;;0; 'traffic_out_Anonymized 028'=0.00b/s;;;0; 'traffic_in_Anonymized 105'=0.00b/s;;;0; 'traffic_out_Anonymized 105'=0.00b/s;;;0; 'traffic_in_Anonymized 012'=0.00b/s;;;0; 'traffic_out_Anonymized 012'=0.00b/s;;;0; 'traffic_in_Anonymized 232'=0.00b/s;0:8000000000;0:9000000000;0;10000000000 'traffic_out_Anonymized 232'=0.00b/s;0:8000000000;0:9000000000;0;10000000000 Interface 'Anonymized 250' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 012' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 118' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 073' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 071' Status : down (admin: down) Interface 'Anonymized 073' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 232' Status : down (admin: up) Interface 'Anonymized 191' Status : down (admin: up) Interface 'Anonymized 242' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 175' Status : down (admin: down) Interface 'Anonymized 128' Status : down (admin: down) Interface 'Anonymized 037' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 080' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 092' Status : down (admin: down) Interface 'Anonymized 187' Status : down (admin: down) Interface 'Anonymized 163' Status : down (admin: down) Interface 'Anonymized 103' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 151' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 141' Status : down (admin: up) Interface 'Anonymized 171' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 184' Status : down (admin: down) Interface 'Anonymized 107' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 239' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 137' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 028' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 105' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 045' Status : down (admin: down) Interface 'Anonymized 101' Status : down (admin: down) Interface 'Anonymized 252' Status : down (admin: down) Interface 'Anonymized 012' Status : up (admin: up), Traffic In : 0.00b/s (-), Traffic Out : 0.00b/s (-) Interface 'Anonymized 232' Status : up (admin: up), Traffic In : 0.00b/s (0.00%), Traffic Out : 0.00b/s (0.00%) Interface 'Anonymized 072' Status : down (admin: down) Interface 'Anonymized 037' Status : down (admin: down) \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/license.robot b/tests/network/cyberoam/snmp/license.robot new file mode 100644 index 000000000..f81fc387b --- /dev/null +++ b/tests/network/cyberoam/snmp/license.robot @@ -0,0 +1,34 @@ +*** Settings *** +Documentation Check current HA-State. HA-States: notapplicable, auxiliary, standAlone,primary, faulty, ready. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +ha-status ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=license + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All licenses are ok \\\\| 'base_fw#license.expires.seconds'=\\\\d+s;;;0; 'net_protection#license.expires.seconds'=\\\\d+s;;;0; 'web_protection#license.expires.seconds'=\\\\d+s;;;0; + ... 2 --unit=w OK: All licenses are ok \\\\| 'base_fw#license.expires.weeks'=\\\\d+w;;;0; 'net_protection#license.expires.weeks'=\\\\d+w;;;0; 'web_protection#license.expires.weeks'=\\\\d+w;;;0; + ... 3 --unit=w --warning-expires=0 WARNING: License 'base_fw' expires in.* \\\\| 'base_fw#license.expires.weeks'=\\\\d+w;0:0;;0; 'net_protection#license.expires.weeks'=\\\\d+w;0:0;;0; 'web_protection#license.expires.weeks'=\\\\d+w;0:0;;0; + ... 4 --unit=w --critical-expires=0 CRITICAL: License 'base_fw' expires in.* \\\\| 'base_fw#license.expires.weeks'=\\\\d+w;;0:0;0; 'net_protection#license.expires.weeks'=\\\\d+w;;0:0;0; 'web_protection#license.expires.weeks'=\\\\d+w;;0:0;0; + ... 5 --unit=w --warning-expires=1000000: WARNING: License 'base_fw' expires in.* \\\\| 'base_fw#license.expires.weeks'=\\\\d+w;1000000:;;0; 'net_protection#license.expires.weeks'=\\\\d+w;1000000:;;0; 'web_protection#license.expires.weeks'=\\\\d+w;1000000:;;0; + ... 6 --unit=w --critical-expires=1000000: CRITICAL: License 'base_fw' expires in.* \\\\| 'base_fw#license.expires.weeks'=\\\\d+w;;1000000:;0; 'net_protection#license.expires.weeks'=\\\\d+w;;1000000:;0; 'web_protection#license.expires.weeks'=\\\\d+w;;1000000:;0; diff --git a/tests/network/cyberoam/snmp/list-interfaces.robot b/tests/network/cyberoam/snmp/list-interfaces.robot new file mode 100644 index 000000000..0cf918c09 --- /dev/null +++ b/tests/network/cyberoam/snmp/list-interfaces.robot @@ -0,0 +1,40 @@ +*** Settings *** +Documentation Check Cyberoam equipments in SNMP. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +list-interfaces ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=list-interfaces + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 2 --interface=1 List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] + ... 3 --name='Anonymized 027' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 4 --speed=20 List interfaces: 'Anonymized 250' [speed = 20][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 20][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 20][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 20][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = 20][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 20][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = 20][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = 20][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 20][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = 20][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = 20][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = 20][status = up][id = 2][type = ethernetCsmacd] + ... 5 --skip-speed0='' --name='Anonymized 232' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] skipping interface 'Anonymized 071': interface speed is 0 and option --skip-speed0 is set 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] skipping interface 'Anonymized 232': interface speed is 0 and option --skip-speed0 is set skipping interface 'Anonymized 191': interface speed is 0 and option --skip-speed0 is set 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] + ... 6 --filter-status='up' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] skipping interface 'Anonymized 071': no matching filter status 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] skipping interface 'Anonymized 232': no matching filter status skipping interface 'Anonymized 191': no matching filter status 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] skipping interface 'Anonymized 175': no matching filter status skipping interface 'Anonymized 128': no matching filter status 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 7 --use-adminstatus='down' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] skipping interface 'Anonymized 071': adminstatus is not 'up' and option --use-adminstatus is set 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] skipping interface 'Anonymized 175': adminstatus is not 'up' and option --use-adminstatus is set + ... 8 --oid-filter='ifName' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 9 --oid-display='ifDesc' List interfaces: 'Anonymized 147' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 026' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 232' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 093' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 058' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 158' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 160' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 188' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 034' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 029' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 10 --display-transform-src='ens' --display-transform-dst='eth' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 11 --add-extra-oid='vlan,.1.3.6.1.2.1.31.19,\\\%{instance}\..*' List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][type = ethernetCsmacd] 'Anonymized 232' [speed = ][status = down][id = 15][type = ethernetCsmacd] 'Anonymized 191' [speed = ][status = down][id = 16][type = ethernetCsmacd] 'Anonymized 242' [speed = 1000][status = up][id = 17][type = ethernetCsmacd] 'Anonymized 175' [speed = ][status = down][id = 18][type = ethernetCsmacd] 'Anonymized 128' [speed = ][status = down][id = 19][type = ethernetCsmacd] 'Anonymized 037' [speed = ][status = up][id = 2][type = ethernetCsmacd] + ... 12 --add-mac-address List interfaces: 'Anonymized 250' [speed = 10][status = up][id = 1][macaddress = ][type = softwareLoopback] 'Anonymized 012' [speed = 1000][status = up][id = 10][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:30:38:34][type = ethernetCsmacd] 'Anonymized 118' [speed = 1000][status = up][id = 11][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:31:38:34][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 12][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:30:37:32][type = ethernetCsmacd] 'Anonymized 071' [speed = ][status = down][id = 13][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:31:31:39][type = ethernetCsmacd] 'Anonymized 073' [speed = 1000][status = up][id = 14][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:30:31:30][type = ethernetCsmacd] \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/list-vpns.robot b/tests/network/cyberoam/snmp/list-vpns.robot new file mode 100644 index 000000000..8a94389ae --- /dev/null +++ b/tests/network/cyberoam/snmp/list-vpns.robot @@ -0,0 +1,32 @@ +*** Settings *** +Documentation List VPN. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +list-vpns ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=list-vpns + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List vpn [oid_path: 1] [name: Anonymized 093] [policy: Anonymized 208] [description: Anonymized 022] [connection_mode: Anonymized 245] [connection_type: site-to-site] [connection_status: active] [activated: active] [oid_path: 2] [name: Anonymized 252] [policy: Anonymized 055] [description: Anonymized 070] [connection_mode: Anonymized 123] [connection_type: site-to-site] [connection_status: active] [activated: active] [oid_path: 3] [name: Anonymized 029] [policy: Anonymized 151] [description: Anonymized 157] [connection_mode: Anonymized 055] [connection_type: site-to-site] [connection_status: inactive] [activated: active] [oid_path: 4] [name: Anonymized 132] [policy: Anonymized 089] [description: ] [connection_mode: Anonymized 185] [connection_type: site-to-site] [connection_status: active] [activated: active] + ... 2 --filter-name='Anonymized 093' List vpn [oid_path: 1] [name: Anonymized 093] [policy: Anonymized 208] [description: Anonymized 022] [connection_mode: Anonymized 245] [connection_type: site-to-site] [connection_status: active] [activated: active] + ... 3 --filter-connection-status='inactive' List vpn [oid_path: 3] [name: Anonymized 029] [policy: Anonymized 151] [description: Anonymized 157] [connection_mode: Anonymized 055] [connection_type: site-to-site] [connection_status: inactive] [activated: active] + ... 4 --filter-vpn-activated='active' List vpn [oid_path: 1] [name: Anonymized 093] [policy: Anonymized 208] [description: Anonymized 022] [connection_mode: Anonymized 245] [connection_type: site-to-site] [connection_status: active] [activated: active] [oid_path: 2] [name: Anonymized 252] [policy: Anonymized 055] [description: Anonymized 070] [connection_mode: Anonymized 123] [connection_type: site-to-site] [connection_status: active] [activated: active] [oid_path: 3] [name: Anonymized 029] [policy: Anonymized 151] [description: Anonymized 157] [connection_mode: Anonymized 055] [connection_type: site-to-site] [connection_status: inactive] [activated: active] [oid_path: 4] [name: Anonymized 132] [policy: Anonymized 089] [description: ] [connection_mode: Anonymized 185] [connection_type: site-to-site] [connection_status: active] [activated: active] \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/memory.robot b/tests/network/cyberoam/snmp/memory.robot new file mode 100644 index 000000000..e4a39d21f --- /dev/null +++ b/tests/network/cyberoam/snmp/memory.robot @@ -0,0 +1,34 @@ +*** Settings *** +Documentation Check memory usages. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +memory ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=memory + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: Physical memory Total: 7.61 GB Used: 4.41 GB (58.00%) Free: 3.20 GB (42.00%) - Swap memory Total: 7.73 GB Used: 791.10 MB (10.00%) Free: 6.95 GB (90.00%) | 'physical_used'=4738284257.28B;;;0;8169455616 'swap_used'=829528473.6B;;;0;8295284736 + ... 2 --filter-counters='^physical-usage$' OK: Physical memory Total: 7.61 GB Used: 4.41 GB (58.00%) Free: 3.20 GB (42.00%) | 'physical_used'=4738284257.28B;;;0;8169455616 + ... 3 --warning-physical-usage=40 --critical-physical-usage=60 WARNING: Physical memory Total: 7.61 GB Used: 4.41 GB (58.00%) Free: 3.20 GB (42.00%) | 'physical_used'=4738284257.28B;0:3267782246;0:4901673369;0;8169455616 'swap_used'=829528473.6B;;;0;8295284736 + ... 4 --warning-swap-usage=100 --critical-swap-usage=0 CRITICAL: Swap memory Total: 7.73 GB Used: 791.10 MB (10.00%) Free: 6.95 GB (90.00%) | 'physical_used'=4738284257.28B;;;0;8169455616 'swap_used'=829528473.6B;0:8295284736;0:0;0;8295284736 + ... 5 --warning-physical-usage=60 --critical-physical-usage=40 CRITICAL: Physical memory Total: 7.61 GB Used: 4.41 GB (58.00%) Free: 3.20 GB (42.00%) | 'physical_used'=4738284257.28B;0:4901673369;0:3267782246;0;8169455616 'swap_used'=829528473.6B;;;0;8295284736 + ... 6 --warning-swap-usage=0 --critical-swap-usage=100 WARNING: Swap memory Total: 7.73 GB Used: 791.10 MB (10.00%) Free: 6.95 GB (90.00%) | 'physical_used'=4738284257.28B;;;0;8169455616 'swap_used'=829528473.6B;0:0;0:8295284736;0;8295284736 \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/requests.robot b/tests/network/cyberoam/snmp/requests.robot new file mode 100644 index 000000000..2630be215 --- /dev/null +++ b/tests/network/cyberoam/snmp/requests.robot @@ -0,0 +1,39 @@ +*** Settings *** +Documentation Check request statistics. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +requests ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=requests + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + # first run to build cache + Run ${command} + # second run to control the output + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --filter-counters='' OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;;;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;;;0; + ... 2 --filter-counters='http' OK: Requests http hits: 0 | 'http_hits'=0;;;0; + ... 3 --warning-live-users=0 --critical-live-users=0 CRITICAL: Requests live users: 38 | 'live_users'=38;0:0;0:0;0; 'http_hits'=0;;;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;;;0; + ... 4 --warning-http-hits=0 --critical-http-hits=10 OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;0:0;0:10;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;;;0; + ... 5 --warning-ftp-hits=5 --critical-ftp-hits=10 OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;;;0; 'ftp_hits'=0;0:5;0:10;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;;;0; + ... 6 --warning-smtp-hits=20 --critical-smtp-hits=10 OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;;;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;0:20;0:10;0; + ... 7 --warning-pop3-hits=80 --critical-pop3-hits=100 OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;;;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;0:80;0:100;0; 'imap_hits'=0;;;0; 'smtp_hits'=0;;;0; + ... 8 --warning-imap-hits=50 --critical-imap-hits=50 OK: Requests live users: 38, http hits: 0, ftp hits: 0, pop3 hits: 0, imap hits: 0, smtp hits: 0 | 'live_users'=38;;;0; 'http_hits'=0;;;0; 'ftp_hits'=0;;;0; 'pop3_hits'=0;;;0; 'imap_hits'=0;0:50;0:50;0; 'smtp_hits'=0;;;0; diff --git a/tests/network/cyberoam/snmp/services.robot b/tests/network/cyberoam/snmp/services.robot new file mode 100644 index 000000000..87c4012c5 --- /dev/null +++ b/tests/network/cyberoam/snmp/services.robot @@ -0,0 +1,32 @@ +*** Settings *** +Documentation Check services. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +services ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=services + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --component='service' OK: All 21 components are ok [21/21 services]. | 'hardware.service.count'=21;;;; + ... 2 --filter='toto' OK: All 21 components are ok [21/21 services]. | 'hardware.service.count'=21;;;; + ... 3 --no-component='UNKNOWN' OK: All 21 components are ok [21/21 services]. | 'hardware.service.count'=21;;;; + ... 4 --threshold-overload='service,toto,OK,running' OK: All 21 components are ok [21/21 services]. | 'hardware.service.count'=21;;;; \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/slim_sophos.snmpwalk b/tests/network/cyberoam/snmp/slim_sophos.snmpwalk new file mode 100644 index 000000000..5206bfa89 --- /dev/null +++ b/tests/network/cyberoam/snmp/slim_sophos.snmpwalk @@ -0,0 +1,1231 @@ +.1.3.6.1.2.1.2.2.1.2.1 = STRING: Anonymized 147 +.1.3.6.1.2.1.2.2.1.2.2 = STRING: Anonymized 029 +.1.3.6.1.2.1.2.2.1.2.3 = STRING: Anonymized 088 +.1.3.6.1.2.1.2.2.1.2.4 = STRING: Anonymized 220 +.1.3.6.1.2.1.2.2.1.2.5 = STRING: Anonymized 003 +.1.3.6.1.2.1.2.2.1.2.6 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.2.7 = STRING: Anonymized 192 +.1.3.6.1.2.1.2.2.1.2.8 = STRING: Anonymized 123 +.1.3.6.1.2.1.2.2.1.2.9 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.2.10 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.2.11 = STRING: Anonymized 232 +.1.3.6.1.2.1.2.2.1.2.12 = STRING: Anonymized 093 +.1.3.6.1.2.1.2.2.1.2.13 = STRING: Anonymized 058 +.1.3.6.1.2.1.2.2.1.2.14 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.2.15 = STRING: Anonymized 158 +.1.3.6.1.2.1.2.2.1.2.16 = STRING: Anonymized 191 +.1.3.6.1.2.1.2.2.1.2.17 = STRING: Anonymized 160 +.1.3.6.1.2.1.2.2.1.2.18 = STRING: Anonymized 188 +.1.3.6.1.2.1.2.2.1.2.19 = STRING: Anonymized 034 +.1.3.6.1.2.1.2.2.1.2.20 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.2.23 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.2.24 = STRING: Anonymized 204 +.1.3.6.1.2.1.2.2.1.2.25 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.2.26 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.2.27 = STRING: Anonymized 182 +.1.3.6.1.2.1.2.2.1.2.28 = STRING: Anonymized 053 +.1.3.6.1.2.1.2.2.1.2.29 = STRING: Anonymized 232 +.1.3.6.1.2.1.2.2.1.2.30 = STRING: Anonymized 102 +.1.3.6.1.2.1.2.2.1.2.31 = STRING: Anonymized 238 +.1.3.6.1.2.1.2.2.1.2.32 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.2.36 = STRING: Anonymized 000 +.1.3.6.1.2.1.2.2.1.2.37 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.2.39 = STRING: Anonymized 021 +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: softwareLoopback(24) +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.3 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.4 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.5 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.6 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.7 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.8 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.9 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.12 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.13 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.14 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.15 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.16 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.17 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.18 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.19 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.20 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.23 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.24 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.25 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.26 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.27 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.28 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.29 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.30 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.31 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.32 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.36 = INTEGER: other(1) +.1.3.6.1.2.1.2.2.1.3.37 = INTEGER: other(1) +.1.3.6.1.2.1.2.2.1.3.39 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.2 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.3 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.4 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.6 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.7 = Gauge32: 4294967295 +.1.3.6.1.2.1.2.2.1.5.8 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.9 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.10 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.12 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.13 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.14 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.15 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.16 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.17 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.18 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.19 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.20 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.23 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.24 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.25 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.26 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.27 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.28 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.29 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.30 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.31 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.32 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.36 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.37 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.39 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.6.1 = STRING: +.1.3.6.1.2.1.2.2.1.6.2 = STRING: Anonymized 210 +.1.3.6.1.2.1.2.2.1.6.3 = STRING: +.1.3.6.1.2.1.2.2.1.6.4 = STRING: +.1.3.6.1.2.1.2.2.1.6.5 = STRING: Anonymized 132 +.1.3.6.1.2.1.2.2.1.6.6 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.6.7 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.6.8 = STRING: Anonymized 198 +.1.3.6.1.2.1.2.2.1.6.9 = STRING: Anonymized 085 +.1.3.6.1.2.1.2.2.1.6.10 = STRING: Anonymized 084 +.1.3.6.1.2.1.2.2.1.6.11 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.6.12 = STRING: Anonymized 072 +.1.3.6.1.2.1.2.2.1.6.13 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.6.14 = STRING: Anonymized 010 +.1.3.6.1.2.1.2.2.1.6.15 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.16 = STRING: Anonymized 068 +.1.3.6.1.2.1.2.2.1.6.17 = STRING: Anonymized 226 +.1.3.6.1.2.1.2.2.1.6.18 = STRING: Anonymized 038 +.1.3.6.1.2.1.2.2.1.6.19 = STRING: Anonymized 144 +.1.3.6.1.2.1.2.2.1.6.20 = STRING: Anonymized 067 +.1.3.6.1.2.1.2.2.1.6.23 = STRING: +.1.3.6.1.2.1.2.2.1.6.24 = STRING: +.1.3.6.1.2.1.2.2.1.6.25 = STRING: +.1.3.6.1.2.1.2.2.1.6.26 = STRING: Anonymized 250 +.1.3.6.1.2.1.2.2.1.6.27 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.6.28 = STRING: Anonymized 102 +.1.3.6.1.2.1.2.2.1.6.29 = STRING: Anonymized 229 +.1.3.6.1.2.1.2.2.1.6.30 = STRING: Anonymized 037 +.1.3.6.1.2.1.2.2.1.6.31 = STRING: Anonymized 154 +.1.3.6.1.2.1.2.2.1.6.32 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.6.36 = STRING: +.1.3.6.1.2.1.2.2.1.6.37 = STRING: +.1.3.6.1.2.1.2.2.1.6.39 = STRING: Anonymized 089 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.3 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.4 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.5 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.6 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.7 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.8 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.9 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.12 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.13 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.14 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.15 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.16 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.17 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.18 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.19 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.20 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.23 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.24 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.25 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.26 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.27 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.28 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.29 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.30 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.31 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.32 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.36 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.37 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.39 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.3 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.4 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.5 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.6 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.7 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.8 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.9 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.12 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.13 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.14 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.15 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.16 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.17 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.18 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.19 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.20 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.23 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.24 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.25 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.26 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.27 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.28 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.29 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.30 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.31 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.32 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.36 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.37 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.39 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 816086386 +.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.6 = Counter32: 135035687 +.1.3.6.1.2.1.2.2.1.10.7 = Counter32: 106055395 +.1.3.6.1.2.1.2.2.1.10.8 = Counter32: 894434488 +.1.3.6.1.2.1.2.2.1.10.9 = Counter32: 2266527688 +.1.3.6.1.2.1.2.2.1.10.10 = Counter32: 1771413770 +.1.3.6.1.2.1.2.2.1.10.11 = Counter32: 3700103753 +.1.3.6.1.2.1.2.2.1.10.12 = Counter32: 912751441 +.1.3.6.1.2.1.2.2.1.10.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.14 = Counter32: 3820363530 +.1.3.6.1.2.1.2.2.1.10.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.17 = Counter32: 1080729382 +.1.3.6.1.2.1.2.2.1.10.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.29 = Counter32: 90833859 +.1.3.6.1.2.1.2.2.1.10.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.32 = Counter32: 983245010 +.1.3.6.1.2.1.2.2.1.10.36 = Counter32: 3218105718 +.1.3.6.1.2.1.2.2.1.10.37 = Counter32: 2339127288 +.1.3.6.1.2.1.2.2.1.10.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.1 = Counter32: 311235449 +.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.6 = Counter32: 608921 +.1.3.6.1.2.1.2.2.1.11.7 = Counter32: 2957603730 +.1.3.6.1.2.1.2.2.1.11.8 = Counter32: 804292572 +.1.3.6.1.2.1.2.2.1.11.9 = Counter32: 724307901 +.1.3.6.1.2.1.2.2.1.11.10 = Counter32: 3611908365 +.1.3.6.1.2.1.2.2.1.11.11 = Counter32: 1461873024 +.1.3.6.1.2.1.2.2.1.11.12 = Counter32: 22522112 +.1.3.6.1.2.1.2.2.1.11.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.14 = Counter32: 7239031 +.1.3.6.1.2.1.2.2.1.11.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.17 = Counter32: 13022379 +.1.3.6.1.2.1.2.2.1.11.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.29 = Counter32: 557016795 +.1.3.6.1.2.1.2.2.1.11.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.32 = Counter32: 3984009 +.1.3.6.1.2.1.2.2.1.11.36 = Counter32: 4817280 +.1.3.6.1.2.1.2.2.1.11.37 = Counter32: 5285053 +.1.3.6.1.2.1.2.2.1.11.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.10 = Counter32: 15143971 +.1.3.6.1.2.1.2.2.1.13.11 = Counter32: 1910975 +.1.3.6.1.2.1.2.2.1.13.12 = Counter32: 1177547 +.1.3.6.1.2.1.2.2.1.13.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.14 = Counter32: 817214 +.1.3.6.1.2.1.2.2.1.13.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.17 = Counter32: 692 +.1.3.6.1.2.1.2.2.1.13.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.29 = Counter32: 275 +.1.3.6.1.2.1.2.2.1.13.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.17 = Counter32: 27194 +.1.3.6.1.2.1.2.2.1.14.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 816086386 +.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.6 = Counter32: 89203602 +.1.3.6.1.2.1.2.2.1.16.7 = Counter32: 3248384140 +.1.3.6.1.2.1.2.2.1.16.8 = Counter32: 2269336382 +.1.3.6.1.2.1.2.2.1.16.9 = Counter32: 4108826730 +.1.3.6.1.2.1.2.2.1.16.10 = Counter32: 1842425322 +.1.3.6.1.2.1.2.2.1.16.11 = Counter32: 2230351444 +.1.3.6.1.2.1.2.2.1.16.12 = Counter32: 29055595 +.1.3.6.1.2.1.2.2.1.16.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.14 = Counter32: 541665149 +.1.3.6.1.2.1.2.2.1.16.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.17 = Counter32: 3459218176 +.1.3.6.1.2.1.2.2.1.16.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.27 = Counter32: 660 +.1.3.6.1.2.1.2.2.1.16.28 = Counter32: 220 +.1.3.6.1.2.1.2.2.1.16.29 = Counter32: 2968325899 +.1.3.6.1.2.1.2.2.1.16.30 = Counter32: 491480 +.1.3.6.1.2.1.2.2.1.16.31 = Counter32: 1192796 +.1.3.6.1.2.1.2.2.1.16.32 = Counter32: 2214965357 +.1.3.6.1.2.1.2.2.1.16.36 = Counter32: 2588289726 +.1.3.6.1.2.1.2.2.1.16.37 = Counter32: 2941818072 +.1.3.6.1.2.1.2.2.1.16.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 311235449 +.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.6 = Counter32: 563639 +.1.3.6.1.2.1.2.2.1.17.7 = Counter32: 2836151371 +.1.3.6.1.2.1.2.2.1.17.8 = Counter32: 746569775 +.1.3.6.1.2.1.2.2.1.17.9 = Counter32: 804288376 +.1.3.6.1.2.1.2.2.1.17.10 = Counter32: 3787287640 +.1.3.6.1.2.1.2.2.1.17.11 = Counter32: 1186744628 +.1.3.6.1.2.1.2.2.1.17.12 = Counter32: 12481327 +.1.3.6.1.2.1.2.2.1.17.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.14 = Counter32: 8051014 +.1.3.6.1.2.1.2.2.1.17.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.17 = Counter32: 24713191 +.1.3.6.1.2.1.2.2.1.17.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.27 = Counter32: 6 +.1.3.6.1.2.1.2.2.1.17.28 = Counter32: 2 +.1.3.6.1.2.1.2.2.1.17.29 = Counter32: 1584253698 +.1.3.6.1.2.1.2.2.1.17.30 = Counter32: 11692 +.1.3.6.1.2.1.2.2.1.17.31 = Counter32: 28390 +.1.3.6.1.2.1.2.2.1.17.32 = Counter32: 8235853 +.1.3.6.1.2.1.2.2.1.17.36 = Counter32: 4102143 +.1.3.6.1.2.1.2.2.1.17.37 = Counter32: 5014348 +.1.3.6.1.2.1.2.2.1.17.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.2 = Counter32: 76759 +.1.3.6.1.2.1.2.2.1.19.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.7 = Counter32: 12 +.1.3.6.1.2.1.2.2.1.19.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.17 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.36 = Counter32: 57 +.1.3.6.1.2.1.2.2.1.19.37 = Counter32: 818 +.1.3.6.1.2.1.2.2.1.19.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.17 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.21.1 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.3 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.4 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.5 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.6 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.7 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.8 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.9 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.10 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.11 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.12 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.13 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.14 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.15 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.16 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.17 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.18 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.19 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.20 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.23 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.24 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.25 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.26 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.27 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.28 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.29 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.30 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.31 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.32 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.36 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.37 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.39 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.22.1 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.3 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.4 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.5 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.6 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.7 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.8 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.9 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.10 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.11 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.12 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.13 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.14 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.15 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.16 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.17 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.18 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.19 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.20 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.23 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.24 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.25 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.26 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.27 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.28 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.29 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.30 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.31 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.32 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.36 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.37 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.39 = OID: .0.0 +.1.3.6.1.2.1.4.20.1.2.1.1.1.1 = INTEGER: 15 +.1.3.6.1.2.1.4.20.1.2.10.0.0.254 = INTEGER: 10 +.1.3.6.1.2.1.4.20.1.2.10.255.0.1 = INTEGER: 27 +.1.3.6.1.2.1.4.20.1.2.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.2.151.12.111.4 = INTEGER: 11 +.1.3.6.1.2.1.4.20.1.2.169.254.192.2 = INTEGER: 17 +.1.3.6.1.2.1.4.20.1.2.169.254.234.5 = INTEGER: 2 +.1.3.6.1.2.1.4.20.1.2.192.168.30.254 = INTEGER: 12 +.1.3.6.1.2.1.4.20.1.2.192.168.40.1 = INTEGER: 36 +.1.3.6.1.2.1.4.20.1.2.192.168.40.129 = INTEGER: 37 +.1.3.6.1.2.1.4.20.1.2.192.168.80.254 = INTEGER: 32 +.1.3.6.1.2.1.4.20.1.2.192.168.201.254 = INTEGER: 29 +.1.3.6.1.2.1.4.20.1.2.192.168.202.254 = INTEGER: 30 +.1.3.6.1.2.1.4.20.1.2.192.168.203.254 = INTEGER: 31 +.1.3.6.1.2.1.4.20.1.2.192.168.217.1 = INTEGER: 14 +.1.3.6.1.2.1.4.20.1.2.192.168.218.4 = INTEGER: 28 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.3 = STRING: Anonymized 184 +.1.3.6.1.2.1.31.1.1.1.1.4 = STRING: Anonymized 101 +.1.3.6.1.2.1.31.1.1.1.1.5 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.6 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.7 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.8 = STRING: Anonymized 072 +.1.3.6.1.2.1.31.1.1.1.1.9 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.10 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.11 = STRING: Anonymized 118 +.1.3.6.1.2.1.31.1.1.1.1.12 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.13 = STRING: Anonymized 071 +.1.3.6.1.2.1.31.1.1.1.1.14 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.15 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.16 = STRING: Anonymized 191 +.1.3.6.1.2.1.31.1.1.1.1.17 = STRING: Anonymized 242 +.1.3.6.1.2.1.31.1.1.1.1.18 = STRING: Anonymized 175 +.1.3.6.1.2.1.31.1.1.1.1.19 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.20 = STRING: Anonymized 080 +.1.3.6.1.2.1.31.1.1.1.1.23 = STRING: Anonymized 092 +.1.3.6.1.2.1.31.1.1.1.1.24 = STRING: Anonymized 187 +.1.3.6.1.2.1.31.1.1.1.1.25 = STRING: Anonymized 163 +.1.3.6.1.2.1.31.1.1.1.1.26 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.1.27 = STRING: Anonymized 151 +.1.3.6.1.2.1.31.1.1.1.1.28 = STRING: Anonymized 141 +.1.3.6.1.2.1.31.1.1.1.1.29 = STRING: Anonymized 171 +.1.3.6.1.2.1.31.1.1.1.1.30 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.1.31 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.32 = STRING: Anonymized 137 +.1.3.6.1.2.1.31.1.1.1.1.36 = STRING: Anonymized 028 +.1.3.6.1.2.1.31.1.1.1.1.37 = STRING: Anonymized 105 +.1.3.6.1.2.1.31.1.1.1.1.39 = STRING: Anonymized 045 +.1.3.6.1.2.1.31.1.1.1.2.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.29 = Counter32: 2169 +.1.3.6.1.2.1.31.1.1.1.2.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.6.1 = Counter64: 159731655835 +.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.6 = Counter64: 135035805 +.1.3.6.1.2.1.31.1.1.1.6.7 = Counter64: 3380252424024 +.1.3.6.1.2.1.31.1.1.1.6.8 = Counter64: 5146279094400 +.1.3.6.1.2.1.31.1.1.1.6.9 = Counter64: 5147653913693 +.1.3.6.1.2.1.31.1.1.1.6.10 = Counter64: 3682563614036 +.1.3.6.1.2.1.31.1.1.1.6.11 = Counter64: 1451114931208 +.1.3.6.1.2.1.31.1.1.1.6.12 = Counter64: 13797678926 +.1.3.6.1.2.1.31.1.1.1.6.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.14 = Counter64: 3820364831 +.1.3.6.1.2.1.31.1.1.1.6.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.17 = Counter64: 1080733376 +.1.3.6.1.2.1.31.1.1.1.6.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.29 = Counter64: 1013706131268 +.1.3.6.1.2.1.31.1.1.1.6.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.32 = Counter64: 983249543 +.1.3.6.1.2.1.31.1.1.1.6.36 = Counter64: 3218111678 +.1.3.6.1.2.1.31.1.1.1.6.37 = Counter64: 2339438452 +.1.3.6.1.2.1.31.1.1.1.6.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.1 = Counter64: 311238779 +.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.6 = Counter64: 608922 +.1.3.6.1.2.1.31.1.1.1.7.7 = Counter64: 2957639849 +.1.3.6.1.2.1.31.1.1.1.7.8 = Counter64: 5099307474 +.1.3.6.1.2.1.31.1.1.1.7.9 = Counter64: 724349420 +.1.3.6.1.2.1.31.1.1.1.7.10 = Counter64: 3611938635 +.1.3.6.1.2.1.31.1.1.1.7.11 = Counter64: 1461892794 +.1.3.6.1.2.1.31.1.1.1.7.12 = Counter64: 22522190 +.1.3.6.1.2.1.31.1.1.1.7.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.14 = Counter64: 7239047 +.1.3.6.1.2.1.31.1.1.1.7.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.17 = Counter64: 13022433 +.1.3.6.1.2.1.31.1.1.1.7.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.29 = Counter64: 557042139 +.1.3.6.1.2.1.31.1.1.1.7.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.32 = Counter64: 3984024 +.1.3.6.1.2.1.31.1.1.1.7.36 = Counter64: 4817301 +.1.3.6.1.2.1.31.1.1.1.7.37 = Counter64: 5292043 +.1.3.6.1.2.1.31.1.1.1.7.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.29 = Counter64: 2169 +.1.3.6.1.2.1.31.1.1.1.8.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1 = Counter64: 159731655835 +.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.6 = Counter64: 89203720 +.1.3.6.1.2.1.31.1.1.1.10.7 = Counter64: 3349033946951 +.1.3.6.1.2.1.31.1.1.1.10.8 = Counter64: 5147653913582 +.1.3.6.1.2.1.31.1.1.1.10.9 = Counter64: 5166676325433 +.1.3.6.1.2.1.31.1.1.1.10.10 = Counter64: 4481502747279 +.1.3.6.1.2.1.31.1.1.1.10.11 = Counter64: 642185108419 +.1.3.6.1.2.1.31.1.1.1.10.12 = Counter64: 8619024942 +.1.3.6.1.2.1.31.1.1.1.10.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.14 = Counter64: 541666193 +.1.3.6.1.2.1.31.1.1.1.10.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.17 = Counter64: 3459240699 +.1.3.6.1.2.1.31.1.1.1.10.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.27 = Counter64: 660 +.1.3.6.1.2.1.31.1.1.1.10.28 = Counter64: 220 +.1.3.6.1.2.1.31.1.1.1.10.29 = Counter64: 2240647975939 +.1.3.6.1.2.1.31.1.1.1.10.30 = Counter64: 491480 +.1.3.6.1.2.1.31.1.1.1.10.31 = Counter64: 1193048 +.1.3.6.1.2.1.31.1.1.1.10.32 = Counter64: 2214976596 +.1.3.6.1.2.1.31.1.1.1.10.36 = Counter64: 2588293755 +.1.3.6.1.2.1.31.1.1.1.10.37 = Counter64: 2943757933 +.1.3.6.1.2.1.31.1.1.1.10.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 311238779 +.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.6 = Counter64: 563640 +.1.3.6.1.2.1.31.1.1.1.11.7 = Counter64: 2836176053 +.1.3.6.1.2.1.31.1.1.1.11.8 = Counter64: 5041574603 +.1.3.6.1.2.1.31.1.1.1.11.9 = Counter64: 804340189 +.1.3.6.1.2.1.31.1.1.1.11.10 = Counter64: 3787315137 +.1.3.6.1.2.1.31.1.1.1.11.11 = Counter64: 1186755765 +.1.3.6.1.2.1.31.1.1.1.11.12 = Counter64: 12481379 +.1.3.6.1.2.1.31.1.1.1.11.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.14 = Counter64: 8051029 +.1.3.6.1.2.1.31.1.1.1.11.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.17 = Counter64: 24713360 +.1.3.6.1.2.1.31.1.1.1.11.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.27 = Counter64: 6 +.1.3.6.1.2.1.31.1.1.1.11.28 = Counter64: 2 +.1.3.6.1.2.1.31.1.1.1.11.29 = Counter64: 1584273437 +.1.3.6.1.2.1.31.1.1.1.11.30 = Counter64: 11692 +.1.3.6.1.2.1.31.1.1.1.11.31 = Counter64: 28396 +.1.3.6.1.2.1.31.1.1.1.11.32 = Counter64: 8235886 +.1.3.6.1.2.1.31.1.1.1.11.36 = Counter64: 4102167 +.1.3.6.1.2.1.31.1.1.1.11.37 = Counter64: 5026956 +.1.3.6.1.2.1.31.1.1.1.11.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.15.1 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.3 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.4 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.6 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.7 = Gauge32: 10000 +.1.3.6.1.2.1.31.1.1.1.15.8 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.9 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.10 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.12 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.13 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.14 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.15 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.16 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.17 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.18 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.19 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.20 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.23 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.24 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.25 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.26 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.27 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.28 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.29 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.30 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.31 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.32 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.36 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.37 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.39 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.3 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.4 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.6 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.7 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.8 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.9 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.12 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.13 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.14 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.15 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.16 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.17 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.18 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.19 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.20 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.23 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.24 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.25 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.26 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.27 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.28 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.29 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.30 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.31 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.32 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.36 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.37 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.39 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.3 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.4 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.6 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.7 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.8 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.9 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.12 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.13 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.14 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.15 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.16 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.17 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.18 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.19 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.20 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.23 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.24 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.25 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.26 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.27 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.28 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.29 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.30 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.31 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.32 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.36 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.37 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.39 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.18.1 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.2 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.3 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.4 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.6 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.7 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.8 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.9 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.12 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.13 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.14 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.15 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.16 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.17 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.18 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.19 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.20 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.23 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.24 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.25 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.26 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.27 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.28 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.29 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.30 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.31 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.32 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.36 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.37 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.39 = STRING: +.1.3.6.1.2.1.31.1.1.1.19.1 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.2 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.3 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.4 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.6 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.7 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.8 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.9 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.12 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.13 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.14 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.15 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.16 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.17 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.18 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.19 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.20 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.23 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.24 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.25 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.26 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.27 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.28 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.29 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.30 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.31 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.32 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.36 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.37 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.39 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.2604.5.1.2.4.1.0 = Gauge32: 89056 +.1.3.6.1.4.1.2604.5.1.2.4.2.0 = Gauge32: 24 +.1.3.6.1.4.1.2604.5.1.2.5.1.0 = Gauge32: 7791 +.1.3.6.1.4.1.2604.5.1.2.5.2.0 = Gauge32: 58 +.1.3.6.1.4.1.2604.5.1.2.5.3.0 = Gauge32: 7911 +.1.3.6.1.4.1.2604.5.1.2.5.4.0 = Gauge32: 10 +.1.3.6.1.4.1.2604.5.1.2.6.0 = Gauge32: 38 +.1.3.6.1.4.1.2604.5.1.2.7.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.8.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.1.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.2.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.3.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.3.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.2.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.3.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.4.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.5.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.6.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.7.0 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.3.8.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.9.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.10.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.11.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.12.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.13.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.14.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.15.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.16.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.17.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.18.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.19.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.20.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.21.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.4.1.0 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.4.4.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.4.5.0 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.4.8.0 = STRING: Anonymized 007 +.1.3.6.1.4.1.2604.5.1.4.9.0 = IpAddress: 192.168.42.167 +.1.3.6.1.4.1.2604.5.1.4.10.0 = IpAddress: 192.168.42.023 +.1.3.6.1.4.1.2604.5.1.5.1.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.1.2.0 = STRING: Dec 31 2999 +.1.3.6.1.4.1.2604.5.1.5.2.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.2.2.0 = STRING: Feb 27 2029 +.1.3.6.1.4.1.2604.5.1.5.3.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.3.2.0 = STRING: Feb 27 2029 +.1.3.6.1.4.1.2604.5.1.5.4.1.0 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.5.4.2.0 = STRING: fail +.1.3.6.1.4.1.2604.5.1.5.5.1.0 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.5.5.2.0 = STRING: Anonymized 009 +.1.3.6.1.4.1.2604.5.1.5.6.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.6.2.0 = STRING: Anonymized 230 +.1.3.6.1.4.1.2604.5.1.5.7.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.7.2.0 = STRING: Anonymized 220 +.1.3.6.1.4.1.2604.5.1.5.8.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.8.2.0 = STRING: Anonymized 188 +.1.3.6.1.4.1.2604.5.1.5.9.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.9.2.0 = STRING: Anonymized 237 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.1 = STRING: Anonymized 093 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.2 = STRING: Anonymized 252 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.3 = STRING: Anonymized 029 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.4 = STRING: Anonymized 132 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.1 = STRING: Anonymized 022 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.2 = STRING: Anonymized 070 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.3 = STRING: Anonymized 157 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.4 = "" +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.1 = STRING: Anonymized 208 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.2 = STRING: Anonymized 055 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.3 = STRING: Anonymized 151 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.4 = STRING: Anonymized 089 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.1 = STRING: Anonymized 245 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.2 = STRING: Anonymized 123 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.3 = STRING: Anonymized 055 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.4 = STRING: Anonymized 185 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.1 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.2 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.3 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.4 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.1 = STRING: Anonymized 238 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.2 = STRING: Anonymized 076 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.3 = STRING: Anonymized 081 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.4 = STRING: Anonymized 172 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.1 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.2 = INTEGER: 12 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.3 = INTEGER: 12 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.4 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.1 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.2 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.3 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.4 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.1 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.2 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.3 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.4 = INTEGER: 1 diff --git a/tests/network/cyberoam/snmp/slim_sophos_no_ha.snmpwalk b/tests/network/cyberoam/snmp/slim_sophos_no_ha.snmpwalk new file mode 100644 index 000000000..2f5a86026 --- /dev/null +++ b/tests/network/cyberoam/snmp/slim_sophos_no_ha.snmpwalk @@ -0,0 +1,1231 @@ +.1.3.6.1.2.1.2.2.1.2.1 = STRING: Anonymized 147 +.1.3.6.1.2.1.2.2.1.2.2 = STRING: Anonymized 029 +.1.3.6.1.2.1.2.2.1.2.3 = STRING: Anonymized 088 +.1.3.6.1.2.1.2.2.1.2.4 = STRING: Anonymized 220 +.1.3.6.1.2.1.2.2.1.2.5 = STRING: Anonymized 003 +.1.3.6.1.2.1.2.2.1.2.6 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.2.7 = STRING: Anonymized 192 +.1.3.6.1.2.1.2.2.1.2.8 = STRING: Anonymized 123 +.1.3.6.1.2.1.2.2.1.2.9 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.2.10 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.2.11 = STRING: Anonymized 232 +.1.3.6.1.2.1.2.2.1.2.12 = STRING: Anonymized 093 +.1.3.6.1.2.1.2.2.1.2.13 = STRING: Anonymized 058 +.1.3.6.1.2.1.2.2.1.2.14 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.2.15 = STRING: Anonymized 158 +.1.3.6.1.2.1.2.2.1.2.16 = STRING: Anonymized 191 +.1.3.6.1.2.1.2.2.1.2.17 = STRING: Anonymized 160 +.1.3.6.1.2.1.2.2.1.2.18 = STRING: Anonymized 188 +.1.3.6.1.2.1.2.2.1.2.19 = STRING: Anonymized 034 +.1.3.6.1.2.1.2.2.1.2.20 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.2.23 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.2.24 = STRING: Anonymized 204 +.1.3.6.1.2.1.2.2.1.2.25 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.2.26 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.2.27 = STRING: Anonymized 182 +.1.3.6.1.2.1.2.2.1.2.28 = STRING: Anonymized 053 +.1.3.6.1.2.1.2.2.1.2.29 = STRING: Anonymized 232 +.1.3.6.1.2.1.2.2.1.2.30 = STRING: Anonymized 102 +.1.3.6.1.2.1.2.2.1.2.31 = STRING: Anonymized 238 +.1.3.6.1.2.1.2.2.1.2.32 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.2.36 = STRING: Anonymized 000 +.1.3.6.1.2.1.2.2.1.2.37 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.2.39 = STRING: Anonymized 021 +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: softwareLoopback(24) +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.3 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.4 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.5 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.6 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.7 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.8 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.9 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.12 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.13 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.14 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.15 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.16 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.17 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.18 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.19 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.20 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.23 = INTEGER: tunnel(131) +.1.3.6.1.2.1.2.2.1.3.24 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.25 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.26 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.27 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.28 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.29 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.30 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.31 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.32 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.36 = INTEGER: other(1) +.1.3.6.1.2.1.2.2.1.3.37 = INTEGER: other(1) +.1.3.6.1.2.1.2.2.1.3.39 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.2 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.3 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.4 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.6 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.7 = Gauge32: 4294967295 +.1.3.6.1.2.1.2.2.1.5.8 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.9 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.10 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.12 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.13 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.14 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.15 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.16 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.17 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.18 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.19 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.20 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.23 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.24 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.25 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.26 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.27 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.28 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.29 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.30 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.31 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.32 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.36 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.37 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.39 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.6.1 = STRING: +.1.3.6.1.2.1.2.2.1.6.2 = STRING: Anonymized 210 +.1.3.6.1.2.1.2.2.1.6.3 = STRING: +.1.3.6.1.2.1.2.2.1.6.4 = STRING: +.1.3.6.1.2.1.2.2.1.6.5 = STRING: Anonymized 132 +.1.3.6.1.2.1.2.2.1.6.6 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.6.7 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.6.8 = STRING: Anonymized 198 +.1.3.6.1.2.1.2.2.1.6.9 = STRING: Anonymized 085 +.1.3.6.1.2.1.2.2.1.6.10 = STRING: Anonymized 084 +.1.3.6.1.2.1.2.2.1.6.11 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.6.12 = STRING: Anonymized 072 +.1.3.6.1.2.1.2.2.1.6.13 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.6.14 = STRING: Anonymized 010 +.1.3.6.1.2.1.2.2.1.6.15 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.16 = STRING: Anonymized 068 +.1.3.6.1.2.1.2.2.1.6.17 = STRING: Anonymized 226 +.1.3.6.1.2.1.2.2.1.6.18 = STRING: Anonymized 038 +.1.3.6.1.2.1.2.2.1.6.19 = STRING: Anonymized 144 +.1.3.6.1.2.1.2.2.1.6.20 = STRING: Anonymized 067 +.1.3.6.1.2.1.2.2.1.6.23 = STRING: +.1.3.6.1.2.1.2.2.1.6.24 = STRING: +.1.3.6.1.2.1.2.2.1.6.25 = STRING: +.1.3.6.1.2.1.2.2.1.6.26 = STRING: Anonymized 250 +.1.3.6.1.2.1.2.2.1.6.27 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.6.28 = STRING: Anonymized 102 +.1.3.6.1.2.1.2.2.1.6.29 = STRING: Anonymized 229 +.1.3.6.1.2.1.2.2.1.6.30 = STRING: Anonymized 037 +.1.3.6.1.2.1.2.2.1.6.31 = STRING: Anonymized 154 +.1.3.6.1.2.1.2.2.1.6.32 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.6.36 = STRING: +.1.3.6.1.2.1.2.2.1.6.37 = STRING: +.1.3.6.1.2.1.2.2.1.6.39 = STRING: Anonymized 089 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.3 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.4 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.5 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.6 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.7 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.8 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.9 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.12 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.13 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.14 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.15 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.16 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.17 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.18 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.19 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.20 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.23 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.24 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.25 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.26 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.27 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.28 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.29 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.30 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.31 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.32 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.36 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.37 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.39 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.3 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.4 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.5 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.6 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.7 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.8 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.9 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.12 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.13 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.14 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.15 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.16 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.17 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.18 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.19 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.20 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.23 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.24 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.25 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.26 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.27 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.28 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.29 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.30 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.31 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.32 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.36 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.37 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.39 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 816086386 +.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.6 = Counter32: 135035687 +.1.3.6.1.2.1.2.2.1.10.7 = Counter32: 106055395 +.1.3.6.1.2.1.2.2.1.10.8 = Counter32: 894434488 +.1.3.6.1.2.1.2.2.1.10.9 = Counter32: 2266527688 +.1.3.6.1.2.1.2.2.1.10.10 = Counter32: 1771413770 +.1.3.6.1.2.1.2.2.1.10.11 = Counter32: 3700103753 +.1.3.6.1.2.1.2.2.1.10.12 = Counter32: 912751441 +.1.3.6.1.2.1.2.2.1.10.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.14 = Counter32: 3820363530 +.1.3.6.1.2.1.2.2.1.10.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.17 = Counter32: 1080729382 +.1.3.6.1.2.1.2.2.1.10.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.29 = Counter32: 90833859 +.1.3.6.1.2.1.2.2.1.10.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.10.32 = Counter32: 983245010 +.1.3.6.1.2.1.2.2.1.10.36 = Counter32: 3218105718 +.1.3.6.1.2.1.2.2.1.10.37 = Counter32: 2339127288 +.1.3.6.1.2.1.2.2.1.10.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.1 = Counter32: 311235449 +.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.6 = Counter32: 608921 +.1.3.6.1.2.1.2.2.1.11.7 = Counter32: 2957603730 +.1.3.6.1.2.1.2.2.1.11.8 = Counter32: 804292572 +.1.3.6.1.2.1.2.2.1.11.9 = Counter32: 724307901 +.1.3.6.1.2.1.2.2.1.11.10 = Counter32: 3611908365 +.1.3.6.1.2.1.2.2.1.11.11 = Counter32: 1461873024 +.1.3.6.1.2.1.2.2.1.11.12 = Counter32: 22522112 +.1.3.6.1.2.1.2.2.1.11.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.14 = Counter32: 7239031 +.1.3.6.1.2.1.2.2.1.11.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.17 = Counter32: 13022379 +.1.3.6.1.2.1.2.2.1.11.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.29 = Counter32: 557016795 +.1.3.6.1.2.1.2.2.1.11.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.11.32 = Counter32: 3984009 +.1.3.6.1.2.1.2.2.1.11.36 = Counter32: 4817280 +.1.3.6.1.2.1.2.2.1.11.37 = Counter32: 5285053 +.1.3.6.1.2.1.2.2.1.11.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.10 = Counter32: 15143971 +.1.3.6.1.2.1.2.2.1.13.11 = Counter32: 1910975 +.1.3.6.1.2.1.2.2.1.13.12 = Counter32: 1177547 +.1.3.6.1.2.1.2.2.1.13.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.14 = Counter32: 817214 +.1.3.6.1.2.1.2.2.1.13.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.17 = Counter32: 692 +.1.3.6.1.2.1.2.2.1.13.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.29 = Counter32: 275 +.1.3.6.1.2.1.2.2.1.13.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.13.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.17 = Counter32: 27194 +.1.3.6.1.2.1.2.2.1.14.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.14.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 816086386 +.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.6 = Counter32: 89203602 +.1.3.6.1.2.1.2.2.1.16.7 = Counter32: 3248384140 +.1.3.6.1.2.1.2.2.1.16.8 = Counter32: 2269336382 +.1.3.6.1.2.1.2.2.1.16.9 = Counter32: 4108826730 +.1.3.6.1.2.1.2.2.1.16.10 = Counter32: 1842425322 +.1.3.6.1.2.1.2.2.1.16.11 = Counter32: 2230351444 +.1.3.6.1.2.1.2.2.1.16.12 = Counter32: 29055595 +.1.3.6.1.2.1.2.2.1.16.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.14 = Counter32: 541665149 +.1.3.6.1.2.1.2.2.1.16.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.17 = Counter32: 3459218176 +.1.3.6.1.2.1.2.2.1.16.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.27 = Counter32: 660 +.1.3.6.1.2.1.2.2.1.16.28 = Counter32: 220 +.1.3.6.1.2.1.2.2.1.16.29 = Counter32: 2968325899 +.1.3.6.1.2.1.2.2.1.16.30 = Counter32: 491480 +.1.3.6.1.2.1.2.2.1.16.31 = Counter32: 1192796 +.1.3.6.1.2.1.2.2.1.16.32 = Counter32: 2214965357 +.1.3.6.1.2.1.2.2.1.16.36 = Counter32: 2588289726 +.1.3.6.1.2.1.2.2.1.16.37 = Counter32: 2941818072 +.1.3.6.1.2.1.2.2.1.16.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 311235449 +.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.6 = Counter32: 563639 +.1.3.6.1.2.1.2.2.1.17.7 = Counter32: 2836151371 +.1.3.6.1.2.1.2.2.1.17.8 = Counter32: 746569775 +.1.3.6.1.2.1.2.2.1.17.9 = Counter32: 804288376 +.1.3.6.1.2.1.2.2.1.17.10 = Counter32: 3787287640 +.1.3.6.1.2.1.2.2.1.17.11 = Counter32: 1186744628 +.1.3.6.1.2.1.2.2.1.17.12 = Counter32: 12481327 +.1.3.6.1.2.1.2.2.1.17.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.14 = Counter32: 8051014 +.1.3.6.1.2.1.2.2.1.17.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.17 = Counter32: 24713191 +.1.3.6.1.2.1.2.2.1.17.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.17.27 = Counter32: 6 +.1.3.6.1.2.1.2.2.1.17.28 = Counter32: 2 +.1.3.6.1.2.1.2.2.1.17.29 = Counter32: 1584253698 +.1.3.6.1.2.1.2.2.1.17.30 = Counter32: 11692 +.1.3.6.1.2.1.2.2.1.17.31 = Counter32: 28390 +.1.3.6.1.2.1.2.2.1.17.32 = Counter32: 8235853 +.1.3.6.1.2.1.2.2.1.17.36 = Counter32: 4102143 +.1.3.6.1.2.1.2.2.1.17.37 = Counter32: 5014348 +.1.3.6.1.2.1.2.2.1.17.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.2 = Counter32: 76759 +.1.3.6.1.2.1.2.2.1.19.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.7 = Counter32: 12 +.1.3.6.1.2.1.2.2.1.19.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.17 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.19.36 = Counter32: 57 +.1.3.6.1.2.1.2.2.1.19.37 = Counter32: 818 +.1.3.6.1.2.1.2.2.1.19.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.6 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.7 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.8 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.9 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.14 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.16 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.17 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.18 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.19 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.20 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.23 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.24 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.25 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.26 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.27 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.28 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.29 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.30 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.31 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.36 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.37 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.39 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.21.1 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.3 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.4 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.5 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.6 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.7 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.8 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.9 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.10 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.11 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.12 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.13 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.14 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.15 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.16 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.17 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.18 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.19 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.20 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.23 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.24 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.25 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.26 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.27 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.28 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.29 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.30 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.31 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.32 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.36 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.37 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.39 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.22.1 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.3 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.4 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.5 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.6 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.7 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.8 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.9 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.10 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.11 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.12 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.13 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.14 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.15 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.16 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.17 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.18 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.19 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.20 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.23 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.24 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.25 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.26 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.27 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.28 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.29 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.30 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.31 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.32 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.36 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.37 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.39 = OID: .0.0 +.1.3.6.1.2.1.4.20.1.2.1.1.1.1 = INTEGER: 15 +.1.3.6.1.2.1.4.20.1.2.10.0.0.254 = INTEGER: 10 +.1.3.6.1.2.1.4.20.1.2.10.255.0.1 = INTEGER: 27 +.1.3.6.1.2.1.4.20.1.2.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.2.151.12.111.4 = INTEGER: 11 +.1.3.6.1.2.1.4.20.1.2.169.254.192.2 = INTEGER: 17 +.1.3.6.1.2.1.4.20.1.2.169.254.234.5 = INTEGER: 2 +.1.3.6.1.2.1.4.20.1.2.192.168.30.254 = INTEGER: 12 +.1.3.6.1.2.1.4.20.1.2.192.168.40.1 = INTEGER: 36 +.1.3.6.1.2.1.4.20.1.2.192.168.40.129 = INTEGER: 37 +.1.3.6.1.2.1.4.20.1.2.192.168.80.254 = INTEGER: 32 +.1.3.6.1.2.1.4.20.1.2.192.168.201.254 = INTEGER: 29 +.1.3.6.1.2.1.4.20.1.2.192.168.202.254 = INTEGER: 30 +.1.3.6.1.2.1.4.20.1.2.192.168.203.254 = INTEGER: 31 +.1.3.6.1.2.1.4.20.1.2.192.168.217.1 = INTEGER: 14 +.1.3.6.1.2.1.4.20.1.2.192.168.218.4 = INTEGER: 28 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.3 = STRING: Anonymized 184 +.1.3.6.1.2.1.31.1.1.1.1.4 = STRING: Anonymized 101 +.1.3.6.1.2.1.31.1.1.1.1.5 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.6 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.7 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.8 = STRING: Anonymized 072 +.1.3.6.1.2.1.31.1.1.1.1.9 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.10 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.11 = STRING: Anonymized 118 +.1.3.6.1.2.1.31.1.1.1.1.12 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.13 = STRING: Anonymized 071 +.1.3.6.1.2.1.31.1.1.1.1.14 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.15 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.16 = STRING: Anonymized 191 +.1.3.6.1.2.1.31.1.1.1.1.17 = STRING: Anonymized 242 +.1.3.6.1.2.1.31.1.1.1.1.18 = STRING: Anonymized 175 +.1.3.6.1.2.1.31.1.1.1.1.19 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.20 = STRING: Anonymized 080 +.1.3.6.1.2.1.31.1.1.1.1.23 = STRING: Anonymized 092 +.1.3.6.1.2.1.31.1.1.1.1.24 = STRING: Anonymized 187 +.1.3.6.1.2.1.31.1.1.1.1.25 = STRING: Anonymized 163 +.1.3.6.1.2.1.31.1.1.1.1.26 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.1.27 = STRING: Anonymized 151 +.1.3.6.1.2.1.31.1.1.1.1.28 = STRING: Anonymized 141 +.1.3.6.1.2.1.31.1.1.1.1.29 = STRING: Anonymized 171 +.1.3.6.1.2.1.31.1.1.1.1.30 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.1.31 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.32 = STRING: Anonymized 137 +.1.3.6.1.2.1.31.1.1.1.1.36 = STRING: Anonymized 028 +.1.3.6.1.2.1.31.1.1.1.1.37 = STRING: Anonymized 105 +.1.3.6.1.2.1.31.1.1.1.1.39 = STRING: Anonymized 045 +.1.3.6.1.2.1.31.1.1.1.2.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.29 = Counter32: 2169 +.1.3.6.1.2.1.31.1.1.1.2.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.2.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.3.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.4.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.1 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.3 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.4 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.5 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.6 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.7 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.8 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.9 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.10 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.11 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.12 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.13 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.14 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.15 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.16 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.17 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.18 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.19 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.20 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.23 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.24 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.25 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.26 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.27 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.28 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.29 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.30 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.31 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.32 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.36 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.37 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.5.39 = Counter32: 0 +.1.3.6.1.2.1.31.1.1.1.6.1 = Counter64: 159731655835 +.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.6 = Counter64: 135035805 +.1.3.6.1.2.1.31.1.1.1.6.7 = Counter64: 3380252424024 +.1.3.6.1.2.1.31.1.1.1.6.8 = Counter64: 5146279094400 +.1.3.6.1.2.1.31.1.1.1.6.9 = Counter64: 5147653913693 +.1.3.6.1.2.1.31.1.1.1.6.10 = Counter64: 3682563614036 +.1.3.6.1.2.1.31.1.1.1.6.11 = Counter64: 1451114931208 +.1.3.6.1.2.1.31.1.1.1.6.12 = Counter64: 13797678926 +.1.3.6.1.2.1.31.1.1.1.6.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.14 = Counter64: 3820364831 +.1.3.6.1.2.1.31.1.1.1.6.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.17 = Counter64: 1080733376 +.1.3.6.1.2.1.31.1.1.1.6.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.29 = Counter64: 1013706131268 +.1.3.6.1.2.1.31.1.1.1.6.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.6.32 = Counter64: 983249543 +.1.3.6.1.2.1.31.1.1.1.6.36 = Counter64: 3218111678 +.1.3.6.1.2.1.31.1.1.1.6.37 = Counter64: 2339438452 +.1.3.6.1.2.1.31.1.1.1.6.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.1 = Counter64: 311238779 +.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.6 = Counter64: 608922 +.1.3.6.1.2.1.31.1.1.1.7.7 = Counter64: 2957639849 +.1.3.6.1.2.1.31.1.1.1.7.8 = Counter64: 5099307474 +.1.3.6.1.2.1.31.1.1.1.7.9 = Counter64: 724349420 +.1.3.6.1.2.1.31.1.1.1.7.10 = Counter64: 3611938635 +.1.3.6.1.2.1.31.1.1.1.7.11 = Counter64: 1461892794 +.1.3.6.1.2.1.31.1.1.1.7.12 = Counter64: 22522190 +.1.3.6.1.2.1.31.1.1.1.7.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.14 = Counter64: 7239047 +.1.3.6.1.2.1.31.1.1.1.7.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.17 = Counter64: 13022433 +.1.3.6.1.2.1.31.1.1.1.7.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.29 = Counter64: 557042139 +.1.3.6.1.2.1.31.1.1.1.7.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.7.32 = Counter64: 3984024 +.1.3.6.1.2.1.31.1.1.1.7.36 = Counter64: 4817301 +.1.3.6.1.2.1.31.1.1.1.7.37 = Counter64: 5292043 +.1.3.6.1.2.1.31.1.1.1.7.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.29 = Counter64: 2169 +.1.3.6.1.2.1.31.1.1.1.8.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.8.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.9.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1 = Counter64: 159731655835 +.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.6 = Counter64: 89203720 +.1.3.6.1.2.1.31.1.1.1.10.7 = Counter64: 3349033946951 +.1.3.6.1.2.1.31.1.1.1.10.8 = Counter64: 5147653913582 +.1.3.6.1.2.1.31.1.1.1.10.9 = Counter64: 5166676325433 +.1.3.6.1.2.1.31.1.1.1.10.10 = Counter64: 4481502747279 +.1.3.6.1.2.1.31.1.1.1.10.11 = Counter64: 642185108419 +.1.3.6.1.2.1.31.1.1.1.10.12 = Counter64: 8619024942 +.1.3.6.1.2.1.31.1.1.1.10.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.14 = Counter64: 541666193 +.1.3.6.1.2.1.31.1.1.1.10.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.17 = Counter64: 3459240699 +.1.3.6.1.2.1.31.1.1.1.10.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.27 = Counter64: 660 +.1.3.6.1.2.1.31.1.1.1.10.28 = Counter64: 220 +.1.3.6.1.2.1.31.1.1.1.10.29 = Counter64: 2240647975939 +.1.3.6.1.2.1.31.1.1.1.10.30 = Counter64: 491480 +.1.3.6.1.2.1.31.1.1.1.10.31 = Counter64: 1193048 +.1.3.6.1.2.1.31.1.1.1.10.32 = Counter64: 2214976596 +.1.3.6.1.2.1.31.1.1.1.10.36 = Counter64: 2588293755 +.1.3.6.1.2.1.31.1.1.1.10.37 = Counter64: 2943757933 +.1.3.6.1.2.1.31.1.1.1.10.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 311238779 +.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.6 = Counter64: 563640 +.1.3.6.1.2.1.31.1.1.1.11.7 = Counter64: 2836176053 +.1.3.6.1.2.1.31.1.1.1.11.8 = Counter64: 5041574603 +.1.3.6.1.2.1.31.1.1.1.11.9 = Counter64: 804340189 +.1.3.6.1.2.1.31.1.1.1.11.10 = Counter64: 3787315137 +.1.3.6.1.2.1.31.1.1.1.11.11 = Counter64: 1186755765 +.1.3.6.1.2.1.31.1.1.1.11.12 = Counter64: 12481379 +.1.3.6.1.2.1.31.1.1.1.11.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.14 = Counter64: 8051029 +.1.3.6.1.2.1.31.1.1.1.11.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.17 = Counter64: 24713360 +.1.3.6.1.2.1.31.1.1.1.11.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.27 = Counter64: 6 +.1.3.6.1.2.1.31.1.1.1.11.28 = Counter64: 2 +.1.3.6.1.2.1.31.1.1.1.11.29 = Counter64: 1584273437 +.1.3.6.1.2.1.31.1.1.1.11.30 = Counter64: 11692 +.1.3.6.1.2.1.31.1.1.1.11.31 = Counter64: 28396 +.1.3.6.1.2.1.31.1.1.1.11.32 = Counter64: 8235886 +.1.3.6.1.2.1.31.1.1.1.11.36 = Counter64: 4102167 +.1.3.6.1.2.1.31.1.1.1.11.37 = Counter64: 5026956 +.1.3.6.1.2.1.31.1.1.1.11.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.2 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.3 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.4 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.5 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.6 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.7 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.8 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.9 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.14 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.15 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.16 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.17 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.18 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.19 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.20 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.23 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.24 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.25 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.26 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.27 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.28 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.29 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.30 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.31 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.32 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.36 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.37 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.39 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.15.1 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.3 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.4 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.6 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.7 = Gauge32: 10000 +.1.3.6.1.2.1.31.1.1.1.15.8 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.9 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.10 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.12 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.13 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.14 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.15 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.16 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.17 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.18 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.19 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.20 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.23 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.24 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.25 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.26 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.27 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.28 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.29 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.30 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.31 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.32 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.36 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.37 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.39 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.3 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.4 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.6 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.7 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.8 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.9 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.12 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.13 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.14 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.15 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.16 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.17 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.18 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.19 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.20 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.23 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.24 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.25 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.26 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.27 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.28 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.29 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.30 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.31 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.32 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.36 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.37 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.39 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.3 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.4 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.6 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.7 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.8 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.9 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.12 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.13 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.14 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.15 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.16 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.17 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.18 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.19 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.20 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.23 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.24 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.25 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.26 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.27 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.28 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.29 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.30 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.31 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.32 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.36 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.37 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.39 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.18.1 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.2 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.3 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.4 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.6 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.7 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.8 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.9 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.12 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.13 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.14 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.15 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.16 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.17 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.18 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.19 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.20 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.23 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.24 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.25 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.26 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.27 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.28 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.29 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.30 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.31 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.32 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.36 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.37 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.39 = STRING: +.1.3.6.1.2.1.31.1.1.1.19.1 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.2 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.3 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.4 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.6 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.7 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.8 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.9 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.12 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.13 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.14 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.15 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.16 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.17 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.18 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.19 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.20 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.23 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.24 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.25 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.26 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.27 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.28 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.29 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.30 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.31 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.32 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.36 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.37 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.39 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.2604.5.1.2.4.1.0 = Gauge32: 89056 +.1.3.6.1.4.1.2604.5.1.2.4.2.0 = Gauge32: 24 +.1.3.6.1.4.1.2604.5.1.2.5.1.0 = Gauge32: 7791 +.1.3.6.1.4.1.2604.5.1.2.5.2.0 = Gauge32: 58 +.1.3.6.1.4.1.2604.5.1.2.5.3.0 = Gauge32: 7911 +.1.3.6.1.4.1.2604.5.1.2.5.4.0 = Gauge32: 10 +.1.3.6.1.4.1.2604.5.1.2.6.0 = Gauge32: 38 +.1.3.6.1.4.1.2604.5.1.2.7.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.8.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.1.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.2.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.2.9.3.0 = Counter64: 0 +.1.3.6.1.4.1.2604.5.1.3.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.2.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.3.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.4.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.5.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.6.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.7.0 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.3.8.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.9.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.10.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.11.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.12.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.13.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.14.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.15.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.16.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.17.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.18.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.19.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.20.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.3.21.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.4.1.0 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.4.4.0 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.4.5.0 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.4.8.0 = STRING: Anonymized 005 +.1.3.6.1.4.1.2604.5.1.4.9.0 = IpAddress: 192.168.42.189 +.1.3.6.1.4.1.2604.5.1.4.10.0 = IpAddress: 192.168.42.002 +.1.3.6.1.4.1.2604.5.1.5.1.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.1.2.0 = STRING: Dec 31 2999 +.1.3.6.1.4.1.2604.5.1.5.2.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.2.2.0 = STRING: Feb 27 2029 +.1.3.6.1.4.1.2604.5.1.5.3.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.3.2.0 = STRING: Feb 27 2029 +.1.3.6.1.4.1.2604.5.1.5.4.1.0 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.5.4.2.0 = STRING: fail +.1.3.6.1.4.1.2604.5.1.5.5.1.0 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.5.5.2.0 = STRING: Anonymized 009 +.1.3.6.1.4.1.2604.5.1.5.6.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.6.2.0 = STRING: Anonymized 230 +.1.3.6.1.4.1.2604.5.1.5.7.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.7.2.0 = STRING: Anonymized 220 +.1.3.6.1.4.1.2604.5.1.5.8.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.8.2.0 = STRING: Anonymized 188 +.1.3.6.1.4.1.2604.5.1.5.9.1.0 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.5.9.2.0 = STRING: Anonymized 237 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.1 = STRING: Anonymized 093 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.2 = STRING: Anonymized 252 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.3 = STRING: Anonymized 029 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.2.4 = STRING: Anonymized 132 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.1 = STRING: Anonymized 022 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.2 = STRING: Anonymized 070 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.3 = STRING: Anonymized 157 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.3.4 = "" +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.1 = STRING: Anonymized 208 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.2 = STRING: Anonymized 055 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.3 = STRING: Anonymized 151 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.4.4 = STRING: Anonymized 089 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.1 = STRING: Anonymized 245 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.2 = STRING: Anonymized 123 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.3 = STRING: Anonymized 055 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.5.4 = STRING: Anonymized 185 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.1 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.2 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.3 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.6.4 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.1 = STRING: Anonymized 238 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.2 = STRING: Anonymized 076 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.3 = STRING: Anonymized 081 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.7.4 = STRING: Anonymized 172 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.1 = INTEGER: 2 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.2 = INTEGER: 12 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.3 = INTEGER: 12 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.8.4 = INTEGER: 3 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.1 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.2 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.3 = INTEGER: 0 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.9.4 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.1 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.2 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.3 = INTEGER: 1 +.1.3.6.1.4.1.2604.5.1.6.1.1.1.1.10.4 = INTEGER: 1 diff --git a/tests/network/cyberoam/snmp/storage.robot b/tests/network/cyberoam/snmp/storage.robot new file mode 100644 index 000000000..996df68f2 --- /dev/null +++ b/tests/network/cyberoam/snmp/storage.robot @@ -0,0 +1,30 @@ +*** Settings *** +Documentation Check storage usage. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +storage ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=storage + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --warning-usage=0 WARNING: Storage Usage Total: 86.97 GB Used: 20.87 GB (24.00%) Free: 66.10 GB (76.00%) | 'used'=22411676221.44B;0:0;;0;93381984256 + ... 2 --critical-usage=0 CRITICAL: Storage Usage Total: 86.97 GB Used: 20.87 GB (24.00%) Free: 66.10 GB (76.00%) | 'used'=22411676221.44B;;0:0;0;93381984256 \ No newline at end of file diff --git a/tests/network/cyberoam/snmp/vpn-status.robot b/tests/network/cyberoam/snmp/vpn-status.robot new file mode 100644 index 000000000..d19a1b41e --- /dev/null +++ b/tests/network/cyberoam/snmp/vpn-status.robot @@ -0,0 +1,40 @@ +*** Settings *** +Documentation Check VPN status. VPN-Connection-Status: inactive, active,partiallyActive. + +Resource ${CURDIR}${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Test Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cyberoam::snmp::plugin + + +*** Test Cases *** +vpn-status ${tc} + [Tags] network cyberoam + ${command} Catenate + ... ${CMD} + ... --mode=vpn-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cyberoam/snmp/slim_sophos + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --filter-counters='^total$|^total-normal$' OK: VPN total: 4 - All VPNs are ok | 'total'=4;;;0; + ... 2 --filter-name='Anonymized 029' CRITICAL: VPN 'Anonymized 029' (Anonymized 157) status: inactive | 'total'=1;;;0; 'total_inactive'=1;;;0; 'total_active'=0;;;0; 'total_partially_active'=0;;;0; + ... 3 --filter-name='Anonymized 132' OK: VPN total: 1, inactive: 0, active: 1, partially active: 0 - VPN 'Anonymized 132' status: active | 'total'=1;;;0; 'total_inactive'=0;;;0; 'total_active'=1;;;0; 'total_partially_active'=0;;;0; + ... 4 --filter-vpn-activated='^inactive$' OK: VPN total : skipped (no value(s)), inactive: 0, active: 0, partially active: 0 | 'total_inactive'=0;;;0; 'total_active'=0;;;0; 'total_partially_active'=0;;;0; + ... 5 --filter-vpn-activated='^active$' CRITICAL: VPN 'Anonymized 029' (Anonymized 157) status: inactive | 'total'=4;;;0; 'total_inactive'=1;;;0; 'total_active'=3;;;0; 'total_partially_active'=0;;;0; + ... 6 --filter-connection-type='host-to-host' OK: VPN total : skipped (no value(s)), inactive: 0, active: 0, partially active: 0 | 'total_inactive'=0;;;0; 'total_active'=0;;;0; 'total_partially_active'=0;;;0; + ... 7 --filter-connection-type='site-to-site' CRITICAL: VPN 'Anonymized 029' (Anonymized 157) status: inactive | 'total'=4;;;0; 'total_inactive'=1;;;0; 'total_active'=3;;;0; 'total_partially_active'=0;;;0; + ... 8 --filter-connection-type='tunnel-interface' OK: VPN total : skipped (no value(s)), inactive: 0, active: 0, partially active: 0 | 'total_inactive'=0;;;0; 'total_active'=0;;;0; 'total_partially_active'=0;;;0; + ... 9 --critical-status='' --warning-status='\\\%{connection_status} ne "active"' WARNING: VPN 'Anonymized 029' (Anonymized 157) status: inactive | 'total'=4;;;0; 'total_inactive'=1;;;0; 'total_active'=3;;;0; 'total_partially_active'=0;;;0; + ... 10 --critical-status='' --warning-total=0 --critical-total=20 WARNING: VPN total: 4 | 'total'=4;0:0;0:20;0; 'total_inactive'=1;;;0; 'total_active'=3;;;0; 'total_partially_active'=0;;;0; + ... 11 --critical-status='' --warning-total-inactive=10 --critical-total-inactive=0 CRITICAL: VPN inactive: 1 | 'total'=4;;;0; 'total_inactive'=1;0:10;0:0;0; 'total_active'=3;;;0; 'total_partially_active'=0;;;0; + ... 12 --critical-status='' --warning-total-active=0 --critical-total-active=0 CRITICAL: VPN active: 3 | 'total'=4;;;0; 'total_inactive'=1;;;0; 'total_active'=3;0:0;0:0;0; 'total_partially_active'=0;;;0; diff --git a/tests/resources/spellcheck/stopwords.txt b/tests/resources/spellcheck/stopwords.txt index a8357d4ab..6d2fb0416 100644 --- a/tests/resources/spellcheck/stopwords.txt +++ b/tests/resources/spellcheck/stopwords.txt @@ -51,6 +51,7 @@ cpu-utilization-1m cpu-utilization-5m cpu-utilization-5s CX +Cyberoam Datacore datasource DC4 @@ -61,12 +62,10 @@ dev df --dfsr dfsrevent ---diskpath --display-transform-dst --display-transform-src dns-resolve-time --dyn-mode -Ekara -EncodedCommand env ESX @@ -99,7 +98,6 @@ ifName --ignore-orgs-api-disabled IMEI in-bcast -includeAllDisks in-crc in-fcserror in-mcast @@ -172,6 +170,7 @@ NLCapacity --noidle -NoLogo --nomachineaccount +notapplicable --ntlmv2 NTLMv2 NTP @@ -190,6 +189,7 @@ out-fc-wait out-mcast out-ucast overprovisioning +partiallyActive --patch-redhat perfdata physicaldrive @@ -214,7 +214,7 @@ Sansymphony SAS scenarii --scope-datacenter -SFDC +SFOS sfp.temperature --skip-ssl-check SkyHigh @@ -226,6 +226,7 @@ space-usage-prct --sql-errors-exit SSDCapacity SSH +standAlone statefile --statefile-concat-cwd SureBackup