From 357de1492af4a876ef8ca4cc5a445f7f7bad00c1 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Thu, 15 Feb 2024 12:41:50 +0100 Subject: [PATCH 01/63] fix(collectio): infinite loop and json encoding --- src/apps/protocols/http/mode/collection.pm | 24 ++++++++++++---------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 1ddddb6974..df9d54583a 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -337,9 +337,11 @@ sub call_http { $self->{output}->option_exit(); } - my $encoded = JSON::XS->new->utf8->pretty->encode($content); - $self->{output}->output_add(long_msg => '======> returned JSON structure:', debug => 1); - $self->{output}->output_add(long_msg => "$encoded", debug => 1); + if ($self->{output}->is_debug()) { + my $encoded = JSON::XS->new->allow_nonref(1)->utf8->pretty->encode($content); + $self->{output}->output_add(long_msg => '======> returned JSON structure:', debug => 1); + $self->{output}->output_add(long_msg => "$encoded", debug => 1); + } return ($http->get_header(), $content, $http); } @@ -534,14 +536,14 @@ sub collect_http_tables { ($headers, $content, $http) = $self->call_http(rq => $options{requests}->[$i], http => $options{http}); $self->set_builtin(); - next if (!defined($options{requests}->[$i]->{parse})); - - my $local; - foreach my $conf (@{$options{requests}->[$i]->{parse}}) { - if ($options{requests}->[$i]->{rtype} eq 'txt') { - $local = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); - } else { - $local = $self->parse_structure(name => $options{requests}->[$i]->{name}, content => $content, conf => $conf); + my $local = {}; + if (defined($options{requests}->[$i]->{parse})) { + foreach my $conf (@{$options{requests}->[$i]->{parse}}) { + if ($options{requests}->[$i]->{rtype} eq 'txt') { + $local = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); + } else { + $local = $self->parse_structure(name => $options{requests}->[$i]->{name}, content => $content, conf => $conf); + } } } From c70b7be8e628d6b90a69003525bfd3ba9ca02324 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Thu, 15 Feb 2024 15:39:52 +0100 Subject: [PATCH 02/63] fix(collectio): infinite loop and json encoding --- src/apps/protocols/http/mode/collection.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index df9d54583a..706070c18a 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -627,6 +627,11 @@ sub use_local_http_cache { } } + my $builtin = $local_http_cache->get(name => 'builtin'); + foreach my $name (keys %$builtin) { + $self->add_builtin(name => $name, value => $builtin->{$name}); + } + return 1; } @@ -639,7 +644,8 @@ sub save_local_http_cache { http_collected => { tables => $options{local}, epoch => time() - } + }, + builtin => $self->{builtin} } ); } From 54140165e8fefc84d7463191104e05a24b47eae3 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Thu, 15 Feb 2024 15:47:11 +0100 Subject: [PATCH 03/63] fix indent --- src/apps/protocols/http/mode/collection.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 706070c18a..4fef5eada3 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -537,7 +537,7 @@ sub collect_http_tables { $self->set_builtin(); my $local = {}; - if (defined($options{requests}->[$i]->{parse})) { + if (defined($options{requests}->[$i]->{parse})) { foreach my $conf (@{$options{requests}->[$i]->{parse}}) { if ($options{requests}->[$i]->{rtype} eq 'txt') { $local = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); From 5b1903349b0581706ca81e30227d549e13116e04 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Fri, 16 Feb 2024 11:52:28 +0100 Subject: [PATCH 04/63] add(collection): add full_url and function system --- src/apps/protocols/http/mode/collection.pm | 64 ++++++++++++++++++++-- 1 file changed, 60 insertions(+), 4 deletions(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 4fef5eada3..87784ee4db 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -254,8 +254,9 @@ sub get_payload { sub call_http { my ($self, %options) = @_; - if (!defined($options{rq}->{hostname}) || $options{rq}->{hostname} eq '') { - $self->{output}->add_option_msg(short_msg => "hostname attribute is missing [http > requests > $options{rq}->{name}]"); + if ((!defined($options{rq}->{full_url}) || $options{rq}->{full_url} eq '') && + (!defined($options{rq}->{hostname}) || $options{rq}->{hostname} eq '')) { + $self->{output}->add_option_msg(short_msg => "hostname or full_url attribute is missing [http > requests > $options{rq}->{name}]"); $self->{output}->option_exit(); } if (!defined($options{rq}->{rtype}) || $options{rq}->{rtype} !~ /^(?:txt|json|xml)$/) { @@ -298,11 +299,19 @@ sub call_http { $http = centreon::plugins::http->new(noptions => 1, output => $self->{output}); } + my $full_url; + my $hostname = $self->substitute_string(value => $options{rq}->{hostname}); + if (defined($options{rq}->{full_url}) && $options{rq}->{full_url} ne '') { + $full_url = $self->substitute_string(value => $options{rq}->{full_url}); + $hostname = ''; + } + my $timing0 = [gettimeofday]; my ($content) = $http->request( backend => $self->substitute_string(value => $options{rq}->{backend}), method => $self->substitute_string(value => $options{rq}->{method}), - hostname => $self->substitute_string(value => $options{rq}->{hostname}), + full_url => $full_url, + hostname => $hostname, proto => $self->substitute_string(value => $options{rq}->{proto}), port => $self->substitute_string(value => $options{rq}->{port}), url_path => $self->substitute_string(value => $options{rq}->{endpoint}), @@ -547,6 +556,12 @@ sub collect_http_tables { } } + $self->set_functions( + section => "http > requests > $options{requests}->[$i]->{name}", + functions => $options{requests}->[$i]->{functions}, + default => 1 + ); + if (defined($options{requests}->[$i]->{scenario_stopped}) && $options{requests}->[$i]->{scenario_stopped} && $self->check_filter2(filter => $options{requests}->[$i]->{scenario_stopped}, values => $self->{expand})) { $self->{scenario_stopped} = 1; @@ -639,13 +654,20 @@ sub save_local_http_cache { my ($self, %options) = @_; if (defined($options{local_http_cache})) { + my $expand = {}; + foreach my $name (keys %{$self->{expand}}) { + next if ($name =~ /^(builtin|constants)\./); + $expand->{$name} = $self->{expand}->{$name}; + } + $options{local_http_cache}->write( data => { http_collected => { tables => $options{local}, epoch => time() }, - builtin => $self->{builtin} + builtin => $self->{builtin}, + local_vars => $expand } ); } @@ -745,6 +767,17 @@ sub display_variables { } } } + + foreach my $name (keys %{$self->{expand}}) { + $self->{output}->output_add( + long_msg => sprintf( + ' %s = %s', + $name, + $self->{expand}->{$name} + ), + debug => 1 + ); + } } sub collect_http { @@ -773,6 +806,13 @@ sub collect_http { $self->collect_http_sampling(); + # can use local_var set for selection/selection_loop + $self->{local_vars} = {}; + foreach my $name (keys %{$self->{expand}}) { + next if ($name =~ /^(builtin|constants)\./); + $self->{local_vars}->{$name} = $self->{expand}->{$name}; + } + if ($self->{output}->is_debug()) { $self->display_variables(); } @@ -798,6 +838,14 @@ sub get_local_variable { } +sub set_local_variables { + my ($self, %options) = @_; + + foreach (keys %{$self->{local_vars}}) { + $self->set_local_variable(name => $_, value => $self->{local_vars}->{$_}); + } +} + sub set_local_variable { my ($self, %options) = @_; @@ -1638,6 +1686,7 @@ sub exec_func_capture { $self->{output}->add_option_msg(short_msg => $self->{current_section} . " special variable type not allowed in save attribute"); $self->{output}->option_exit(); } + $self->set_special_variable_value(value => $value, %$save); } } @@ -1828,6 +1877,7 @@ sub add_selection { my $config = {}; $self->{expand} = $self->set_constants(); $self->set_builtin(); + $self->set_local_variables(); $self->{expand}->{name} = $_->{name} if (defined($_->{name})); $self->set_functions(section => "selection > $i > functions", functions => $_->{functions}, position => 'before_expand'); $self->set_expand_table(section => "selection > $i > expand_table", expand => $_->{expand_table}); @@ -1865,20 +1915,26 @@ sub add_selection_loop { next if (!defined($_->{source}) || $_->{source} eq ''); $self->{current_section} = '[selection_loop > ' . $i . ' > source]'; + my $result = $self->parse_special_variable(chars => [split //, $_->{source}], start => 0); if ($result->{type} != 2) { $self->{output}->add_option_msg(short_msg => $self->{current_section} . " special variable type not allowed"); $self->{output}->option_exit(); } + next if (!defined($self->{http_collected}->{tables}->{ $result->{table} })); + foreach my $instance (keys %{$self->{http_collected}->{tables}->{ $result->{table} }}) { $self->{expand} = $self->set_constants(); $self->set_builtin(); + $self->set_local_variables(); $self->{expand}->{ $result->{table} . '.instance' } = $instance; + foreach my $label (keys %{$self->{http_collected}->{tables}->{ $result->{table} }->{$instance}}) { $self->{expand}->{ $result->{table} . '.' . $label } = $self->{http_collected}->{tables}->{ $result->{table} }->{$instance}->{$label}; } + my $config = {}; $self->{expand}->{name} = $_->{name} if (defined($_->{name})); $self->set_functions(section => "selection_loop > $i > functions", functions => $_->{functions}, position => 'before_expand'); From c696a505a9f130822e0a09dbc67f1c921a69ecce Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Fri, 16 Feb 2024 11:59:30 +0100 Subject: [PATCH 05/63] add(collection): add full_url and function system --- src/apps/protocols/http/mode/collection.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 87784ee4db..f59195a524 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -647,6 +647,11 @@ sub use_local_http_cache { $self->add_builtin(name => $name, value => $builtin->{$name}); } + my $local_vars = $local_http_cache->get(name => 'local_vars'); + foreach my $name (keys %$local_vars) { + $self->set_local_variable(name => $name, value => $local_vars->{$name}); + } + return 1; } From 2187c8272a600d4b6aa6e511a403ed472df64926 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Tue, 5 Mar 2024 13:26:33 +0100 Subject: [PATCH 06/63] change parse structure position --- src/apps/protocols/http/mode/collection.pm | 59 ++++++++++++---------- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index f59195a524..f876b05203 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -87,7 +87,7 @@ sub custom_select_output { if (defined($format)) { return sprintf( - $format->{printf_msg}, @{$format->{printf_var}} + $format->{printf_msg}, @{$format->{printf_var}} ); } @@ -123,7 +123,7 @@ 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 => { 'config:s' => { name => 'config' }, 'filter-selection:s%' => { name => 'filter_selection' }, @@ -192,7 +192,7 @@ sub get_map_value { my ($self, %options) = @_; return undef if ( - !defined($self->{config}->{mapping}) || + !defined($self->{config}->{mapping}) || !defined($self->{config}->{mapping}->{ $options{map} }) ); return '' if (!defined($self->{config}->{mapping}->{ $options{map} }->{ $options{value} })); @@ -330,28 +330,6 @@ sub call_http { $self->add_builtin(name => 'httpCode.' . $options{rq}->{name}, value => $http->get_code()); $self->add_builtin(name => 'httpMessage.' . $options{rq}->{name}, value => $http->get_message()); - if ($options{rq}->{rtype} eq 'json') { - eval { - $content = JSON::XS->new->utf8->decode($content); - }; - } elsif ($options{rq}->{rtype} eq 'xml') { - eval { - $SIG{__WARN__} = sub {}; - $content = XMLin($content, ForceArray => $options{rq}->{force_array}, KeyAttr => []); - }; - } - if ($@) { - $self->{output}->add_option_msg(short_msg => "Cannot decode response (add --debug option to display returned content)"); - $self->{output}->output_add(long_msg => "$@", debug => 1); - $self->{output}->option_exit(); - } - - if ($self->{output}->is_debug()) { - my $encoded = JSON::XS->new->allow_nonref(1)->utf8->pretty->encode($content); - $self->{output}->output_add(long_msg => '======> returned JSON structure:', debug => 1); - $self->{output}->output_add(long_msg => "$encoded", debug => 1); - } - return ($http->get_header(), $content, $http); } @@ -452,6 +430,29 @@ sub parse_structure { $options{conf}->{path} = $self->substitute_string(value => $options{conf}->{path}); + my $content; + if ($options{rtype} eq 'json') { + eval { + $content = JSON::XS->new->utf8->decode($options{content}); + }; + } elsif ($options{rtype} eq 'xml') { + eval { + $SIG{__WARN__} = sub {}; + $content = XMLin($content, ForceArray => $options{force_array}, KeyAttr => []); + }; + } + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode response (add --debug option to display returned content)"); + $self->{output}->output_add(long_msg => "$@", debug => 1); + $self->{output}->option_exit(); + } + + if ($self->{output}->is_debug()) { + my $encoded = JSON::XS->new->allow_nonref(1)->utf8->pretty->encode($content); + $self->{output}->output_add(long_msg => '======> returned JSON structure:', debug => 1); + $self->{output}->output_add(long_msg => "$encoded", debug => 1); + } + my $jpath = JSON::Path->new($options{conf}->{path}); my @values = $jpath->values($options{content}); @@ -551,7 +552,13 @@ sub collect_http_tables { if ($options{requests}->[$i]->{rtype} eq 'txt') { $local = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); } else { - $local = $self->parse_structure(name => $options{requests}->[$i]->{name}, content => $content, conf => $conf); + $local = $self->parse_structure( + name => $options{requests}->[$i]->{name}, + content => $content, + conf => $conf, + rtype => $options{requests}->[$i]->{rtype}, + force_array => $options{requests}->[$i]->{force_array} + ); } } } From ad528da668b8f48d7c2522984c8fbd495a4142c9 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Wed, 6 Mar 2024 16:49:24 +0100 Subject: [PATCH 07/63] allow character minus --- src/apps/protocols/http/mode/collection.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index f876b05203..12cfe1d3c0 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -1002,7 +1002,7 @@ sub parse_http_tables { ($code, $msg_error, $end, $table_label) = $self->parse_forward( chars => $options{chars}, start => $options{start}, - allowed => '[a-zA-Z0-9_]', + allowed => '[a-zA-Z0-9_\-]', stop => '[).]' ); if ($code) { @@ -1067,7 +1067,7 @@ sub parse_http_tables { ($code, $msg_error, $end, $label) = $self->parse_forward( chars => $options{chars}, start => $end + 2, - allowed => '[a-zA-Z0-9_]', + allowed => '[a-zA-Z0-9_\-]', stop => '[)]' ); if ($code) { @@ -1107,7 +1107,7 @@ sub parse_special_variable { my ($code, $msg_error, $end, $label) = $self->parse_forward( chars => $options{chars}, start => $start + 2, - allowed => '[a-zA-Z0-9\._]', + allowed => '[a-zA-Z0-9\._\-]', stop => '[)]' ); if ($code) { @@ -1776,7 +1776,7 @@ sub prepare_variables { return undef if (!defined($options{value})); - while ($options{value} =~ /%\(([a-zA-Z0-9\.]+?)\)/g) { + while ($options{value} =~ /%\(([a-zA-Z0-9\.\-]+?)\)/g) { next if ($1 =~ /^http\./); $options{value} =~ s/%\(($1)\)/\$expand->{'$1'}/g; } @@ -1790,7 +1790,7 @@ sub check_filter { return 0 if (!defined($options{filter}) || $options{filter} eq ''); our $expand = $options{values}; - $options{filter} =~ s/%\(([a-zA-Z0-9\._:]+?)\)/\$expand->{'$1'}/g; + $options{filter} =~ s/%\(([a-zA-Z0-9\._:\-]+?)\)/\$expand->{'$1'}/g; my $result = $self->{safe}->reval("$options{filter}"); if ($@) { $self->{output}->add_option_msg(short_msg => 'Unsafe code evaluation: ' . $@); @@ -1806,7 +1806,7 @@ sub check_filter2 { return 0 if (!defined($options{filter}) || $options{filter} eq ''); our $expand = $options{values}; - $options{filter} =~ s/%\(([a-zA-Z0-9\._:]+?)\)/\$expand->{'$1'}/g; + $options{filter} =~ s/%\(([a-zA-Z0-9\._:\-]+?)\)/\$expand->{'$1'}/g; my $result = $self->{safe}->reval("$options{filter}"); if ($@) { $self->{output}->add_option_msg(short_msg => 'Unsafe code evaluation: ' . $@); From aa3e925e2099b1b7a7b5793253cdaeea9c4bafec Mon Sep 17 00:00:00 2001 From: qgarnier Date: Fri, 12 Apr 2024 15:32:25 +0200 Subject: [PATCH 08/63] Update src/apps/protocols/http/mode/collection.pm Co-authored-by: Colin Gagnaire --- src/apps/protocols/http/mode/collection.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 12cfe1d3c0..06e80c9b0e 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -438,7 +438,7 @@ sub parse_structure { } elsif ($options{rtype} eq 'xml') { eval { $SIG{__WARN__} = sub {}; - $content = XMLin($content, ForceArray => $options{force_array}, KeyAttr => []); + $content = XMLin($options{content}, ForceArray => $options{force_array}, KeyAttr => []); }; } if ($@) { From c76fd569d85993a3f490b0de5b0e994d377ead1c Mon Sep 17 00:00:00 2001 From: qgarnier Date: Fri, 12 Apr 2024 15:34:23 +0200 Subject: [PATCH 09/63] Update src/apps/protocols/http/mode/collection.pm Co-authored-by: Colin Gagnaire --- src/apps/protocols/http/mode/collection.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 06e80c9b0e..896f8cd91a 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -454,7 +454,7 @@ sub parse_structure { } my $jpath = JSON::Path->new($options{conf}->{path}); - my @values = $jpath->values($options{content}); + my @values = $jpath->values($content); my $local = {}; my $i = 0; From 61bc01fe8a735b9f6cd00e5748fefd2279d3904e Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Fri, 12 Apr 2024 16:53:55 +0200 Subject: [PATCH 10/63] add scenario_stopped_first attribute --- src/apps/protocols/http/mode/collection.pm | 66 +++++++++++++--------- 1 file changed, 39 insertions(+), 27 deletions(-) diff --git a/src/apps/protocols/http/mode/collection.pm b/src/apps/protocols/http/mode/collection.pm index 896f8cd91a..df87efd846 100644 --- a/src/apps/protocols/http/mode/collection.pm +++ b/src/apps/protocols/http/mode/collection.pm @@ -308,7 +308,7 @@ sub call_http { my $timing0 = [gettimeofday]; my ($content) = $http->request( - backend => $self->substitute_string(value => $options{rq}->{backend}), + http_backend => $self->substitute_string(value => $options{rq}->{backend}), method => $self->substitute_string(value => $options{rq}->{method}), full_url => $full_url, hostname => $hostname, @@ -546,38 +546,50 @@ sub collect_http_tables { ($headers, $content, $http) = $self->call_http(rq => $options{requests}->[$i], http => $options{http}); $self->set_builtin(); - my $local = {}; - if (defined($options{requests}->[$i]->{parse})) { - foreach my $conf (@{$options{requests}->[$i]->{parse}}) { - if ($options{requests}->[$i]->{rtype} eq 'txt') { - $local = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); - } else { - $local = $self->parse_structure( - name => $options{requests}->[$i]->{name}, - content => $content, - conf => $conf, - rtype => $options{requests}->[$i]->{rtype}, - force_array => $options{requests}->[$i]->{force_array} - ); - } - } - } - - $self->set_functions( - section => "http > requests > $options{requests}->[$i]->{name}", - functions => $options{requests}->[$i]->{functions}, - default => 1 - ); - - if (defined($options{requests}->[$i]->{scenario_stopped}) && $options{requests}->[$i]->{scenario_stopped} && - $self->check_filter2(filter => $options{requests}->[$i]->{scenario_stopped}, values => $self->{expand})) { + if (defined($options{requests}->[$i]->{scenario_stopped_first}) && $options{requests}->[$i]->{scenario_stopped_first} && + $self->check_filter2(filter => $options{requests}->[$i]->{scenario_stopped_first}, values => $self->{expand})) { $self->{scenario_stopped} = 1; if (defined($options{requests}->[$i]->{scenario_retry}) && $options{requests}->[$i]->{scenario_retry} =~ /^true|1$/i) { $self->{scenario_loop}++; $self->{scenario_retry} = 1; } } else { - $self->save_local_http_cache(local_http_cache => $local_http_cache, local => $local); + my $local = {}; + if (defined($options{requests}->[$i]->{parse})) { + foreach my $conf (@{$options{requests}->[$i]->{parse}}) { + my $lentries = {}; + if ($options{requests}->[$i]->{rtype} eq 'txt') { + $lentries = $self->parse_txt(name => $options{requests}->[$i]->{name}, headers => $headers, content => $content, conf => $conf); + } else { + $lentries = $self->parse_structure( + name => $options{requests}->[$i]->{name}, + content => $content, + conf => $conf, + rtype => $options{requests}->[$i]->{rtype}, + force_array => $options{requests}->[$i]->{force_array} + ); + } + + $local = { %$local, %$lentries }; + } + } + + $self->set_functions( + section => "http > requests > $options{requests}->[$i]->{name}", + functions => $options{requests}->[$i]->{functions}, + default => 1 + ); + + if (defined($options{requests}->[$i]->{scenario_stopped}) && $options{requests}->[$i]->{scenario_stopped} && + $self->check_filter2(filter => $options{requests}->[$i]->{scenario_stopped}, values => $self->{expand})) { + $self->{scenario_stopped} = 1; + if (defined($options{requests}->[$i]->{scenario_retry}) && $options{requests}->[$i]->{scenario_retry} =~ /^true|1$/i) { + $self->{scenario_loop}++; + $self->{scenario_retry} = 1; + } + } else { + $self->save_local_http_cache(local_http_cache => $local_http_cache, local => $local); + } } } From 9f2dd4ad9b20dea43d227f80790212d1678d269b Mon Sep 17 00:00:00 2001 From: Kevin Duret Date: Thu, 15 Feb 2024 15:42:53 +0100 Subject: [PATCH 11/63] fix(ci): fix installation path of perl libraries (#4913) Refs: MON-35359 --- .../actions/deb-delivery-legacy/action.yml | 2 +- .github/actions/deb-delivery/action.yml | 2 +- .github/actions/promote-to-stable/action.yml | 2 +- .../actions/rpm-delivery-legacy/action.yml | 2 +- .github/actions/rpm-delivery/action.yml | 2 +- .github/actions/runner-docker/action.yml | 39 ------ .github/workflows/connector-vmware.yml | 38 ++++-- .github/workflows/perl-crypt-argon2.yml | 15 ++- .github/workflows/perl-filesys-smbclient.yml | 10 +- .github/workflows/perl-json-path.yml | 12 +- .github/workflows/perl-keepass-reader.yml | 8 +- .github/workflows/perl-libssh-session.yml | 13 +- .github/workflows/perl-net-curl.yml | 15 ++- .github/workflows/perl-openwsman.yml | 51 ++++---- .github/workflows/perl-vmware-vsphere.yml | 118 +++++++++++++++--- .../src/centreon/script/centreon_vmware.pm | 6 +- .../vmware/src/centreon/vmware/common.pm | 2 +- connectors/vmware/src/centreon_vmware.pl | 8 +- .../perl-crypt-argon2/perl-crypt-argon2.yaml | 2 +- .../perl-filesys-smbclient/src/Makefile.PL | 2 +- .../src/lib/KeePass/Reader.pm | 4 +- .../perl-libssh-session.yaml | 2 +- dependencies/perl-net-curl/perl-net-curl.yaml | 4 +- dependencies/perl-openwsman/libwsman.yaml | 13 +- .../perl-openwsman/perl-openwsman.yaml | 8 +- dependencies/perl-openwsman/sblim-sfcc.yaml | 2 +- .../packaging/perl-vmware-vsphere.yaml | 18 +-- 27 files changed, 242 insertions(+), 158 deletions(-) delete mode 100644 .github/actions/runner-docker/action.yml diff --git a/.github/actions/deb-delivery-legacy/action.yml b/.github/actions/deb-delivery-legacy/action.yml index 8a89c964a9..dd70aaab9c 100644 --- a/.github/actions/deb-delivery-legacy/action.yml +++ b/.github/actions/deb-delivery-legacy/action.yml @@ -30,7 +30,7 @@ runs: key: ${{ inputs.cache_key }} fail-on-cache-miss: true - - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + - uses: jfrog/setup-jfrog-cli@26da2259ee7690e63b5410d7451b2938d08ce1f9 # v4.0.0 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} diff --git a/.github/actions/deb-delivery/action.yml b/.github/actions/deb-delivery/action.yml index 846772d5ee..0a3fc332aa 100644 --- a/.github/actions/deb-delivery/action.yml +++ b/.github/actions/deb-delivery/action.yml @@ -34,7 +34,7 @@ runs: fail-on-cache-miss: true - if: ${{ ! (inputs.distrib == 'jammy' && inputs.stability == 'stable') }} - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + uses: jfrog/setup-jfrog-cli@26da2259ee7690e63b5410d7451b2938d08ce1f9 # v4.0.0 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index dd29900864..9cb76256a7 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -17,7 +17,7 @@ inputs: runs: using: "composite" steps: - - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + - uses: jfrog/setup-jfrog-cli@26da2259ee7690e63b5410d7451b2938d08ce1f9 # v4.0.0 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} diff --git a/.github/actions/rpm-delivery-legacy/action.yml b/.github/actions/rpm-delivery-legacy/action.yml index 042a38b394..1f801a510e 100644 --- a/.github/actions/rpm-delivery-legacy/action.yml +++ b/.github/actions/rpm-delivery-legacy/action.yml @@ -30,7 +30,7 @@ runs: key: ${{ inputs.cache_key }} fail-on-cache-miss: true - - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + - uses: jfrog/setup-jfrog-cli@26da2259ee7690e63b5410d7451b2938d08ce1f9 # v4.0.0 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} diff --git a/.github/actions/rpm-delivery/action.yml b/.github/actions/rpm-delivery/action.yml index b0ec29c495..b5eef4f1bd 100644 --- a/.github/actions/rpm-delivery/action.yml +++ b/.github/actions/rpm-delivery/action.yml @@ -31,7 +31,7 @@ runs: key: ${{ inputs.cache_key }} fail-on-cache-miss: true - - uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 + - uses: jfrog/setup-jfrog-cli@26da2259ee7690e63b5410d7451b2938d08ce1f9 # v4.0.0 env: JF_URL: https://centreon.jfrog.io JF_ACCESS_TOKEN: ${{ inputs.artifactory_token }} diff --git a/.github/actions/runner-docker/action.yml b/.github/actions/runner-docker/action.yml deleted file mode 100644 index a5558424ba..0000000000 --- a/.github/actions/runner-docker/action.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: run-in-docker -description: Run step in docker container -inputs: - script_name: - description: "script_name" - required: true - image_name: - description: "image_name" - required: true - image_version: - description: "image_version" - required: true - centreon_pat: - description: "Secret" - required: false - registry_url: - description: Docker registry url - required: true - registry_username: - description: Docker registry username - required: true - registry_password: - description: Docker registry password - required: true - params: - description: "params for script" - required: false -runs: - using: "composite" - steps: - - name: Login to Registry (via runner) - uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0 - with: - registry: ${{ inputs.registry_url }} - username: ${{ inputs.registry_username }} - password: ${{ inputs.registry_password }} - - - run: docker run -i -e TOKEN=${{ inputs.centreon_pat }} --entrypoint /src/.github/scripts/${{ inputs.script_name }}.sh -v "$PWD:/src" ${{ inputs.registry_url }}/${{ inputs.image_name }}:${{ inputs.image_version }} ${{ inputs.params }} - shell: bash diff --git a/.github/workflows/connector-vmware.yml b/.github/workflows/connector-vmware.yml index 1fcfb77432..2e25a3858e 100644 --- a/.github/workflows/connector-vmware.yml +++ b/.github/workflows/connector-vmware.yml @@ -25,8 +25,8 @@ jobs: version_file: connectors/vmware/src/centreon/script/centreon_vmware.pm package: - needs: - - get-environment + needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} runs-on: ubuntu-22.04 strategy: matrix: @@ -66,7 +66,7 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} version: ${{ needs.get-environment.outputs.version }} - release: ${{ needs.get-environment.outputs.release }} + release: 1 commit_hash: ${{ github.sha }} cache_key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} @@ -75,10 +75,8 @@ jobs: stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: - needs: - - get-environment - - package - if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} runs-on: [self-hosted, common] strategy: @@ -99,10 +97,8 @@ jobs: artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} deliver-deb: - needs: - - get-environment - - package - if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} runs-on: [self-hosted, common] strategy: @@ -121,3 +117,23 @@ jobs: cache_key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} stability: ${{ needs.get-environment.outputs.stability }} artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + + promote: + needs: [get-environment] + if: ${{ contains(fromJson('["stable"]'), needs.get-environment.outputs.stability) }} + runs-on: [self-hosted, common] + strategy: + matrix: + distrib: [el8, el9, bullseye, bookworm] + + steps: + - name: Checkout sources + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Promote ${{ matrix.distrib }} to stable + uses: ./.github/actions/promote-to-stable + with: + artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + module: connector-vmware + distrib: ${{ matrix.distrib }} + stability: ${{ needs.get-environment.outputs.stability }} diff --git a/.github/workflows/perl-crypt-argon2.yml b/.github/workflows/perl-crypt-argon2.yml index ae7c02b5ea..8629ba2607 100644 --- a/.github/workflows/perl-crypt-argon2.yml +++ b/.github/workflows/perl-crypt-argon2.yml @@ -26,6 +26,7 @@ jobs: package: needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} strategy: fail-fast: false @@ -85,24 +86,28 @@ jobs: dnf install -y cpanminus gcc fi - cpanm -v -l /tmp Crypt::Argon2@0.019 + cpanm -v -l /tmp Crypt::Argon2@0.020 shell: bash - name: Set package name and paths according to distrib run: | + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libcrypt-argon2-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then - PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl/$PERL_VERSION" else - PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl/$PERL_VERSION" fi else NAME="perl-Crypt-Argon2" if [ "${{ matrix.distrib }}" = "el8" ]; then PERL_VENDORARCH="/usr/local/lib64/perl5" else - PERL_VENDORARCH="/usr/local/lib64/perl5/5.32" + PERL_VENDORARCH="/usr/local/lib64/perl5/$PERL_VERSION" fi fi @@ -119,7 +124,7 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} - release: 3 + release: 1 commit_hash: ${{ github.sha }} cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-crypt-argon2-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} diff --git a/.github/workflows/perl-filesys-smbclient.yml b/.github/workflows/perl-filesys-smbclient.yml index d18acd2cfa..197541af04 100644 --- a/.github/workflows/perl-filesys-smbclient.yml +++ b/.github/workflows/perl-filesys-smbclient.yml @@ -118,6 +118,10 @@ jobs: include: - image: packaging-plugins-bullseye distrib: bullseye + - image: packaging-plugins-bookworm + distrib: bookworm + - image: packaging-plugins-jammy + distrib: jammy name: package ${{ matrix.distrib }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest @@ -135,7 +139,7 @@ jobs: mv dependencies/perl-filesys-smbclient/src/ perl-filesys-smbclient tar czf perl-filesys-smbclient.tar.gz perl-filesys-smbclient - DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make --verbose --build --version 4.0-${{ matrix.distrib }} perl-filesys-smbclient/ + DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make --dist ${{ matrix.distrib }} --verbose --build --version 4.0-${{ matrix.distrib }} perl-filesys-smbclient/ shell: bash - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 @@ -172,7 +176,7 @@ jobs: strategy: matrix: - distrib: [bullseye] + distrib: [bullseye, bookworm, jammy] steps: - name: Checkout sources @@ -193,7 +197,7 @@ jobs: runs-on: [self-hosted, common] strategy: matrix: - distrib: [el8, el9, bullseye] + distrib: [el8, el9, bullseye, bookworm] steps: - name: Checkout sources diff --git a/.github/workflows/perl-json-path.yml b/.github/workflows/perl-json-path.yml index 3c8d90da87..5289ab7984 100644 --- a/.github/workflows/perl-json-path.yml +++ b/.github/workflows/perl-json-path.yml @@ -24,6 +24,7 @@ jobs: package: needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} strategy: fail-fast: false @@ -78,6 +79,11 @@ jobs: - name: Set package name and paths according to distrib run: | VERSION="1.0.4" + + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libjson-path-perl" PERL_VENDORLIB="/usr/share/perl5" @@ -87,7 +93,7 @@ jobs: VERSION="0.5" # https://github.com/centreon/centreon-plugins/issues/4540 PERL_VENDORLIB="/usr/local/share/perl5" else - PERL_VENDORLIB="/usr/local/share/perl5/5.32" + PERL_VENDORLIB="/usr/local/share/perl5/$PERL_VERSION" fi fi @@ -153,7 +159,7 @@ jobs: strategy: matrix: - distrib: [bullseye, bookworm] + distrib: [bullseye, bookworm, jammy] name: Deliver ${{ matrix.distrib }} @@ -176,7 +182,7 @@ jobs: runs-on: [self-hosted, common] strategy: matrix: - distrib: [bullseye, bookworm] + distrib: [el8, el9, bullseye, bookworm] steps: - name: Checkout sources diff --git a/.github/workflows/perl-keepass-reader.yml b/.github/workflows/perl-keepass-reader.yml index d880e1620b..73aaf88256 100644 --- a/.github/workflows/perl-keepass-reader.yml +++ b/.github/workflows/perl-keepass-reader.yml @@ -79,6 +79,10 @@ jobs: - name: Set package name and paths according to distrib run: | + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libkeepass-reader-perl" PERL_VENDORLIB="/usr/share/perl5" @@ -87,7 +91,7 @@ jobs: if [[ "${{ matrix.distrib }}" == "el8" ]]; then PERL_VENDORLIB="/usr/local/share/perl5" else - PERL_VENDORLIB="/usr/local/share/perl5/5.32" + PERL_VENDORLIB="/usr/local/share/perl5/$PERL_VERSION" fi fi @@ -104,7 +108,7 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} version: "0.2" - release: "2" + release: "3" arch: all commit_hash: ${{ github.sha }} cache_key: cache-${{ github.run_id }}-${{ matrix.package_extension }}-${{ env.module_name }}-${{ matrix.distrib }} diff --git a/.github/workflows/perl-libssh-session.yml b/.github/workflows/perl-libssh-session.yml index 63cc505ef8..3c0dca5a7d 100644 --- a/.github/workflows/perl-libssh-session.yml +++ b/.github/workflows/perl-libssh-session.yml @@ -24,6 +24,7 @@ jobs: package: needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} strategy: fail-fast: false @@ -88,19 +89,23 @@ jobs: - name: Set package name and paths according to distrib run: | + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libssh-session-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then - PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl/$PERL_VERSION" else - PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl/$PERL_VERSION" fi else NAME="perl-Libssh-Session" if [ "${{ matrix.distrib }}" = "el8" ]; then PERL_VENDORARCH="/usr/local/lib64/perl5" else - PERL_VENDORARCH="/usr/local/lib64/perl5/5.32" + PERL_VENDORARCH="/usr/local/lib64/perl5/$PERL_VERSION" fi fi @@ -117,7 +122,7 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} - release: 4 + release: 5 commit_hash: ${{ github.sha }} cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-libssh-session-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} diff --git a/.github/workflows/perl-net-curl.yml b/.github/workflows/perl-net-curl.yml index 3bf2fc9d79..5a37803f91 100644 --- a/.github/workflows/perl-net-curl.yml +++ b/.github/workflows/perl-net-curl.yml @@ -24,6 +24,7 @@ jobs: package: needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} strategy: fail-fast: false @@ -83,24 +84,28 @@ jobs: dnf install -y libcurl-devel cpanminus gcc fi - cpanm -v -l /tmp Net::Curl@0.54 + cpanm -v -l /tmp Net::Curl@0.55 shell: bash - name: Set package name and paths according to distrib run: | + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME="libnet-curl-perl" if [ "${{ matrix.arch }}" = "amd64" ]; then - PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl/$PERL_VERSION" else - PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl/$PERL_VERSION" fi else NAME="perl-Net-Curl" if [ "${{ matrix.distrib }}" = "el8" ]; then PERL_VENDORARCH="/usr/local/lib64/perl5" else - PERL_VENDORARCH="/usr/local/lib64/perl5/5.32" + PERL_VENDORARCH="/usr/local/lib64/perl5/$PERL_VERSION" fi fi @@ -118,7 +123,7 @@ jobs: package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} commit_hash: ${{ github.sha }} - release: 3 + release: 1 cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-net-curl-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} diff --git a/.github/workflows/perl-openwsman.yml b/.github/workflows/perl-openwsman.yml index c646015355..fdefc37d59 100644 --- a/.github/workflows/perl-openwsman.yml +++ b/.github/workflows/perl-openwsman.yml @@ -22,6 +22,7 @@ jobs: package: needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} strategy: fail-fast: false @@ -32,37 +33,31 @@ jobs: package_extension: rpm runner: ubuntu-22.04 arch: amd64 - version: 2.7.2 - image: packaging-plugins-alma9 distrib: el9 package_extension: rpm runner: ubuntu-22.04 arch: amd64 - version: 2.7.2 - image: packaging-plugins-bullseye distrib: bullseye package_extension: deb runner: ubuntu-22.04 arch: amd64 - version: 2.7.2 - image: packaging-plugins-bookworm distrib: bookworm package_extension: deb runner: ubuntu-22.04 arch: amd64 - version: 2.7.2 - image: packaging-plugins-jammy distrib: jammy package_extension: deb runner: ubuntu-22.04 arch: amd64 - version: 2.7.2 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb runner: ["self-hosted", "collect-arm64"] arch: arm64 - version: 2.7.2 runs-on: ${{ matrix.runner }} @@ -74,6 +69,10 @@ jobs: name: package ${{ matrix.distrib }} ${{ matrix.arch }} + env: + version: "2.7.2" + release: "6" + steps: - name: Checkout sources uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 @@ -110,8 +109,8 @@ jobs: fi cd /tmp - wget -O - https://github.com/Openwsman/openwsman/archive/refs/tags/v${{ matrix.version }}.tar.gz|tar zxvf - - cd openwsman-${{ matrix.version }}/ + wget -O - https://github.com/Openwsman/openwsman/archive/refs/tags/v${{ env.version }}.tar.gz|tar zxvf - + cd openwsman-${{ env.version }}/ mkdir build cd build cmake .. -DBUILD_PYTHON=No -DBUILD_PYTHON3=No -DBUILD_JAVA=No -DBUILD_RUBY=No -DBUILD_PERL=Yes @@ -120,13 +119,23 @@ jobs: - name: Set package name and paths according to distrib run: | + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then + apt-get install -y perl + else + dnf install -y perl + fi + + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then NAME_PERL="libopenwsman-perl" USRLIB="/usr/lib/" if [ "${{ matrix.arch }}" = "amd64" ]; then - PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl/$PERL_VERSION" else - PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl5/5.32" + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl/$PERL_VERSION" fi else NAME_PERL="openwsman-perl" @@ -134,15 +143,13 @@ jobs: if [ "${{ matrix.distrib }}" = "el8" ]; then PERL_VENDORARCH="/usr/local/lib64/perl5" else - PERL_VENDORARCH="/usr/local/lib64/perl5/5.32" + PERL_VENDORARCH="/usr/local/lib64/perl5/$PERL_VERSION" fi fi - sed -i "s/@VERSION@/${{ matrix.version }}/g" dependencies/perl-openwsman/libwsman.yaml sed -i "s#@USRLIB@#$USRLIB#g" dependencies/perl-openwsman/libwsman.yaml sed -i "s/@NAME@/$NAME_PERL/g" dependencies/perl-openwsman/perl-openwsman.yaml - sed -i "s/@VERSION@/${{ matrix.version }}/g" dependencies/perl-openwsman/perl-openwsman.yaml sed -i "s#@PERL_VENDORARCH@#$PERL_VENDORARCH#g" dependencies/perl-openwsman/perl-openwsman.yaml cat dependencies/perl-openwsman/sblim-sfcc.yaml @@ -158,7 +165,8 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} - release: 2 + version: ${{ env.version }} + release: ${{ env.release }} commit_hash: ${{ github.sha }} cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-sblim-sfcc-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} @@ -173,7 +181,8 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} - release: 4 + version: ${{ env.version }} + release: ${{ env.release }} commit_hash: ${{ github.sha }} cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-libwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} @@ -188,7 +197,8 @@ jobs: distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} arch: ${{ matrix.arch }} - release: 4 + version: ${{ env.version }} + release: ${{ env.release }} commit_hash: ${{ github.sha }} cache_key: cache-${{ github.sha }}-${{ matrix.package_extension }}-perl-openwsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} @@ -196,15 +206,6 @@ jobs: rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} stability: ${{ needs.get-environment.outputs.stability }} - # set condition to true if artifacts are needed - - if: ${{ false }} - name: Upload package artifacts - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 - with: - name: packages-${{ matrix.distrib }}-${{ matrix.arch }} - path: ./*.${{ matrix.package_extension}} - retention-days: 1 - deliver-rpm: needs: [get-environment, package] if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} diff --git a/.github/workflows/perl-vmware-vsphere.yml b/.github/workflows/perl-vmware-vsphere.yml index 2d16d5ebc2..7c284e42ec 100644 --- a/.github/workflows/perl-vmware-vsphere.yml +++ b/.github/workflows/perl-vmware-vsphere.yml @@ -23,6 +23,8 @@ jobs: version_file: connectors/vmware/src/centreon/script/centreon_vmware.pm get-sources: + needs: [get-environment] + if: ${{ needs.get-environment.outputs.stability != 'stable' }} runs-on: ubuntu-22.04 steps: - name: Download vsphere cli sources @@ -45,28 +47,43 @@ jobs: key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere package: - needs: - - get-sources - - get-environment - runs-on: ubuntu-22.04 + needs: [get-environment, get-sources] + strategy: matrix: include: - package_extension: rpm image: packaging-plugins-alma8 distrib: el8 + runner: ubuntu-22.04 + arch: amd64 - package_extension: rpm image: packaging-plugins-alma9 distrib: el9 + runner: ubuntu-22.04 + arch: amd64 - package_extension: deb image: packaging-plugins-bullseye distrib: bullseye + runner: ubuntu-22.04 + arch: amd64 - package_extension: deb image: packaging-plugins-bookworm distrib: bookworm + runner: ubuntu-22.04 + arch: amd64 - package_extension: deb image: packaging-plugins-jammy distrib: jammy + runner: ubuntu-22.04 + arch: amd64 + - package_extension: deb + image: packaging-plugins-bullseye-arm64 + distrib: bullseye + runner: ["self-hosted", "collect-arm64"] + arch: arm64 + + runs-on: ${{ matrix.runner }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -74,7 +91,7 @@ jobs: username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - name: package ${{ matrix.distrib }} + name: package ${{ matrix.distrib }} ${{ matrix.arch }} steps: - name: Checkout sources @@ -87,25 +104,50 @@ jobs: key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere fail-on-cache-miss: true + - name: Set paths according to distrib + run: | + PERL_VERSION=$(perl -E "say $^V" | sed -E "s/v([0-9]+\.[0-9]+).+/\1/g") + + echo "Perl version is $PERL_VERSION" + + if [[ "${{ matrix.package_extension }}" == "deb" ]]; then + if [ "${{ matrix.arch }}" = "amd64" ]; then + PERL_VENDORARCH="/usr/lib/x86_64-linux-gnu/perl/$PERL_VERSION" + else + PERL_VENDORARCH="/usr/lib/aarch64-linux-gnu/perl/$PERL_VERSION" + fi + else + if [ "${{ matrix.distrib }}" = "el8" ]; then + PERL_VENDORARCH="/usr/local/lib64/perl5" + else + PERL_VENDORARCH="/usr/local/lib64/perl5/$PERL_VERSION" + fi + fi + + sed -i "s#@PERL_VENDORARCH@#$PERL_VENDORARCH#g" dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml + + cat dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml + shell: bash + - name: Package uses: ./.github/actions/package-nfpm with: nfpm_file_pattern: "dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml" distrib: ${{ matrix.distrib }} package_extension: ${{ matrix.package_extension }} + arch: ${{ matrix.arch }} commit_hash: ${{ github.sha }} - release: ${{ needs.get-environment.outputs.release }} - cache_key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} + version: "7.0.1" + release: "17698549" + cache_key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }}-${{ matrix.arch }} rpm_gpg_key: ${{ secrets.RPM_GPG_SIGNING_KEY }} rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }} rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} stability: ${{ needs.get-environment.outputs.stability }} deliver-rpm: - needs: - - get-environment - - package - if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} runs-on: [self-hosted, common] strategy: @@ -119,22 +161,28 @@ jobs: - name: Delivery uses: ./.github/actions/rpm-delivery with: - module_name: perl-vmware-vsphere + module_name: perl-vmware-vsphere-amd64 distrib: ${{ matrix.distrib }} - cache_key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} + cache_key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }}-amd64 stability: ${{ needs.get-environment.outputs.stability }} artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} deliver-deb: - needs: - - get-environment - - package - if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} + needs: [get-environment, package] + if: ${{ contains(fromJson('["testing", "unstable"]'), needs.get-environment.outputs.stability) }} runs-on: [self-hosted, common] strategy: matrix: - distrib: [bullseye, bookworm, jammy] + include: + - distrib: bullseye + arch: amd64 + - distrib: bullseye + arch: arm64 + - distrib: bookworm + arch: amd64 + - distrib: jammy + arch: amd64 steps: - name: Checkout sources @@ -143,8 +191,38 @@ jobs: - name: Delivery uses: ./.github/actions/deb-delivery with: - module_name: perl-vmware-vsphere + module_name: perl-vmware-vsphere-${{ matrix.arch }} distrib: ${{ matrix.distrib }} - cache_key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} + cache_key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }}-${{ matrix.arch }} stability: ${{ needs.get-environment.outputs.stability }} artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + + promote: + needs: [get-environment] + if: ${{ contains(fromJson('["stable"]'), needs.get-environment.outputs.stability) }} + runs-on: [self-hosted, common] + strategy: + matrix: + include: + - distrib: el8 + arch: amd64 + - distrib: el9 + arch: amd64 + - distrib: bullseye + arch: amd64 + - distrib: bookworm + arch: amd64 + - distrib: bullseye + arch: arm64 + + steps: + - name: Checkout sources + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Promote ${{ matrix.distrib }} ${{ matrix.arch }} to stable + uses: ./.github/actions/promote-to-stable + with: + artifactory_token: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }} + module: perl-vmware-vsphere-${{ matrix.arch }} + distrib: ${{ matrix.distrib }} + stability: ${{ needs.get-environment.outputs.stability }} diff --git a/connectors/vmware/src/centreon/script/centreon_vmware.pm b/connectors/vmware/src/centreon/script/centreon_vmware.pm index a82c464326..f491dea1e3 100644 --- a/connectors/vmware/src/centreon/script/centreon_vmware.pm +++ b/connectors/vmware/src/centreon/script/centreon_vmware.pm @@ -40,9 +40,9 @@ BEGIN { # it's a hack if you unset that #$ENV{PERL_NET_HTTPS_SSL_SOCKET_CLASS} = "Net::SSL"; - # The option is not omit to verify the certificate chain. + # The option is not omit to verify the certificate chain. $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0; - + eval { # required for new IO::Socket::SSL versions require IO::Socket::SSL; @@ -54,7 +54,7 @@ BEGIN { use base qw(centreon::vmware::script); use vars qw(%centreon_vmware_config); -my $VERSION = '3.2.5'; +my $VERSION = '3.2.6'; my %handlers = (TERM => {}, HUP => {}, CHLD => {}); my @load_modules = ( diff --git a/connectors/vmware/src/centreon/vmware/common.pm b/connectors/vmware/src/centreon/vmware/common.pm index 5c5080ad32..0d58f776fd 100644 --- a/connectors/vmware/src/centreon/vmware/common.pm +++ b/connectors/vmware/src/centreon/vmware/common.pm @@ -45,7 +45,7 @@ sub init_response { my (%options) = @_; $manager_response->{code} = 0; - $manager_response->{vmware_connector_version} = '3.2.5'; + $manager_response->{vmware_connector_version} = '3.2.6'; $manager_response->{short_message} = 'OK'; $manager_response->{extra_message} = ''; $manager_response->{identity} = $options{identity} if (defined($options{identity})); diff --git a/connectors/vmware/src/centreon_vmware.pl b/connectors/vmware/src/centreon_vmware.pl index 050fd2fd19..2aa48ea429 100644 --- a/connectors/vmware/src/centreon_vmware.pl +++ b/connectors/vmware/src/centreon_vmware.pl @@ -1,15 +1,15 @@ #!/usr/bin/perl # Copyright 2015 Centreon (http://www.centreon.com/) # -# Centreon is a full-fledged industry-strength solution that meets -# the needs in IT infrastructure and application monitoring for +# 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 +# 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, @@ -50,7 +50,7 @@ =head1 OPTIONS =head1 DESCRIPTION -B will connect to ESX and/or VirtualCenter. +B will connect to ESX and/or VirtualCenter. Use the plugin 'apps::vmware::connector::plugin' from: https://github.com/centreon/centreon-plugins =cut diff --git a/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml b/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml index 943d069dd5..64b1d63d40 100644 --- a/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml +++ b/dependencies/perl-crypt-argon2/perl-crypt-argon2.yaml @@ -2,7 +2,7 @@ name: "@NAME@" arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "0.019" +version: "0.020" release: "${RELEASE}${DIST}" section: "default" priority: "optional" diff --git a/dependencies/perl-filesys-smbclient/src/Makefile.PL b/dependencies/perl-filesys-smbclient/src/Makefile.PL index abc7dfeb52..5d55eb2912 100644 --- a/dependencies/perl-filesys-smbclient/src/Makefile.PL +++ b/dependencies/perl-filesys-smbclient/src/Makefile.PL @@ -10,4 +10,4 @@ WriteMakefile( DEFINE => '', INC => '-I.', OBJECT => 'libauthSamba.o SmbClient.o', -); \ No newline at end of file +); diff --git a/dependencies/perl-keepass-reader/src/lib/KeePass/Reader.pm b/dependencies/perl-keepass-reader/src/lib/KeePass/Reader.pm index 8f3f95f512..f6ad531571 100644 --- a/dependencies/perl-keepass-reader/src/lib/KeePass/Reader.pm +++ b/dependencies/perl-keepass-reader/src/lib/KeePass/Reader.pm @@ -31,7 +31,7 @@ sub new { sub error { my ($self, %options) = @_; - + if (defined($options{message})) { $self->{error_msg} = $options{message}; } @@ -42,7 +42,7 @@ sub error { sub load_db { my ($self, %options) = @_; - $self->{error_msg} = undef; + $self->{error_msg} = undef; $self->{buffer_file} = undef; $self->{master_read_pos} = 0; diff --git a/dependencies/perl-libssh-session/perl-libssh-session.yaml b/dependencies/perl-libssh-session/perl-libssh-session.yaml index a1f9c7116c..1720091391 100644 --- a/dependencies/perl-libssh-session/perl-libssh-session.yaml +++ b/dependencies/perl-libssh-session/perl-libssh-session.yaml @@ -33,7 +33,7 @@ contents: overrides: rpm: depends: - - perl + - perl-interpreter - libssh conflicts: - perl-Libssh-Session-debuginfo diff --git a/dependencies/perl-net-curl/perl-net-curl.yaml b/dependencies/perl-net-curl/perl-net-curl.yaml index 61cdfccf60..29964ff178 100644 --- a/dependencies/perl-net-curl/perl-net-curl.yaml +++ b/dependencies/perl-net-curl/perl-net-curl.yaml @@ -2,7 +2,7 @@ name: "@NAME@" arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "0.54" +version: "0.55" release: "${RELEASE}${DIST}" section: "default" priority: "optional" @@ -40,7 +40,7 @@ contents: overrides: rpm: depends: - - perl + - perl-interpreter - libcurl conflicts: - perl-Net-Curl-debuginfo diff --git a/dependencies/perl-openwsman/libwsman.yaml b/dependencies/perl-openwsman/libwsman.yaml index 637fe83952..4cc1a71226 100644 --- a/dependencies/perl-openwsman/libwsman.yaml +++ b/dependencies/perl-openwsman/libwsman.yaml @@ -2,7 +2,7 @@ name: "libwsman1" arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "@VERSION@" +version: "${VERSION}" release: "${RELEASE}${DIST}" section: "default" priority: "optional" @@ -14,16 +14,21 @@ homepage: "http://www.openwsman.org/" license: "BSD" contents: - - src: "/tmp/openwsman-@VERSION@/build/src/lib/libwsman.so.*" + - src: "/tmp/openwsman-${VERSION}/build/src/lib/libwsman.so.*" dst: "@USRLIB@" + expand: true file_info: mode: 0644 - - src: "/tmp/openwsman-@VERSION@/build/src/lib/libwsman_client.so.*" + + - src: "/tmp/openwsman-${VERSION}/build/src/lib/libwsman_client.so.*" dst: "@USRLIB@" + expand: true file_info: mode: 0644 - - src: "/tmp/openwsman-@VERSION@/build/src/lib/libwsman_curl_client_transport.so.*" + + - src: "/tmp/openwsman-${VERSION}/build/src/lib/libwsman_curl_client_transport.so.*" dst: "@USRLIB@" + expand: true file_info: mode: 0644 diff --git a/dependencies/perl-openwsman/perl-openwsman.yaml b/dependencies/perl-openwsman/perl-openwsman.yaml index b30faae467..6a50a62f9b 100644 --- a/dependencies/perl-openwsman/perl-openwsman.yaml +++ b/dependencies/perl-openwsman/perl-openwsman.yaml @@ -2,7 +2,7 @@ name: "@NAME@" arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "@VERSION@" +version: "${VERSION}" release: "${RELEASE}${DIST}" section: "default" priority: "optional" @@ -14,13 +14,15 @@ homepage: "http://www.openwsman.org/" license: "BSD" contents: - - src: "/tmp/openwsman-@VERSION@/build/bindings/perl/openwsman.so" + - src: "/tmp/openwsman-${VERSION}/build/bindings/perl/openwsman.so" dst: "@PERL_VENDORARCH@/" + expand: true file_info: mode: 0644 - - src: "/tmp/openwsman-@VERSION@/build/bindings/perl/openwsman.pm" + - src: "/tmp/openwsman-${VERSION}/build/bindings/perl/openwsman.pm" dst: "@PERL_VENDORARCH@/" + expand: true file_info: mode: 0644 diff --git a/dependencies/perl-openwsman/sblim-sfcc.yaml b/dependencies/perl-openwsman/sblim-sfcc.yaml index fe6cf25c8b..7dd4a99d65 100644 --- a/dependencies/perl-openwsman/sblim-sfcc.yaml +++ b/dependencies/perl-openwsman/sblim-sfcc.yaml @@ -2,7 +2,7 @@ name: "sblim-sfcc" arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "2.7.2" +version: "${VERSION}" release: "${RELEASE}${DIST}" section: "default" priority: "optional" diff --git a/dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml b/dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml index ec0a6178aa..f582d2d455 100644 --- a/dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml +++ b/dependencies/perl-vmware-vsphere/packaging/perl-vmware-vsphere.yaml @@ -1,9 +1,9 @@ name: "perl-VMware-vSphere" -arch: "amd64" +arch: "${ARCH}" platform: "linux" version_schema: "none" -version: "7.0.0" -release: "17698549${DIST}" +version: "${VERSION}" +release: "${RELEASE}${DIST}" section: "default" priority: "optional" maintainer: "Centreon " @@ -20,18 +20,10 @@ license: "GPLv2+" contents: - src: "../../../vmware-vsphere-cli-distrib/VMware" - dst: "@PERL_SITELIB@/VMware" - packager: rpm - - src: "../../../vmware-vsphere-cli-distrib/VMware" - dst: "/usr/share/perl5/VMware" - packager: deb + dst: "@PERL_VENDORARCH@/VMware" - src: "../../../vmware-vsphere-cli-distrib/WSMan" - dst: "@PERL_SITELIB@/WSMan" - packager: rpm - - src: "../../../vmware-vsphere-cli-distrib/WSMan" - dst: "/usr/share/perl5/WSMan" - packager: deb + dst: "@PERL_VENDORARCH@/WSMan" overrides: rpm: From c431ff82eeb6bcc6c073eb88c3effaba2f258e3c Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:22:08 +0100 Subject: [PATCH 12/63] enh(readme): restructuring the readme file (#4907) Co-authored-by: smau <102975713+smau-centreon@users.noreply.github.com> --- README.md | 87 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 74 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 707d1e1a25..dd585e8e1b 100644 --- a/README.md +++ b/README.md @@ -8,26 +8,55 @@ [![Forks][forks-shield]][forks-url] [![Issues][issues-shield]][issues-url] +## What are Centreon Plugins -“centreon-plugins” is a free and open source project to monitor systems. The project can be used with Centreon and all monitoring softwares compatible with Nagios plugins. +[Centreon plugins](https://github.com/centreon/centreon-plugins/) is a free and open source project to monitor systems. The project can be used with Centreon and all monitoring softwares compatible with Nagios plugins. + +### Principles + +[Centreon plugins](https://github.com/centreon/centreon-plugins/) should comply with [Monitoring Plugins Development Guidelines](https://www.monitoring-plugins.org/doc/guidelines.html). + +In short, they return: +- An error code: + - `0` for `OK` + - `1` for `WARNING` + - `2` for `CRITICAL` + - `3` for `UNKNOWN` +- A human understandable output message (example: `OK: CPU(s) average usage is 2.66 % - CPU '0' usage : 2.66 %`). +- A set of metrics provided as *perfdata* after a `|` character (example: `'cpu.utilization.percentage'=2.66%;;;0;100 '0#core.cpu.utilization.percentage'=2.66%;;;0;100`). + +### What can Centreon Plugins monitor? You can monitor many systems: -* application: Apache, Asterisk, Elasticsearch, Github, Jenkins, Kafka, Nginx, Pfsense, Redis, Tomcat, Varnish,... -* cloud: AWS, Azure, Docker, Office365, Nutanix, Prometheus,... -* database: Firebird, Informix, MS SQL, MySQL, Oracle, Postgres, Cassandra -* hardware: printers (rfc3805), UPS (Powerware, Mge, Standard), Sun Hardware, Cisco UCS, SensorIP, HP Proliant, HP Bladechassis, Dell Openmanage, Dell CMC, Raritan,... -* network: Aruba, Brocade, Bluecoat, Brocade, Checkpoint, Cisco AP/IronPort/ASA/Standard, Extreme, Fortigate, H3C, Hirschmann, HP Procurve, F5 BIG-IP, Juniper, PaloAlto, Redback, Riverbed, Ruggedcom, Stonesoft,... -* os: Linux (SNMP, NRPE), Freebsd (SNMP), AIX (SNMP), Solaris (SNMP)... -* storage: EMC Clariion, Netapp, Nimble, HP MSA p2000, Dell EqualLogic, Qnap, Panzura, Synology... +* **Application**: Apache, Asterisk, Elasticsearch, Github, Jenkins, Kafka, Nginx, Pfsense, Redis, Tomcat, Varnish, etc. +* **Cloud**: AWS, Azure, Docker, Office365, Nutanix, Prometheus, etc. +* **Databases**: Firebird, Informix, MS SQL, MySQL, Oracle, Postgres, Cassandra. +* **Hardware**: printers (RFC3805), UPS (Powerware, Mge, Standard), Sun Hardware, Cisco UCS, SensorIP, HP Proliant, HP Bladechassis, Dell Openmanage, Dell CMC, Raritan, etc. +* **Network**: Aruba, Brocade, Bluecoat, Brocade, Checkpoint, Cisco AP/IronPort/ASA/Standard, Extreme, Fortigate, H3C, Hirschmann, HP Procurve, F5 BIG-IP, Juniper, PaloAlto, Redback, Riverbed, Ruggedcom, Stonesoft, etc. +* **Operating systems**: Linux (SNMP, NRPE), Freebsd (SNMP), AIX (SNMP), Solaris (SNMP), etc. +* **Storage**: EMC Clariion, Netapp, Nimble, HP MSA p2000, Dell EqualLogic, Qnap, Panzura, Synology, etc. + +To get a complete list, run: -## Basic Usage +```bash +perl src/centreon_plugins.pl --list-plugin +``` + +### Basic Usage We'll use a basic example to show you how to monitor a system. I have finished the install section and I want to monitor a Linux in SNMP. First, I need to find the plugin to use in the list: - $ perl centreon_plugins.pl --list-plugin | grep -i linux | grep 'PLUGIN' - PLUGIN: os::linux::local::plugin - PLUGIN: os::linux::snmp::plugin +```bash +perl centreon_plugins.pl --list-plugin | grep -i linux | grep 'PLUGIN' +``` + +It will return: + +``` +PLUGIN: os::linux::local::plugin +PLUGIN: os::linux::snmp::plugin +``` It seems that 'os::linux::snmp::plugin' is the good one. So I verify with the option ``--help`` to be sure: @@ -81,7 +110,39 @@ I can set threshold with options ``--warning`` and ``--critical``: For more information or help, please read ['doc/en/user/guide.rst'](./doc/en/user/guide.rst). -## Continuous integration +## Contributions + +### Code contributions/pull requests + +If you want to contribute by submitting new functionalities, enhancements or bug fixes, first thank you for participating :-) +Then have a look, if not already done, to our **[development guide](https://github.com/centreon/centreon-plugins/blob/develop/doc/en/developer/guide.md)**. +Then create a [fork](https://github.com/centreon/centreon-plugins/fork) and a development branch, and once it's done, you may submit a [pull request](https://github.com/centreon/centreon-plugins/pulls) that the corporate development team will examine. + +### Issues/bug reports + +If you encounter a behaviour that is clearly a bug or a regression, you are welcome to submit an [issue](https://github.com/centreon/centreon-plugins/issues). Please be aware that this is an open source project and that there is no guaranteed response time. + +### Questions/search for help + +If you have trouble using our plugins, but are not sure whether it's due to a bug or a misuse, please take the time to ask for help on [The Watch, Data Collection section](https://thewatch.centreon.com/data-collection-6) and become certain that it is a bug before submitting it here. + +### Feature/enhancement request + +There is high demand for new plugins and new functionalities on existing plugins, so we have to rely on our community to help us prioritize them. +How? Post your suggestion on [The Watch Ideas](https://thewatch.centreon.com/ideas) with as much detail as possible and we will pick the most voted topics to add them to our product roadmap. + +To develop a plugin/mode, we need the following information, depending on the protocol: +* **SNMP**: MIB files and full snmpwalk of enterprise branch (`snmpwalk -ObentU -v 2c -c public address .1.3.6.1.4.1 > equipment.snmpwalk`) or [SNMP collections](https://thewatch.centreon.com/product-how-to-21/snmp-collection-tutorial-132). +* **HTTP API (SOAP, Rest/Json, XML-RPC)**: the documentation and some curl examples or HTTP [collections](https://thewatch.centreon.com/data-collection-6/centreon-plugins-discover-collection-modes-131). +* **CLI**: command line examples (command + result). +* **SQL**: queries + results + column types or [SQL collections](https://thewatch.centreon.com/product-how-to-21/sql-collection-tutorial-134). +* **JMX**: mbean names and attributes. + +If some information is confidential, such as logins or IP addresses, obfuscate them in what is sent publicly and we'll get in touch with you by private message if this information is needed. + +Please note that all the developments are open source, we will not commit to a release date. If it is an emergency for you, please contact [Centreon's sales team](https://www.centreon.com/contact/). + +### Continuous integration Please follow documentation [here](./doc/CI.md) From f62b305eba2b7b4e9e147c28f3a712c659b94df9 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 20 Feb 2024 13:08:40 +0100 Subject: [PATCH 13/63] fix(plugin): fixed an error in the recognition of the product version (#4919) --- .../socomec/netvision/snmp/mode/battery.pm | 2 +- .../hardware-ups-socomec-netvision-snmp.robot | 52 +++++++++++++++++++ .../netvision/snmp/mode/battery.snmpwalk | 11 ++++ 3 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot create mode 100644 tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk diff --git a/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm b/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm index fbb6e8c7b0..cb62cf41e7 100644 --- a/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm +++ b/src/hardware/ups/socomec/netvision/snmp/mode/battery.pm @@ -153,7 +153,7 @@ sub manage_selection { my $snmp_result = $options{snmp}->get_leef( oids => [ map($_->{oid} . '.0', values(%{$mapping->{$label}})) ] ); - if (!defined($snmp_result->{ $mapping->{netvision6}->{status} . '.0' })) { + if (!defined($snmp_result->{ $mapping->{netvision6}->{status}->{oid} . '.0' })) { $label = 'netvision5'; $snmp_result = $options{snmp}->get_leef( oids => [ map($_->{oid} . '.0', values(%{$mapping->{$label}})) ], diff --git a/tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot b/tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot new file mode 100644 index 0000000000..ce95f7a57a --- /dev/null +++ b/tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot @@ -0,0 +1,52 @@ +*** Settings *** +Documentation Hardware UPS Socomec Netvision SNMP plugin + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::socomec::netvision::snmp::plugin + +*** Test Cases *** +Battery ${tc}/4 + [Tags] hardware UPS snmp + ${command} Catenate + ... ${CMD} + ... --mode=battery + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=hardware/ups/socomec/netvision/snmp/mode/battery + + # Append options to command + ${opt} Append Option --warning-temperature ${w_temperature} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --critical-temperature ${c_temperature} + ${command} Catenate ${command} ${opt} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + + Examples: tc w_temperature c_temperature expected_result -- + ... 1 30 50 OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:30;0:50;; + ... 2 20 50 WARNING: temperature: 22 C | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:20;0:50;; + ... 3 10 20 CRITICAL: temperature: 22 C | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:10;0:20;; + ... 4 _empty_ _empty_ OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;;;; + +*** Keywords *** +Append Option + [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' + [Arguments] ${option} ${value} + ${value} Set Variable If '${value}' == '_empty_' '' ${value} + [return] ${option}=${value} + diff --git a/tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk b/tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk new file mode 100644 index 0000000000..dc7512f491 --- /dev/null +++ b/tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk @@ -0,0 +1,11 @@ +.1.3.6.1.4.1.4555.1.1.7.1.2.1.0 = INTEGER: 2 +.1.3.6.1.4.1.4555.1.1.7.1.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.4555.1.1.7.1.2.4.0 = INTEGER: 100 +.1.3.6.1.4.1.4555.1.1.7.1.2.5.0 = INTEGER: 3391 +.1.3.6.1.4.1.4555.1.1.7.1.2.6.0 = INTEGER: 220 +.1.3.6.1.4.1.4555.1.1.7.1.2.8.0 = INTEGER: 0 +.1.3.6.1.4.1.4555.1.1.1.1.2.1.0 = INTEGER: 2 +.1.3.6.1.4.1.4555.1.1.1.1.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.4555.1.1.1.1.2.4.0 = INTEGER: 100 +.1.3.6.1.4.1.4555.1.1.1.1.2.5.0 = INTEGER: 3391 +.1.3.6.1.4.1.4555.1.1.1.1.2.6.0 = INTEGER: 22 From e9edb362ba696e5046d60c5482300c43a7f12b62 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 27 Feb 2024 14:32:18 +0100 Subject: [PATCH 14/63] fix(errmsg): attempt to fix #4703 (renew old PR) (#4892) --- src/centreon/plugins/templates/hardware.pm | 31 +++++------ .../snmp/hardware-sensors-apc-snmp.robot | 53 +++++++++++++++++++ .../hardware/sensors/apc/sensors.snmpwalk | 10 ++++ 3 files changed, 79 insertions(+), 15 deletions(-) create mode 100644 tests/functional/snmp/hardware-sensors-apc-snmp.robot create mode 100644 tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk diff --git a/src/centreon/plugins/templates/hardware.pm b/src/centreon/plugins/templates/hardware.pm index 2c58682fad..213f578eca 100644 --- a/src/centreon/plugins/templates/hardware.pm +++ b/src/centreon/plugins/templates/hardware.pm @@ -277,6 +277,7 @@ sub display { foreach my $comp (sort(keys %{$self->{components}})) { # Skipping short msg when no components next if (!defined($self->{option_results}->{no_component_count}) && $self->{components}->{$comp}->{total} == 0 && $self->{components}->{$comp}->{skip} == 0); + next if (defined($self->{option_results}->{component}) && $comp !~ /$self->{option_results}->{component}/ ); if ($self->{count} == 1) { ($exit, $warn, $crit) = $self->get_severity_count(label => $comp, value => $self->{components}->{$comp}->{total}); @@ -488,24 +489,24 @@ Default template for hardware. Should be extended. =item B<--component> -Which component to check (default: '.*'). -Can be: 'xxx', 'yyy'. +Define which component should be monitored based on their names. +This option will be treated as a regular expression. +All components are included by default ('.*'). =item B<--filter> -Exclude the items given as a comma-separated list (example: --filter=xxx --filter=yyyy). -You can also exclude items from specific instances: --filter=xxxxx,instancevalue +Exclude some components. This option can be called several times (example: --filter=component1 --filter=component2). +You can also exclude components from a specific instance (example: --filter=component_name,instance_value). =item B<--absent-problem> -Return an error if an entity is not 'present' (default is skipping) (comma separated list) -Can be specific or global: --absent-problem=xxxx,instancevalue +Return an error if a component is not 'present' (default is skipping). +It can be set globally or for a specific instance: --absent-problem='component_name' or --absent-problem='component_name,instance_value'. =item B<--no-component> Define the expected status if no components are found (default: critical). - =item B<--threshold-overload> Use this option to override the status returned by the plugin when the status label matches a regular expression (syntax: section,[instance,]status,regexp). @@ -513,21 +514,21 @@ Example: --threshold-overload='xxxxx,CRITICAL,^(?!(normal)$)' =item B<--warning> -Set warning threshold for temperatures (syntax: type,instance,threshold) -Example: --warning='xxxxx,.*,30' +Define the warning threshold for temperatures (syntax: type,instance,threshold) +Example: --warning='temperature,.*,30' =item B<--critical> -Set critical threshold for temperatures (syntax: type,instance,threshold) -Example: --critical='xxxxx,.*,40' +Define the critical threshold for temperatures (syntax: type,instance,threshold) +Example: --critical='temperature,.*,40' -=item B<--warning-count-xxxx> +=item B<--warning-count-*> -Set warning threshold for component count. +Define the warning threshold for the number of components of one type (replace '*' with the component type). -=item B<--critical-count-xxxx> +=item B<--critical-count-*> -Set critical threshold for component count. +Define the critical threshold for the number of components of one type (replace '*' with the component type). =back diff --git a/tests/functional/snmp/hardware-sensors-apc-snmp.robot b/tests/functional/snmp/hardware-sensors-apc-snmp.robot new file mode 100644 index 0000000000..995dc39eec --- /dev/null +++ b/tests/functional/snmp/hardware-sensors-apc-snmp.robot @@ -0,0 +1,53 @@ +*** Settings *** +Documentation Hardware Sensors APC SNMP plugin + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::sensors::apc::snmp::plugin --mode=sensors --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 + +*** Test Cases *** +APC Sensors ${tc}/9 + [Tags] hardware Sensors snmp + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/sensors/apc/sensors + + # Append options to command + ${command} Append Option To Command ${command} --warning ${warning} + ${command} Append Option To Command ${command} --critical ${critical} + ${command} Append Option To Command ${command} --component ${component} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} +#--component 'temperature' --warning='humidity,.,45:65' --critical='humidity,.,35:70' + Examples: tc component warning critical expected_result -- + ... 1 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; + ... 2 _empty_ humidity,.,45:65 _empty_ WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;;0;100 'hardware.temperature.count'=2;;;; + ... 3 _empty_ humidity,.,45:65 humidity,.,35:70 WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;35:70;0;100 'hardware.temperature.count'=2;;;; + ... 4 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; + ... 5 _empty_ humidity,.,45:65 _empty_ WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;;0;100 'hardware.temperature.count'=2;;;; + ... 6 _empty_ humidity,.,45:65 humidity,.,35:70 WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;35:70;0;100 'hardware.temperature.count'=2;;;; + ... 7 .* _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; + ... 8 _empty_ temperature,.,22:25 temperature,.,22:25 OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;22:25;22:25;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; + ... 9 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; + +*** Keywords *** + +Append Option To Command + [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' + [Arguments] ${cmd} ${option} ${value} + ${value} Set Variable If '${value}' == '_empty_' '' ${value} + [return] ${cmd} ${option}=${value} + diff --git a/tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk b/tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk new file mode 100644 index 0000000000..e5380183b2 --- /dev/null +++ b/tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk @@ -0,0 +1,10 @@ +.1.3.6.1.4.1.318.1.1.10.3.12.11.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.4.1.2.1.2.0 = STRING: Main Module +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.1.0.1 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.2.0.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.3.0.1 = STRING: Sonde de temperature +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.4.0.1 = STRING: salle serveur 1 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.5.0.1 = INTEGER: 23 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.6.0.1 = INTEGER: 35 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.7.0.1 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.10.4.2.3.1.8.0.1 = INTEGER: 1 \ No newline at end of file From 157a702adf30376e508a304cf3122fa602f68d3c Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:16:07 +0100 Subject: [PATCH 15/63] Ctor 378 fix snmp collections random issue (#4918) --- .github/workflows/spellchecker.yml | 2 +- src/apps/protocols/snmp/mode/collection.pm | 2 +- .../collection/snmp/sputnik-environment.json | 67 +++++++++++++++++++ .../snmp/snmp-collection-sputnik-snmp.robot | 46 +++++++++++++ 4 files changed, 115 insertions(+), 2 deletions(-) create mode 100644 src/contrib/collection/snmp/sputnik-environment.json create mode 100644 tests/functional/snmp/snmp-collection-sputnik-snmp.robot diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml index 4330058fa0..ae4d9d4f63 100644 --- a/.github/workflows/spellchecker.yml +++ b/.github/workflows/spellchecker.yml @@ -27,7 +27,7 @@ jobs: list-files: shell filters: | plugins: - - added|modified: src/** + - added|modified: 'src/**/*.pm' - name: Install CPAN Libraries uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 diff --git a/src/apps/protocols/snmp/mode/collection.pm b/src/apps/protocols/snmp/mode/collection.pm index 625bbc5312..0df162493e 100644 --- a/src/apps/protocols/snmp/mode/collection.pm +++ b/src/apps/protocols/snmp/mode/collection.pm @@ -242,7 +242,7 @@ sub collect_snmp_tables { my $used_instance = defined($table->{used_instance}) && $table->{used_instance} ne '' ? $table->{used_instance} : '\.(\d+)$'; my $snmp_result = $options{snmp}->get_table(oid => $table->{oid}); foreach (keys %$snmp_result) { - /$used_instance/; + /$used_instance/ or next; next if (defined($self->{snmp_collected}->{tables}->{ $table->{name} }->{$1})); my $instance = $1; diff --git a/src/contrib/collection/snmp/sputnik-environment.json b/src/contrib/collection/snmp/sputnik-environment.json new file mode 100644 index 0000000000..cdaefa7b5d --- /dev/null +++ b/src/contrib/collection/snmp/sputnik-environment.json @@ -0,0 +1,67 @@ +{ + "constants": {}, + "mapping": {}, + "snmp": { + "tables": [ + { + "name": "upsEnvSensors", + "oid": ".1.3.6.1.4.1.54661.1.1.1.2.2.1", + "used_instance": "\\.2\\.(\\d+)$", + "entries": [ + { + "name": "temperature", + "oid": ".1.3.6.1.4.1.54661.1.1.1.2.2.1.2" + }, + { + "name": "humidity", + "oid": ".1.3.6.1.4.1.54661.1.1.1.2.2.1.3" + } + ] + } + ] + }, + "selection_loop": [ + { + "name": "Sensors", + "source": "%(snmp.tables.upsEnvSensors)", + "expand_table": { + "upsEnvSensors": "%(snmp.tables.upsEnvSensors.[%(upsEnvSensors.instance)])" + }, + "functions": [ + { + "type": "replace", + "src": "%(upsEnvSensors.temperature)", + "expression": "s/(\\d?\\d)(\\d\\d)/$1.$2/" + } + ], + + "perfdatas": [ + { + "nlabel": "environment.temperature.celsius", + "instances": ["%(upsEnvSensors.instance)"], + "value": "%(upsEnvSensors.temperature)", + "critical": "", + "unit": "C" + }, + { + "nlabel": "environment.humidity.percent", + "instances": ["%(upsEnvSensors.instance)"], + "value": "%(upsEnvSensors.humidity)", + "critical": "", + "unit": "%", + "min": 0, + "max": 100 + } + ], + "formatting": { + "printf_msg": "Sensor '%s' temperature is '%s'°C and humidity is '%s'%%", + "printf_var": [ + "%(upsEnvSensors.instance)", + "%(upsEnvSensors.temperature)", + "%(upsEnvSensors.humidity)" + ], + "display_ok": true + } + } + ] +} \ No newline at end of file diff --git a/tests/functional/snmp/snmp-collection-sputnik-snmp.robot b/tests/functional/snmp/snmp-collection-sputnik-snmp.robot new file mode 100644 index 0000000000..2e380c0aab --- /dev/null +++ b/tests/functional/snmp/snmp-collection-sputnik-snmp.robot @@ -0,0 +1,46 @@ +*** Settings *** +Documentation Hardware UPS Sputnik SNMP plugin + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=apps::protocols::snmp::plugin + +*** Test Cases *** +SNMP Collection - Sputnik Environment ${tc}/3 + [Tags] SNMP Collection + ${command} Catenate + ... ${CMD} + ... --mode=collection + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=hardware-ups/hardware-ups-sputnik + ... --config=${CURDIR}${/}..${/}..${/}..${/}src/contrib/collection/snmp/sputnik-environment.json + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + + Examples: tc expected_result -- + ... 1 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 + ... 2 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 + ... 3 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 + +*** Keywords *** +Append Option + [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' + [Arguments] ${option} ${value} + ${value} Set Variable If '${value}' == '_empty_' '' ${value} + [return] ${option}=${value} + From c19e81a836cdcefe9fe72f2117ce4ded00ef78b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Chapron?= <34628915+sc979@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:36:42 +0100 Subject: [PATCH 16/63] chore(ci): upgrade gha (#4929) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/perl-cpan-libraries.yml | 8 ++++---- .github/workflows/perl-crypt-argon2.yml | 2 +- .github/workflows/perl-json-path.yml | 2 +- .github/workflows/perl-libssh-session.yml | 2 +- .github/workflows/perl-net-curl.yml | 2 +- .github/workflows/plink.yml | 2 +- .github/workflows/plugins.yml | 6 +++--- .github/workflows/spellchecker.yml | 4 ++-- .github/workflows/tests-functional.yml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 3bff9a9ba6..16ba4b17c8 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -216,7 +216,7 @@ jobs: shell: bash - if: ${{ contains(matrix.build_distribs, matrix.distrib) }} - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.package_extension }}-${{ matrix.distrib }}-${{ steps.package-name.outputs.name_with_dash }} path: ./*.${{ matrix.package_extension }} @@ -347,7 +347,7 @@ jobs: shell: bash - if: ${{ contains(matrix.build_distribs, matrix.distrib) }} - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.package_extension }}-${{ matrix.distrib }}-${{ steps.package-name.outputs.name_with_dash}} path: ./*.${{ matrix.package_extension }} @@ -410,7 +410,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 + - uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 with: name: packages-rpm-${{ matrix.distrib }} path: ./ @@ -433,7 +433,7 @@ jobs: matrix: distrib: [bullseye, bookworm, jammy] steps: - - uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 + - uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 with: name: packages-deb-${{ matrix.distrib }} path: ./ diff --git a/.github/workflows/perl-crypt-argon2.yml b/.github/workflows/perl-crypt-argon2.yml index 8629ba2607..808458b4cd 100644 --- a/.github/workflows/perl-crypt-argon2.yml +++ b/.github/workflows/perl-crypt-argon2.yml @@ -135,7 +135,7 @@ jobs: # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension}} diff --git a/.github/workflows/perl-json-path.yml b/.github/workflows/perl-json-path.yml index 5289ab7984..f3206b70b1 100644 --- a/.github/workflows/perl-json-path.yml +++ b/.github/workflows/perl-json-path.yml @@ -122,7 +122,7 @@ jobs: # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.distrib }} path: ./*.${{ matrix.package_extension}} diff --git a/.github/workflows/perl-libssh-session.yml b/.github/workflows/perl-libssh-session.yml index 3c0dca5a7d..69f068d40d 100644 --- a/.github/workflows/perl-libssh-session.yml +++ b/.github/workflows/perl-libssh-session.yml @@ -133,7 +133,7 @@ jobs: # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension}} diff --git a/.github/workflows/perl-net-curl.yml b/.github/workflows/perl-net-curl.yml index 5a37803f91..830c2aaef9 100644 --- a/.github/workflows/perl-net-curl.yml +++ b/.github/workflows/perl-net-curl.yml @@ -133,7 +133,7 @@ jobs: # set condition to true if artifacts are needed - if: ${{ false }} name: Upload package artifacts - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.distrib }}-${{ matrix.arch }} path: ./*.${{ matrix.package_extension }} diff --git a/.github/workflows/plink.yml b/.github/workflows/plink.yml index e5b55e53e4..1b1f64c235 100644 --- a/.github/workflows/plink.yml +++ b/.github/workflows/plink.yml @@ -102,7 +102,7 @@ jobs: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} - - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: packages-${{ matrix.distrib }} path: ./*.rpm diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index d2287bdf06..72d4f45d7f 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -37,7 +37,7 @@ jobs: with: python-version: '3.9' - - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 + - uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1 id: filter with: base: ${{ github.ref }} @@ -93,7 +93,7 @@ jobs: fetch-depth: 1 - name: Prepare FatPacker - uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 + uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 with: perl-version: '5.34' install-modules-with: cpm @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - if: ${{ matrix.distrib == 'el7' }} - uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml index ae4d9d4f63..1ccb28fbff 100644 --- a/.github/workflows/spellchecker.yml +++ b/.github/workflows/spellchecker.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 + - uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1 id: filter with: base: ${{ github.ref }} @@ -30,7 +30,7 @@ jobs: - added|modified: 'src/**/*.pm' - name: Install CPAN Libraries - uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 + uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 with: perl-version: '5.34' install-modules-with: cpm diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index 88dc3ebc56..ab6de004e6 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -28,7 +28,7 @@ jobs: sudo apt-get install -qqy snmpsim - name: Install Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: node-version: 16 @@ -36,7 +36,7 @@ jobs: run: npm install -g -D @mockoon/cli@3.1.0 - name: Install perl dependencies - uses: shogo82148/actions-setup-perl@ea0507898383e7dbce382138da0c21af1849eb9e # v1.27.0 + uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 with: perl-version: '5.34' install-modules-with: cpm From 874f0d80ecb8851e51e3926ef16e1c07ad966dda Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:49:13 +0100 Subject: [PATCH 17/63] [CTOR-306] [Plugin] [CommunityPR] Allow to filter ActiveMQ Brokers by mbean and attributes (#4883) Co-authored-by: Colin Gagnaire Co-authored-by: Lucie Dubrunfaut --- .github/scripts/stopwords.t | 3 ++ .github/workflows/plugins.yml | 2 +- src/apps/mq/activemq/jmx/mode/brokers.pm | 39 +++++++++++++++++++++++- 3 files changed, 42 insertions(+), 2 deletions(-) diff --git a/.github/scripts/stopwords.t b/.github/scripts/stopwords.t index ef299c3705..d363f846bf 100644 --- a/.github/scripts/stopwords.t +++ b/.github/scripts/stopwords.t @@ -4,12 +4,15 @@ Centreon Fortinet Fortigate license-instances-usage-prct +MBean OID oneaccess-sys-mib perfdata powershell +queue-messages-inflighted SNMP space-usage-prct SSH SureBackup +topic-messages-inflighted Veeam diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 72d4f45d7f..24ba130101 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - if: ${{ matrix.distrib == 'el7' }} - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} diff --git a/src/apps/mq/activemq/jmx/mode/brokers.pm b/src/apps/mq/activemq/jmx/mode/brokers.pm index c79b790b50..fd0614fb9c 100644 --- a/src/apps/mq/activemq/jmx/mode/brokers.pm +++ b/src/apps/mq/activemq/jmx/mode/brokers.pm @@ -204,7 +204,8 @@ sub new { $options{options}->add_options(arguments => { 'filter-broker-name:s' => { name => 'filter_broker_name' }, 'filter-destination-name:s' => { name => 'filter_destination_name' }, - 'filter-destination-type:s' => { name => 'filter_destination_type' } + 'filter-destination-type:s' => { name => 'filter_destination_type' }, + 'request:s@' => { name => 'request' } }); return $self; @@ -238,6 +239,24 @@ sub manage_selection { ] } ]; + + if (defined($self->{option_results}->{request}) && $self->{option_results}->{request} ne '') { + centreon::plugins::misc::mymodule_load( + output => $self->{output}, module => 'JSON::XS', + error_msg => "Cannot load module 'JSON::XS'." + ); + $request = undef; + foreach (@{$self->{option_results}->{request}}) { + eval { + push @$request, JSON::XS->new->utf8->decode($_); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot use request as it is a malformed JSON: " . $@); + $self->{output}->option_exit(); + } + } + } + my $result = $options{custom}->get_attributes(request => $request, nothing_quit => 1); $self->{cache_name} = 'activemq_' . $self->{mode} . '_' . md5_hex($options{custom}->get_connection_info()) . '_' . @@ -318,6 +337,24 @@ Filter destination name (can be a regexp). Filter destination type (can be a regexp). +=item B<--request> + +EXPERIMENTAL Option : Community-supported only (no support from Centreon at this time) + +Set the MBean and attributes to request (will replace defaults) +in a JSON-formatted fashion. + +This is useful to reduce the size of returned data by providing destination +type and name or broker name instead of filtering afterwards, and grabbing +exactly the wanted attributes. + +This can be set multiple times. + +Example: + +--request='{"mbean":"org.apache.activemq:brokerName=*,destinationName=MyQueue,destinationType=Queue,type=Broker","attributes":[{"name":"QueueSize"}]}' +--request='{"mbean":"org.apache.activemq:brokerName=*,type=Broker,service=Health","attributes":[{"name":"CurrentStatus"}]}' + =item B<--warning-status> Define the conditions to match for the status to be WARNING. From 7ec611b99482a5a6292740064866359bcf937336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Chapron?= <34628915+sc979@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:06:32 +0100 Subject: [PATCH 18/63] chore(ci): downgrade action (#4935) --- .github/workflows/plugins.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 24ba130101..c5d579dfd6 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -155,6 +155,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - if: ${{ matrix.distrib == 'el7' }} + # el7 is not compatible with checkout v4 which uses node20 uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: ./build/ From 66bc9dc554a6d91fbfcf7d53259fe9a98ed59cd0 Mon Sep 17 00:00:00 2001 From: Benoit Poulet Date: Wed, 27 Dec 2023 11:35:22 +0100 Subject: [PATCH 19/63] more info on --data --data can get directly the request on the command line. Put the info is not given in the help. --- src/apps/protocols/http/mode/jsoncontent.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/protocols/http/mode/jsoncontent.pm b/src/apps/protocols/http/mode/jsoncontent.pm index c09929a87d..f9f2c6e327 100644 --- a/src/apps/protocols/http/mode/jsoncontent.pm +++ b/src/apps/protocols/http/mode/jsoncontent.pm @@ -389,7 +389,7 @@ JSON OPTIONS: =item B<--data> -Set file with JSON request +Set the JSON request or specify a file with the request inside. =item B<--lookup> From 9d1fa8901e6a6094893fcfa40da25917ee5cb24c Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:02:50 +0100 Subject: [PATCH 20/63] new(pkg): build the nrpe daemon as nrpe4 (#4931) --- .github/workflows/nrpe.yml | 6 +- nrpe/packaging/centreon-nrpe4-daemon.yaml | 92 +++++++++++++++++++ nrpe/packaging/files/nrpe4.deb.service | 23 +++++ nrpe/packaging/files/nrpe4.rpm.service | 23 +++++ nrpe/packaging/files/nrpe4.sysconfig | 2 + .../files/nrpe4_add_centreon_cmd.patch | 29 ++++++ .../centreon-nrpe4-daemon-postinstall.sh | 31 +++++++ .../centreon-nrpe4-daemon-preinstall.sh | 6 ++ .../centreon-nrpe4-daemon-preremove.sh | 3 + .../deb.json | 2 + .../rpm.json | 7 +- 11 files changed, 219 insertions(+), 5 deletions(-) create mode 100644 nrpe/packaging/centreon-nrpe4-daemon.yaml create mode 100644 nrpe/packaging/files/nrpe4.deb.service create mode 100644 nrpe/packaging/files/nrpe4.rpm.service create mode 100644 nrpe/packaging/files/nrpe4.sysconfig create mode 100644 nrpe/packaging/files/nrpe4_add_centreon_cmd.patch create mode 100644 nrpe/packaging/scripts/centreon-nrpe4-daemon-postinstall.sh create mode 100644 nrpe/packaging/scripts/centreon-nrpe4-daemon-preinstall.sh create mode 100644 nrpe/packaging/scripts/centreon-nrpe4-daemon-preremove.sh diff --git a/.github/workflows/nrpe.yml b/.github/workflows/nrpe.yml index c51017cddd..7b542e1a49 100644 --- a/.github/workflows/nrpe.yml +++ b/.github/workflows/nrpe.yml @@ -20,7 +20,7 @@ jobs: get-environment: uses: ./.github/workflows/get-environment.yml with: - version_file: nrpe/packaging/centreon-nrpe3-daemon.yaml + version_file: nrpe/packaging/centreon-nrpe4-daemon.yaml package: needs: [get-environment] @@ -59,7 +59,7 @@ jobs: - name: Download nrpe sources run: | - curl -Lo - "https://github.com/NagiosEnterprises/nrpe/releases/download/nrpe-${{ needs.get-environment.outputs.version }}/nrpe-${{ needs.get-environment.outputs.version }}.tar.gz" | tar zxpf - + curl -sLo - "https://github.com/NagiosEnterprises/nrpe/releases/download/nrpe-${{ needs.get-environment.outputs.version }}/nrpe-${{ needs.get-environment.outputs.version }}.tar.gz" | tar zxpf - mv nrpe-${{ needs.get-environment.outputs.version }} nrpe-src shell: bash @@ -67,7 +67,7 @@ jobs: run: | cd nrpe-src - patch -p1 < ../nrpe/packaging/files/nrpe3_add_centreon_cmd.patch + patch -p1 < ../nrpe/packaging/files/nrpe4_add_centreon_cmd.patch if [ "${{ matrix.package_extension }}" = "deb" ]; then NAGIOS_PLUGINS_PATH="/usr/lib/nagios/plugins" diff --git a/nrpe/packaging/centreon-nrpe4-daemon.yaml b/nrpe/packaging/centreon-nrpe4-daemon.yaml new file mode 100644 index 0000000000..acf50c8c5e --- /dev/null +++ b/nrpe/packaging/centreon-nrpe4-daemon.yaml @@ -0,0 +1,92 @@ +name: "centreon-nrpe4-daemon" +arch: "amd64" +platform: "linux" +version_schema: "none" +version: "4.1.0" +release: "${RELEASE}${DIST}" +section: "default" +priority: "optional" +maintainer: "Centreon " +description: | + The centreon-nrpe packages contains the Nagios Remote Plug-ins Executor. + Daemon which can execute predefined commands on the remote host. + Commit: @COMMIT_HASH@ +vendor: "Centreon" +homepage: "https://centreon.com" +license: "GPLv2+" + +contents: + - src: "../../nrpe-src/src/nrpe" + dst: "/usr/sbin/centreon-nrpe4" + + - src: "../../nrpe-src/sample-config/nrpe.cfg" + dst: "/etc/nrpe/centreon-nrpe4.cfg" + type: config|noreplace + file_info: + mode: 0644 + + - src: "files/nrpe4.sysconfig" + dst: "/etc/sysconfig/centreon-nrpe4" + packager: rpm + file_info: + mode: 0644 + - src: "files/nrpe4.sysconfig" + dst: "/etc/default/centreon-nrpe4" + packager: deb + file_info: + mode: 0644 + + - src: "files/nrpe4.rpm.service" + dst: "/lib/systemd/system/centreon-nrpe4.service" + packager: rpm + file_info: + mode: 0644 + - src: "files/nrpe4.deb.service" + dst: "/lib/systemd/system/centreon-nrpe4.service" + packager: deb + file_info: + mode: 0644 + + - dst: "/var/log/nrpe" + type: dir + file_info: + mode: 0755 + owner: centreon-engine + group: centreon-engine + + - dst: "/var/log/nrpe/centplugins" + type: dir + file_info: + mode: 0755 + owner: centreon-engine + group: centreon-engine + +scripts: + preinstall: ./scripts/centreon-nrpe4-daemon-preinstall.sh + postinstall: ./scripts/centreon-nrpe4-daemon-postinstall.sh + preremove: ./scripts/centreon-nrpe4-daemon-preremove.sh + +overrides: + rpm: + replaces: + - centreon-nrpe4-daemon-debuginfo + - centreon-nrpe4-daemon-debugsource + conflicts: + - centreon-nrpe4-daemon-debuginfo + - centreon-nrpe4-daemon-debugsource + provides: + - centreon-nrpe4-daemon-debuginfo + - centreon-nrpe4-daemon-debugsource + deb: + replaces: + - centreon-nrpe4-daemon-dbgsym + conflicts: + - centreon-nrpe4-daemon-dbgsym + provides: + - centreon-nrpe4-daemon-dbgsym + +rpm: + summary: Nagios Remote Plugins Execution daemon + signature: + key_file: ${RPM_SIGNING_KEY_FILE} + key_id: ${RPM_SIGNING_KEY_ID} diff --git a/nrpe/packaging/files/nrpe4.deb.service b/nrpe/packaging/files/nrpe4.deb.service new file mode 100644 index 0000000000..cbcb430b6a --- /dev/null +++ b/nrpe/packaging/files/nrpe4.deb.service @@ -0,0 +1,23 @@ +[Unit] +Description=Nagios Remote Program Executor +Documentation=http://www.nagios.org/documentation +After=var-run.mount nss-lookup.target network.target local-fs.target time-sync.target +Before=getty@tty1.service plymouth-quit.service xdm.service +Conflicts=nrpe.socket +Requires=network.target + +[Service] +Type=forking +User=centreon-engine +Group=centreon-engine +EnvironmentFile=/etc/default/centreon-nrpe4 +ExecStart=/usr/sbin/centreon-nrpe4 -c /etc/nrpe/centreon-nrpe4.cfg -d $NRPE_OPT +Restart=on-abort +PIDFile=/var/log/nrpe/nrpe4.pid +ExecStopPost=/bin/rm -f /var/log/nrpe/nrpe4.pid +TimeoutStopSec=60 +PrivateTmp=false +OOMScoreAdjust=-500 + +[Install] +WantedBy=multi-user.target diff --git a/nrpe/packaging/files/nrpe4.rpm.service b/nrpe/packaging/files/nrpe4.rpm.service new file mode 100644 index 0000000000..c4b8b6e03f --- /dev/null +++ b/nrpe/packaging/files/nrpe4.rpm.service @@ -0,0 +1,23 @@ +[Unit] +Description=Nagios Remote Program Executor +Documentation=http://www.nagios.org/documentation +After=var-run.mount nss-lookup.target network.target local-fs.target time-sync.target +Before=getty@tty1.service plymouth-quit.service xdm.service +Conflicts=nrpe.socket +Requires=network.target + +[Service] +Type=forking +User=centreon-engine +Group=centreon-engine +EnvironmentFile=/etc/sysconfig/centreon-nrpe4 +ExecStart=/usr/sbin/centreon-nrpe4 -c /etc/nrpe/centreon-nrpe4.cfg -d $NRPE_OPT +Restart=on-abort +PIDFile=/var/log/nrpe/nrpe4.pid +ExecStopPost=/bin/rm -f /var/log/nrpe/nrpe4.pid +TimeoutStopSec=60 +PrivateTmp=false +OOMScoreAdjust=-500 + +[Install] +WantedBy=multi-user.target diff --git a/nrpe/packaging/files/nrpe4.sysconfig b/nrpe/packaging/files/nrpe4.sysconfig new file mode 100644 index 0000000000..a1fe957b4e --- /dev/null +++ b/nrpe/packaging/files/nrpe4.sysconfig @@ -0,0 +1,2 @@ +# specify additional command line arguments for nrpe +NRPE_OPT="" diff --git a/nrpe/packaging/files/nrpe4_add_centreon_cmd.patch b/nrpe/packaging/files/nrpe4_add_centreon_cmd.patch new file mode 100644 index 0000000000..7fed46e5f2 --- /dev/null +++ b/nrpe/packaging/files/nrpe4_add_centreon_cmd.patch @@ -0,0 +1,29 @@ +--- a/sample-config/nrpe.cfg.in 2018-09-14 13:40:08.496324915 +0200 ++++ b/sample-config/nrpe.cfg.in 2018-09-14 13:47:57.624296953 +0200 +@@ -40,7 +40,7 @@ + # number. The file is only written if the NRPE daemon is started by the root + # user and is running in standalone mode. + +-pid_file=@piddir@/nrpe.pid ++pid_file=@piddir@/nrpe4.pid + + + +@@ -119,7 +119,7 @@ + # + # Values: 0=do not allow arguments, 1=allow command arguments + +-dont_blame_nrpe=0 ++dont_blame_nrpe=1 + + + +@@ -300,7 +300,7 @@ + command[check_hda1]=@pluginsdir@/check_disk -w 20% -c 10% -p /dev/hda1 + command[check_zombie_procs]=@pluginsdir@/check_procs -w 5 -c 10 -s Z + command[check_total_procs]=@pluginsdir@/check_procs -w 150 -c 200 +- ++command[check_centreon_plugins]=/usr/lib/centreon/plugins/centreon_linux_local.pl --plugin=$ARG1$ --mode=$ARG2$ $ARG3$ + + # The following examples allow user-supplied arguments and can + # only be used if the NRPE daemon was compiled with support for diff --git a/nrpe/packaging/scripts/centreon-nrpe4-daemon-postinstall.sh b/nrpe/packaging/scripts/centreon-nrpe4-daemon-postinstall.sh new file mode 100644 index 0000000000..9623918669 --- /dev/null +++ b/nrpe/packaging/scripts/centreon-nrpe4-daemon-postinstall.sh @@ -0,0 +1,31 @@ +#!/bin/sh + +startNrpeDaemon() { + systemctl daemon-reload ||: + systemctl unmask centreon-nrpe4.service ||: + systemctl preset centreon-nrpe4.service ||: + systemctl enable centreon-nrpe4.service ||: + systemctl restart centreon-nrpe4.service ||: +} + +action="$1" +if [ "$1" = "configure" ] && [ -z "$2" ]; then + # Alpine linux does not pass args, and deb passes $1=configure + action="install" +elif [ "$1" = "configure" ] && [ -n "$2" ]; then + # deb passes $1=configure $2= + action="upgrade" +fi + +case "$action" in + "1" | "install") + startNrpeDaemon + ;; + "2" | "upgrade") + startNrpeDaemon + ;; + *) + # $1 == version being installed + startNrpeDaemon + ;; +esac diff --git a/nrpe/packaging/scripts/centreon-nrpe4-daemon-preinstall.sh b/nrpe/packaging/scripts/centreon-nrpe4-daemon-preinstall.sh new file mode 100644 index 0000000000..e15030f851 --- /dev/null +++ b/nrpe/packaging/scripts/centreon-nrpe4-daemon-preinstall.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +getent group centreon-engine > /dev/null 2>&1 || groupadd -r centreon-engine +getent passwd centreon-engine > /dev/null 2>&1 || useradd -g centreon-engine --shell /bin/bash -m -d /var/lib/centreon-engine -r centreon-engine > /dev/null 2>&1 ||: +mkdir -p /var/lib/centreon/centplugins/ +chown centreon-engine: /var/lib/centreon/centplugins/ diff --git a/nrpe/packaging/scripts/centreon-nrpe4-daemon-preremove.sh b/nrpe/packaging/scripts/centreon-nrpe4-daemon-preremove.sh new file mode 100644 index 0000000000..7bcbd7beae --- /dev/null +++ b/nrpe/packaging/scripts/centreon-nrpe4-daemon-preremove.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +systemctl stop centreon-nrpe4.service ||: diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json b/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json index 8b49667cf1..5c7b077db5 100644 --- a/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json @@ -1,5 +1,7 @@ { "dependencies": [ + "libdatetime-perl", + "libxml-libxml-perl", "net-tools", "quota" ] diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json b/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json index 9804af0084..f2003e2753 100644 --- a/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json @@ -2,9 +2,12 @@ "dependencies": [ "net-tools", "quota", + "lsof", "perl(Data::Dumper)", - "perl(Pod::Parser)", + "perl(DateTime)", "perl(Digest::MD5)", - "perl(NetAddr::IP)" + "perl(NetAddr::IP)", + "perl(Pod::Parser)", + "perl(XML::LibXML)" ] } From 2d1d5a54727c576382a54bbd0d02c723624fc2b0 Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Mon, 11 Mar 2024 11:25:35 +0100 Subject: [PATCH 21/63] [CTOR-284] new Datacore plugin with rest api (#4896) Co-authored-by: Sophie Depassio --- .github/scripts/stopwords.t | 5 +- .github/workflows/tests-functional.yml | 4 +- doc/en/developer/plugins_advanced.md | 4 +- .../deb.json | 4 + .../pkg.json | 9 + .../rpm.json | 4 + src/centreon/plugins/misc.pm | 8 + src/storage/datacore/restapi/custom/api.pm | 172 +++++++++++++++++ src/storage/datacore/restapi/mode/alerts.pm | 174 +++++++++++++++++ src/storage/datacore/restapi/mode/listpool.pm | 115 +++++++++++ .../datacore/restapi/mode/monitorstatus.pm | 148 +++++++++++++++ .../datacore/restapi/mode/poolspaceusage.pm | 121 ++++++++++++ src/storage/datacore/restapi/plugin.pm | 27 +++ ...l.robot => cloud-aws-cloudtrail.robot.old} | 12 +- ...ure-policyinsights-policystates.robot.old} | 21 +- .../api/storage-datacore-restapi.robot | 77 ++++++++ .../mockoon/storage-datacore-api.json | 174 +++++++++++++++++ .../mockoon/storage-datacore-restapi.json | 179 ++++++++++++++++++ 18 files changed, 1232 insertions(+), 26 deletions(-) create mode 100644 packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/deb.json create mode 100644 packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json create mode 100644 packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/rpm.json create mode 100644 src/storage/datacore/restapi/custom/api.pm create mode 100644 src/storage/datacore/restapi/mode/alerts.pm create mode 100644 src/storage/datacore/restapi/mode/listpool.pm create mode 100644 src/storage/datacore/restapi/mode/monitorstatus.pm create mode 100644 src/storage/datacore/restapi/mode/poolspaceusage.pm create mode 100644 src/storage/datacore/restapi/plugin.pm rename tests/functional/api/{cloud-aws-cloudtrail.robot => cloud-aws-cloudtrail.robot.old} (97%) rename tests/functional/api/{cloud-azure-policyinsights-policystates.robot => cloud-azure-policyinsights-policystates.robot.old} (87%) create mode 100644 tests/functional/api/storage-datacore-restapi.robot create mode 100644 tests/resources/mockoon/storage-datacore-api.json create mode 100644 tests/resources/mockoon/storage-datacore-restapi.json diff --git a/.github/scripts/stopwords.t b/.github/scripts/stopwords.t index d363f846bf..9c5c5a58b5 100644 --- a/.github/scripts/stopwords.t +++ b/.github/scripts/stopwords.t @@ -1,14 +1,17 @@ --filter-vdom --force-counters32 Centreon -Fortinet +Datacore Fortigate +Fortinet license-instances-usage-prct MBean OID oneaccess-sys-mib perfdata powershell +proto +Sansymphony queue-messages-inflighted SNMP space-usage-prct diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index ab6de004e6..c8f470c974 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -30,10 +30,10 @@ jobs: - name: Install Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: - node-version: 16 + node-version: 20 - name: Install Mockoon CLI - run: npm install -g -D @mockoon/cli@3.1.0 + run: npm install -g -D @mockoon/cli@6.2.0 - name: Install perl dependencies uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 diff --git a/doc/en/developer/plugins_advanced.md b/doc/en/developer/plugins_advanced.md index f4dda783e2..b5f8a8a4b8 100644 --- a/doc/en/developer/plugins_advanced.md +++ b/doc/en/developer/plugins_advanced.md @@ -943,9 +943,9 @@ List of methods: * **new**: class constructor. Overload if you need to add some specific options or to use a statefile. * **check_options**: overload if you need to check your specific options. -* **manage_selection**: overload if *mandatory*. Method to get informations for +* **manage_selection**: overload is *mandatory*. Method to get informations for the equipment. -* **set_counters**: overload if **mandatory**. Method to configure counters. +* **set_counters**: overload is **mandatory**. Method to configure counters. **Class hardware** diff --git a/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/deb.json new file mode 100644 index 0000000000..9757fe1126 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json new file mode 100644 index 0000000000..824189ab21 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_datacore_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/datacore/api/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/rpm.json new file mode 100644 index 0000000000..9757fe1126 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/src/centreon/plugins/misc.pm b/src/centreon/plugins/misc.pm index 94789397c8..29d4f7df4f 100644 --- a/src/centreon/plugins/misc.pm +++ b/src/centreon/plugins/misc.pm @@ -311,6 +311,14 @@ sub backtick { return (0, join("\n", @output), $return_code); } +sub is_empty { + my $value = shift; + if (!defined($value) or $value eq '') { + return 1; + } + return 0; +} + sub trim { my ($value) = $_[0]; diff --git a/src/storage/datacore/restapi/custom/api.pm b/src/storage/datacore/restapi/custom/api.pm new file mode 100644 index 0000000000..4f0de4d1a8 --- /dev/null +++ b/src/storage/datacore/restapi/custom/api.pm @@ -0,0 +1,172 @@ +# +# 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 storage::datacore::restapi::custom::api; +use strict; +use warnings; +use centreon::plugins::http; +use centreon::plugins::statefile; +use JSON::XS; +use centreon::plugins::misc qw(empty); + +sub new { + my ($class, %options) = @_; + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + my $self = {}; + bless $self, $class; + + + $options{options}->add_options(arguments => { + 'hostname:s' => { name => 'hostname' }, + 'port:s' => { name => 'port', default => 443 }, + 'proto:s' => { name => 'proto', default => 'https' }, + 'timeout:s' => { name => 'timeout' }, + 'username:s' => { name => 'username' }, + 'password:s' => { name => 'password' }, + 'unknown-http-status:s' => { name => 'unknown_http_status' }, + 'warning-http-status:s' => { name => 'warning_http_status' }, + 'critical-http-status:s' => { name => 'critical_http_status' } + }); + + $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); + + $self->{output} = $options{output}; + + $self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl'); + + return $self; +} + +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} +sub set_defaults {} + +# hostname,username and password are required options +sub check_options { + my ($self, %options) = @_; + $self->{http}->set_options(%{$self->{option_results}}); + + $self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 50; + + if (centreon::plugins::misc::is_empty($self->{option_results}->{hostname})) { + $self->{output}->add_option_msg(short_msg => 'Please set hostname option'); + $self->{output}->option_exit(); + } + if (centreon::plugins::misc::is_empty($self->{option_results}->{username})) { + $self->{output}->add_option_msg(short_msg => 'Please set username option to authenticate against datacore rest api'); + $self->{output}->option_exit(); + } + if (centreon::plugins::misc::is_empty($self->{option_results}->{password})) { + $self->{output}->add_option_msg(short_msg => 'Please set password option to authenticate against datacore rest api'); + $self->{output}->option_exit(); + } + +} + +sub settings { + my ($self, %options) = @_; + + return if (defined($self->{settings_done})); + $self->{http}->add_header(key => 'ServerHost', value => $self->{option_results}->{hostname}); + $self->{http}->set_options(basic => 1, credentials => 1); + $self->{settings_done} = 1; +} + +# wrapper around centreon::plugins::http::request to add authentication and decode json. +# output : deserialized json from the api if not error found in http call. +sub request_api { + my ($self, %options) = @_; + + # datacore api require a ServerHost header with the hostname used to query the api to respond. + # authentication is http standard basic auth. + my $result = $self->{http}->request( + username => $self->{option_results}->{username}, + password => $self->{option_results}->{password}, + unknown_status => $self->{option_results}->{unknown_http_status}, + warning_status => $self->{option_results}->{warning_http_status}, + critical_status => $self->{option_results}->{critical_http_status}, + %options, + ); + # Declare a scalar to deserialize the JSON content string into a perl data structure + my $decoded_content; + eval { + $decoded_content = JSON::XS->new->decode($result); + }; + # Catch the error that may arise in case the data received is not JSON + if ($@) { + $self->{output}->add_option_msg(short_msg => "Cannot decode JSON result"); + $self->{output}->option_exit(); + } + return $decoded_content; + +} +1; + + +__END__ + +=head1 NAME + +Datacore Sansymphony Rest API + +=head1 REST API OPTIONS + +Datacore Sansymphony Rest API + +=over 8 + +=item B<--hostname> + +Address of the Datacore server that hosts the API endpoint. + +=item B<--port> + +Port of the resource to connect to (default: 443). + +=item B<--proto> + +HTTP protocol, either http or https (default: 'https') + +=item B<--username> + +Username to access the endpoint. + +=item B<--password> + +Password to access the endpoint. + +=item B<--timeout> + +Set timeout in seconds (default: 10). + +=back + +=head1 DESCRIPTION + +B. diff --git a/src/storage/datacore/restapi/mode/alerts.pm b/src/storage/datacore/restapi/mode/alerts.pm new file mode 100644 index 0000000000..9307ba4163 --- /dev/null +++ b/src/storage/datacore/restapi/mode/alerts.pm @@ -0,0 +1,174 @@ +# +# 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 storage::datacore::restapi::mode::alerts; +use strict; +use warnings; +use centreon::plugins::misc qw(empty); + +use base qw(centreon::plugins::templates::counter); + +my %alerts_level = ('trace' => 0, 'info' => 1, 'warning' => 2, 'error' => 3); + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'alerts', type => 0}, + ]; + $self->{maps_counters}->{alerts} = [ + { + label => 'error', + nlabel => 'datacore.event.error.count', + set => { + key_values => [ { name => 'error' } ], + output_template => 'number of error alerts : %s', + perfdatas => [ { template => '%d', min => 0 } ] + } + }, { + label => 'warning', + nlabel => 'datacore.alerts.warning.count', + set => { + key_values => [ { name => 'warning' } ], + output_template => 'number of warning alerts : %s', + perfdatas => [ { template => '%d', min => 0 } ] + } + }, { + label => 'info', + nlabel => 'datacore.alerts.info.count', + set => { + key_values => [ { name => 'info' } ], + output_template => 'number of info alerts : %s', + perfdatas => [ { template => '%d', min => 0 } ] + } + }, { + label => 'trace', + nlabel => 'datacore.alerts.trace.count', + set => { + key_values => [ { name => 'trace' } ], + output_template => 'number of trace alerts : %s', + perfdatas => [ { template => '%d', min => 0 } ] + } + }, + ]; + +} + +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-server:s' => { name => 'filter_server' }, + 'max-alert-age:s' => { name => 'max_alert_age' } }); + + $self->{output} = $options{output}; + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $alerts = $options{custom}->request_api( + url_path => '/RestService/rest.svc/1.0/alerts' + ); + + my %alerts_count = ( + 0 => { count => 0, list => [] }, + 1 => { count => 0, list => [] }, + 2 => { count => 0, list => [] }, + 3 => { count => 0, list => [] }); + + for my $alert (@$alerts) { + + # spec require to filter on time of the log. + $alert->{TimeStamp} =~ /\/Date\((\d+)\)\/$/; + my $alert_date = $1; + if (centreon::plugins::misc::is_empty($alert_date) or $alert_date !~ /^[0-9]*[.,]?\d*$/){ + $self->{output}->output_add(long_msg => "alert on $alert->{MachineName} have an invalid date : $alert->{TimeStamp}\n", debug => 1); + next; + } + + # filter on age of the alert with a user defined max age + next if (defined($self->{option_results}->{max_alert_age}) + and $alert_date < (time - $self->{option_results}->{max_alert_age}) * 1000); + # filter on the machine issuing the alert with a user defined regex + + if (!centreon::plugins::misc::is_empty($self->{option_results}->{filter_server}) + and $alert->{MachineName} !~ $self->{option_results}->{filter_server}) { + $self->{output}->output_add(long_msg => "excluding alert from machine $alert->{MachineName}\n", debug => 1); + next; + } + + $alerts_count{$alert->{Level}}->{count}++; + # we don't want to clog the long output, so we keep only the few first logs. + # we use a array instead of directly adding to long_output because we need to sort errors + if (scalar(@{$alerts_count{$alert->{Level}}->{list}}) < 50) { + push(@{$alerts_count{$alert->{Level}}->{list}}, $alert->{MessageText}) + } + } + + $self->{output}->output_add(long_msg => "error : " . join("\n", @{$alerts_count{$alerts_level{error}}->{list}})); + $self->{output}->output_add(long_msg => "warning : " . join("\n", @{$alerts_count{$alerts_level{warning}}->{list}})); + + + + $self->{alerts} = { + trace => $alerts_count{$alerts_level{trace}}->{count}, + info => $alerts_count{$alerts_level{info}}->{count}, + warning => $alerts_count{$alerts_level{warning}}->{count}, + error => $alerts_count{$alerts_level{error}}->{count}, + }; + +} + +1; + +__END__ + +=head1 MODE + +Check Datacore alerts number exposed through the rest api + +=over 8 + +=item B<--max-alert-age> + +filter alerts to check those newer than this parameter (s) + +=item B<--filter-server> + +Define which devices should be monitored based on the MachineName. This option will be treated as a regular expression. +By default all machine will be checked. + +=item B<--warning/critical-*> + +Warning and critical threshold on the number of alerts of a type before changing state. +Replace * with trace, alert, warning, or error. + +=back + + diff --git a/src/storage/datacore/restapi/mode/listpool.pm b/src/storage/datacore/restapi/mode/listpool.pm new file mode 100644 index 0000000000..104dfe6cce --- /dev/null +++ b/src/storage/datacore/restapi/mode/listpool.pm @@ -0,0 +1,115 @@ +# +# 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 storage::datacore::restapi::mode::listpool; +use strict; +use warnings; + +use base qw(centreon::plugins::mode); + +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' }, + }); + + + return $self; +} +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + $self->{pools} = (); + my $pool_list = $options{custom}->request_api( + url_path => '/RestService/rest.svc/1.0/pools'); + + if (scalar(@$pool_list) == 0) { + $self->{output}->add_option_msg(short_msg => "No pool found in api response."); + $self->{output}->option_exit(); + } + for my $pool (@$pool_list) { + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' + && $pool->{Alias} !~ /$self->{option_results}->{filter_name}/); + push(@{$self->{pools}}, { + ExtendedCaption => $pool->{ExtendedCaption}, + Caption => $pool->{Caption}, + Id => $pool->{Id}, + Alias => $pool->{Alias}} + ); + } + +} + +sub run { + my ($self, %options) = @_; + $self->manage_selection(%options); + if (scalar $self->{pools} == 0) { + $self->{output}->add_option_msg(short_msg => "No pool found."); + $self->{output}->option_exit(); + } + foreach (sort @{$self->{pools}}) { + $self->{output}->output_add(long_msg => sprintf("[ExtendedCaption = %s] [Caption = %s] [Id = %s] [Alias = %s]", + $_->{ExtendedCaption}, $_->{Caption}, $_->{Id}, $_->{Alias})); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List pools : ' + ); + $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 => ['ExtendedCaption', 'Caption', 'Id', 'Alias']); +} + +sub disco_show { + my ($self, %options) = @_; + + $self->manage_selection(%options); + + foreach (sort @{$self->{pools}}) { + $self->{output}->add_disco_entry(ExtendedCaption => $_->{ExtendedCaption}, Caption => $_->{Caption}, + Id => $_->{Id}, Id => $_->{Id}, Alias => $_->{Alias}); + } +} +1; + +=head1 MODE + +List pools. + +=over 8 + +=item B<--filter-name> + +Filter pool name (can be a regexp). + +=back + +=cut \ No newline at end of file diff --git a/src/storage/datacore/restapi/mode/monitorstatus.pm b/src/storage/datacore/restapi/mode/monitorstatus.pm new file mode 100644 index 0000000000..faf5f5515b --- /dev/null +++ b/src/storage/datacore/restapi/mode/monitorstatus.pm @@ -0,0 +1,148 @@ +# +# 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 storage::datacore::restapi::mode::monitorstatus; +use strict; +use warnings; + +use base qw(centreon::plugins::templates::counter); +use JSON::XS; +use Digest::MD5 qw(md5_hex); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc qw(empty); + +my %monitor_state = (1 => "Undefined", 2 => "Healthy", 4 => "Attention", 8 => "Warning", 16 => "Critical"); + +sub custom_status_output { + my ($self, %options) = @_; + my $res = sprintf( + "'%s' status : '%s', message is '%s'", + $self->{result_values}->{extendedcaption}, + $self->{result_values}->{state}, + $self->{result_values}->{messagetext} + ); + return $res; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 1, message_multiple => 'All memory usages are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'state', + type => 2, + warning_default => '%{state} =~ /Warning/i', + critical_default => '%{state} =~ /Critical/i', + set => { + key_values => [ { name => 'state' }, { name => 'extendedcaption' }, { name => 'messagetext' } ], + 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, force_new_perfdata => 1); + bless $self, $class; + $options{options}->add_options(arguments => { + 'filter-caption:s' => { name => 'filter_caption' } }); + $self->{cache} = centreon::plugins::statefile->new(%options); + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + $self->{cache}->check_options(option_results => $self->{option_results}); +} + +sub manage_selection { + my ($self, %options) = @_; + + if ($self->{cache}->read('statefile' => 'datacore_api_monitors' . md5_hex($self->{option_results}->{hostname} . $self->{option_results}->{username})) + and $self->{cache}->get(name => 'expires_on') > time() + 1) { + + return $self->{cache}->get(name => 'monitor_data'); + } + + my $monitor_data = $options{custom}->request_api( + url_path => '/RestService/rest.svc/1.0/monitors'); + + my $datas = { last_timestamp => time(), monitor_data => $monitor_data, expires_on => time() + 60 }; + $self->{cache}->write(data => $datas); + + my $monitored_count = 0; + for my $object (@$monitor_data) { + + if (!centreon::plugins::misc::is_empty($self->{option_results}->{filter_caption}) + and $object->{ExtendedCaption} !~ $self->{option_results}->{filter_caption}) { + next; + } + $self->{global}->{$monitored_count} = { + state => $monitor_state{$object->{State}}, + messagetext => $object->{MessageText}, + extendedcaption => $object->{ExtendedCaption} + }; + $monitored_count++; + } + # for now if no data is given to the counter, output is OK: with status ok, instead of unknown. + # We manage this case in each plugin for now. + if ($monitored_count == 0) { + $self->{output}->add_option_msg(short_msg => 'No monitors where checked, please check filter_caption parameter and api response.'); + $self->{output}->option_exit(); + } +} + +# as --filter-caption allow to filter element to check and this api don't allow parameter filtering, we should cache +# the output in case a client make multiples check a minute. + +1; + +__END__ + +=head1 MODE + +Check Datacore monitor status exposed through the rest api. + +=over 8 + +=item B<--filter-caption> + +Define which element should be monitored based on the extended caption. This option will be treated as a regular expression. +By default all elements will be checked. + +=item B<--warning-state> B<--critical-state> + +define which output from the api should be considered warning or critical. + +warning_default = '%{state} =~ /Warning/i', + +critical_default = '%{state} =~ /Critical/i', + +possible value for state : Undefined, Healthy, Attention, Warning, Critical. + +=back + diff --git a/src/storage/datacore/restapi/mode/poolspaceusage.pm b/src/storage/datacore/restapi/mode/poolspaceusage.pm new file mode 100644 index 0000000000..3fe233bc75 --- /dev/null +++ b/src/storage/datacore/restapi/mode/poolspaceusage.pm @@ -0,0 +1,121 @@ +# +# 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 storage::datacore::restapi::mode::poolspaceusage; +use strict; +use warnings; + +use base qw(centreon::plugins::templates::counter); +use JSON::XS; + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + # BytesAllocatedPercentage is the disk usage of the pool + # in datacore you can make thin provisionning, where you give to each partition more than what you really have. + # oversubscribed is the number of Bytes allocated minus the number of bytes present in the system. + { name => 'BytesAllocatedPercentage', type => 0 }, + { name => 'oversubscribed', type => 0 }, + ]; + $self->{maps_counters}->{BytesAllocatedPercentage} = [ + + { + label => 'bytesallocatedpercentage', + nlabel => 'datacore.pool.bytesallocated.percentage', + set => { + key_values => [ { name => 'bytesallocatedpercentage' } ], + output_template => 'Bytes Allocated : %s %%', + perfdatas => [ + { template => '%d', unit => '%', min => 0, max => 100 } + ] + } + } ]; + $self->{maps_counters}->{oversubscribed} = [ { + label => 'oversubscribed', + nlabel => 'datacore.pool.oversubscribed.bytes', + set => { + key_values => [ { name => 'oversubscribed' } ], + output_template => 'Over subscribed bytes : %s', + perfdatas => [ + { template => '%d', unit => 'bytes', min => 0 } + ] + } + } ]; +} + +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 => { + 'pool-id:s' => { name => 'pool_id' } }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + if (centreon::plugins::misc::is_empty($self->{option_results}->{pool_id})) { + $self->{output}->add_option_msg(short_msg => 'Please set pool-id option'); + $self->{output}->option_exit(); + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $data = $options{custom}->request_api( + url_path => '/RestService/rest.svc/1.0/performances/' . $self->{option_results}->{pool_id}, + ); + if (defined($data->[1])) { + $self->{output}->add_option_msg(short_msg => 'multiples pools found in api response, only one is expected. Please check pool_id and datacore versions.'); + $self->{output}->option_exit(); + } + $self->{BytesAllocatedPercentage}->{bytesallocatedpercentage} = $data->[0]->{"BytesAllocatedPercentage"}; + $self->{oversubscribed}->{oversubscribed} = $data->[0]->{"BytesOverSubscribed"}; + +} +1; + +__END__ + +=head1 MODE + +Check Datacore pool space and over subscribed usage exposed through the rest api. + +=over 8 + +=item B<--pool-id> + +Id of the pool to check. See list-pool autodiscovery mode to list pools id (required). + +=item B<--warning-oversubscribed> B<--critical-oversubscribed> + +Warning and critical threshold on the number of Bytes suscribed over the real space of the pool. + +=item B<--warning-bytesallocatedpercentage> B<--critical-bytesallocatedpercentage> + +Warning and critical threshold on the percentage of bytes allocated in the pool. + +=back + + diff --git a/src/storage/datacore/restapi/plugin.pm b/src/storage/datacore/restapi/plugin.pm new file mode 100644 index 0000000000..98aed2f641 --- /dev/null +++ b/src/storage/datacore/restapi/plugin.pm @@ -0,0 +1,27 @@ +package storage::datacore::restapi::plugin; +use strict; +use warnings; +use base qw(centreon::plugins::script_custom); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + # A version, we don't really use it but could help if your want to version your code + $self->{version} = '0.1'; + + $self->{modes} = { + 'pool-usage' => 'storage::datacore::restapi::mode::poolspaceusage', + 'alerts' => 'storage::datacore::restapi::mode::alerts', + 'list-pool' => 'storage::datacore::restapi::mode::listpool', + 'status-monitor' => 'storage::datacore::restapi::mode::monitorstatus', + }; + $self->{custom_modes}->{api} = 'storage::datacore::restapi::custom::api'; + return $self; +} +1; +=head1 PLUGIN DESCRIPTION + +Check Datacore using rest API. + diff --git a/tests/functional/api/cloud-aws-cloudtrail.robot b/tests/functional/api/cloud-aws-cloudtrail.robot.old similarity index 97% rename from tests/functional/api/cloud-aws-cloudtrail.robot rename to tests/functional/api/cloud-aws-cloudtrail.robot.old index 2252800df3..445a0de15a 100644 --- a/tests/functional/api/cloud-aws-cloudtrail.robot +++ b/tests/functional/api/cloud-aws-cloudtrail.robot.old @@ -153,6 +153,7 @@ AWS CloudTrail check trail status FOR ${checktrailstatus_value} IN @{checktrailstatus_values} ${output} Run ... ${CMD} --mode=checktrailstatus --endpoint=http://localhost:3000/cloudtrail/gettrailstatus/${checktrailstatus_value.trailstatus} --trail-name=${checktrailstatus_value.trailname} + ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${checktrailstatus_value.result} @@ -188,6 +189,7 @@ AWS CloudTrail count events ${command} Catenate ${command} --critical-count=${countevents_value.criticalcount} END ${output} Run ${command} + ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${countevents_value.result} @@ -204,13 +206,7 @@ Start Mockoon ... ${MOCKOON_JSON} ... --port ... 3000 - ... --pname - ... aws-cloudtrail - Wait For Process ${process} + Sleep 5s Stop Mockoon - ${process} Start Process - ... mockoon-cli - ... stop - ... mockoon-aws-cloudtrail - Wait For Process ${process} + Terminate All Processes diff --git a/tests/functional/api/cloud-azure-policyinsights-policystates.robot b/tests/functional/api/cloud-azure-policyinsights-policystates.robot.old similarity index 87% rename from tests/functional/api/cloud-azure-policyinsights-policystates.robot rename to tests/functional/api/cloud-azure-policyinsights-policystates.robot.old index 51b5851f7b..5b9bd61a60 100644 --- a/tests/functional/api/cloud-azure-policyinsights-policystates.robot +++ b/tests/functional/api/cloud-azure-policyinsights-policystates.robot.old @@ -14,29 +14,29 @@ Test Timeout 120s ${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl ${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-azure-policyinsights-policystates.json -${LOGIN_ENDPOINT} http://localhost:3000/login +${LOGIN_ENDPOINT} http://localhost:3001/login ${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT} &{compliance_value1} -... endpoint=http://localhost:3000/ok +... endpoint=http://localhost:3001/ok ... policyname= ... resourcelocation= ... resourcetype= ... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0; &{compliance_value2} -... endpoint=http://localhost:3000/oknextlink +... endpoint=http://localhost:3001/oknextlink ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation= ... resourcetype= ... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0; &{compliance_value3} -... endpoint=http://localhost:3000/nok1 +... endpoint=http://localhost:3001/nok1 ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation=fr ... resourcetype= ... result=CRITICAL: Compliance state for policy '9daedab3-fb2d-461e-b861-71790eead4f6' on resource 'mypubip1' is 'NonCompliant' | 'policies.non_compliant.count'=1;;;0; &{compliance_value4} -... endpoint=http://localhost:3000/nok2 +... endpoint=http://localhost:3001/nok2 ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation=fr ... resourcetype=ip @@ -66,6 +66,7 @@ Azure PolicyInsights PolicyStates compliance ${command} Catenate ${command} --resource-type=${compliance_value.resourcetype} END ${output} Run ${command} + ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${compliance_value.result} @@ -82,13 +83,7 @@ Start Mockoon ... ${MOCKOON_JSON} ... --port ... 3000 - ... --pname - ... azure-policyinsights - Wait For Process ${process} + Sleep 5s Stop Mockoon - ${process} Start Process - ... mockoon-cli - ... stop - ... mockoon-azure-policyinsights - Wait For Process ${process} + Terminate All Processes diff --git a/tests/functional/api/storage-datacore-restapi.robot b/tests/functional/api/storage-datacore-restapi.robot new file mode 100644 index 0000000000..c1b95d661c --- /dev/null +++ b/tests/functional/api/storage-datacore-restapi.robot @@ -0,0 +1,77 @@ +*** Settings *** +Documentation datacore rest api plugin + +Library Examples +Library OperatingSystem +Library Process +Library String + +Suite Setup Start Mockoon +Suite Teardown Stop Mockoon +Test Timeout 120s + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}storage-datacore-restapi.json + +${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::datacore::restapi::plugin --password=pass --username=user --port=3000 --hostname=127.0.0.1 --proto=http + + +*** Test Cases *** +Datacore check pool usage + [Documentation] Check Datacore pool usage + [Tags] storage api + ${output} Run + ... ${CMD} --mode=pool-usage --critical-oversubscribed=${critical-oversubscribed} --warning-oversubscribed=${warning-oversubscribed} --warning-bytesallocatedpercentage=${warning-bytesallocatedpercentage} --critical-bytesallocatedpercentage=${critical-bytesallocatedpercentage} --pool-id=B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:{4dec1b5a-2577-11e5-80c3-00155d651622} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${result} + ... Wrong output result for pool usage :\n\n ${output} \n\n ${result}\n\n + + Examples: warning-bytesallocatedpercentage critical-bytesallocatedpercentage warning-oversubscribed critical-oversubscribed result -- + ... 2 5 -1 3 CRITICAL: Bytes Allocated : 12 % WARNING: Over subscribed bytes : 0 | 'datacore.pool.bytesallocated.percentage'=12%;0:2;0:5;0;100 'datacore.pool.oversubscribed.bytes'=0bytes;0:-1;0:3;0; + ... 70 80 10 20 OK: Bytes Allocated : 12 % - Over subscribed bytes : 0 | 'datacore.pool.bytesallocated.percentage'=12%;0:70;0:80;0;100 'datacore.pool.oversubscribed.bytes'=0bytes;0:10;0:20;0; + +Datacore check alert count + [Documentation] Check Datacore pool usage + [Tags] storage api + ${output} Run + ... ${CMD} --mode=alerts --warning-error=${warning-error} --critical-error=${critical-error} --warning-warning=${warning-warning} --critical-warning=${critical-warning} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${result} + ... Wrong output result for alert count :\n\n ${output} \n\n ${result}\n\n + + Examples: warning-error critical-error warning-warning critical-warning result -- + ... 0 1 5 5 WARNING: number of error alerts : 1 | 'datacore.event.error.count'=1;0:0;0:1;0; 'datacore.alerts.warning.count'=1;0:5;0:5;0; 'datacore.alerts.info.count'=0;;;0; 'datacore.alerts.trace.count'=0;;;0; + ... 5 5 5 5 OK: number of error alerts : 1, number of warning alerts : 1, number of info alerts : 0, number of trace alerts : 0 | 'datacore.event.error.count'=1;0:5;0:5;0; 'datacore.alerts.warning.count'=1;0:5;0:5;0; 'datacore.alerts.info.count'=0;;;0; 'datacore.alerts.trace.count'=0;;;0; + +Datacore check status monitor + [Documentation] Check Datacore pool usage + [Tags] storage api + ${output} Run + ... ${CMD} --mode=status-monitor + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${result} + ... Wrong output result for status monitor :\n${output} \nresult:\n${result}\n\n + + Examples: result -- + ... CRITICAL: 'State of HostVM2' status : 'Critical', message is 'Connected' + +*** Keywords *** +Start Mockoon + ${process} Start Process + ... mockoon-cli + ... start + ... --data + ... ${MOCKOON_JSON} + ... --port + ... 3000 + Sleep 5s + +Stop Mockoon + Terminate All Processes \ No newline at end of file diff --git a/tests/resources/mockoon/storage-datacore-api.json b/tests/resources/mockoon/storage-datacore-api.json new file mode 100644 index 0000000000..15938230b4 --- /dev/null +++ b/tests/resources/mockoon/storage-datacore-api.json @@ -0,0 +1,174 @@ +{ + "uuid": "317849df-2152-4b89-88f7-f22ea37aab32", + "lastMigration": 27, + "name": "Storage datacore api", + "endpointPrefix": "", + "latency": 0, + "port": 3000, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "9d203639-fb39-402b-9759-91c156e247c6", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/pools", + "responses": [ + { + "uuid": "f8d1590b-878f-4884-9214-dea80580eb75", + "body": "[{\r\n \"Caption\" : \"Disk pool 1\",\r\n \"ExtendedCaption\" : \"Disk pool 1 on StorageSvr001\",\r\n \"Id\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551:{d68b8a36-0ec4-11e5-80ba-00155d651622}\",\r\n \"Internal\" : false,\r\n \"SequenceNumber\" : 11963,\r\n \"Alias\" : \"Disk pool 1\",\r\n \"AutoTieringEnabled\" : true,\r\n \"ChunkSize\" : {\r\n \"Value\" : 134217728\r\n },\r\n \"Description\" : null,\r\n \"InSharedMode\" : false,\r\n \"IsAuthorized\" : true,\r\n \"MaxTierNumber\" : 3,\r\n \"PoolMode\" : 1,\r\n \"PoolStatus\" : 0,\r\n \"PresenceStatus\" : 1,\r\n \"SMPAApproved\" : false,\r\n \"ServerId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\r\n \"SharedPoolId\" : null,\r\n \"TierReservedPct\" : 0,\r\n \"Type\" : 0,\r\n \"IsBulk\" : false\r\n},\r\n{\r\n \"Caption\" : \"Shared pool 1\",\r\n \"ExtendedCaption\" : \"Shared pool 1 on StorageSvr002\",\r\n \"Id\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:{4dec1b5a-2577-11e5-80c3-00155d651622}\",\r\n \"Internal\" : false,\r\n \"SequenceNumber\" : 11967,\r\n \"Alias\" : \"Shared pool 1\",\r\n \"AutoTieringEnabled\" : true,\r\n \"ChunkSize\" : {\r\n \"Value\" : 134217728\r\n },\r\n \"Description\" : null,\r\n \"InSharedMode\" : true,\r\n \"IsAuthorized\" : true,\r\n \"MaxTierNumber\" : 3,\r\n \"PoolMode\" : 1,\r\n \"PoolStatus\" : 0,\r\n \"PresenceStatus\" : 1,\r\n \"SMPAApproved\" : true,\r\n \"ServerId\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D\",\r\n \"SharedPoolId\" : \"{4dec1b5a-2577-11e5-80c3-00155d651622}\",\r\n \"TierReservedPct\" : 0,\r\n \"Type\" : 0,\r\n \"IsBulk\" : false\r\n} ]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true + } + ], + "enabled": true, + "responseMode": null + }, + { + "uuid": "8837f5cd-5ca3-4779-ba8e-6b46692c487b", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/performances/B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:%7B4dec1b5a-2577-11e5-80c3-00155d651622%7D", + "responses": [ + { + "uuid": "a5bf53e2-5edf-437e-a684-68315cfa7824", + "body": "[\n {\n \"CollectionTime\": \"/Date(1486402608775)/\",\n \"NullCounterMap\": 0,\n \"BytesAllocated\": 6174015488,\n \"BytesAllocatedPercentage\": 12,\n \"BytesAvailable\": 47110422528,\n \"BytesAvailablePercentage\": 88,\n \"BytesInReclamation\": 0,\n \"BytesInReclamationPercentage\": 0,\n \"BytesOverSubscribed\": 0,\n \"BytesReserved\": 0,\n \"BytesReservedPercentage\": 0,\n \"BytesTotal\": 53284438016,\n \"EstimatedDepletionTime\": 2592000001,\n \"MaxPoolBytes\": 1108127332171776,\n \"MaxReadTime\" : 0,\n \"MaxReadWriteTime\" : 0,\n \"MaxWriteTime\" : 0,\n \"PercentAllocated\" : 12,\n \"PercentAvailable\" : 88,\n \"TotalBytesMigrated\" : 0,\n \"TotalBytesRead\" : 307200,\n \"TotalBytesTransferred\" : 2036756992,\n \"TotalBytesWritten\" : 2036470272,\n \"TotalOperations\" : 53002,\n \"TotalReadTime\" : 0,\n \"TotalReads\" : 18,\n \"TotalWriteTime\" : 74994,\n \"TotalWrites\" : 52998\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true + } + ], + "enabled": true, + "responseMode": null + }, + { + "uuid": "ce9e85c8-c72e-47d4-b70a-0fd3c3a6d703", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/alerts", + "responses": [ + { + "uuid": "b6425c83-2f13-4ffe-a9f6-c73feb54c2ec", + "body": "[ {\n \"Caller\" : \"ServerMachineGroup.UpdateServers\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 34937\n },\n \"Level\" : 2,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : [ \"StorageSvr002\" ],\n \"MessageText\" : \"Connection to server {0} has been lost.\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437398005546)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}, {\n \"Caller\" : \"BasePerfMonitor`1.SetState\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 33985\n },\n \"Level\" : 3,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : null,\n \"MessageText\" : \"The Replication buffer free space of StorageSvr001 in Group1 is <= 10%\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Replication buffer free space of StorageSvr001 in Group1\",\n \"SourceId\" : \"FallingThresholdPerfMonitor`1ReplicationBufferPercentFreeSpace\",\n \"SourceType\" : 3\n }, {\n \"SourceCaption\" : \"StorageSvr001 in Group1\",\n \"SourceId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SourceType\" : 12\n }, {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437397587894)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true + } + ], + "enabled": true, + "responseMode": null + }, + { + "uuid": "a916f10f-b2f2-498a-9b87-3aeffd80c8dc", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/monitors", + "responses": [ + { + "uuid": "d2713bdd-33e9-415a-bffe-16e279b1b753", + "body": "[\n {\n \"Caption\": \"State\",\n \"ExtendedCaption\": \"State of HostVM2\",\n \"Id\": \"ClientMachineStateMonitor\",\n \"Internal\": false,\n \"SequenceNumber\": 9417,\n \"Description\": \"Monitors the state of hosts.\",\n \"MessageText\": \"Connected\",\n \"MonitoredObjectId\": \"ed89ef91d72142dc958e02c5b7014fac\",\n \"State\": 16,\n \"TemplateId\": \"T(DataCore.Executive.Controller.ClientMachineStateMonitor)\",\n \"TimeStamp\": \"/Date(1486136115475-0500)/\"\n },\n {\n \"Caption\": \"I/O latency\",\n \"ExtendedCaption\": \"I/O latency of Mirror of Virtual disk 1 on StorageSvr005\",\n \"Id\": \"RisingThresholdPerfMonitor`1TotalOperationsTime\",\n \"Internal\": false,\n \"SequenceNumber\": 10036,\n \"Description\": \"Monitors the physical disks latency.\",\n \"MessageText\": \"Disabled\",\n \"MonitoredObjectId\": \"V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568\",\n \"State\": 1,\n \"TemplateId\": \"T(DataCore.Executive.Controller.RisingThresholdPerfMonitor`1[T]TotalOperationsTime)\",\n \"TimeStamp\": \"/Date(1486148705910-0500)/\"\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true + } + ], + "enabled": true, + "responseMode": null + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "9d203639-fb39-402b-9759-91c156e247c6" + }, + { + "type": "route", + "uuid": "8837f5cd-5ca3-4779-ba8e-6b46692c487b" + }, + { + "type": "route", + "uuid": "ce9e85c8-c72e-47d4-b70a-0fd3c3a6d703" + }, + { + "type": "route", + "uuid": "a916f10f-b2f2-498a-9b87-3aeffd80c8dc" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [] +} \ No newline at end of file diff --git a/tests/resources/mockoon/storage-datacore-restapi.json b/tests/resources/mockoon/storage-datacore-restapi.json new file mode 100644 index 0000000000..f7aae507ac --- /dev/null +++ b/tests/resources/mockoon/storage-datacore-restapi.json @@ -0,0 +1,179 @@ +{ + "uuid": "8cba072c-7794-4ff7-ab36-158ef1abed39", + "lastMigration": 32, + "name": "Storage datacore api", + "endpointPrefix": "", + "latency": 0, + "port": 3001, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/pools", + "responses": [ + { + "uuid": "003eae6e-f58f-44db-bd03-3b44ca578046", + "body": "[ {\n \"Caption\" : \"Disk pool 1\",\n \"ExtendedCaption\" : \"Disk pool 1 on StorageSvr001\",\n \"Id\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551:{d68b8a36-0ec4-11e5-80ba-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11963,\n \"Alias\" : \"Disk pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : false,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : false,\n \"ServerId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SharedPoolId\" : null,\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n},\n{\n \"Caption\" : \"Shared pool 1\",\n \"ExtendedCaption\" : \"Shared pool 1 on StorageSvr002\",\n \"Id\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11967,\n \"Alias\" : \"Shared pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : true,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : true,\n \"ServerId\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D\",\n \"SharedPoolId\" : \"{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n} ]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "0c038179-3723-4d67-9bed-fc226629c847", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/performances/B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:%7B4dec1b5a-2577-11e5-80c3-00155d651622%7D", + "responses": [ + { + "uuid": "0eb0a2ca-2f12-40af-ba94-0feef989b6a1", + "body": "[\n {\n \"CollectionTime\": \"/Date(1486402608775)/\",\n \"NullCounterMap\": 0,\n \"BytesAllocated\": 6174015488,\n \"BytesAllocatedPercentage\": 12,\n \"BytesAvailable\": 47110422528,\n \"BytesAvailablePercentage\": 88,\n \"BytesInReclamation\": 0,\n \"BytesInReclamationPercentage\": 0,\n \"BytesOverSubscribed\": 0,\n \"BytesReserved\": 0,\n \"BytesReservedPercentage\": 0,\n \"BytesTotal\": 53284438016,\n \"EstimatedDepletionTime\": 2592000001,\n \"MaxPoolBytes\": 1108127332171776,\n \"MaxReadTime\" : 0,\n \"MaxReadWriteTime\" : 0,\n \"MaxWriteTime\" : 0,\n \"PercentAllocated\" : 12,\n \"PercentAvailable\" : 88,\n \"TotalBytesMigrated\" : 0,\n \"TotalBytesRead\" : 307200,\n \"TotalBytesTransferred\" : 2036756992,\n \"TotalBytesWritten\" : 2036470272,\n \"TotalOperations\" : 53002,\n \"TotalReadTime\" : 0,\n \"TotalReads\" : 18,\n \"TotalWriteTime\" : 74994,\n \"TotalWrites\" : 52998\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/alerts", + "responses": [ + { + "uuid": "a1dece29-074b-4100-a764-f7ddccdec8da", + "body": "[ {\n \"Caller\" : \"ServerMachineGroup.UpdateServers\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 34937\n },\n \"Level\" : 2,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : [ \"StorageSvr002\" ],\n \"MessageText\" : \"Connection to server {0} has been lost.\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437398005546)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}, {\n \"Caller\" : \"BasePerfMonitor`1.SetState\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 33985\n },\n \"Level\" : 3,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : null,\n \"MessageText\" : \"The Replication buffer free space of StorageSvr001 in Group1 is <= 10%\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Replication buffer free space of StorageSvr001 in Group1\",\n \"SourceId\" : \"FallingThresholdPerfMonitor`1ReplicationBufferPercentFreeSpace\",\n \"SourceType\" : 3\n }, {\n \"SourceCaption\" : \"StorageSvr001 in Group1\",\n \"SourceId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SourceType\" : 12\n }, {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437397587894)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "be0b350e-f8da-4998-a045-a3cf840745c0", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "RestService/rest.svc/1.0/monitors", + "responses": [ + { + "uuid": "6f53cd5e-7417-4fdf-a310-e2a7af4b7c3a", + "body": "[\r\n {\r\n \"Caption\": \"State\",\r\n \"ExtendedCaption\": \"State of HostVM2\",\r\n \"Id\": \"ClientMachineStateMonitor\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 9417,\r\n \"Description\": \"Monitors the state of hosts.\",\r\n \"MessageText\": \"Connected\",\r\n \"MonitoredObjectId\": \"ed89ef91d72142dc958e02c5b7014fac\",\r\n \"State\": 16,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.ClientMachineStateMonitor)\",\r\n \"TimeStamp\": \"/Date(1486136115475-0500)/\"\r\n },\r\n {\r\n \"Caption\": \"I/O latency\",\r\n \"ExtendedCaption\": \"I/O latency of Mirror of Virtual disk 1 on StorageSvr005\",\r\n \"Id\": \"RisingThresholdPerfMonitor`1TotalOperationsTime\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 10036,\r\n \"Description\": \"Monitors the physical disks latency.\",\r\n \"MessageText\": \"Disabled\",\r\n \"MonitoredObjectId\": \"V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568\",\r\n \"State\": 1,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.RisingThresholdPerfMonitor`1[T]TotalOperationsTime)\",\r\n \"TimeStamp\": \"/Date(1486148705910-0500)/\"\r\n }\r\n]", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a" + }, + { + "type": "route", + "uuid": "0c038179-3723-4d67-9bed-fc226629c847" + }, + { + "type": "route", + "uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390" + }, + { + "type": "route", + "uuid": "be0b350e-f8da-4998-a045-a3cf840745c0" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [], + "callbacks": [] +} \ No newline at end of file From b589744ecb87fd855178a342b0029c35c738c199 Mon Sep 17 00:00:00 2001 From: pkippes Date: Mon, 11 Mar 2024 16:27:12 +0100 Subject: [PATCH 22/63] Empty-Commit From a6ab2ce3c5efcb02835827237699ffdb696ecfc5 Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:19:38 +0100 Subject: [PATCH 23/63] CTOR-439-datacore-plugin-bad-path-in-pkg-json-source-code-is-not-properly-fatpacked (#4950) --- .../pkg.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json index 824189ab21..07abebb160 100644 --- a/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json +++ b/packaging/centreon-plugin-Hardware-Storage-DataCore-Sansymphony-Restapi/pkg.json @@ -4,6 +4,6 @@ "plugin_name": "centreon_datacore_api.pl", "files": [ "centreon/plugins/script_custom.pm", - "storage/datacore/api/" + "storage/datacore/restapi/" ] } From 5293b8440573e82b89a7934ecd2a31fba5aa5686 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Mon, 18 Mar 2024 11:16:47 +0100 Subject: [PATCH 24/63] Changed the 'experimental' message of Veeam WSMAN modules as we are going to support it (#4953) --- .github/CODEOWNERS | 1 + .github/scripts/pod_spell_check.t | 4 ++-- src/apps/backup/veeam/wsman/mode/jobstatus.pm | 4 +--- src/apps/backup/veeam/wsman/mode/licenses.pm | 4 +--- src/apps/backup/veeam/wsman/mode/listjobs.pm | 4 +--- src/apps/backup/veeam/wsman/mode/listrepositories.pm | 4 +--- src/apps/backup/veeam/wsman/mode/repositories.pm | 4 +--- src/apps/backup/veeam/wsman/mode/tapejobs.pm | 4 +--- src/apps/backup/veeam/wsman/mode/vsbjobs.pm | 4 +--- src/apps/backup/veeam/wsman/plugin.pm | 4 +--- {.github/scripts => tests/resources/spellcheck}/stopwords.t | 3 ++- 11 files changed, 13 insertions(+), 27 deletions(-) rename {.github/scripts => tests/resources/spellcheck}/stopwords.t (97%) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 18427fb5aa..9470036c4a 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -19,3 +19,4 @@ tests/** @centreon/owners-robot-e2e .github/** @centreon/owners-pipelines packaging/** @centreon/owners-pipelines selinux/** @centreon/owners-pipelines +.github/scripts/pod_spell_check.t @centreon/owners-perl diff --git a/.github/scripts/pod_spell_check.t b/.github/scripts/pod_spell_check.t index dd932714fc..3aef6bb8a2 100644 --- a/.github/scripts/pod_spell_check.t +++ b/.github/scripts/pod_spell_check.t @@ -8,7 +8,7 @@ if (!@ARGV) { die "Missing perl file to check."; } -my $stopword_filename='.github/scripts/stopwords.t'; +my $stopword_filename='tests/resources/spellcheck/stopwords.t'; if(defined($ARGV[1])){ $stopword_filename=$ARGV[1]; } @@ -19,4 +19,4 @@ printf("stopword file use : ".$stopword_filename." \n"); add_stopwords(); set_spell_cmd('hunspell -l'); all_pod_files_spelling_ok($ARGV[0]); -close(FILE); \ No newline at end of file +close(FILE); diff --git a/src/apps/backup/veeam/wsman/mode/jobstatus.pm b/src/apps/backup/veeam/wsman/mode/jobstatus.pm index 6202fd705a..aeb54cde4e 100644 --- a/src/apps/backup/veeam/wsman/mode/jobstatus.pm +++ b/src/apps/backup/veeam/wsman/mode/jobstatus.pm @@ -239,9 +239,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -Check job status. +[EXPERIMENTAL] Monitor job status. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/licenses.pm b/src/apps/backup/veeam/wsman/mode/licenses.pm index 91395857e1..283cd7cfd0 100644 --- a/src/apps/backup/veeam/wsman/mode/licenses.pm +++ b/src/apps/backup/veeam/wsman/mode/licenses.pm @@ -266,9 +266,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -Check licenses. +[EXPERIMENTAL] Monitor licenses. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/listjobs.pm b/src/apps/backup/veeam/wsman/mode/listjobs.pm index 6ef26aa9f5..5678ed25e7 100644 --- a/src/apps/backup/veeam/wsman/mode/listjobs.pm +++ b/src/apps/backup/veeam/wsman/mode/listjobs.pm @@ -132,9 +132,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -List jobs. +[EXPERIMENTAL] List jobs. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/listrepositories.pm b/src/apps/backup/veeam/wsman/mode/listrepositories.pm index 5fb94331ba..edd08f051a 100644 --- a/src/apps/backup/veeam/wsman/mode/listrepositories.pm +++ b/src/apps/backup/veeam/wsman/mode/listrepositories.pm @@ -136,9 +136,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -List repositories. +[EXPERIMENTAL] List repositories. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/repositories.pm b/src/apps/backup/veeam/wsman/mode/repositories.pm index 85791c1a55..2fa4896036 100644 --- a/src/apps/backup/veeam/wsman/mode/repositories.pm +++ b/src/apps/backup/veeam/wsman/mode/repositories.pm @@ -225,9 +225,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -Check repositories. +[EXPERIMENTAL] Monitor repositories. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/tapejobs.pm b/src/apps/backup/veeam/wsman/mode/tapejobs.pm index bd00554493..5ded86ad76 100644 --- a/src/apps/backup/veeam/wsman/mode/tapejobs.pm +++ b/src/apps/backup/veeam/wsman/mode/tapejobs.pm @@ -179,9 +179,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -Check tape jobs status. +[EXPERIMENTAL] Monitor tape jobs status. =over 8 diff --git a/src/apps/backup/veeam/wsman/mode/vsbjobs.pm b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm index 302f3a7866..b026f0035d 100644 --- a/src/apps/backup/veeam/wsman/mode/vsbjobs.pm +++ b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm @@ -213,9 +213,7 @@ __END__ =head1 MODE -EXPERIMENTAL Mode : Community-supported only (no support from Centreon at this time) - -Check SureBackup jobs. +[EXPERIMENTAL] Monitor SureBackup jobs. =over 8 diff --git a/src/apps/backup/veeam/wsman/plugin.pm b/src/apps/backup/veeam/wsman/plugin.pm index db889bdddc..9b56b26898 100644 --- a/src/apps/backup/veeam/wsman/plugin.pm +++ b/src/apps/backup/veeam/wsman/plugin.pm @@ -48,8 +48,6 @@ __END__ =head1 PLUGIN DESCRIPTION -EXPERIMENTAL Plugin : Community-supported only (no support from Centreon at this time) - -Check Veeam through powershell. +[EXPERIMENTAL] Monitor Veeam backup server using powershell script via WSMAN protocol. =cut diff --git a/.github/scripts/stopwords.t b/tests/resources/spellcheck/stopwords.t similarity index 97% rename from .github/scripts/stopwords.t rename to tests/resources/spellcheck/stopwords.t index 9c5c5a58b5..5112a2e447 100644 --- a/.github/scripts/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -11,11 +11,12 @@ oneaccess-sys-mib perfdata powershell proto -Sansymphony queue-messages-inflighted +Sansymphony SNMP space-usage-prct SSH SureBackup topic-messages-inflighted Veeam +WSMAN From 635895bf851410a8cad50c52357ca3c36036bfae Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:41:48 +0100 Subject: [PATCH 25/63] Fix random test on Linux local plugin (#4949) --- .../linux/os-linux-list-systemdservices.robot | 64 +++ tests/functional/linux/os-linux-local.robot | 377 ------------------ .../linux/os-linux-system-sc-status.robot | 110 +++++ tests/resources/linux/systemd-219/systemctl | 237 +++++++++++ tests/resources/linux/systemd-252/systemctl | 275 +++++++++++++ 5 files changed, 686 insertions(+), 377 deletions(-) create mode 100644 tests/functional/linux/os-linux-list-systemdservices.robot delete mode 100644 tests/functional/linux/os-linux-local.robot create mode 100644 tests/functional/linux/os-linux-system-sc-status.robot create mode 100755 tests/resources/linux/systemd-219/systemctl create mode 100755 tests/resources/linux/systemd-252/systemctl diff --git a/tests/functional/linux/os-linux-list-systemdservices.robot b/tests/functional/linux/os-linux-list-systemdservices.robot new file mode 100644 index 0000000000..30f1a5375f --- /dev/null +++ b/tests/functional/linux/os-linux-list-systemdservices.robot @@ -0,0 +1,64 @@ +*** Settings *** +Documentation Linux Local list-systemdservices + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin +${PERCENT} % + +${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' + +*** Test Cases *** +List-Systemdservices v219 ${tc}/4 + [Documentation] Systemd version < 248 + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --mode=list-systemdservices + ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-219 + ... --filter-name='${filtername}' + ... --filter-description='${filterdescription}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc filtername filterdescription expected_result -- + ... 1 toto ${EMPTY} List systemd services: + ... 2 NetworkManager.service ${EMPTY} List systemd services: \n\'NetworkManager.service\' [desc = Network Manager] [load = loaded] [active = active] [sub = running] + ... 3 ${EMPTY} toto List systemd services: + ... 4 ${EMPTY} Permit User Sessions List systemd services: \n\'systemd-user-sessions.service\' [desc = Permit User Sessions] [load = loaded] [active = active] [sub = exited] + +List-Systemdservices v252 ${tc}/4 + [Documentation] Systemd version >= 248 + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --mode=list-systemdservices + ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-252 + ... --filter-name='${filtername}' + ... --filter-description='${filterdescription}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc filtername filterdescription expected_result -- + ... 1 toto ${EMPTY} List systemd services: + ... 2 NetworkManager.service ${EMPTY} List systemd services: \n\'NetworkManager.service\' [desc = Network Manager] [load = loaded] [active = active] [sub = running] + ... 3 ${EMPTY} toto List systemd services: + ... 4 ${EMPTY} Permit User Sessions List systemd services: \n\'systemd-user-sessions.service\' [desc = Permit User Sessions] [load = loaded] [active = active] [sub = exited] diff --git a/tests/functional/linux/os-linux-local.robot b/tests/functional/linux/os-linux-local.robot deleted file mode 100644 index 0a1446fa92..0000000000 --- a/tests/functional/linux/os-linux-local.robot +++ /dev/null @@ -1,377 +0,0 @@ -*** Settings *** -Documentation OS Linux Local plugin - -Library OperatingSystem -Library String - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin - -# Test list-systemdservices mode with filter-name option set to a fake value -&{linux_local_listsystemd_test1} -... filtername=toto -... filterdescription= -... result=List systemd services: - -# Test list-systemdservices mode with filter-name option set to a service name value -&{linux_local_listsystemd_test2} -... filtername=NetworkManager.service -... filterdescription= -... result=List systemd services: \n\'NetworkManager.service\' [desc = NetworkManager.service] [load = not-found] [active = inactive] [sub = dead] - -# Test list-systemdservices mode with filter-description option set to a fake value -&{linux_local_listsystemd_test3} -... filtername= -... filterdescription=toto -... result=List systemd services: - -# Test list-systemdservices mode with filter-description option set to a service description value -&{linux_local_listsystemd_test4} -... filtername= -... filterdescription='User Manager for UID 1001' -... result=List systemd services: \n\'user@1001.service\' [desc = User Manager for UID 1001] [load = loaded] [active = active] [sub = running] - -@{linux_local_listsystemd_tests} -... &{linux_local_listsystemd_test1} -... &{linux_local_listsystemd_test2} -... &{linux_local_listsystemd_test3} -... &{linux_local_listsystemd_test4} - -# Test simple usage of the systemd-sc-status mode -&{linux_local_systemd_test_1} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with filter-name option set to a fake value -&{linux_local_systemd_test_2} -... filtername=toto -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=UNKNOWN: No service found. - -# Test systemd-sc-status mode with filter-name option set to a service name value -&{linux_local_systemd_test_3} -... filtername=NetworkManager.service -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=OK: Total Running: 0, Total Failed: 0, Total Dead: 1, Total Exited: 0 - Service 'NetworkManager.service' status : not-found/inactive/dead [boot: -] | 'total_running'=0;;;0;1 'total_failed'=0;;;0;1 'total_dead'=1;;;0;1 'total_exited'=0;;;0;1 - -# Test systemd-sc-status mode with exclude-name option set to a fake value -&{linux_local_systemd_test_4} -... filtername= -... excludename=toto -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 120, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with exclude-name option set to a service name value -&{linux_local_systemd_test_5} -... filtername= -... excludename=NetworkManager.service -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=OK: Total Running: 40, Total Failed: 0, Total Dead: 119, Total Exited: 40 - All services are ok | 'total_running'=40;;;0;413 'total_failed'=0;;;0;413 'total_dead'=119;;;0;413 'total_exited'=40;;;0;413 - -# Test systemd-sc-status mode with warning-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/' -&{linux_local_systemd_test_6} -... filtername= -... excludename= -... warningstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/' -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=WARNING: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with critical-status option set to '\%{sub} =~ /exited/ && \%{display} =~ /network/' -&{linux_local_systemd_test_7} -... filtername= -... excludename= -... warningstatus= -... criticalstatus='\%{sub} =~ /exited/ && \%{display} =~ /network/' -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=CRITICAL: Service 'systemd-networkd-wait-online.service' status : loaded/active/exited [boot: enabled] - Service 'walinuxagent-network-setup.service' status : loaded/active/exited [boot: enabled] | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with warning-total-running option set to 20 -&{linux_local_systemd_test_8} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning=20 -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=WARNING: Total Running: 40 | 'total_running'=40;0:20;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with critical-total-running option set to 20 -&{linux_local_systemd_test_9} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning=20 -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=CRITICAL: Total Running: 40 | 'total_running'=40;;0:20;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with warning-total-dead option set to 20 -&{linux_local_systemd_test_10} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead=20 -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=WARNING: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;0:20;;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with critical-total-dead option set to 20 -&{linux_local_systemd_test_11} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead=20 -... warningtotalexited= -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=CRITICAL: Total Dead: 120 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;0:20;0;414 'total_exited'=40;;;0;414 - -# Test systemd-sc-status mode with warning-total-exited option set to 20 -&{linux_local_systemd_test_12} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited=20 -... criticaltotalexited= -... warningtotalfailed= -... criticaltotalfailed= -... result=WARNING: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;0:20;;0;414 - -# Test systemd-sc-status mode with critical-total-exited option set to 20 -&{linux_local_systemd_test_13} -... filtername= -... excludename= -... warningstatus= -... criticalstatus= -... warningtotalrunning= -... criticaltotalrunning= -... warningtotaldead= -... criticaltotaldead= -... warningtotalexited= -... criticaltotalexited=20 -... warningtotalfailed= -... criticaltotalfailed= -... result=CRITICAL: Total Exited: 40 | 'total_running'=40;;;0;414 'total_failed'=0;;;0;414 'total_dead'=120;;;0;414 'total_exited'=40;;0:20;0;414 - -# Test systemd-sc-status mode with warning-total-failed option : NO DATA FOR THIS TEST - -# Test systemd-sc-status mode with critical-total-failed option : NO DATA FOR THIS TEST - -@{linux_local_systemd_tests} -... &{linux_local_systemd_test_1} -... &{linux_local_systemd_test_2} -... &{linux_local_systemd_test_3} -... &{linux_local_systemd_test_4} -... &{linux_local_systemd_test_5} -... &{linux_local_systemd_test_6} -... &{linux_local_systemd_test_7} -... &{linux_local_systemd_test_8} -... &{linux_local_systemd_test_9} -... &{linux_local_systemd_test_10} -... &{linux_local_systemd_test_11} -... &{linux_local_systemd_test_12} -... &{linux_local_systemd_test_13} - - -*** Test Cases *** -Linux Local Systemd-sc-status - [Documentation] Linux Local Systemd services status - [Tags] os linux local - FOR ${linux_local_systemd_test} IN @{linux_local_systemd_tests} - ${command} Catenate - ... ${CMD} - ... --mode=systemd-sc-status - ${length} Get Length ${linux_local_systemd_test.filtername} - IF ${length} > 0 - ${command} Catenate ${command} --filter-name=${linux_local_systemd_test.filtername} - END - ${length} Get Length ${linux_local_systemd_test.excludename} - IF ${length} > 0 - ${command} Catenate ${command} --exclude-name=${linux_local_systemd_test.excludename} - END - ${length} Get Length ${linux_local_systemd_test.warningstatus} - IF ${length} > 0 - ${command} Catenate ${command} --warning-status=${linux_local_systemd_test.warningstatus} - END - ${length} Get Length ${linux_local_systemd_test.criticalstatus} - IF ${length} > 0 - ${command} Catenate ${command} --critical-status=${linux_local_systemd_test.criticalstatus} - END - ${length} Get Length ${linux_local_systemd_test.warningtotalrunning} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-total-running=${linux_local_systemd_test.warningtotalrunning} - END - ${length} Get Length ${linux_local_systemd_test.criticaltotalrunning} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-total-running=${linux_local_systemd_test.criticaltotalrunning} - END - ${length} Get Length ${linux_local_systemd_test.warningtotaldead} - IF ${length} > 0 - ${command} Catenate ${command} --warning-total-dead=${linux_local_systemd_test.warningtotaldead} - END - ${length} Get Length ${linux_local_systemd_test.criticaltotaldead} - IF ${length} > 0 - ${command} Catenate ${command} --critical-total-dead=${linux_local_systemd_test.criticaltotaldead} - END - ${length} Get Length ${linux_local_systemd_test.warningtotalexited} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-total-exited=${linux_local_systemd_test.warningtotalexited} - END - ${length} Get Length ${linux_local_systemd_test.criticaltotalexited} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-total-exited=${linux_local_systemd_test.criticaltotalexited} - END - ${length} Get Length ${linux_local_systemd_test.warningtotalfailed} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-total-failed=${linux_local_systemd_test.warningtotalfailed} - END - ${length} Get Length ${linux_local_systemd_test.criticaltotalfailed} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-total-failed=${linux_local_systemd_test.criticaltotalfailed} - END - - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${linux_local_systemd_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_systemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END - -Linux Local List-systemd-services - [Documentation] Linux Local List Systemd services - [Tags] os linux local - FOR ${linux_local_listsystemd_test} IN @{linux_local_listsystemd_tests} - ${command} Catenate - ... ${CMD} - ... --mode=list-systemdservices - ${length} Get Length ${linux_local_listsystemd_test.filtername} - IF ${length} > 0 - ${command} Catenate ${command} --filter-name=${linux_local_listsystemd_test.filtername} - END - ${length} Get Length ${linux_local_listsystemd_test.filterdescription} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --filter-description=${linux_local_listsystemd_test.filterdescription} - END - - ${output} Run ${command} - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${linux_local_listsystemd_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${linux_local_listsystemd_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END diff --git a/tests/functional/linux/os-linux-system-sc-status.robot b/tests/functional/linux/os-linux-system-sc-status.robot new file mode 100644 index 0000000000..f6de4194fe --- /dev/null +++ b/tests/functional/linux/os-linux-system-sc-status.robot @@ -0,0 +1,110 @@ +*** Settings *** +Documentation Linux Local Systemd-sc-status + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin +# attempt to work around the interpretation of %{} as env variables instead of plugin macros +#${PERCENT} % +#${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' + +*** Test Cases *** +Systemd-sc-status v219 ${tc}/15 + [Documentation] Systemd version < 248 + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --mode=systemd-sc-status + ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-219 + ... --filter-name='${filter}' + ... --exclude-name='${exclude}' + ... --warning-status='${w_stat}' + ... --critical-status='${c_stat}' + ... --warning-total-running='${w_running}' + ... --critical-total-running='${c_running}' + ... --warning-total-dead='${w_dead}' + ... --critical-total-dead='${c_dead}' + ... --warning-total-exited='${w_exited}' + ... --critical-total-exited='${c_exited}' + ... --warning-total-failed='${w_failed}' + ... --critical-total-failed='${c_failed}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc filter exclude w_stat c_stat w_running c_running w_dead c_dead w_exited c_exited w_failed c_failed expected_result -- + ... 1 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 34, Total Failed: 1, Total Dead: 97, Total Exited: 25 - All services are ok | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 + ... 2 toto ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} UNKNOWN: No service found. + ... 3 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2 + ... 4 ${EMPTY} Manager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 33, Total Failed: 1, Total Dead: 97, Total Exited: 24 - All services are ok | 'total_running'=33;;;0;218 'total_failed'=1;;;0;218 'total_dead'=97;;;0;218 'total_exited'=24;;;0;218 + ... 5 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2 + ... 8 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Running: 34 | 'total_running'=34;0:0;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 + ... 9 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Running: 34 | 'total_running'=34;;0:0;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 + ... 10 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Dead: 97 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;0:0;;0;220 'total_exited'=25;;;0;220 + ... 11 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Dead: 97 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;0:0;0;220 'total_exited'=25;;;0;220 + ... 12 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Exited: 25 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;0:0;;0;220 + ... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 25 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;0:0;0;220 + ... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} WARNING: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;0:0;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 + ... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 CRITICAL: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;;0:0;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 +# not working atm + # ... 6 ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING + # ... 7 ${EMPTY} ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL + +Systemd-sc-status v252 ${tc}/15 + [Documentation] Systemd version >= 248 + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --mode=systemd-sc-status + ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-252 + ... --filter-name='${filter}' + ... --exclude-name='${exclude}' + ... --warning-status='${w_stat}' + ... --critical-status='${c_stat}' + ... --warning-total-running='${w_running}' + ... --critical-total-running='${c_running}' + ... --warning-total-dead='${w_dead}' + ... --critical-total-dead='${c_dead}' + ... --warning-total-exited='${w_exited}' + ... --critical-total-exited='${c_exited}' + ... --warning-total-failed='${w_failed}' + ... --critical-total-failed='${c_failed}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... Wrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc filter exclude w_stat c_stat w_running c_running w_dead c_dead w_exited c_exited w_failed c_failed expected_result -- + ... 1 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 31, Total Failed: 4, Total Dead: 108, Total Exited: 19 - All services are ok | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 + ... 2 toto ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} UNKNOWN: No service found. + ... 3 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2 + ... 4 ${EMPTY} Manager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 30, Total Failed: 4, Total Dead: 108, Total Exited: 18 - All services are ok | 'total_running'=30;;;0;256 'total_failed'=4;;;0;256 'total_dead'=108;;;0;256 'total_exited'=18;;;0;256 + ... 5 NetworkManager ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: Total Running: 1, Total Failed: 0, Total Dead: 0, Total Exited: 1 - All services are ok | 'total_running'=1;;;0;2 'total_failed'=0;;;0;2 'total_dead'=0;;;0;2 'total_exited'=1;;;0;2 + ... 8 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Running: 31 | 'total_running'=31;0:2;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 + ... 9 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Running: 31 | 'total_running'=31;;0:2;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 + ... 10 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Dead: 108 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;0:2;;0;258 'total_exited'=19;;;0;258 + ... 11 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL: Total Dead: 108 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;0:2;0;258 'total_exited'=19;;;0;258 + ... 12 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} ${EMPTY} WARNING: Total Exited: 19 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;0:2;;0;258 + ... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 19 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;0:2;0;258 + ... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} WARNING: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;0:2;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 + ... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 CRITICAL: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;;0:2;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 + +# not working atm + # ... 6 ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING + # ... 7 ${EMPTY} ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL + diff --git a/tests/resources/linux/systemd-219/systemctl b/tests/resources/linux/systemd-219/systemctl new file mode 100755 index 0000000000..f2c9ea701c --- /dev/null +++ b/tests/resources/linux/systemd-219/systemctl @@ -0,0 +1,237 @@ +#!/bin/bash +case "$*" in + --version) + cat <<'EOF' +systemd 219 ++PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN +EOF + ;; + '-a --no-pager --plain --no-legend') + cat <<'EOF' +proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System +dev-disk-by\x2did-scsi\x2d0QEMU_QEMU_HARDDISK_drive\x2dscsi0\x2d0\x2d0\x2d0.device loaded active plugged QEMU_HARDDISK +dev-disk-by\x2did-scsi\x2d0QEMU_QEMU_HARDDISK_drive\x2dscsi0\x2d0\x2d0\x2d0\x2dpart1.device loaded active plugged QEMU_HARDDISK 1 +dev-disk-by\x2dpath-pci\x2d0000:00:04.0\x2dscsi\x2d0:0:0:0.device loaded active plugged QEMU_HARDDISK +dev-disk-by\x2dpath-pci\x2d0000:00:04.0\x2dscsi\x2d0:0:0:0\x2dpart1.device loaded active plugged QEMU_HARDDISK 1 +dev-disk-by\x2duuid-85ea49f1\x2d50e9\x2d4dc2\x2d83e4\x2d76499dffa11b.device loaded active plugged QEMU_HARDDISK 1 +dev-sda.device loaded active plugged QEMU_HARDDISK +dev-sda1.device loaded active plugged QEMU_HARDDISK 1 +dev-ttyS0.device loaded active plugged /dev/ttyS0 +dev-ttyS1.device loaded active plugged /dev/ttyS1 +dev-ttyS2.device loaded active plugged /dev/ttyS2 +dev-ttyS3.device loaded active plugged /dev/ttyS3 +dev-virtio\x2dports-org.qemu.guest_agent.0.device loaded active plugged /dev/virtio-ports/org.qemu.guest_agent.0 +dev-vport2p1.device loaded active plugged /dev/vport2p1 +sys-devices-pci0000:00-0000:00:03.0-virtio0-net-eth0.device loaded active plugged Virtio network device +sys-devices-pci0000:00-0000:00:04.0-virtio1-host2-target2:0:0-2:0:0:0-block-sda-sda1.device loaded active plugged QEMU_HARDDISK 1 +sys-devices-pci0000:00-0000:00:04.0-virtio1-host2-target2:0:0-2:0:0:0-block-sda.device loaded active plugged QEMU_HARDDISK +sys-devices-pci0000:00-0000:00:05.0-virtio2-virtio\x2dports-vport2p1.device loaded active plugged /sys/devices/pci0000:00/0000:00:05.0/virtio2/v +sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1 +sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2 +sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3 +sys-devices-pnp0-00:04-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:04/tty/ttyS0 +sys-module-configfs.device loaded active plugged /sys/module/configfs +sys-subsystem-net-devices-eth0.device loaded active plugged Virtio network device +-.mount loaded active mounted / +dev-hugepages.mount loaded active mounted Huge Pages File System +dev-mqueue.mount loaded active mounted POSIX Message Queue File System +proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System +run-user-0.mount loaded active mounted /run/user/0 +sys-fs-fuse-connections.mount loaded inactive dead FUSE Control File System +sys-kernel-config.mount loaded active mounted Configuration File System +sys-kernel-debug.mount loaded active mounted Debug File System +sysroot.mount not-found inactive dead sysroot.mount +tmp.mount loaded inactive dead Temporary Directory +var-run.mount not-found inactive dead var-run.mount +brandbot.path loaded active waiting Flexible branding +systemd-ask-password-console.path loaded inactive dead Dispatch Password Requests to Console Director +systemd-ask-password-plymouth.path loaded active waiting Forward Password Requests to Plymouth Director +systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Wa +session-187554.scope loaded active running Session 187554 of user root +atd.service loaded active running Job spooling tools +auditd.service loaded active running Security Auditing Service +brandbot.service loaded inactive dead Flexible Branding Service +cbd.service loaded active running Centreon Broker watchdog +centcore.service not-found inactive dead centcore.service +centengine.service loaded active running Centreon Engine +centreon-map.service loaded failed failed Centreon Studio map server +centreon-nrpe3.service loaded active running Nagios Remote Program Executor +centreon.service loaded active exited One Service to rule them all. +chronyd.service loaded active running NTP client/server +cloud-config.service loaded active exited Apply the settings specified in cloud-config +cloud-final.service loaded active exited Execute cloud user/final scripts +cloud-init-local.service loaded active exited Initial cloud-init job (pre-networking) +cloud-init.service loaded active exited Initial cloud-init job (metadata service crawl +cpupower.service loaded inactive dead Configure CPU power related settings +crond.service loaded active running Command Scheduler +dbus.service loaded active running D-Bus System Message Bus +display-manager.service not-found inactive dead display-manager.service +dm-event.service loaded inactive dead Device-mapper event daemon +dracut-cmdline.service loaded inactive dead dracut cmdline hook +dracut-initqueue.service loaded inactive dead dracut initqueue hook +dracut-mount.service loaded inactive dead dracut mount hook +dracut-pre-mount.service loaded inactive dead dracut pre-mount hook +dracut-pre-pivot.service loaded inactive dead dracut pre-pivot and cleanup hook +dracut-pre-trigger.service loaded inactive dead dracut pre-trigger hook +dracut-pre-udev.service loaded inactive dead dracut pre-udev hook +dracut-shutdown.service loaded inactive dead Restore /run/initramfs +ebtables.service loaded inactive dead Ethernet Bridge Filtering tables +emergency.service loaded inactive dead Emergency Shell +exim.service not-found inactive dead exim.service +firewalld.service loaded active running firewalld - dynamic firewall daemon +getty@tty1.service loaded active running Getty on tty1 +gorgoned.service loaded active running Centreon Gorgone +haproxy.service loaded active running HAProxy Load Balancer +httpd24-httpd.service loaded active running The Apache HTTP Server +initrd-cleanup.service loaded inactive dead Cleaning Up and Shutting Down Daemons +initrd-parse-etc.service loaded inactive dead Reload Configuration from the Real Root +initrd-switch-root.service loaded inactive dead Switch Root +initrd-udevadm-cleanup-db.service loaded inactive dead Cleanup udevd DB +ip6tables.service not-found inactive dead ip6tables.service +ipset.service not-found inactive dead ipset.service +iptables.service not-found inactive dead iptables.service +irqbalance.service loaded inactive dead irqbalance daemon +kdump.service loaded active exited Crash recovery kernel arming +kmod-static-nodes.service loaded active exited Create list of required static device nodes fo +lvm2-activation.service not-found inactive dead lvm2-activation.service +lvm2-lvmetad.service loaded active running LVM2 metadata daemon +lvm2-lvmpolld.service loaded inactive dead LVM2 poll daemon +lvm2-monitor.service loaded active exited Monitoring of LVM2 mirrors, snapshots etc. usi +mariadb.service loaded active running MariaDB 10.5.17 database server +microcode.service loaded inactive dead Load CPU microcode update +network.service loaded active exited LSB: Bring up/down networking +NetworkManager-wait-online.service loaded active exited Network Manager Wait Online +NetworkManager.service loaded active running Network Manager +ntpd.service not-found inactive dead ntpd.service +ntpdate.service not-found inactive dead ntpdate.service +php-fpm.service loaded active running The PHP FastCGI Process Manager +plymouth-quit-wait.service loaded inactive dead Wait for Plymouth Boot Screen to Quit +plymouth-quit.service loaded inactive dead Terminate Plymouth Boot Screen +plymouth-read-write.service loaded inactive dead Tell Plymouth To Write Out Runtime Data +plymouth-start.service loaded inactive dead Show Plymouth Boot Screen +plymouth-switch-root.service loaded inactive dead Plymouth switch root service +polkit.service loaded active running Authorization Manager +postfix.service loaded active running Postfix Mail Transport Agent +rc-local.service loaded inactive dead /etc/rc.d/rc.local Compatibility +rescue.service loaded inactive dead Rescue Shell +rhel-autorelabel-mark.service loaded inactive dead Mark the need to relabel after reboot +rhel-autorelabel.service loaded inactive dead Relabel all filesystems, if necessary +rhel-configure.service loaded inactive dead Reconfigure the system on administrator reques +rhel-dmesg.service loaded active exited Dump dmesg to /var/log/dmesg +rhel-domainname.service loaded active exited Read and set NIS domainname from /etc/sysconfi +rhel-import-state.service loaded active exited Import network configuration from initramfs +rhel-loadmodules.service loaded inactive dead Load legacy module configuration +rhel-readonly.service loaded active exited Configure read-only root support +rpcbind.service loaded active running RPC bind service +rsyslog.service loaded active running System Logging Service +selinux-policy-migrate-local-changes@targeted.service loaded inactive dead Migrate local SELinux policy changes from the +sendmail.service not-found inactive dead sendmail.service +snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daem +sntp.service not-found inactive dead sntp.service +sshd-keygen.service loaded inactive dead OpenSSH Server Key Generation +sshd.service loaded active running OpenSSH server daemon +syslog.service not-found inactive dead syslog.service +systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console +systemd-ask-password-plymouth.service loaded inactive dead Forward Password Requests to Plymouth +systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall +systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats +systemd-firstboot.service loaded inactive dead First Boot Wizard +systemd-fsck-root.service loaded active exited File System Check on Root Device +systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database +systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon +systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog +systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage +systemd-journald.service loaded active running Journal Service +systemd-logind.service loaded active running Login Service +systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk +systemd-modules-load.service loaded inactive dead Load Kernel Modules +systemd-random-seed.service loaded active exited Load/Save Random Seed +systemd-readahead-collect.service loaded inactive dead Collect Read-Ahead Data +systemd-readahead-done.service loaded inactive dead Stop Read-Ahead Data Collection +systemd-readahead-replay.service loaded inactive dead Replay Read-Ahead Data +systemd-reboot.service loaded inactive dead Reboot +systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems +systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service +systemd-sysctl.service loaded active exited Apply Kernel Variables +systemd-sysusers.service not-found inactive dead systemd-sysusers.service +systemd-timesyncd.service not-found inactive dead systemd-timesyncd.service +systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories +systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev +systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories +systemd-udev-trigger.service loaded active exited udev Coldplug all Devices +systemd-udevd.service loaded active running udev Kernel Device Manager +systemd-update-done.service loaded inactive dead Update is Completed +systemd-update-utmp-runlevel.service loaded inactive dead Update UTMP about System Runlevel Changes +systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown +systemd-user-sessions.service loaded active exited Permit User Sessions +systemd-vconsole-setup.service loaded active exited Setup Virtual Console +tuned.service loaded active running Dynamic System Tuning Daemon +xdm.service not-found inactive dead xdm.service +ypbind.service not-found inactive dead ypbind.service +yppasswdd.service not-found inactive dead yppasswdd.service +ypserv.service not-found inactive dead ypserv.service +ypxfrd.service not-found inactive dead ypxfrd.service +-.slice loaded active active Root Slice +system-getty.slice loaded active active system-getty.slice +system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice loaded active active system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x +system.slice loaded active active System Slice +user-0.slice loaded active active User Slice of root +user.slice loaded active active User and Session Slice +dbus.socket loaded active running D-Bus System Message Bus Socket +dm-event.socket loaded active listening Device-mapper event daemon FIFOs +lvm2-lvmetad.socket loaded active running LVM2 metadata daemon socket +lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket +nrpe.socket not-found inactive dead nrpe.socket +rpcbind.socket loaded active running RPCbind Server Activation Socket +sshd.socket loaded inactive dead OpenSSH Server Socket +syslog.socket loaded inactive dead Syslog Socket +systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe +systemd-journald.socket loaded active running Journal Socket +systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket +systemd-udevd-control.socket loaded active running udev Control Socket +systemd-udevd-kernel.socket loaded active running udev Kernel Socket +basic.target loaded active active Basic System +cloud-config.target loaded active active Cloud-config availability +cloud-init.target loaded active active Cloud-init target +cryptsetup.target loaded active active Local Encrypted Volumes +emergency.target loaded inactive dead Emergency Mode +final.target loaded inactive dead Final Step +firewalld.target not-found inactive dead firewalld.target +getty-pre.target loaded inactive dead Login Prompts (Pre) +getty.target loaded active active Login Prompts +graphical.target loaded inactive dead Graphical Interface +initrd-fs.target loaded inactive dead Initrd File Systems +initrd-root-fs.target loaded inactive dead Initrd Root File System +initrd-switch-root.target loaded inactive dead Switch Root +initrd.target loaded inactive dead Initrd Default Target +local-fs-pre.target loaded active active Local File Systems (Pre) +local-fs.target loaded active active Local File Systems +multi-user.target loaded active active Multi-User System +network-online.target loaded active active Network is Online +network-pre.target loaded active active Network (Pre) +network.target loaded active active Network +nss-lookup.target loaded inactive dead Host and Network Name Lookups +nss-user-lookup.target loaded inactive dead User and Group Name Lookups +paths.target loaded active active Paths +remote-fs-pre.target loaded inactive dead Remote File Systems (Pre) +remote-fs.target loaded active active Remote File Systems +rescue.target loaded inactive dead Rescue Mode +rpcbind.target loaded active active RPC Port Mapper +shutdown.target loaded inactive dead Shutdown +slices.target loaded active active Slices +sockets.target loaded active active Sockets +swap.target loaded active active Swap +sysinit.target loaded active active System Initialization +syslog.target not-found inactive dead syslog.target +time-sync.target loaded inactive dead System Time Synchronized +timers.target loaded active active Timers +umount.target loaded inactive dead Unmount All Filesystems +systemd-readahead-done.timer loaded inactive dead Stop Read-Ahead Data Collection 10s After Comp +systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories +EOF + ;; + *) + echo "Unknown option" + ;; +esac + diff --git a/tests/resources/linux/systemd-252/systemctl b/tests/resources/linux/systemd-252/systemctl new file mode 100755 index 0000000000..4294c37322 --- /dev/null +++ b/tests/resources/linux/systemd-252/systemctl @@ -0,0 +1,275 @@ +#!/bin/bash +case "$*" in + --version) + cat <<'EOF' +systemd 252 (252-18.el9) ++PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified +EOF + ;; + '-a --no-pager --plain --legend=false') + cat <<'EOF' +boot.automount not-found inactive dead boot.automount +proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File Syst… +dev-disk-by\x2ddiskseq-1.device loaded active plugged VBOX_HARDDISK +dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2did-ata\x2dVBOX_HARDDISK_VBd2… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2did-scsi\x2d0ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2did-scsi\x2d1ATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2did-scsi\x2dSATA_VBOX_HARDDIS… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2dpartuuid-44ac7039\x2d2ef4\x2… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2dpartuuid-4d2e7c69\x2d19ea\x2… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 1 +dev-disk-by\x2dpath-pci\x2d0000:00:0d.0\x2d… loaded active plugged VBOX_HARDDISK 2 +dev-disk-by\x2duuid-04468d69\x2ddd58\x2d4fc… loaded active plugged VBOX_HARDDISK 2 +dev-rfkill.device loaded active plugged /dev/rfkill +dev-sda.device loaded active plugged VBOX_HARDDISK +dev-sda1.device loaded active plugged VBOX_HARDDISK 1 +dev-sda2.device loaded active plugged VBOX_HARDDISK 2 +dev-ttyS0.device loaded active plugged /dev/ttyS0 +dev-ttyS1.device loaded active plugged /dev/ttyS1 +dev-ttyS2.device loaded active plugged /dev/ttyS2 +dev-ttyS3.device loaded active plugged /dev/ttyS3 +sys-devices-pci0000:00-0000:00:03.0-net-enp… loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10… +sys-devices-pci0000:00-0000:00:08.0-net-enp… loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10… +sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK 1 +sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK 2 +sys-devices-pci0000:00-0000:00:0d.0-ata3-ho… loaded active plugged VBOX_HARDDISK +sys-devices-platform-serial8250-tty-ttyS0.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0 +sys-devices-platform-serial8250-tty-ttyS1.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1 +sys-devices-platform-serial8250-tty-ttyS2.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2 +sys-devices-platform-serial8250-tty-ttyS3.d… loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3 +sys-devices-virtual-misc-rfkill.device loaded active plugged /sys/devices/virtual/misc/rfkill +sys-module-configfs.device loaded active plugged /sys/module/configfs +sys-module-fuse.device loaded active plugged /sys/module/fuse +sys-subsystem-net-devices-enp0s3.device loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10… +sys-subsystem-net-devices-enp0s8.device loaded active plugged 82540EM Gigabit Ethernet Controller (PRO/10… +-.mount loaded active mounted Root Mount +boot.mount not-found inactive dead boot.mount +dev-hugepages.mount loaded active mounted Huge Pages File System +dev-mqueue.mount loaded active mounted POSIX Message Queue File System +home.mount not-found inactive dead home.mount +proc-fs-nfsd.mount loaded inactive dead NFSD configuration filesystem +proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File Syst… +run-credentials-systemd\x2dsysctl.service.m… loaded active mounted /run/credentials/systemd-sysctl.service +run-credentials-systemd\x2dtmpfiles\x2dsetu… loaded active mounted /run/credentials/systemd-tmpfiles-setup.ser… +run-credentials-systemd\x2dtmpfiles\x2dsetu… loaded active mounted /run/credentials/systemd-tmpfiles-setup-dev… +run-user-0.mount loaded active mounted /run/user/0 +sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System +sys-kernel-config.mount loaded active mounted Kernel Configuration File System +sys-kernel-debug.mount loaded active mounted Kernel Debug File System +sys-kernel-tracing.mount loaded active mounted Kernel Trace File System +sysroot.mount not-found inactive dead sysroot.mount +tmp.mount loaded inactive dead Temporary Directory /tmp +vagrant.mount loaded failed failed /vagrant +var-lib-nfs-rpc_pipefs.mount loaded active mounted RPC Pipe File System +systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Direc… +systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory… +init.scope loaded active running System and Service Manager +session-3.scope loaded active running Session 3 of User root +auditd.service loaded active running Security Auditing Service +auth-rpcgss-module.service loaded inactive dead Kernel Module supporting RPCSEC_GSS +autofs.service not-found inactive dead autofs.service +cbd.service loaded active running Centreon Broker watchdog +centengine.service loaded inactive dead Centreon Engine +centreon.service loaded active exited One Service to rule them all. +centreontrapd.service loaded active running Centreon Trapd Daemon is a Centreon program… +chronyd.service loaded active running NTP client/server +crond.service loaded active running Command Scheduler +dbus-broker.service loaded active running D-Bus System Message Bus +display-manager.service not-found inactive dead display-manager.service +dnf-makecache.service loaded inactive dead dnf makecache +dracut-cmdline.service loaded inactive dead dracut cmdline hook +dracut-initqueue.service loaded inactive dead dracut initqueue hook +dracut-mount.service loaded inactive dead dracut mount hook +dracut-pre-mount.service loaded inactive dead dracut pre-mount hook +dracut-pre-pivot.service loaded inactive dead dracut pre-pivot and cleanup hook +dracut-pre-trigger.service loaded inactive dead dracut pre-trigger hook +dracut-pre-udev.service loaded inactive dead dracut pre-udev hook +dracut-shutdown-onfailure.service loaded inactive dead Service executing upon dracut-shutdown fail… +dracut-shutdown.service loaded active exited Restore /run/initramfs on shutdown +emergency.service loaded inactive dead Emergency Shell +getty@tty1.service loaded active running Getty on tty1 +gorgoned.service loaded active running Centreon Gorgone +gssproxy.service loaded active running GSSAPI Proxy Daemon +httpd-init.service not-found inactive dead httpd-init.service +httpd.service loaded active running The Apache HTTP Server +import-state.service loaded active exited Import network configuration from initramfs +initrd-cleanup.service loaded inactive dead Cleaning Up and Shutting Down Daemons +initrd-parse-etc.service loaded inactive dead Mountpoints Configured in the Real Root +initrd-switch-root.service loaded inactive dead Switch Root +initrd-udevadm-cleanup-db.service loaded inactive dead Cleanup udev Database +irqbalance.service loaded active running irqbalance daemon +kdump.service loaded active exited Crash recovery kernel arming +kmod-static-nodes.service loaded active exited Create List of Static Device Nodes +ldconfig.service loaded inactive dead Rebuild Dynamic Linker Cache +loadmodules.service loaded inactive dead Load legacy module configuration +logrotate.service loaded failed failed Rotate log files +mariadb.service loaded active running MariaDB 10.5.24 database server +microcode.service loaded inactive dead Load CPU microcode update +modprobe@configfs.service loaded inactive dead Load Kernel Module configfs +modprobe@drm.service loaded inactive dead Load Kernel Module drm +modprobe@fuse.service loaded inactive dead Load Kernel Module fuse +network.service not-found inactive dead network.service +NetworkManager-wait-online.service loaded active exited Network Manager Wait Online +NetworkManager.service loaded active running Network Manager +nfs-idmapd.service loaded inactive dead NFSv4 ID-name mapping service +nfs-mountd.service loaded inactive dead NFS Mount Daemon +nfs-server.service loaded inactive dead NFS server and services +nfs-utils.service loaded inactive dead NFS server and client services +nfsdcld.service loaded inactive dead NFSv4 Client Tracking Daemon +nis-domainname.service loaded active exited Read and set NIS domainname from /etc/sysco… +ntpd.service not-found inactive dead ntpd.service +ntpdate.service not-found inactive dead ntpdate.service +php-fpm.service loaded active running The PHP FastCGI Process Manager +plymouth-quit-wait.service not-found inactive dead plymouth-quit-wait.service +plymouth-start.service not-found inactive dead plymouth-start.service +rc-local.service loaded inactive dead /etc/rc.d/rc.local Compatibility +rescue.service loaded inactive dead Rescue Shell +rpc-gssd.service loaded inactive dead RPC security service for NFS client and ser… +rpc-statd-notify.service loaded active exited Notify NFS peers of a restart +rpc-statd.service loaded inactive dead NFS status monitor for NFSv2/3 locking. +rpc-svcgssd.service not-found inactive dead rpc-svcgssd.service +rpcbind.service loaded active running RPC Bind +rsyslog.service loaded active running System Logging Service +selinux-autorelabel-mark.service loaded inactive dead Mark the need to relabel after reboot +snmpd.service loaded active running Simple Network Management Protocol (SNMP) D… +snmptrapd.service loaded active running Simple Network Management Protocol (SNMP) T… +sntp.service not-found inactive dead sntp.service +sshd-keygen@ecdsa.service loaded inactive dead OpenSSH ecdsa Server Key Generation +sshd-keygen@ed25519.service loaded inactive dead OpenSSH ed25519 Server Key Generation +sshd-keygen@rsa.service loaded inactive dead OpenSSH rsa Server Key Generation +sshd.service loaded active running OpenSSH server daemon +sssd-kcm.service loaded inactive dead SSSD Kerberos Cache Manager +sssd.service loaded inactive dead System Security Services Daemon +syslog.service not-found inactive dead syslog.service +systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console +systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall +systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats +systemd-boot-system-token.service loaded inactive dead Store a System Token in an EFI Variable +systemd-firstboot.service loaded inactive dead First Boot Wizard +systemd-fsck-root.service loaded inactive dead File System Check on Root Device +systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database +systemd-initctl.service loaded inactive dead initctl Compatibility Daemon +systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog +systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage +systemd-journald.service loaded active running Journal Service +systemd-logind.service loaded active running User Login Management +systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk +systemd-modules-load.service loaded inactive dead Load Kernel Modules +systemd-network-generator.service loaded active exited Generate network units from Kernel command … +systemd-pcrphase-initrd.service loaded inactive dead TPM2 PCR Barrier (initrd) +systemd-pcrphase-sysinit.service loaded inactive dead TPM2 PCR Barrier (Initialization) +systemd-pcrphase.service loaded inactive dead TPM2 PCR Barrier (User) +systemd-random-seed.service loaded active exited Load/Save Random Seed +systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems +systemd-repart.service loaded inactive dead Repartition Root Disk +systemd-rfkill.service loaded inactive dead Load/Save RF Kill Switch Status +systemd-sysctl.service loaded active exited Apply Kernel Variables +systemd-sysext.service loaded inactive dead Merge System Extension Images into /usr/ an… +systemd-sysusers.service loaded inactive dead Create System Users +systemd-timesyncd.service not-found inactive dead systemd-timesyncd.service +systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories +systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev +systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories +systemd-tmpfiles.service not-found inactive dead systemd-tmpfiles.service +systemd-udev-settle.service loaded inactive dead Wait for udev To Complete Device Initializa… +systemd-udev-trigger.service loaded active exited Coldplug All udev Devices +systemd-udevd.service loaded active running Rule-based Manager for Device Events and Fi… +systemd-update-done.service loaded inactive dead Update is Completed +systemd-update-utmp-runlevel.service loaded inactive dead Record Runlevel Change in UTMP +systemd-update-utmp.service loaded active exited Record System Boot/Shutdown in UTMP +systemd-user-sessions.service loaded active exited Permit User Sessions +systemd-vconsole-setup.service loaded inactive dead Setup Virtual Console +user-runtime-dir@0.service loaded active exited User Runtime Directory /run/user/0 +user@0.service loaded active running User Manager for UID 0 +vboxadd-service.service loaded failed failed vboxadd-service.service +vboxadd.service loaded failed failed vboxadd.service +ypbind.service not-found inactive dead ypbind.service +yppasswdd.service not-found inactive dead yppasswdd.service +ypserv.service not-found inactive dead ypserv.service +ypxfrd.service not-found inactive dead ypxfrd.service +-.slice loaded active active Root Slice +system-getty.slice loaded active active Slice /system/getty +system-modprobe.slice loaded active active Slice /system/modprobe +system-sshd\x2dkeygen.slice loaded active active Slice /system/sshd-keygen +system.slice loaded active active System Slice +user-0.slice loaded active active User Slice of UID 0 +user.slice loaded active active User and Session Slice +dbus.socket loaded active running D-Bus System Message Bus Socket +rpcbind.socket loaded active running RPCbind Server Activation Socket +sssd-kcm.socket loaded active listening SSSD Kerberos Cache Manager responder socket +syslog.socket loaded inactive dead Syslog Socket +systemd-coredump.socket loaded active listening Process Core Dump Socket +systemd-initctl.socket loaded active listening initctl Compatibility Named Pipe +systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log) +systemd-journald.socket loaded active running Journal Socket +systemd-rfkill.socket loaded active listening Load/Save RF Kill Switch Status /dev/rfkill… +systemd-udevd-control.socket loaded active running udev Control Socket +systemd-udevd-kernel.socket loaded active running udev Kernel Socket +basic.target loaded active active Basic System +blockdev@dev-disk-by\x2duuid-04468d69\x2ddd… loaded inactive dead Block Device Preparation for /dev/disk/by-u… +cryptsetup-pre.target loaded inactive dead Local Encrypted Volumes (Pre) +cryptsetup.target loaded active active Local Encrypted Volumes +emergency.target loaded inactive dead Emergency Mode +first-boot-complete.target loaded inactive dead First Boot Complete +getty-pre.target loaded inactive dead Preparation for Logins +getty.target loaded active active Login Prompts +graphical.target loaded inactive dead Graphical Interface +initrd-fs.target loaded inactive dead Initrd File Systems +initrd-root-device.target loaded inactive dead Initrd Root Device +initrd-root-fs.target loaded inactive dead Initrd Root File System +initrd-switch-root.target loaded inactive dead Switch Root +initrd-usr-fs.target loaded inactive dead Initrd /usr File System +initrd.target loaded inactive dead Initrd Default Target +integritysetup.target loaded active active Local Integrity Protected Volumes +local-fs-pre.target loaded active active Preparation for Local File Systems +local-fs.target loaded active active Local File Systems +multi-user.target loaded active active Multi-User System +network-online.target loaded active active Network is Online +network-pre.target loaded active active Preparation for Network +network.target loaded active active Network +nfs-client.target loaded active active NFS client services +nss-lookup.target loaded inactive dead Host and Network Name Lookups +nss-user-lookup.target loaded active active User and Group Name Lookups +paths.target loaded active active Path Units +remote-cryptsetup.target loaded inactive dead Remote Encrypted Volumes +remote-fs-pre.target loaded active active Preparation for Remote File Systems +remote-fs.target loaded inactive dead Remote File Systems +remote-veritysetup.target loaded inactive dead Remote Verity Protected Volumes +rescue.target loaded inactive dead Rescue Mode +rpc_pipefs.target loaded active active rpc_pipefs.target +rpcbind.target loaded active active RPC Port Mapper +shutdown.target loaded inactive dead System Shutdown +slices.target loaded active active Slice Units +sockets.target loaded active active Socket Units +sshd-keygen.target loaded active active sshd-keygen.target +swap.target loaded active active Swaps +sysinit.target loaded active active System Initialization +syslog.target not-found inactive dead syslog.target +time-set.target loaded inactive dead System Time Set +time-sync.target loaded inactive dead System Time Synchronized +timers.target loaded active active Timer Units +umount.target loaded inactive dead Unmount All Filesystems +veritysetup-pre.target loaded inactive dead Local Verity Protected Volumes (Pre) +veritysetup.target loaded active active Local Verity Protected Volumes +dnf-makecache.timer loaded active waiting dnf makecache --timer +logrotate.timer loaded active waiting Daily rotation of log files +systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories +EOF + ;; + *) + echo "Unknown option" + ;; +esac + From aaf43748be1b37718718e01c6a8dc1d45437616f Mon Sep 17 00:00:00 2001 From: sdepassio <114986849+sdepassio@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:25:03 +0100 Subject: [PATCH 26/63] Update mockoon version + adapt existing tests (#4938) --- .github/workflows/tests-functional.yml | 4 +- ...l.robot.old => cloud-aws-cloudtrail.robot} | 0 ...d-azure-policyinsights-policystates.robot} | 10 ++-- .../mockoon/cloud-aws-cloudtrail.json | 31 ++++++------ ...oud-azure-policyinsights-policystates.json | 49 ++++++++++++------- 5 files changed, 54 insertions(+), 40 deletions(-) rename tests/functional/api/{cloud-aws-cloudtrail.robot.old => cloud-aws-cloudtrail.robot} (100%) rename tests/functional/api/{cloud-azure-policyinsights-policystates.robot.old => cloud-azure-policyinsights-policystates.robot} (92%) diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index c8f470c974..b1925098aa 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -30,10 +30,10 @@ jobs: - name: Install Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: - node-version: 20 + node-version: 21 - name: Install Mockoon CLI - run: npm install -g -D @mockoon/cli@6.2.0 + run: npm install -g -D @mockoon/cli@7.0.0 - name: Install perl dependencies uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 diff --git a/tests/functional/api/cloud-aws-cloudtrail.robot.old b/tests/functional/api/cloud-aws-cloudtrail.robot similarity index 100% rename from tests/functional/api/cloud-aws-cloudtrail.robot.old rename to tests/functional/api/cloud-aws-cloudtrail.robot diff --git a/tests/functional/api/cloud-azure-policyinsights-policystates.robot.old b/tests/functional/api/cloud-azure-policyinsights-policystates.robot similarity index 92% rename from tests/functional/api/cloud-azure-policyinsights-policystates.robot.old rename to tests/functional/api/cloud-azure-policyinsights-policystates.robot index 5b9bd61a60..14e4d856d3 100644 --- a/tests/functional/api/cloud-azure-policyinsights-policystates.robot.old +++ b/tests/functional/api/cloud-azure-policyinsights-policystates.robot @@ -14,29 +14,29 @@ Test Timeout 120s ${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl ${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-azure-policyinsights-policystates.json -${LOGIN_ENDPOINT} http://localhost:3001/login +${LOGIN_ENDPOINT} http://localhost:3000/login ${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT} &{compliance_value1} -... endpoint=http://localhost:3001/ok +... endpoint=http://localhost:3000/ok ... policyname= ... resourcelocation= ... resourcetype= ... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0; &{compliance_value2} -... endpoint=http://localhost:3001/oknextlink +... endpoint=http://localhost:3000/oknextlink ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation= ... resourcetype= ... result=OK: Number of non compliant policies: 0 - All compliances states are ok | 'policies.non_compliant.count'=0;;;0; &{compliance_value3} -... endpoint=http://localhost:3001/nok1 +... endpoint=http://localhost:3000/nok1 ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation=fr ... resourcetype= ... result=CRITICAL: Compliance state for policy '9daedab3-fb2d-461e-b861-71790eead4f6' on resource 'mypubip1' is 'NonCompliant' | 'policies.non_compliant.count'=1;;;0; &{compliance_value4} -... endpoint=http://localhost:3001/nok2 +... endpoint=http://localhost:3000/nok2 ... policyname=9daedab3-fb2d-461e-b861-71790eead4f6 ... resourcelocation=fr ... resourcetype=ip diff --git a/tests/resources/mockoon/cloud-aws-cloudtrail.json b/tests/resources/mockoon/cloud-aws-cloudtrail.json index f25264798f..fc680bb463 100644 --- a/tests/resources/mockoon/cloud-aws-cloudtrail.json +++ b/tests/resources/mockoon/cloud-aws-cloudtrail.json @@ -1,6 +1,6 @@ { "uuid": "e59ad81e-2050-480d-bbae-0e71c607c927", - "lastMigration": 27, + "lastMigration": 32, "name": "Aws cloudtrail", "endpointPrefix": "", "latency": 0, @@ -35,10 +35,11 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, "responseMode": null }, { @@ -50,7 +51,7 @@ "responses": [ { "uuid": "7dd41177-8d63-458a-abcc-b3af3ea8c9cd", - "body": "{\r\n\t\"Events\": [\r\n\t\t{{#each (dataRaw 'Events')}}\r\n\t\t {{#if (gt @index 0)}}\r\n\t\t ,\r\n\t\t {{/if}}\r\n \t\t{\r\n \t\t\t\"AccessKeyId\": \"{{AccessKeyId}}\",\r\n \t\t\t\"CloudTrailEvent\": \"{\\\"awsRegion\\\": \\\"eu-west-1\\\", {{#if Error}}\\\"errorCode\\\": \\\"{{ErrorCode}}\\\", \\\"errorMessage\\\": \\\"{{ErrorMessage}}\\\",{{/if}} \\\"eventCategory\\\": \\\"Management\\\", \\\"eventID\\\": \\\"{{EventId}}\\\", \\\"eventName\\\": \\\"{{EventName}}\\\", \\\"eventSource\\\": \\\"{{EventSource}}\\\", \\\"eventTime\\\": \\\"{{EventTime}}\\\", \\\"eventType\\\": \\\"{{EventType}}\\\", \\\"eventVersion\\\": \\\"1.08\\\", \\\"managementEvent\\\": true, \\\"readOnly\\\": true, \\\"recipientAccountId\\\": \\\"{{AccountId}}\\\", \\\"requestID\\\": \\\"{{ faker 'datatype.uuid' }}\\\", \\\"requestParameters\\\": null, \\\"responseElements\\\": null, \\\"sourceIPAddress\\\": \\\"{{ faker 'internet.ip' }}\\\", \\\"tlsDetails\\\": {\\\"cipherSuite\\\": \\\"ECDHE-RSA-AES128-GCM-SHA256\\\", \\\"clientProvidedHostHeader\\\": \\\"cloudtrail.eu-west-1.amazonaws.com\\\", \\\"tlsVersion\\\": \\\"TLSv1.2\\\"}, \\\"userAgent\\\": \\\"aws-cli/2.11.0 Python/3.11.2 Darwin/22.2.0 source/x86_64 prompt/off command/cloudtrail.lookup-events\\\", \\\"userIdentity\\\": {\\\"accessKeyId\\\": \\\"{{AccessKeyId}}\\\", \\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:sts::{{AccountId}}:assumed-role/{{UserRole}}/{{UserName}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}:{{UserName}}\\\", \\\"sessionContext\\\": {\\\"attributes\\\": {\\\"creationDate\\\": \\\"{{ faker 'date.past' EventTime }}\\\", \\\"mfaAuthenticated\\\": \\\"false\\\"}, \\\"sessionIssuer\\\": {\\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:iam::{{AccountId}}:role/{{UserRole}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}\\\", \\\"type\\\": \\\"Role\\\", \\\"userName\\\": \\\"{{UserRole}}\\\"}, \\\"webIdFederationData\\\": {}}, \\\"type\\\": \\\"{{ faker 'name.jobArea' }}\\\"}}\",\r\n \t\t\t\"EventId\": \"{{EventId}}\",\r\n \t\t\t\"EventName\": \"{{EventName}}\",\r\n \t\t\t\"EventSource\": \"{{EventSource}}\",\r\n \t\t\t\"EventTime\": \"{{EventTime}}\",\r\n \t\t\t\"ReadOnly\": \"true\",\r\n \t\t\t\"Resources\": [\r\n \t\t\t],\r\n \t\t\t\"Username\": \"{{UserName}}\"\r\n \t\t}\r\n\t\t{{/each}}\r\n\t]\r\n\t{{#if (gte (indexOf (urlParam 'NextToken') 'true' 0) 0)}}\r\n\t {{#unless (includes (stringify (body)) 'NextToken')}}\r\n\t\t ,\"NextToken\": \"{{ faker 'random.alphaNumeric' 64 casing='upper' }}\"\r\n\t\t{{/unless}}\r\n\t{{/if}}\r\n}", + "body": "{\r\n\t\"Events\": [\r\n\t\t{{#each (dataRaw 'EventsData')}}\r\n\t\t {{#if (gt @index 0)}}\r\n\t\t ,\r\n\t\t {{/if}}\r\n \t\t{\r\n \t\t\t\"AccessKeyId\": \"{{AccessKeyId}}\",\r\n \t\t\t\"CloudTrailEvent\": \"{\\\"awsRegion\\\": \\\"eu-west-1\\\", {{#if Error}}\\\"errorCode\\\": \\\"{{ErrorCode}}\\\", \\\"errorMessage\\\": \\\"{{ErrorMessage}}\\\",{{/if}} \\\"eventCategory\\\": \\\"Management\\\", \\\"eventID\\\": \\\"{{EventId}}\\\", \\\"eventName\\\": \\\"{{EventName}}\\\", \\\"eventSource\\\": \\\"{{EventSource}}\\\", \\\"eventTime\\\": \\\"{{EventTime}}\\\", \\\"eventType\\\": \\\"{{EventType}}\\\", \\\"eventVersion\\\": \\\"1.08\\\", \\\"managementEvent\\\": true, \\\"readOnly\\\": true, \\\"recipientAccountId\\\": \\\"{{AccountId}}\\\", \\\"requestID\\\": \\\"{{ faker 'string.uuid' }}\\\", \\\"requestParameters\\\": null, \\\"responseElements\\\": null, \\\"sourceIPAddress\\\": \\\"{{ faker 'internet.ip' }}\\\", \\\"tlsDetails\\\": {\\\"cipherSuite\\\": \\\"ECDHE-RSA-AES128-GCM-SHA256\\\", \\\"clientProvidedHostHeader\\\": \\\"cloudtrail.eu-west-1.amazonaws.com\\\", \\\"tlsVersion\\\": \\\"TLSv1.2\\\"}, \\\"userAgent\\\": \\\"aws-cli/2.11.0 Python/3.11.2 Darwin/22.2.0 source/x86_64 prompt/off command/cloudtrail.lookup-events\\\", \\\"userIdentity\\\": {\\\"accessKeyId\\\": \\\"{{AccessKeyId}}\\\", \\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:sts::{{AccountId}}:assumed-role/{{UserRole}}/{{UserName}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}:{{UserName}}\\\", \\\"sessionContext\\\": {\\\"attributes\\\": {\\\"creationDate\\\": \\\"{{ faker 'date.past' EventTime }}\\\", \\\"mfaAuthenticated\\\": \\\"false\\\"}, \\\"sessionIssuer\\\": {\\\"accountId\\\": \\\"{{AccountId}}\\\", \\\"arn\\\": \\\"arn:aws:iam::{{AccountId}}:role/{{UserRole}}\\\", \\\"principalId\\\": \\\"{{PrincipalId}}\\\", \\\"type\\\": \\\"Role\\\", \\\"userName\\\": \\\"{{UserRole}}\\\"}, \\\"webIdFederationData\\\": {}}, \\\"type\\\": \\\"{{ faker 'person.jobArea' }}\\\"}}\",\r\n \t\t\t\"EventId\": \"{{EventId}}\",\r\n \t\t\t\"EventName\": \"{{EventName}}\",\r\n \t\t\t\"EventSource\": \"{{EventSource}}\",\r\n \t\t\t\"EventTime\": \"{{EventTime}}\",\r\n \t\t\t\"ReadOnly\": \"true\",\r\n \t\t\t\"Resources\": [\r\n \t\t\t],\r\n \t\t\t\"Username\": \"{{UserName}}\"\r\n \t\t}\r\n\t\t{{/each}}\r\n\t]\r\n\t{{#if (gte (indexOf (urlParam 'NextToken') 'true' 0) 0)}}\r\n\t {{#unless (includes (stringify (body)) 'NextToken')}}\r\n\t\t ,\"NextToken\": \"{{ faker 'string.alphanumeric' 64 casing='upper' }}\"\r\n\t\t{{/unless}}\r\n\t{{/if}}\r\n}", "latency": 0, "statusCode": 200, "label": "", @@ -63,10 +64,11 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, "responseMode": null } ], @@ -112,19 +114,20 @@ } ], "data": [ - { - "uuid": "76dec2a5-ff63-4e81-9611-94b900ab16e1", - "id": "c5kh", - "name": "EventsData", - "documentation": "", - "value": "[\n {{#each (dataRaw 'EventsTypeData')}}\n {{#if (gte @isEvent 1)}}\n ,\n {{/if}}\n {{setVar 'isEvent' (add (urlParam name) @isEvent)}}\n {{#repeat (urlParam name comma=true)}}\n {\n \"AccessKeyId\": \"{{ faker 'random.alphaNumeric' 20 casing='upper' }}\",\n \"AccountId\": \"{{ faker 'random.numeric' 12 }}\",\n \"Error\": {{error}},\n {{#if error}}\n \"ErrorCode\": \"{{errorCode}}\",\n\t \"ErrorMessage\": \"{{errorMessage}}\",\n {{/if}}\n \"EventId\": \"{{ faker 'datatype.uuid' }}\",\n \"EventName\": \"{{oneOf (array 'LookupEvents' 'ListInstanceAssociations' 'AssumeRoleWithWebIdentity')}}\",\n \"EventSource\": \"{{oneOf (array 'cloudtrail.amazonaws.com' 'ssm.amazonaws.com' 'sts.amazonaws.com')}}\",\n \"EventTime\": \"{{ faker 'date.recent' }}\",\n \"EventType\": \"{{name}}\",\n \"PrincipalId\": \"{{ faker 'random.alphaNumeric' 20 casing='upper' }}\",\n \"UserName\": \"{{ faker 'internet.userName' }}\",\n \"UserRole\": \"{{ faker 'name.jobType' }}\"\n }\n {{/repeat}}\n {{/each}}\n]" - }, { "uuid": "5dce6340-bade-4336-8041-50fd22570055", "id": "nu28", "name": "EventsTypeData", "documentation": "", "value": "[\n {\n \"name\": \"AwsApiCall\",\n \"error\": false\n },\n {\n \"name\": \"AwsServiceEvent\",\n \"error\": false\n },\n {\n \"name\": \"AwsConsoleAction\",\n \"error\": true,\n \t\"errorCode\": \"ThrottlingException\",\n \t\"errorMessage\": \"Rate exceeded error\"\n },\n {\n \"name\": \"AwsConsoleSignIn\",\n \"error\": true,\n \"errorCode\": \"LoginErrorException\",\n \"errorMessage\": \"Login error\"\n }\n]" + }, + { + "uuid": "76dec2a5-ff63-4e81-9611-94b900ab16e1", + "id": "c5kh", + "name": "EventsData", + "documentation": "", + "value": "[\n {{#each (dataRaw 'EventsTypeData')}}\n {{#if (gte @isEvent 1)}}\n ,\n {{/if}}\n {{setVar 'isEvent' (add (urlParam name) @isEvent)}}\n {{#repeat (urlParam name comma=true)}}\n {\n \"AccessKeyId\": \"{{ faker 'string.alphanumeric' 20 casing='upper' }}\",\n \"AccountId\": \"{{ faker 'string.numeric' 12 }}\",\n \"Error\": {{error}},\n {{#if error}}\n \"ErrorCode\": \"{{errorCode}}\",\n\t \"ErrorMessage\": \"{{errorMessage}}\",\n {{/if}}\n \"EventId\": \"{{ faker 'string.uuid' }}\",\n \"EventName\": \"{{oneOf (array 'LookupEvents' 'ListInstanceAssociations' 'AssumeRoleWithWebIdentity')}}\",\n \"EventSource\": \"{{oneOf (array 'cloudtrail.amazonaws.com' 'ssm.amazonaws.com' 'sts.amazonaws.com')}}\",\n \"EventTime\": \"{{ faker 'date.recent' }}\",\n \"EventType\": \"{{name}}\",\n \"PrincipalId\": \"{{ faker 'string.alphanumeric' 20 casing='upper' }}\",\n \"UserName\": \"{{ faker 'internet.userName' }}\",\n \"UserRole\": \"{{ faker 'person.jobType' }}\"\n }\n {{/repeat}}\n {{/each}}\n]" } - ] + ], + "callbacks": [] } \ No newline at end of file diff --git a/tests/resources/mockoon/cloud-azure-policyinsights-policystates.json b/tests/resources/mockoon/cloud-azure-policyinsights-policystates.json index 9163ce351f..d9f5634e0b 100644 --- a/tests/resources/mockoon/cloud-azure-policyinsights-policystates.json +++ b/tests/resources/mockoon/cloud-azure-policyinsights-policystates.json @@ -1,11 +1,11 @@ { "uuid": "101906e9-f832-416c-8781-880c33a0a778", - "lastMigration": 25, + "lastMigration": 32, "name": "Azure API", "endpointPrefix": "", "latency": 0, "port": 3000, - "hostname": "0.0.0.0", + "hostname": "", "folders": [], "routes": [ { @@ -16,7 +16,7 @@ "responses": [ { "uuid": "0c775d57-8661-4c4f-9f30-a3a134d6d09c", - "body": "{\n \"access_token\": \"token\",\n \"expires_on\": \"{{ faker 'random.numeric' 10 }}\"\n}", + "body": "{\n \"access_token\": \"token\",\n \"expires_on\": \"{{ faker 'string.numeric' 10 }}\"\n}", "latency": 0, "statusCode": 200, "label": "", @@ -29,11 +29,13 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, - "responseMode": null + "responseMode": null, + "type": "http" }, { "uuid": "3f190dd9-690a-413a-bafa-5c9d369b7d22", @@ -56,11 +58,13 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, - "responseMode": null + "responseMode": null, + "type": "http" }, { "uuid": "31c8940d-4623-444c-92e1-f340fe74b5b3", @@ -83,11 +87,13 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, - "responseMode": null + "responseMode": null, + "type": "http" }, { "uuid": "13bf6e0e-8843-4681-942e-404b01326f32", @@ -110,11 +116,13 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, - "responseMode": null + "responseMode": null, + "type": "http" }, { "uuid": "1eb461f8-c128-432b-a7ca-7ddd71c28fa4", @@ -137,11 +145,13 @@ "rulesOperator": "OR", "disableTemplating": false, "fallbackTo404": false, - "default": true + "default": true, + "crudKey": "id", + "callbacks": [] } ], - "enabled": true, - "responseMode": null + "responseMode": null, + "type": "http" } ], "rootChildren": [ @@ -197,5 +207,6 @@ "value": "" } ], - "data": [] + "data": [], + "callbacks": [] } \ No newline at end of file From f31a7c2021c4d4cbd3a8f5f5b00fddc539cbc851 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:58:36 +0100 Subject: [PATCH 27/63] Ctor 302 windows services decode filter (#4955) Co-authored-by: Roman Morandell <46994680+rmorandell-pgum@users.noreply.github.com> --- src/os/windows/snmp/mode/service.pm | 1 + .../functional/snmp/os-windows-services.robot | 70 ++ .../snmp/os_windows_services_en.snmpwalk | 840 ++++++++++++++++++ .../snmp/os_windows_services_fr.snmpwalk | 400 +++++++++ 4 files changed, 1311 insertions(+) create mode 100644 tests/functional/snmp/os-windows-services.robot create mode 100644 tests/resources/snmp/os_windows_services_en.snmpwalk create mode 100644 tests/resources/snmp/os_windows_services_fr.snmpwalk diff --git a/src/os/windows/snmp/mode/service.pm b/src/os/windows/snmp/mode/service.pm index 705631edb3..9a0a24a28d 100644 --- a/src/os/windows/snmp/mode/service.pm +++ b/src/os/windows/snmp/mode/service.pm @@ -212,6 +212,7 @@ sub manage_selection { my $instance = $1 . '.' . $2; my $name = $self->{output}->decode(join('', map(chr($_), split(/\./, $2)))); + $self->{option_results}->{filter_name} = $self->{output}->decode($self->{option_results}->{filter_name}); next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && $name !~ /$self->{option_results}->{filter_name}/); diff --git a/tests/functional/snmp/os-windows-services.robot b/tests/functional/snmp/os-windows-services.robot new file mode 100644 index 0000000000..33f8103172 --- /dev/null +++ b/tests/functional/snmp/os-windows-services.robot @@ -0,0 +1,70 @@ +*** Settings *** +Documentation Linux Local Systemd-sc-status + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} --plugin=os::windows::snmp::plugin +... --mode=service +... --hostname=127.0.0.1 +... --snmp-port=2024 + +*** Test Cases *** +Windows Services EN ${tc}/x + [Documentation] Full ASCII + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --snmp-community=os_windows_services_en + ... --filter-name='${filter}' + ... ${extra_option} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc filter extra_option expected_result -- + ... 1 ${EMPTY} ${EMPTY} OK: All services are ok | 'services.total.count'=168;;;0; 'services.active.count'=168;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 2 toto ${EMPTY} OK: ${SPACE}| 'services.total.count'=0;;;0; 'services.active.count'=0;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 3 toto --critical-active=1: CRITICAL: Number of services active: 0 | 'services.total.count'=0;;;0; 'services.active.count'=0;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 4 ${EMPTY} --critical-active=1: OK: All services are ok | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 5 ${EMPTY} --critical-active=1:1 CRITICAL: Number of services active: 168 | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:1;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + + +Windows Services FR ${tc}/x + [Documentation] Systemd version < 248 + [Tags] os linux local + ${command} Catenate + ... ${CMD} + ... --snmp-community=os_windows_services_fr + ... --filter-name='${filter}' + ... ${extra_option} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc filter extra_option expected_result -- + ... 1 ${EMPTY} ${EMPTY} OK: All services are ok | 'services.total.count'=80;;;0; 'services.active.count'=80;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 2 toto ${EMPTY} OK: ${SPACE}| 'services.total.count'=0;;;0; 'services.active.count'=0;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 3 toto --critical-active=1: CRITICAL: Number of services active: 0 | 'services.total.count'=0;;;0; 'services.active.count'=0;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 4 ${EMPTY} --critical-active=1: OK: All services are ok | 'services.total.count'=80;;;0; 'services.active.count'=80;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 5 ${EMPTY} --critical-active=1:1 CRITICAL: Number of services active: 80 | 'services.total.count'=80;;;0; 'services.active.count'=80;;1:1;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 6 .v.nement --critical-active=1: OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 7 \xe9v\xe9nement ${EMPTY} OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + ... 8 SNMP ${EMPTY} OK: Service 'Service SNMP' state is 'active' [installed state: 'installed'] | 'services.total.count'=1;;;0; 'services.active.count'=1;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; + + diff --git a/tests/resources/snmp/os_windows_services_en.snmpwalk b/tests/resources/snmp/os_windows_services_en.snmpwalk new file mode 100644 index 0000000000..6fe53bac2c --- /dev/null +++ b/tests/resources/snmp/os_windows_services_en.snmpwalk @@ -0,0 +1,840 @@ +.1.3.6.1.4.1.77.1.2.3.1.1.5.80.68.70.50.52 = STRING: "PDF24" +.1.3.6.1.4.1.77.1.2.3.1.1.5.80.111.119.101.114 = STRING: "Power" +.1.3.6.1.4.1.77.1.2.3.1.1.6.80.97.110.71.80.83 = STRING: "PanGPS" +.1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114 = STRING: "Server" +.1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115 = STRING: "Themes" +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain" +.1.3.6.1.4.1.77.1.2.3.1.1.9.65.112.115.73.110.115.83.118.99 = STRING: "ApsInsSvc" +.1.3.6.1.4.1.77.1.2.3.1.1.9.73.80.32.72.101.108.112.101.114 = STRING: "IP Helper" +.1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121 = STRING: "Telephony" +.1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116 = STRING: "WebClient" +.1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116 = STRING: "DNS Client" +.1.3.6.1.4.1.77.1.2.3.1.1.10.68.97.116.97.32.85.115.97.103.101 = STRING: "Data Usage" +.1.3.6.1.4.1.77.1.2.3.1.1.10.83.109.97.114.116.32.67.97.114.100 = STRING: "Smart Card" +.1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116 = STRING: "DHCP Client" +.1.3.6.1.4.1.77.1.2.3.1.1.11.83.121.85.73.85.69.120.116.83.118.99 = STRING: "SyUIUExtSvc" +.1.3.6.1.4.1.77.1.2.3.1.1.11.84.105.109.101.32.66.114.111.107.101.114 = STRING: "Time Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110 = STRING: "Workstation" +.1.3.6.1.4.1.77.1.2.3.1.1.12.69.108.97.110.32.83.101.114.118.105.99.101 = STRING: "Elan Service" +.1.3.6.1.4.1.77.1.2.3.1.1.12.83.78.77.80.32.83.101.114.118.105.99.101 = STRING: "SNMP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.12.85.115.101.114.32.77.97.110.97.103.101.114 = STRING: "User Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = STRING: "AVCTP service" +.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging" +.1.3.6.1.4.1.77.1.2.3.1.1.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = STRING: "Logi Options+" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = STRING: "Phone Service" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = STRING: "Plug and Play" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = STRING: "Print Spooler" +.1.3.6.1.4.1.77.1.2.3.1.1.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = STRING: "Windows Audio" +.1.3.6.1.4.1.77.1.2.3.1.1.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = STRING: "SSDP Discovery" +.1.3.6.1.4.1.77.1.2.3.1.1.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = STRING: "Task Scheduler" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = STRING: "Windows Backup" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = STRING: "Windows Search" +.1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = STRING: "Security Center" +.1.3.6.1.4.1.77.1.2.3.1.1.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = STRING: "Storage Service" +.1.3.6.1.4.1.77.1.2.3.1.1.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WLAN AutoConfig" +.1.3.6.1.4.1.77.1.2.3.1.1.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WWAN AutoConfig" +.1.3.6.1.4.1.77.1.2.3.1.1.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = STRING: "Sync Host_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = STRING: "CNG Key Isolation" +.1.3.6.1.4.1.77.1.2.3.1.1.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = STRING: "COM+ Event System" +.1.3.6.1.4.1.77.1.2.3.1.1.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = STRING: "Lenovo PM Service" +.1.3.6.1.4.1.77.1.2.3.1.1.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Windows Event Log" +.1.3.6.1.4.1.77.1.2.3.1.1.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = STRING: "Credential Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = STRING: "IPsec Policy Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = STRING: "Microsoft Passport" +.1.3.6.1.4.1.77.1.2.3.1.1.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = STRING: "VMware NAT Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = STRING: "Contact Data_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Geolocation Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = STRING: "RPC Endpoint Mapper" +.1.3.6.1.4.1.77.1.2.3.1.1.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = STRING: "VMware DHCP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = STRING: "Web Account Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = STRING: "Application Identity" +.1.3.6.1.4.1.77.1.2.3.1.1.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Data Sharing Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = STRING: "Host Network Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = STRING: "LenovoVantageService" +.1.3.6.1.4.1.77.1.2.3.1.1.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = STRING: "Network List Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = STRING: "PrintWorkflow_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = STRING: "System Events Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = STRING: "User Profile Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = STRING: "Base Filtering Engine" +.1.3.6.1.4.1.77.1.2.3.1.1.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = STRING: "Epson Scanner Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = STRING: "FirmwareUpdateService" +.1.3.6.1.4.1.77.1.2.3.1.1.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = STRING: "FusionInventory Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Local Session Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = STRING: "Realtek Audio Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = STRING: "SQL Server VSS Writer" +.1.3.6.1.4.1.77.1.2.3.1.1.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = STRING: "TCP/IP NetBIOS Helper" +.1.3.6.1.4.1.77.1.2.3.1.1.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = STRING: "Cryptographic Services" +.1.3.6.1.4.1.77.1.2.3.1.1.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Display Policy Service" +.1.3.6.1.4.1.77.1.2.3.1.1.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = STRING: "Dolby DAX2 API Service" +.1.3.6.1.4.1.77.1.2.3.1.1.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = STRING: "Application Information" +.1.3.6.1.4.1.77.1.2.3.1.1.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = STRING: "Certificate Propagation" +.1.3.6.1.4.1.77.1.2.3.1.1.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = STRING: "Cherry Device Interface" +.1.3.6.1.4.1.77.1.2.3.1.1.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = STRING: "Diagnostic Service Host" +.1.3.6.1.4.1.77.1.2.3.1.1.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = STRING: "Remote Desktop Services" +.1.3.6.1.4.1.77.1.2.3.1.1.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = STRING: "Thunderbolt(TM) Service" +.1.3.6.1.4.1.77.1.2.3.1.1.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = STRING: "User Data Access_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Radio Management Service" +.1.3.6.1.4.1.77.1.2.3.1.1.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = STRING: "Shell Hardware Detection" +.1.3.6.1.4.1.77.1.2.3.1.1.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = STRING: "State Repository Service" +.1.3.6.1.4.1.77.1.2.3.1.1.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = STRING: "User Data Storage_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = STRING: "Windows Security Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Diagnostic Policy Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = STRING: "Lenovo EasyResume Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = STRING: "Network Connection Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = STRING: "Security Accounts Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = STRING: "WatchGuard SSLVPN Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = STRING: "Windows Biometric Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = STRING: "Windows Defender Firewall" +.1.3.6.1.4.1.77.1.2.3.1.1.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Device Association Service" +.1.3.6.1.4.1.77.1.2.3.1.1.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = STRING: "Network Location Awareness" +.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Windows Connection Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = STRING: "Windows Font Cache Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Display Enhancement Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = STRING: "Lenovo Hotkey Client Loader" +.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = STRING: "OpenVPN Interactive Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = STRING: "Payments and NFC/SE Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = STRING: "Remote Procedure Call (RPC)" +.1.3.6.1.4.1.77.1.2.3.1.1.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = STRING: "Update Orchestrator Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = STRING: "Adobe Acrobat Update Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = STRING: "DCOM Server Process Launcher" +.1.3.6.1.4.1.77.1.2.3.1.1.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = STRING: "Encrypting File System (EFS)" +.1.3.6.1.4.1.77.1.2.3.1.1.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = STRING: "HP Print Scan Doctor Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = STRING: "Microsoft IIS Administration" +.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = STRING: "Microsoft Passport Container" +.1.3.6.1.4.1.77.1.2.3.1.1.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = STRING: "Remote Desktop Configuration" +.1.3.6.1.4.1.77.1.2.3.1.1.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "VMware Authorization Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = Hex-STRING: 74 65 73 74 73 65 72 76 69 63 65 20 C3 BC C3 A4 C3 B6 C3 A1 C3 A0 20 28 31 32 33 29 +.1.3.6.1.4.1.77.1.2.3.1.1.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Clipboard User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = STRING: "FortiClient Service Scheduler" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = STRING: "SonicWall NetExtender Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = STRING: "Human Interface Device Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Network Virtualization Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = STRING: "Windows Audio Endpoint Builder" +.1.3.6.1.4.1.77.1.2.3.1.1.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = STRING: "Application Host Helper Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = STRING: "Microsoft Store Install Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = STRING: "Microsoft Update Health Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Network Store Interface Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = STRING: "OpenVPN Agent agent_ovpnconnect" +.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = STRING: "Windows Image Acquisition (WIA)" +.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Windows License Manager Service" +.1.3.6.1.4.1.77.1.2.3.1.1.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = STRING: "Client License Service (ClipSVC)" +.1.3.6.1.4.1.77.1.2.3.1.1.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = STRING: "Distributed Link Tracking Client" +.1.3.6.1.4.1.77.1.2.3.1.1.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = STRING: "Function Discovery Provider Host" +.1.3.6.1.4.1.77.1.2.3.1.1.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Remote Access Connection Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = STRING: "AppX Deployment Service (AppXSVC)" +.1.3.6.1.4.1.77.1.2.3.1.1.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Capability Access Manager Service" +.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = STRING: "Internet Connection Sharing (ICS)" +.1.3.6.1.4.1.77.1.2.3.1.1.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Event Notification Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "BitLocker Drive Encryption Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = STRING: "Connected Devices Platform Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Intel(R) PROSet/Wireless Event Log" +.1.3.6.1.4.1.77.1.2.3.1.1.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = STRING: "Windows Management Instrumentation" +.1.3.6.1.4.1.77.1.2.3.1.1.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = STRING: "IKE and AuthIP IPsec Keying Modules" +.1.3.6.1.4.1.77.1.2.3.1.1.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = STRING: "Remote Procedure Call (RPC) Locator" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "SonicWall Client Protection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = STRING: "System Guard Runtime Monitor Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Interface Foundation Service" +.1.3.6.1.4.1.77.1.2.3.1.1.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = STRING: "DevQuery Background Discovery Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access AlwaysOn Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = STRING: "Microsoft Intune Management Extension" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Office Click-to-Run Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = STRING: "Microsoft Windows SMS Router Service." +.1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = STRING: "Background Tasks Infrastructure Service" +.1.3.6.1.4.1.77.1.2.3.1.1.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = STRING: "Function Discovery Resource Publication" +.1.3.6.1.4.1.77.1.2.3.1.1.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = STRING: "Program Compatibility Assistant Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = STRING: "Connected User Experiences and Telemetry" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HDCP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HECI Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Graphics Command Center Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = STRING: "Secure Socket Tunneling Protocol Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = STRING: "WinHTTP Web Proxy Auto-Discovery Service" +.1.3.6.1.4.1.77.1.2.3.1.1.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = STRING: "Windows Push Notifications System Service" +.1.3.6.1.4.1.77.1.2.3.1.1.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Intel(R) HD Graphics Control Panel Service" +.1.3.6.1.4.1.77.1.2.3.1.1.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Lenovo Intelligent Thermal Solution Service" +.1.3.6.1.4.1.77.1.2.3.1.1.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Touch Keyboard and Handwriting Panel Service" +.1.3.6.1.4.1.77.1.2.3.1.1.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Connected Devices Platform User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Windows Push Notifications User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = STRING: "Remote Desktop Services UserMode Port Redirector" +.1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = STRING: "Windows Presentation Foundation Font Cache 3.0.0.0" +.1.3.6.1.4.1.77.1.2.3.1.1.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Windows Defender Advanced Threat Protection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = STRING: "Intel(R) Management Engine WMI Provider Registration" +.1.3.6.1.4.1.77.1.2.3.1.1.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Platform and Thermal Framework service" +.1.3.6.1.4.1.77.1.2.3.1.1.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Network Inspection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Application Loader Host Interface Service" +.1.3.6.1.4.1.77.1.2.3.1.1.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Management and Security Application Local Management Service" +.1.3.6.1.4.1.77.1.2.3.1.1.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Device Management Wireless Application Protocol (WAP) Push message Routing Service" +.1.3.6.1.4.1.77.1.2.3.1.2.5.80.68.70.50.52 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.5.80.111.119.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.80.97.110.71.80.83 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.83.101.114.118.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.84.104.101.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.65.112.115.73.110.115.83.118.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.73.80.32.72.101.108.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.84.101.108.101.112.104.111.110.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.87.101.98.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.3.5.80.68.70.50.52 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.80.97.110.71.80.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.83.101.114.118.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.84.104.101.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.84.101.108.101.112.104.111.110.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.5.80.68.70.50.52 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.6.80.97.110.71.80.83 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.6.83.101.114.118.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.6.84.104.101.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.65.112.115.73.110.115.83.118.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.73.80.32.72.101.108.112.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.87.101.98.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.5.80.68.70.50.52 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.80.97.110.71.80.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.84.104.101.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 diff --git a/tests/resources/snmp/os_windows_services_fr.snmpwalk b/tests/resources/snmp/os_windows_services_fr.snmpwalk new file mode 100644 index 0000000000..668ba5ba88 --- /dev/null +++ b/tests/resources/snmp/os_windows_services_fr.snmpwalk @@ -0,0 +1,400 @@ +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.101.114.118.101.117.114 = STRING: "Serveur" +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain" +.1.3.6.1.4.1.77.1.2.3.1.1.7.84.104.195.168.109.101.115 = Hex-STRING: 54 68 C3 A8 6D 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.10.67.108.105.101.110.116.32.68.78.83 = STRING: "Client DNS" +.1.3.6.1.4.1.77.1.2.3.1.1.11.67.108.105.101.110.116.32.68.72.67.80 = STRING: "Client DHCP" +.1.3.6.1.4.1.77.1.2.3.1.1.12.65.108.105.109.101.110.116.97.116.105.111.110 = STRING: "Alimentation" +.1.3.6.1.4.1.77.1.2.3.1.1.12.83.101.114.118.105.99.101.32.83.78.77.80 = STRING: "Service SNMP" +.1.3.6.1.4.1.77.1.2.3.1.1.12.86.77.119.97.114.101.32.84.111.111.108.115 = STRING: "VMware Tools" +.1.3.6.1.4.1.77.1.2.3.1.1.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = STRING: "Assistance IP" +.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = STRING: "Plug-and-Play" +.1.3.6.1.4.1.77.1.2.3.1.1.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = STRING: "Temps Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = STRING: "Windows Update" +.1.3.6.1.4.1.77.1.2.3.1.1.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = STRING: "Station de travail" +.1.3.6.1.4.1.77.1.2.3.1.1.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = STRING: "Service de stockage" +.1.3.6.1.4.1.77.1.2.3.1.1.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 52 65 67 69 73 74 72 65 20 C3 A0 20 64 69 73 74 61 6E 63 65 +.1.3.6.1.4.1.77.1.2.3.1.1.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = Hex-STRING: 49 73 6F 6C 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 20 43 4E 47 +.1.3.6.1.4.1.77.1.2.3.1.1.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = STRING: "Services de chiffrement" +.1.3.6.1.4.1.77.1.2.3.1.1.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = Hex-STRING: 53 70 6F 75 6C 65 75 72 20 64 E2 80 99 69 6D 70 72 65 73 73 69 6F 6E +.1.3.6.1.4.1.77.1.2.3.1.1.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = Hex-STRING: 50 6C 61 6E 69 66 69 63 61 74 65 75 72 20 64 65 20 74 C3 A2 63 68 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = Hex-STRING: 41 70 70 6C 69 63 61 74 69 6F 6E 20 73 79 73 74 C3 A8 6D 65 20 43 4F 4D 2B +.1.3.6.1.4.1.77.1.2.3.1.1.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = STRING: "Optimisation de livraison" +.1.3.6.1.4.1.77.1.2.3.1.1.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = STRING: "Pare-feu Windows Defender" +.1.3.6.1.4.1.77.1.2.3.1.1.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = Hex-STRING: 44 C3 A9 74 65 63 74 69 6F 6E 20 6D 61 74 C3 A9 72 69 65 6C 20 6E 6F 79 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = STRING: "Moteur de filtrage de base" +.1.3.6.1.4.1.77.1.2.3.1.1.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = Hex-STRING: 53 65 72 76 69 63 65 20 4C 69 73 74 65 20 64 65 73 20 72 C3 A9 73 65 61 75 78 +.1.3.6.1.4.1.77.1.2.3.1.1.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = STRING: "Gestionnaire de comptes web" +.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = STRING: "Assistance NetBIOS sur TCP/IP" +.1.3.6.1.4.1.77.1.2.3.1.1.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = STRING: "Gestionnaire des utilisateurs" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = STRING: "Service de profil utilisateur" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = Hex-STRING: 53 79 73 74 C3 A8 6D 65 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 20 43 4F 4D 2B +.1.3.6.1.4.1.77.1.2.3.1.1.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 67 72 6F 75 70 65 +.1.3.6.1.4.1.77.1.2.3.1.1.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = STRING: "Gestionnaire de session locale" +.1.3.6.1.4.1.77.1.2.3.1.1.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = Hex-STRING: 4A 6F 75 72 6E 61 6C 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = STRING: "Infrastructure de gestion Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = STRING: "Lanceur de processus serveur DCOM" +.1.3.6.1.4.1.77.1.2.3.1.1.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 27 61 66 66 69 63 68 61 67 65 +.1.3.6.1.4.1.77.1.2.3.1.1.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = Hex-STRING: 41 70 70 65 6C 20 64 65 20 70 72 6F 63 C3 A9 64 75 72 65 20 64 69 73 74 61 6E 74 65 20 28 52 50 43 29 +.1.3.6.1.4.1.77.1.2.3.1.1.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 75 69 76 69 20 64 65 20 6C 69 65 6E 20 64 69 73 74 72 69 62 75 C3 A9 +.1.3.6.1.4.1.77.1.2.3.1.1.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = STRING: "Service de cache de police Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = STRING: "Gestionnaire des connexions Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = STRING: "Mappeur de point de terminaison RPC" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 64 69 61 67 6E 6F 73 74 69 63 +.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 49 6E 74 65 72 66 61 63 65 20 64 75 20 6D 61 67 61 73 69 6E 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = STRING: "Service antivirus Microsoft Defender" +.1.3.6.1.4.1.77.1.2.3.1.1.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = Hex-STRING: 43 6F 6E 6E 61 69 73 73 61 6E 63 65 20 64 65 73 20 65 6D 70 6C 61 63 65 6D 65 6E 74 73 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 20 63 6F 6D 70 74 65 73 20 64 65 20 73 C3 A9 63 75 72 69 74 C3 A9 +.1.3.6.1.4.1.77.1.2.3.1.1.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = Hex-STRING: 4D 65 74 74 72 65 20 C3 A0 20 6A 6F 75 72 20 6C 65 20 73 65 72 76 69 63 65 20 4F 72 63 68 65 73 74 72 61 74 6F 72 +.1.3.6.1.4.1.77.1.2.3.1.1.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 70 6C 6F 69 65 6D 65 6E 74 20 41 70 70 58 20 28 41 70 70 58 53 56 43 29 +.1.3.6.1.4.1.77.1.2.3.1.1.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = STRING: "VMware Alias Manager and Ticket Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = STRING: "Serveur Gestionnaire de licences Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 64 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65 +.1.3.6.1.4.1.77.1.2.3.1.1.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = Hex-STRING: 43 6F 6F 72 64 69 6E 61 74 65 75 72 20 64 65 20 74 72 61 6E 73 61 63 74 69 6F 6E 73 20 64 69 73 74 72 69 62 75 C3 A9 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = STRING: "Service State Repository (StateRepository)" +.1.3.6.1.4.1.77.1.2.3.1.1.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = STRING: "Service utilisateur du Presse-papiers_76c3f" +.1.3.6.1.4.1.77.1.2.3.1.1.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = STRING: "Assistant Connexion avec un compte Microsoft" +.1.3.6.1.4.1.77.1.2.3.1.1.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = Hex-STRING: 47 65 73 74 69 6F 6E 20 C3 A0 20 64 69 73 74 61 6E 63 65 20 64 65 20 57 69 6E 64 6F 77 73 20 28 47 65 73 74 69 6F 6E 20 57 53 4D 29 +.1.3.6.1.4.1.77.1.2.3.1.1.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 68 6F 72 61 69 72 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = Hex-STRING: 4D 6F 64 75 6C 65 73 20 64 65 20 67 C3 A9 6E C3 A9 72 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 73 20 49 4B 45 20 65 74 20 41 75 74 68 49 50 +.1.3.6.1.4.1.77.1.2.3.1.1.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 65 73 20 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 +.1.3.6.1.4.1.77.1.2.3.1.1.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 69 6E 73 74 61 6C 6C 61 74 69 6F 6E 20 64 65 20 70 C3 A9 72 69 70 68 C3 A9 72 69 71 75 65 +.1.3.6.1.4.1.77.1.2.3.1.1.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 48 C3 B4 74 65 20 64 75 20 66 6F 75 72 6E 69 73 73 65 75 72 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73 +.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6A 6F 75 72 6E 61 6C 69 73 61 74 69 6F 6E 20 64 65 73 20 61 63 63 C3 A8 73 20 75 74 69 6C 69 73 61 74 65 75 72 +.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = Hex-STRING: 53 65 72 76 69 63 65 C2 A0 53 53 54 50 20 28 53 65 63 75 72 65 20 53 6F 63 6B 65 74 20 54 75 6E 6E 65 6C 69 6E 67 20 50 72 6F 74 6F 63 6F 6C 29 +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65 +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 74 72 61 6E 73 66 65 72 74 20 69 6E 74 65 6C 6C 69 67 65 6E 74 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 73 79 73 74 C3 A8 6D 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 73 20 50 75 73 68 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.1.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 64 E2 80 99 61 63 63 C3 A8 73 20 C3 A0 20 64 69 73 74 61 6E 63 65 +.1.3.6.1.4.1.77.1.2.3.1.1.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 61 63 63 C3 A8 73 20 61 75 78 20 66 6F 6E 63 74 69 6F 6E 6E 61 6C 69 74 C3 A9 73 +.1.3.6.1.4.1.77.1.2.3.1.1.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 50 75 62 6C 69 63 61 74 69 6F 6E 20 64 65 73 20 72 65 73 73 6F 75 72 63 65 73 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73 +.1.3.6.1.4.1.77.1.2.3.1.1.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6C E2 80 99 41 73 73 69 73 74 61 6E 74 20 43 6F 6D 70 61 74 69 62 69 6C 69 74 C3 A9 20 64 65 73 20 70 72 6F 67 72 61 6D 6D 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 66 72 61 73 74 72 75 63 74 75 72 65 20 64 65 73 20 74 C3 A2 63 68 65 73 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E +.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = STRING: "Service utilisateur de notifications Push Windows_76c3f" +.1.3.6.1.4.1.77.1.2.3.1.1.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = Hex-STRING: 45 78 70 C3 A9 72 69 65 6E 63 65 73 20 64 65 73 20 75 74 69 6C 69 73 61 74 65 75 72 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 20 65 74 20 74 C3 A9 6C C3 A9 6D C3 A9 74 72 69 65 +.1.3.6.1.4.1.77.1.2.3.1.1.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 63 6C 61 76 69 65 72 20 74 61 63 74 69 6C 65 20 65 74 20 64 75 20 76 6F 6C 65 74 20 64 E2 80 99 C3 A9 63 72 69 74 75 72 65 20 6D 61 6E 75 73 63 72 69 74 65 +.1.3.6.1.4.1.77.1.2.3.1.1.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 73 70 65 63 74 69 6F 6E 20 72 C3 A9 73 65 61 75 20 64 65 20 6C E2 80 99 61 6E 74 69 76 69 72 75 73 20 4D 69 63 72 6F 73 6F 66 74 20 44 65 66 65 6E 64 65 72 +.1.3.6.1.4.1.77.1.2.3.1.1.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = Hex-STRING: 53 65 72 76 69 63 65 20 70 6F 75 72 20 75 74 69 6C 69 73 61 74 65 75 72 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 E2 80 99 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 5F 37 36 63 33 66 +.1.3.6.1.4.1.77.1.2.3.1.1.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 61 75 74 6F 6D 61 74 69 71 75 65 20 64 65 20 50 72 6F 78 79 20 57 65 62 20 70 6F 75 72 20 6C 65 73 20 73 65 72 76 69 63 65 73 20 48 54 54 50 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.101.114.118.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.84.104.195.168.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.2.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.101.114.118.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.84.104.195.168.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.101.114.118.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.84.104.195.168.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.101.114.118.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.84.104.195.168.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 From b48c77d72a0c8fb862afe9248635cf46eb504d5d Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:02:57 +0100 Subject: [PATCH 28/63] Support the use of a regexp to filter interface IDs (#4956) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: –ykacherCentreon --- src/snmp_standard/mode/interfaces.pm | 96 +- .../functional/snmp/network-interfaces.robot | 71 + .../snmp/network-interfaces.snmpwalk | 4490 +++++++++++++++++ tests/resources/spellcheck/stopwords.t | 27 + 4 files changed, 4642 insertions(+), 42 deletions(-) create mode 100644 tests/functional/snmp/network-interfaces.robot create mode 100644 tests/resources/snmp/network-interfaces.snmpwalk diff --git a/src/snmp_standard/mode/interfaces.pm b/src/snmp_standard/mode/interfaces.pm index c5bd5de151..ceebc8bcd4 100644 --- a/src/snmp_standard/mode/interfaces.pm +++ b/src/snmp_standard/mode/interfaces.pm @@ -32,7 +32,7 @@ use Safe; # Calc functions ######################### sub custom_threshold_output { - my ($self, %options) = @_; + my ($self, %options) = @_; my $status = 'ok'; if (defined($self->{instance_mode}->{option_results}->{critical_status}) && $self->{instance_mode}->{option_results}->{critical_status} ne '' && @@ -278,7 +278,7 @@ sub custom_traffic_threshold { sub custom_traffic_output { my ($self, %options) = @_; - my ($traffic_value, $traffic_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{traffic_per_seconds}, network => 1); + my ($traffic_value, $traffic_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{traffic_per_seconds}, network => 1); return sprintf( 'Traffic %s : %s/s (%s)', ucfirst($self->{result_values}->{label}), $traffic_value . $traffic_unit, @@ -298,7 +298,7 @@ sub custom_traffic_calc { my $diff_traffic = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} } - $options{old_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} }); $self->{result_values}->{traffic_per_seconds} = $diff_traffic / $options{delta_time}; $self->{result_values}->{traffic_counter} = $options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref} }; - if (defined($options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}) && + if (defined($options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}) && $options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}} > 0) { $self->{result_values}->{traffic_prct} = $self->{result_values}->{traffic_per_seconds} * 100 / $options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}; $self->{result_values}->{speed} = $options{new_datas}->{$self->{instance} . '_speed_' . $options{extra_options}->{label_ref}}; @@ -402,10 +402,10 @@ sub custom_errors_calc { } my $errors = $options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} }; - my $errors_diff = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} } - + my $errors_diff = ($options{new_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} } - $options{old_datas}->{ $self->{instance} . '_' . $options{extra_options}->{label_ref1} . $options{extra_options}->{label_ref2} }); my $total = $options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'}; - my $total_diff = ($options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'} - + my $total_diff = ($options{new_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'} - $options{old_datas}->{$self->{instance} . '_total_' . $options{extra_options}->{label_ref1} . '_packets'}); $self->{result_values}->{prct} = 0; @@ -456,7 +456,7 @@ sub custom_speed_calc { sub set_counters_global { my ($self, %options) = @_; - push @{$self->{maps_counters}->{global}}, + push @{$self->{maps_counters}->{global}}, { label => 'total-port', filter => 'add_global', nlabel => 'total.interfaces.count', set => { key_values => [ { name => 'total_port' } ], output_template => 'Total port : %s', output_error_template => 'Total port : %s', @@ -509,7 +509,7 @@ sub set_counters_global { sub set_counters_status { my ($self, %options) = @_; - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'status', filter => 'add_status', threshold => 0, set => { key_values => $self->set_key_values_status(), closure_custom_calc => $self->can('custom_status_calc'), @@ -526,7 +526,7 @@ sub set_counters_traffic { return if ($self->{no_traffic} != 0 && $self->{no_set_traffic} != 0); - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'in-traffic', filter => 'add_traffic', nlabel => 'interface.traffic.in.bitspersecond', set => { key_values => $self->set_key_values_in_traffic(), closure_custom_calc => $self->can('custom_traffic_calc'), closure_custom_calc_extra_options => { label_ref => 'in' }, @@ -551,7 +551,7 @@ sub set_counters_errors { return if ($self->{no_errors} != 0 && $self->{no_set_errors} != 0); - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'in-discard', filter => 'add_errors', nlabel => 'interface.packets.in.discard.count', set => { key_values => [ { name => 'indiscard', diff => 1 }, { name => 'total_in_packets', diff => 1 }, { name => 'display' }, { name => 'mode_cast' } ], closure_custom_calc => $self->can('custom_errors_calc'), closure_custom_calc_extra_options => { label_ref1 => 'in', label_ref2 => 'discard' }, @@ -592,7 +592,7 @@ sub set_counters_cast { return if ($self->{no_cast} != 0 && $self->{no_set_cast} != 0); - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'in-ucast', filter => 'add_cast', nlabel => 'interface.packets.in.unicast.count', set => { key_values => [ { name => 'iucast', diff => 1 }, { name => 'imcast', diff => 1 }, { name => 'ibcast', diff => 1 }, { name => 'display' }, { name => 'mode_cast' } ], closure_custom_calc => $self->can('custom_cast_calc'), @@ -655,7 +655,7 @@ sub set_counters_speed { return if ($self->{no_speed} != 0 && $self->{no_set_speed} != 0); - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'speed', filter => 'add_speed', nlabel => 'interface.speed.bitspersecond', set => { key_values => [ { name => 'speed' }, { name => 'display' } ], closure_custom_calc => $self->can('custom_speed_calc'), @@ -676,7 +676,7 @@ sub set_counters_volume { return if ($self->{no_volume} != 0 && $self->{no_set_volume} != 0); - push @{$self->{maps_counters}->{int}}, + push @{$self->{maps_counters}->{int}}, { label => 'in-volume', filter => 'add_volume', nlabel => 'interface.volume.in.bytes', set => { key_values => [ { name => 'in_volume', diff => 1 }, { name => 'display' } ], output_template => 'Volume In : %.2f %s', @@ -927,13 +927,14 @@ sub new { bless $self, $class; $self->{no_oid_options} = defined($options{no_oid_options}) && $options{no_oid_options} =~ /^[01]$/ ? $options{no_oid_options} : 0; - $self->{no_interfaceid_options} = defined($options{no_interfaceid_options}) && $options{no_interfaceid_options} =~ /^[01]$/ ? + $self->{no_interfaceid_options} = defined($options{no_interfaceid_options}) && $options{no_interfaceid_options} =~ /^[01]$/ ? $options{no_interfaceid_options} : 0; $options{options}->add_options(arguments => { 'add-global' => { name => 'add_global' }, 'add-status' => { name => 'add_status' }, 'add-duplex-status' => { name => 'add_duplex_status' }, + 'regex-id' => { name => 'regex_id' }, 'warning-status:s' => { name => 'warning_status', default => $self->default_warning_status() }, 'critical-status:s' => { name => 'critical_status', default => $self->default_critical_status() }, 'check-metrics:s' => { name => 'check_metrics', default => $self->default_check_metrics() }, @@ -1042,7 +1043,7 @@ sub check_options { $self->{output}->add_option_msg(short_msg => 'Cannot use option --add-speed with --speed, --speed-in or --speed-out options.'); $self->{output}->option_exit(); } - + # If no options, we set status if (!defined($self->{option_results}->{add_global}) && !defined($self->{option_results}->{add_status}) && !defined($self->{option_results}->{add_traffic}) && @@ -1143,7 +1144,7 @@ sub reload_cache { if ($func = $self->can($self->{oids_label}->{ $self->{option_results}->{oid_display} }->{get})) { $func->($self, snmp_get => $snmp_get, name => $self->{option_results}->{oid_display}); } - if (defined($self->{option_results}->{oid_extra_display}) && + if (defined($self->{option_results}->{oid_extra_display}) && ($func = $self->can($self->{oids_label}->{ $self->{option_results}->{oid_extra_display} }->{get}))) { $func->($self, snmp_get => $snmp_get, name => $self->{option_results}->{oid_extra_display}); } @@ -1166,12 +1167,12 @@ sub reload_cache { $func = $self->can($self->{oids_label}->{$self->{option_results}->{oid_display}}->{cache}); $func->($self, result => $result, datas => $datas, name => $self->{option_results}->{oid_display}); } - if (defined($self->{option_results}->{oid_extra_display}) && $self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_display} && + if (defined($self->{option_results}->{oid_extra_display}) && $self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_display} && $self->{option_results}->{oid_extra_display} ne $self->{option_results}->{oid_filter}) { $func = $self->can($self->{oids_label}->{$self->{option_results}->{oid_extra_display}}->{cache}); $func->($self, result => $result, datas => $datas, name => $self->{option_results}->{oid_extra_display}); } - + $self->{statefile_cache}->write(data => $datas); } @@ -1205,11 +1206,17 @@ sub get_selection { } my $all_ids = $self->{statefile_cache}->get(name => 'all_ids'); - if (!defined($self->{option_results}->{use_name}) && defined($self->{option_results}->{interface}) + if (!defined($self->{option_results}->{use_name}) && defined($self->{option_results}->{interface}) && $self->{no_interfaceid_options} == 0) { - foreach (@{$all_ids}) { - if ($self->{option_results}->{interface} =~ /(^|\s|,)$_(\s*,|$)/) { - $self->add_selected_interface(id => $_); + + for my $id (@{$all_ids}) { + + if (defined($self->{option_results}->{regex_id}) # with option regex_id + and $id =~ /$self->{option_results}->{interface}/ # id must match the regex + or !defined($self->{option_results}->{regex_id}) # without the option + and $self->{option_results}->{interface} =~ /(^|\s|,)$id(\s*,|$)/ # the id must be part of the list + ) { + $self->add_selected_interface(id => $id); } } } else { @@ -1305,7 +1312,7 @@ sub load_cast { my ($self, %options) = @_; $self->set_oids_cast(); - if (!defined($self->{option_results}->{force_counters64})) { + if (!defined($self->{option_results}->{force_counters64})) { $self->{snmp}->load( oids => [ $self->{oid_ifInUcastPkts}, $self->{oid_ifInBroadcastPkts}, $self->{oid_ifInMulticastPkts}, @@ -1360,7 +1367,7 @@ sub manage_selection { my $custom_add_result_method = $self->can('custom_add_result'); $self->get_selection(); - $self->{array_interface_selected} = [keys %{$self->{int}}]; + $self->{array_interface_selected} = [keys %{$self->{int}}]; $self->load_status() if (defined($self->{option_results}->{add_status}) || defined($self->{option_results}->{add_global})); $self->load_errors() if (defined($self->{option_results}->{add_errors})); $self->load_traffic() if (defined($self->{option_results}->{add_traffic})); @@ -1372,7 +1379,7 @@ sub manage_selection { $self->{results} = $self->{snmp}->get_leef(); $self->pre_result(); - $self->add_result_global() if (defined($self->{option_results}->{add_global})); + $self->add_result_global() if (defined($self->{option_results}->{add_global})); foreach (@{$self->{array_interface_selected}}) { $self->add_result_status(instance => $_) if (defined($self->{option_results}->{add_status})); $self->add_result_traffic(instance => $_) if (defined($self->{option_results}->{add_traffic})); @@ -1383,7 +1390,7 @@ sub manage_selection { $self->$custom_add_result_method(instance => $_) if ($custom_add_result_method); } - $self->{cache_name} = 'snmpstandard_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . + $self->{cache_name} = 'snmpstandard_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . (defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')) . '_' . (defined($self->{option_results}->{interface}) ? md5_hex($self->{option_results}->{interface}) : md5_hex('all')) . '_' . md5_hex($self->{checking}); @@ -1444,12 +1451,12 @@ sub pre_result { $self->{map_speed_dsl}->[$i]->{speed_in} = $results->{ $self->{oid_adslAturCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } if (defined($results->{ $self->{oid_adslAturCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); $self->{map_speed_dsl}->[$i]->{speed_out} = $results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } - if (defined($results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); + if (defined($results->{ $self->{oid_adslAtucCurrAttainableRate} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); } elsif ($self->{results}->{ $self->{oid_iftype} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } == 251) { $self->{map_speed_dsl}->[$i]->{speed_in} = $results->{ $self->{oid_xdsl2LineStatusAttainableRateDs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateDs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); $self->{map_speed_dsl}->[$i]->{speed_out} = $results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} } - if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); + if (defined($results->{ $self->{oid_xdsl2LineStatusAttainableRateUs} . '.' . $self->{map_speed_dsl}->[$i]->{dst_index} })); } } } @@ -1458,7 +1465,7 @@ sub pre_result { sub add_result_status { my ($self, %options) = @_; - + $self->{int}->{$options{instance}}->{opstatus} = defined($self->{results}->{$self->{oid_opstatus} . '.' . $options{instance}}) ? $self->{oid_opstatus_mapping}->{$self->{results}->{$self->{oid_opstatus} . '.' . $options{instance}}} : undef; $self->{int}->{$options{instance}}->{admstatus} = defined($self->{results}->{$self->{oid_adminstatus} . '.' . $options{instance}}) ? $self->{oid_adminstatus_mapping}->{$self->{results}->{$self->{oid_adminstatus} . '.' . $options{instance}}} : undef; $self->{int}->{$options{instance}}->{duplexstatus} = defined($self->{results}->{$self->{oid_duplexstatus} . '.' . $options{instance}}) ? $self->{oid_duplexstatus_mapping}->{$self->{results}->{$self->{oid_duplexstatus} . '.' . $options{instance}}} : 'n/a'; @@ -1466,7 +1473,7 @@ sub add_result_status { sub add_result_errors { my ($self, %options) = @_; - + $self->{int}->{$options{instance}}->{indiscard} = $self->{results}->{$self->{oid_ifInDiscards} . '.' . $options{instance}}; $self->{int}->{$options{instance}}->{inerror} = $self->{results}->{$self->{oid_ifInErrors} . '.' . $options{instance}}; $self->{int}->{$options{instance}}->{outdiscard} = $self->{results}->{$self->{oid_ifOutDiscards} . '.' . $options{instance}}; @@ -1475,7 +1482,7 @@ sub add_result_errors { sub add_result_traffic { my ($self, %options) = @_; - + $self->{int}->{$options{instance}}->{mode_traffic} = 32; $self->{int}->{$options{instance}}->{in} = $self->{results}->{$self->{oid_in32} . '.' . $options{instance}}; $self->{int}->{$options{instance}}->{out} = $self->{results}->{$self->{oid_out32} . '.' . $options{instance}}; @@ -1510,7 +1517,7 @@ sub add_result_traffic { } else { $interface_speed = $self->{results}->{$self->{oid_speed32} . '.' . $options{instance}}; } - + $self->{int}->{$options{instance}}->{speed_in} = $interface_speed; $self->{int}->{$options{instance}}->{speed_out} = $interface_speed; @@ -1526,10 +1533,10 @@ sub add_result_traffic { $self->{int}->{$options{instance}}->{speed_out} = $self->{option_results}->{speed_out} * 1000000 if (defined($self->{option_results}->{speed_out}) && $self->{option_results}->{speed_out} ne ''); } } - + sub add_result_cast { my ($self, %options) = @_; - + $self->{int}->{$options{instance}}->{mode_cast} = 32; $self->{int}->{$options{instance}}->{iucast} = $self->{results}->{$self->{oid_ifInUcastPkts} . '.' . $options{instance}}; $self->{int}->{$options{instance}}->{ibcast} = defined($self->{results}->{$self->{oid_ifInBroadcastPkts} . '.' . $options{instance}}) ? $self->{results}->{$self->{oid_ifInBroadcastPkts} . '.' . $options{instance}} : 0; @@ -1551,11 +1558,11 @@ sub add_result_cast { $self->{int}->{$options{instance}}->{mode_cast} = 64; } } - + foreach (('iucast', 'imcast', 'ibcast', 'oucast', 'omcast', 'obcast')) { $self->{int}->{$options{instance}}->{$_} = 0 if (!defined($self->{int}->{$options{instance}}->{$_})); } - + # https://tools.ietf.org/html/rfc3635 : The IF-MIB octet counters # count the number of octets sent to or received from the layer below # this interface, whereas the packet counters count the number of @@ -1585,13 +1592,13 @@ sub add_result_speed { } else { $interface_speed = $self->{results}->{$self->{oid_speed32} . "." . $options{instance}}; } - + $self->{int}->{$options{instance}}->{speed} = $interface_speed; } sub add_result_volume { my ($self, %options) = @_; - + $self->{int}->{$options{instance}}->{mode_traffic} = 32; $self->{int}->{$options{instance}}->{in_volume} = $self->{results}->{$self->{oid_in32} . '.' . $options{instance}}; $self->{int}->{$options{instance}}->{out_volume} = $self->{results}->{$self->{oid_out32} . '.' . $options{instance}}; @@ -1683,15 +1690,20 @@ Units of thresholds for communication types (default: 'percent_delta') ('percent =item B<--nagvis-perfdata> -Display traffic perfdata to be compatible with nagvis widget. +Display traffic perfdata to be compatible with NagVis widget. =item B<--interface> -Set the interface (number expected) example: 1,2,... (empty means 'check all interfaces'). +Define the interface filter on IDs (OID indexes, e.g.: 1,2,...). If empty, all interfaces will be monitored. +To filter on interface names, see --name. =item B<--name> -Allows you to define the interface (in option --interface) by name instead of OID index. The name matching mode supports regular expressions. +With this option, the interfaces will be filtered by name (given in option --interface) instead of OID index. The name matching mode supports regular expressions. + +=item B<--regex-id> + +With this option, interface IDs will be filtered using the --interface parameter as a regular expression instead of a list of IDs. =item B<--speed> @@ -1707,7 +1719,7 @@ Set interface speed for outgoing traffic (in Mb). =item B<--map-speed-dsl> -Get interface speed configuration for interface type 'adsl' and 'vdsl2'. +Get interface speed configuration for interfaces of type 'ADSL' and 'VDSL2'. Syntax: --map-speed-dsl=interface-src-name,interface-dsl-name @@ -1719,7 +1731,7 @@ Force to use 64 bits counters only. Can be used to improve performance. =item B<--force-counters32> -Force to use 32 bits counters (even in snmp v2c and v3). Should be used when 64 bits counters are buggy. +Force to use 32-bits counters (even with SNMP versions 2c and 3). To use when 64 bits counters are buggy. =item B<--reload-cache-time> diff --git a/tests/functional/snmp/network-interfaces.robot b/tests/functional/snmp/network-interfaces.robot new file mode 100644 index 0000000000..96a9196149 --- /dev/null +++ b/tests/functional/snmp/network-interfaces.robot @@ -0,0 +1,71 @@ +*** Settings *** +Documentation Network Interfaces + +Library OperatingSystem +Library String +Library Examples + +Test Timeout 120s + + +*** Variables *** +${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + +${CMD} perl ${CENTREON_PLUGINS} +... --plugin=os::linux::snmp::plugin +... --mode=interfaces +... --hostname=127.0.0.1 +... --snmp-port=2024 +... --snmp-community=network-interfaces +... --statefile-dir=/tmp/ + +${PERCENT} % + +${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' + +*** Test Cases *** +Interfaces by id ${tc}/5 + [Tags] os linux network interfaces + ${command} Catenate + ... ${CMD} + ... --interface='${filter}' + ... ${extra_options} + + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc filter extra_options expected_result -- + ... 1 1 ${EMPTY} OK: Interface 'lo' Status : up (admin: up) + ... 2 1,3 --add-traffic OK: All interfaces are ok + ... 3 1,3 --add-traffic OK: All interfaces are ok | 'traffic_in_lo'=0.00b/s;;;0;10000000 'traffic_out_lo'=0.00b/s;;;0;10000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 + ... 4 2,3,4 --add-traffic OK: All interfaces are ok + ... 5 2,3,4 --add-traffic OK: All interfaces are ok | 'traffic_in_eth0'=0.00b/s;;;0;1000000000 'traffic_out_eth0'=0.00b/s;;;0;1000000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 'traffic_in_eth2'=0.00b/s;;;0;1000000000 'traffic_out_eth2'=0.00b/s;;;0;1000000000 + +Interfaces by id regexp ${tc}/6 + [Tags] os linux network interfaces + ${command} Catenate + ... ${CMD} + ... --interface='${filter}' + ... --regex-id + ... ${extra_options} + + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc filter extra_options expected_result -- + ... 1 ^1$ ${EMPTY} OK: Interface 'lo' Status : up (admin: up) + ... 2 1 ${EMPTY} OK: Interface 'lo' Status : up (admin: up) + ... 3 [13] --add-traffic OK: All interfaces are ok + ... 4 [13] --add-traffic OK: All interfaces are ok | 'traffic_in_lo'=0.00b/s;;;0;10000000 'traffic_out_lo'=0.00b/s;;;0;10000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 + ... 5 [234] --add-traffic OK: All interfaces are ok + ... 6 [234] --add-traffic OK: All interfaces are ok | 'traffic_in_eth0'=0.00b/s;;;0;1000000000 'traffic_out_eth0'=0.00b/s;;;0;1000000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 'traffic_in_eth2'=0.00b/s;;;0;1000000000 'traffic_out_eth2'=0.00b/s;;;0;1000000000 diff --git a/tests/resources/snmp/network-interfaces.snmpwalk b/tests/resources/snmp/network-interfaces.snmpwalk new file mode 100644 index 0000000000..fa24f5d69d --- /dev/null +++ b/tests/resources/snmp/network-interfaces.snmpwalk @@ -0,0 +1,4490 @@ +.1.3.6.1.2.1.1.1.0 = STRING: "Linux server-debian11 5.10.0-28-amd64 #1 SMP Debian 5.10.209-2 (2024-01-31) x86_64" +.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.8072.3.2.10 +.1.3.6.1.2.1.1.3.0 = 8074 +.1.3.6.1.2.1.1.4.0 = STRING: "Me " +.1.3.6.1.2.1.1.5.0 = STRING: "server-debian11" +.1.3.6.1.2.1.1.6.0 = STRING: "Sitting on the Dock of the Bay" +.1.3.6.1.2.1.1.7.0 = INTEGER: 72 +.1.3.6.1.2.1.1.8.0 = 0 +.1.3.6.1.2.1.1.9.1.2.1 = OID: .1.3.6.1.6.3.10.3.1.1 +.1.3.6.1.2.1.1.9.1.2.2 = OID: .1.3.6.1.6.3.11.3.1.1 +.1.3.6.1.2.1.1.9.1.2.3 = OID: .1.3.6.1.6.3.15.2.1.1 +.1.3.6.1.2.1.1.9.1.2.4 = OID: .1.3.6.1.6.3.1 +.1.3.6.1.2.1.1.9.1.2.5 = OID: .1.3.6.1.6.3.16.2.2.1 +.1.3.6.1.2.1.1.9.1.2.6 = OID: .1.3.6.1.2.1.49 +.1.3.6.1.2.1.1.9.1.2.7 = OID: .1.3.6.1.2.1.50 +.1.3.6.1.2.1.1.9.1.2.8 = OID: .1.3.6.1.2.1.4 +.1.3.6.1.2.1.1.9.1.2.9 = OID: .1.3.6.1.6.3.13.3.1.3 +.1.3.6.1.2.1.1.9.1.2.10 = OID: .1.3.6.1.2.1.92 +.1.3.6.1.2.1.1.9.1.3.1 = STRING: "The SNMP Management Architecture MIB." +.1.3.6.1.2.1.1.9.1.3.2 = STRING: "The MIB for Message Processing and Dispatching." +.1.3.6.1.2.1.1.9.1.3.3 = STRING: "The management information definitions for the SNMP User-based Security Model." +.1.3.6.1.2.1.1.9.1.3.4 = STRING: "The MIB module for SNMPv2 entities" +.1.3.6.1.2.1.1.9.1.3.5 = STRING: "View-based Access Control Model for SNMP." +.1.3.6.1.2.1.1.9.1.3.6 = STRING: "The MIB module for managing TCP implementations" +.1.3.6.1.2.1.1.9.1.3.7 = STRING: "The MIB module for managing UDP implementations" +.1.3.6.1.2.1.1.9.1.3.8 = STRING: "The MIB module for managing IP and ICMP implementations" +.1.3.6.1.2.1.1.9.1.3.9 = STRING: "The MIB modules for managing SNMP Notification, plus filtering." +.1.3.6.1.2.1.1.9.1.3.10 = STRING: "The MIB module for logging SNMP Notifications." +.1.3.6.1.2.1.1.9.1.4.1 = 0 +.1.3.6.1.2.1.1.9.1.4.2 = 0 +.1.3.6.1.2.1.1.9.1.4.3 = 0 +.1.3.6.1.2.1.1.9.1.4.4 = 0 +.1.3.6.1.2.1.1.9.1.4.5 = 0 +.1.3.6.1.2.1.1.9.1.4.6 = 0 +.1.3.6.1.2.1.1.9.1.4.7 = 0 +.1.3.6.1.2.1.1.9.1.4.8 = 0 +.1.3.6.1.2.1.1.9.1.4.9 = 0 +.1.3.6.1.2.1.1.9.1.4.10 = 0 +.1.3.6.1.2.1.2.1.0 = INTEGER: 5 +.1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.2.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.2.2.1.2.1 = STRING: "lo" +.1.3.6.1.2.1.2.2.1.2.2 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.3 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.4 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.5 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 24 +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.3 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.4 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.5 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 65536 +.1.3.6.1.2.1.2.2.1.4.2 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.3 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.4 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.5 = INTEGER: 1500 +.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: 1000000000 +.1.3.6.1.2.1.2.2.1.5.3 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.4 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.5 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.6.1 = "" +.1.3.6.1.2.1.2.2.1.6.2 = Hex-STRING: 08 00 27 8D C0 4D +.1.3.6.1.2.1.2.2.1.6.3 = Hex-STRING: 08 00 27 3C 26 92 +.1.3.6.1.2.1.2.2.1.6.4 = Hex-STRING: 08 00 27 FE 8E E3 +.1.3.6.1.2.1.2.2.1.6.5 = Hex-STRING: 08 00 27 A4 62 F7 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.4 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.4 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.9.1 = 0 +.1.3.6.1.2.1.2.2.1.9.2 = 0 +.1.3.6.1.2.1.2.2.1.9.3 = 0 +.1.3.6.1.2.1.2.2.1.9.4 = 0 +.1.3.6.1.2.1.2.2.1.9.5 = 0 +.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 1904 +.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 175123 +.1.3.6.1.2.1.2.2.1.10.3 = Counter32: 525425 +.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.11.1 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 1706 +.1.3.6.1.2.1.2.2.1.11.3 = Counter32: 5363 +.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.12.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.5 = 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.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.15.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 1904 +.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 192208 +.1.3.6.1.2.1.2.2.1.16.3 = Counter32: 555336 +.1.3.6.1.2.1.2.2.1.16.4 = Counter32: 1592 +.1.3.6.1.2.1.2.2.1.16.5 = Counter32: 1592 +.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 1339 +.1.3.6.1.2.1.2.2.1.17.3 = Counter32: 4978 +.1.3.6.1.2.1.2.2.1.17.4 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.17.5 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.5 = 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: 0 +.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.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.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.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.3.1.1.1.2.1.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.3.1.1.1.2.1.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.3.1.1.1.3.1.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.3.1.1.2.2.1.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.3.1.1.2.2.1.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.3.1.1.2.3.1.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.3.1.1.3.2.1.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.3.1.1.3.2.1.10.0.2.3 = IpAddress: 10.0.2.3 +.1.3.6.1.2.1.3.1.1.3.3.1.192.168.57.131 = IpAddress: 192.168.57.131 +.1.3.6.1.2.1.4.1.0 = INTEGER: 2 +.1.3.6.1.2.1.4.2.0 = INTEGER: 64 +.1.3.6.1.2.1.4.3.0 = Counter32: 6865 +.1.3.6.1.2.1.4.4.0 = Counter32: 0 +.1.3.6.1.2.1.4.5.0 = Counter32: 2 +.1.3.6.1.2.1.4.6.0 = Counter32: 0 +.1.3.6.1.2.1.4.7.0 = Counter32: 0 +.1.3.6.1.2.1.4.8.0 = Counter32: 0 +.1.3.6.1.2.1.4.9.0 = Counter32: 6863 +.1.3.6.1.2.1.4.10.0 = Counter32: 6435 +.1.3.6.1.2.1.4.11.0 = Counter32: 0 +.1.3.6.1.2.1.4.12.0 = Counter32: 2 +.1.3.6.1.2.1.4.13.0 = INTEGER: 0 +.1.3.6.1.2.1.4.14.0 = Counter32: 0 +.1.3.6.1.2.1.4.15.0 = Counter32: 0 +.1.3.6.1.2.1.4.16.0 = Counter32: 0 +.1.3.6.1.2.1.4.17.0 = Counter32: 0 +.1.3.6.1.2.1.4.18.0 = Counter32: 0 +.1.3.6.1.2.1.4.19.0 = Counter32: 0 +.1.3.6.1.2.1.4.20.1.1.10.0.2.15 = IpAddress: 10.0.2.15 +.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.4.20.1.1.192.168.57.126 = IpAddress: 192.168.57.126 +.1.3.6.1.2.1.4.20.1.1.192.168.58.126 = IpAddress: 192.168.58.126 +.1.3.6.1.2.1.4.20.1.1.192.168.59.126 = IpAddress: 192.168.59.126 +.1.3.6.1.2.1.4.20.1.2.10.0.2.15 = INTEGER: 2 +.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.192.168.57.126 = INTEGER: 3 +.1.3.6.1.2.1.4.20.1.2.192.168.58.126 = INTEGER: 4 +.1.3.6.1.2.1.4.20.1.2.192.168.59.126 = INTEGER: 5 +.1.3.6.1.2.1.4.20.1.3.10.0.2.15 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0 +.1.3.6.1.2.1.4.20.1.3.192.168.57.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.192.168.58.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.192.168.59.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = INTEGER: 0 +.1.3.6.1.2.1.4.20.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.1.10.0.2.0 = IpAddress: 10.0.2.0 +.1.3.6.1.2.1.4.21.1.1.192.168.57.0 = IpAddress: 192.168.57.0 +.1.3.6.1.2.1.4.21.1.1.192.168.58.0 = IpAddress: 192.168.58.0 +.1.3.6.1.2.1.4.21.1.1.192.168.59.0 = IpAddress: 192.168.59.0 +.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.2.10.0.2.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.2.192.168.57.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.2.192.168.58.0 = INTEGER: 4 +.1.3.6.1.2.1.4.21.1.2.192.168.59.0 = INTEGER: 5 +.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.3.10.0.2.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.57.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.58.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.59.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.21.1.7.10.0.2.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.57.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.58.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.59.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.21.1.8.10.0.2.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.57.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.58.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.59.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.10.0.2.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.57.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.58.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.59.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.11.10.0.2.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.57.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.58.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.59.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.10.0.2.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.57.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.58.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.59.0 = OID: .0.0 +.1.3.6.1.2.1.4.22.1.1.2.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.22.1.1.2.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.4.22.1.1.3.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.2.2.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.4.22.1.2.2.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.4.22.1.2.3.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.4.22.1.3.2.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.22.1.3.2.10.0.2.3 = IpAddress: 10.0.2.3 +.1.3.6.1.2.1.4.22.1.3.3.192.168.57.131 = IpAddress: 192.168.57.131 +.1.3.6.1.2.1.4.22.1.4.2.10.0.2.2 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.4.2.10.0.2.3 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.4.3.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.23.0 = Counter32: 0 +.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 10.0.2.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.57.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.58.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.59.0 +.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.24.4.1.4.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.5.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.5.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.5.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.4.1.5.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 4 +.1.3.6.1.2.1.4.24.4.1.6.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.0.2.2 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.10.0.2.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.57.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.58.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.59.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.6.0 = Gauge32: 19 +.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.8.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.25.0 = INTEGER: 2 +.1.3.6.1.2.1.4.26.0 = INTEGER: 64 +.1.3.6.1.2.1.4.31.1.1.3.1 = Counter32: 6681 +.1.3.6.1.2.1.4.31.1.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.4.1 = Counter64: 6681 +.1.3.6.1.2.1.4.31.1.1.4.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.5.1 = Counter32: 582599 +.1.3.6.1.2.1.4.31.1.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.6.1 = Counter64: 582599 +.1.3.6.1.2.1.4.31.1.1.6.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.7.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.7.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.9.1 = Counter32: 2 +.1.3.6.1.2.1.4.31.1.1.9.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.13.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.14.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.14.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.15.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.18.1 = Counter32: 6679 +.1.3.6.1.2.1.4.31.1.1.18.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.19.1 = Counter64: 6679 +.1.3.6.1.2.1.4.31.1.1.19.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.20.1 = Counter32: 6255 +.1.3.6.1.2.1.4.31.1.1.20.2 = Counter32: 72 +.1.3.6.1.2.1.4.31.1.1.21.1 = Counter64: 6255 +.1.3.6.1.2.1.4.31.1.1.21.2 = Counter64: 72 +.1.3.6.1.2.1.4.31.1.1.22.1 = Counter32: 2 +.1.3.6.1.2.1.4.31.1.1.22.2 = Counter32: 8 +.1.3.6.1.2.1.4.31.1.1.23.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.23.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.24.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.24.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.25.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.25.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.26.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.26.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.27.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.27.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.29.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.29.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.30.1 = Counter32: 6253 +.1.3.6.1.2.1.4.31.1.1.30.2 = Counter32: 64 +.1.3.6.1.2.1.4.31.1.1.31.1 = Counter64: 6253 +.1.3.6.1.2.1.4.31.1.1.31.2 = Counter64: 64 +.1.3.6.1.2.1.4.31.1.1.32.1 = Counter32: 653122 +.1.3.6.1.2.1.4.31.1.1.32.2 = Counter32: 4704 +.1.3.6.1.2.1.4.31.1.1.33.1 = Counter64: 653122 +.1.3.6.1.2.1.4.31.1.1.33.2 = Counter64: 4704 +.1.3.6.1.2.1.4.31.1.1.34.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.34.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.35.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.35.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.36.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.36.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.37.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.37.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.38.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.38.2 = Counter32: 72 +.1.3.6.1.2.1.4.31.1.1.39.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.39.2 = Counter64: 72 +.1.3.6.1.2.1.4.31.1.1.40.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.40.2 = Counter32: 4704 +.1.3.6.1.2.1.4.31.1.1.41.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.41.2 = Counter64: 4704 +.1.3.6.1.2.1.4.31.1.1.42.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.43.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.44.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.45.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.46.1 = 0 +.1.3.6.1.2.1.4.31.1.1.46.2 = 0 +.1.3.6.1.2.1.4.31.1.1.47.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.1.1.47.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.2.0 = 0 +.1.3.6.1.2.1.4.31.3.1.3.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.20.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.20.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.20.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.21.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.21.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.23.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.30.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.30.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.30.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.30.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.30.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.31.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.31.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.32.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.32.2.2 = Counter32: 768 +.1.3.6.1.2.1.4.31.3.1.32.2.3 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.32.2.4 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.32.2.5 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.33.2.2 = Counter64: 768 +.1.3.6.1.2.1.4.31.3.1.33.2.3 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.4 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.5 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.34.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.38.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.38.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.38.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.38.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.38.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.39.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.39.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.40.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.40.2.2 = Counter32: 768 +.1.3.6.1.2.1.4.31.3.1.40.2.3 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.40.2.4 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.40.2.5 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.41.2.2 = Counter64: 768 +.1.3.6.1.2.1.4.31.3.1.41.2.3 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.4 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.5 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.46.2.1 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.2 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.3 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.4 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.5 = 0 +.1.3.6.1.2.1.4.31.3.1.47.2.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.3 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.4 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.5 = Gauge32: 60000 +.1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.6.1.1.4.127.0.0.0.8 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.2.1.4.10.0.2.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.3.1.4.192.168.57.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.4.1.4.192.168.58.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.5.1.4.192.168.59.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.7.1.1.4.127.0.0.0.8 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.2.1.4.10.0.2.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.3.1.4.192.168.57.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.4.1.4.192.168.58.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.5.1.4.192.168.59.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.8.1.1.4.127.0.0.0.8 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.2.1.4.10.0.2.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.3.1.4.192.168.57.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.4.1.4.192.168.58.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.5.1.4.192.168.59.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.1.1.4.127.0.0.0.8 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.2.1.4.10.0.2.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.3.1.4.192.168.57.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.4.1.4.192.168.58.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.5.1.4.192.168.59.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.33.0 = INTEGER: 1436303740 +.1.3.6.1.2.1.4.34.1.3.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.57.126 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.57.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.58.126 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.58.255 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.59.126 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.59.255 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.4.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.10.0.2.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.57.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.58.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.59.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.5.1.4.10.0.2.15 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.10.0.2.255 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.57.126 = OID: .1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.57.255 = OID: .1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.58.126 = OID: .1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.58.255 = OID: .1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.59.126 = OID: .1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.59.255 = OID: .1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 +.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = OID: .1.3.6.1.2.1.4.32.1.5.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = OID: .1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = OID: .1.3.6.1.2.1.4.32.1.5.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = OID: .1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.6.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.57.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.57.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.58.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.58.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.59.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.59.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.7.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.10.0.2.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.57.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.58.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.59.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.8.1.4.10.0.2.15 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.10.0.2.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.57.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.57.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.58.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.58.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.59.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.59.255 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.10.0.2.15 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.10.0.2.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.57.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.57.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.58.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.58.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.59.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.59.255 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = 0 +.1.3.6.1.2.1.4.34.1.10.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.10.0.2.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.57.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.58.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.59.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.11.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.57.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.57.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.58.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.58.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.59.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.59.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 4 +.1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.4.35.1.5.2.1.4.10.0.2.2 = 8109 +.1.3.6.1.2.1.4.35.1.5.2.1.4.10.0.2.3 = 8109 +.1.3.6.1.2.1.4.35.1.5.3.1.4.192.168.57.131 = 8109 +.1.3.6.1.2.1.4.35.1.6.2.1.4.10.0.2.2 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.6.2.1.4.10.0.2.3 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.6.3.1.4.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.7.2.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.7.2.1.4.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.4.35.1.7.3.1.4.192.168.57.131 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.2.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.2.1.4.10.0.2.3 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.3.1.4.192.168.57.131 = INTEGER: 1 +.1.3.6.1.2.1.4.36.1.2.2 = Gauge32: 2 +.1.3.6.1.2.1.4.36.1.2.3 = Gauge32: 3 +.1.3.6.1.2.1.4.36.1.2.4 = Gauge32: 4 +.1.3.6.1.2.1.4.36.1.2.5 = Gauge32: 5 +.1.3.6.1.2.1.4.36.1.3.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.5 = Gauge32: 0 +.1.3.6.1.2.1.4.37.1.4.1.4.10.0.2.2.2 = Gauge32: 65535 +.1.3.6.1.2.1.4.37.1.5.1.4.10.0.2.2.2 = INTEGER: 0 +.1.3.6.1.2.1.5.1.0 = Counter32: 13 +.1.3.6.1.2.1.5.2.0 = Counter32: 0 +.1.3.6.1.2.1.5.3.0 = Counter32: 0 +.1.3.6.1.2.1.5.4.0 = Counter32: 0 +.1.3.6.1.2.1.5.5.0 = Counter32: 0 +.1.3.6.1.2.1.5.6.0 = Counter32: 0 +.1.3.6.1.2.1.5.7.0 = Counter32: 0 +.1.3.6.1.2.1.5.8.0 = Counter32: 13 +.1.3.6.1.2.1.5.9.0 = Counter32: 0 +.1.3.6.1.2.1.5.10.0 = Counter32: 0 +.1.3.6.1.2.1.5.11.0 = Counter32: 0 +.1.3.6.1.2.1.5.12.0 = Counter32: 0 +.1.3.6.1.2.1.5.13.0 = Counter32: 0 +.1.3.6.1.2.1.5.14.0 = Counter32: 25 +.1.3.6.1.2.1.5.15.0 = Counter32: 0 +.1.3.6.1.2.1.5.16.0 = Counter32: 12 +.1.3.6.1.2.1.5.17.0 = Counter32: 0 +.1.3.6.1.2.1.5.18.0 = Counter32: 0 +.1.3.6.1.2.1.5.19.0 = Counter32: 0 +.1.3.6.1.2.1.5.20.0 = Counter32: 0 +.1.3.6.1.2.1.5.21.0 = Counter32: 0 +.1.3.6.1.2.1.5.22.0 = Counter32: 13 +.1.3.6.1.2.1.5.23.0 = Counter32: 0 +.1.3.6.1.2.1.5.24.0 = Counter32: 0 +.1.3.6.1.2.1.5.25.0 = Counter32: 0 +.1.3.6.1.2.1.5.26.0 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.2.1 = Counter32: 13 +.1.3.6.1.2.1.5.29.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.3.1 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.4.1 = Counter32: 25 +.1.3.6.1.2.1.5.29.1.4.2 = Counter32: 72 +.1.3.6.1.2.1.5.29.1.5.1 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.0 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.3 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.4 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.5 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.8 = Counter32: 13 +.1.3.6.1.2.1.5.30.1.3.1.11 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.12 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.13 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.14 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.17 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.18 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.0 = Counter32: 13 +.1.3.6.1.2.1.5.30.1.4.1.3 = Counter32: 12 +.1.3.6.1.2.1.5.30.1.4.1.4 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.5 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.8 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.11 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.12 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.13 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.14 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.17 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.18 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.2.133 = Counter32: 37 +.1.3.6.1.2.1.5.30.1.4.2.135 = Counter32: 7 +.1.3.6.1.2.1.5.30.1.4.2.143 = Counter32: 28 +.1.3.6.1.2.1.6.1.0 = INTEGER: 1 +.1.3.6.1.2.1.6.2.0 = INTEGER: 200 +.1.3.6.1.2.1.6.3.0 = INTEGER: 120000 +.1.3.6.1.2.1.6.4.0 = INTEGER: -1 +.1.3.6.1.2.1.6.5.0 = Counter32: 0 +.1.3.6.1.2.1.6.6.0 = Counter32: 33 +.1.3.6.1.2.1.6.7.0 = Counter32: 0 +.1.3.6.1.2.1.6.8.0 = Counter32: 1 +.1.3.6.1.2.1.6.9.0 = Gauge32: 1 +.1.3.6.1.2.1.6.10.0 = Counter32: 1969 +.1.3.6.1.2.1.6.11.0 = Counter32: 1569 +.1.3.6.1.2.1.6.12.0 = Counter32: 0 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.5666.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.10.0.2.15.22.10.0.2.2.42298 = IpAddress: 10.0.2.15 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 5666 +.1.3.6.1.2.1.6.13.1.3.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.5666.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.10.0.2.15.22.10.0.2.2.42298 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 42298 +.1.3.6.1.2.1.6.14.0 = Counter32: 0 +.1.3.6.1.2.1.6.15.0 = Counter32: 0 +.1.3.6.1.2.1.6.19.1.7.1.4.10.0.2.15.22.1.4.10.0.2.2.42298 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.8.1.4.10.0.2.15.22.1.4.10.0.2.2.42298 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.5666 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.5666 = Gauge32: 0 +.1.3.6.1.2.1.7.1.0 = Counter32: 5871 +.1.3.6.1.2.1.7.2.0 = Counter32: 12 +.1.3.6.1.2.1.7.3.0 = Counter32: 0 +.1.3.6.1.2.1.7.4.0 = Counter32: 5870 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.68 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.161 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.127.0.0.1.323 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.68 = INTEGER: 68 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.161 = INTEGER: 161 +.1.3.6.1.2.1.7.5.1.2.127.0.0.1.323 = INTEGER: 323 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.68.1.4.0.0.0.0.0.11228 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.20596 = Gauge32: 1199 +.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.323.1.4.0.0.0.0.0.11445 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.323.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.11446 = Gauge32: 0 +.1.3.6.1.2.1.10.7.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.10.7.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.10.7.2.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.10.7.2.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.19.2 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.3 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.4 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.5 = INTEGER: 3 +.1.3.6.1.2.1.11.1.0 = Counter32: 5719 +.1.3.6.1.2.1.11.2.0 = Counter32: 5719 +.1.3.6.1.2.1.11.3.0 = Counter32: 0 +.1.3.6.1.2.1.11.4.0 = Counter32: 0 +.1.3.6.1.2.1.11.5.0 = Counter32: 0 +.1.3.6.1.2.1.11.6.0 = Counter32: 0 +.1.3.6.1.2.1.11.8.0 = Counter32: 0 +.1.3.6.1.2.1.11.9.0 = Counter32: 0 +.1.3.6.1.2.1.11.10.0 = Counter32: 0 +.1.3.6.1.2.1.11.11.0 = Counter32: 0 +.1.3.6.1.2.1.11.12.0 = Counter32: 0 +.1.3.6.1.2.1.11.13.0 = Counter32: 5729 +.1.3.6.1.2.1.11.14.0 = Counter32: 0 +.1.3.6.1.2.1.11.15.0 = Counter32: 0 +.1.3.6.1.2.1.11.16.0 = Counter32: 5733 +.1.3.6.1.2.1.11.17.0 = Counter32: 0 +.1.3.6.1.2.1.11.18.0 = Counter32: 0 +.1.3.6.1.2.1.11.19.0 = Counter32: 0 +.1.3.6.1.2.1.11.20.0 = Counter32: 0 +.1.3.6.1.2.1.11.21.0 = Counter32: 0 +.1.3.6.1.2.1.11.22.0 = Counter32: 0 +.1.3.6.1.2.1.11.24.0 = Counter32: 0 +.1.3.6.1.2.1.11.25.0 = Counter32: 0 +.1.3.6.1.2.1.11.26.0 = Counter32: 0 +.1.3.6.1.2.1.11.27.0 = Counter32: 0 +.1.3.6.1.2.1.11.28.0 = Counter32: 5743 +.1.3.6.1.2.1.11.29.0 = Counter32: 0 +.1.3.6.1.2.1.11.30.0 = INTEGER: 2 +.1.3.6.1.2.1.11.31.0 = Counter32: 0 +.1.3.6.1.2.1.11.32.0 = Counter32: 0 +.1.3.6.1.2.1.25.1.1.0 = 48160 +.1.3.6.1.2.1.25.1.2.0 = Hex-STRING: 07 E8 03 12 16 29 1E 00 2B 01 00 +.1.3.6.1.2.1.25.1.3.0 = INTEGER: 393216 +.1.3.6.1.2.1.25.1.4.0 = STRING: "BOOT_IMAGE=/boot/vmlinuz-5.10.0-28-amd64 root=UUID=c62a50a0-9eed-4d76-86ad-b53c695efb0d ro consoleblank=0 elevator=noop scsi_mod" +.1.3.6.1.2.1.25.1.5.0 = Gauge32: 1 +.1.3.6.1.2.1.25.1.6.0 = Gauge32: 76 +.1.3.6.1.2.1.25.1.7.0 = INTEGER: 0 +.1.3.6.1.2.1.25.2.2.0 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.2.3.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.2.3.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.2.3.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.2.3.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.2.3.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.2.3.1.1.35 = INTEGER: 35 +.1.3.6.1.2.1.25.2.3.1.1.36 = INTEGER: 36 +.1.3.6.1.2.1.25.2.3.1.1.38 = INTEGER: 38 +.1.3.6.1.2.1.25.2.3.1.1.39 = INTEGER: 39 +.1.3.6.1.2.1.25.2.3.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.2.3.1.2.1 = OID: .1.3.6.1.2.1.25.2.1.2 +.1.3.6.1.2.1.25.2.3.1.2.3 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.6 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.7 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.8 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.10 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.35 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.36 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.38 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.39 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.51 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.3.1 = STRING: "Physical memory" +.1.3.6.1.2.1.25.2.3.1.3.3 = STRING: "Virtual memory" +.1.3.6.1.2.1.25.2.3.1.3.6 = STRING: "Memory buffers" +.1.3.6.1.2.1.25.2.3.1.3.7 = STRING: "Cached memory" +.1.3.6.1.2.1.25.2.3.1.3.8 = STRING: "Shared memory" +.1.3.6.1.2.1.25.2.3.1.3.10 = STRING: "Swap space" +.1.3.6.1.2.1.25.2.3.1.3.35 = STRING: "/run" +.1.3.6.1.2.1.25.2.3.1.3.36 = STRING: "/" +.1.3.6.1.2.1.25.2.3.1.3.38 = STRING: "/dev/shm" +.1.3.6.1.2.1.25.2.3.1.3.39 = STRING: "/run/lock" +.1.3.6.1.2.1.25.2.3.1.3.51 = STRING: "/run/user/1000" +.1.3.6.1.2.1.25.2.3.1.4.1 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.3 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.6 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.7 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.8 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.10 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.35 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.36 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.38 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.39 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.51 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.3 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.6 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.7 = INTEGER: 115756 +.1.3.6.1.2.1.25.2.3.1.5.8 = INTEGER: 456 +.1.3.6.1.2.1.25.2.3.1.5.10 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.5.35 = INTEGER: 24696 +.1.3.6.1.2.1.25.2.3.1.5.36 = INTEGER: 5116308 +.1.3.6.1.2.1.25.2.3.1.5.38 = INTEGER: 123476 +.1.3.6.1.2.1.25.2.3.1.5.39 = INTEGER: 1280 +.1.3.6.1.2.1.25.2.3.1.5.51 = INTEGER: 24695 +.1.3.6.1.2.1.25.2.3.1.6.1 = INTEGER: 203444 +.1.3.6.1.2.1.25.2.3.1.6.3 = INTEGER: 203444 +.1.3.6.1.2.1.25.2.3.1.6.6 = INTEGER: 14368 +.1.3.6.1.2.1.25.2.3.1.6.7 = INTEGER: 115756 +.1.3.6.1.2.1.25.2.3.1.6.8 = INTEGER: 456 +.1.3.6.1.2.1.25.2.3.1.6.10 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.35 = INTEGER: 114 +.1.3.6.1.2.1.25.2.3.1.6.36 = INTEGER: 390635 +.1.3.6.1.2.1.25.2.3.1.6.38 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.39 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.51 = INTEGER: 0 +.1.3.6.1.2.1.25.3.2.1.1.196608 = INTEGER: 196608 +.1.3.6.1.2.1.25.3.2.1.1.262145 = INTEGER: 262145 +.1.3.6.1.2.1.25.3.2.1.1.262146 = INTEGER: 262146 +.1.3.6.1.2.1.25.3.2.1.1.262147 = INTEGER: 262147 +.1.3.6.1.2.1.25.3.2.1.1.262148 = INTEGER: 262148 +.1.3.6.1.2.1.25.3.2.1.1.262149 = INTEGER: 262149 +.1.3.6.1.2.1.25.3.2.1.1.786432 = INTEGER: 786432 +.1.3.6.1.2.1.25.3.2.1.2.196608 = OID: .1.3.6.1.2.1.25.3.1.3 +.1.3.6.1.2.1.25.3.2.1.2.262145 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262146 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262147 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262148 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262149 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.786432 = OID: .1.3.6.1.2.1.25.3.1.12 +.1.3.6.1.2.1.25.3.2.1.3.196608 = STRING: "AuthenticAMD: AMD Ryzen 7 PRO 3700U w/ Radeon Vega Mobile Gfx" +.1.3.6.1.2.1.25.3.2.1.3.262145 = STRING: "network interface lo" +.1.3.6.1.2.1.25.3.2.1.3.262146 = STRING: "network interface eth0" +.1.3.6.1.2.1.25.3.2.1.3.262147 = STRING: "network interface eth1" +.1.3.6.1.2.1.25.3.2.1.3.262148 = STRING: "network interface eth2" +.1.3.6.1.2.1.25.3.2.1.3.262149 = STRING: "network interface eth3" +.1.3.6.1.2.1.25.3.2.1.3.786432 = STRING: "Guessing that there's a floating point co-processor" +.1.3.6.1.2.1.25.3.2.1.4.196608 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262145 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262146 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262147 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262148 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262149 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.786432 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.5.196608 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262145 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262146 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262147 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262148 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262149 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.6.262145 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262146 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262147 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262148 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262149 = Counter32: 0 +.1.3.6.1.2.1.25.3.3.1.1.196608 = OID: .0.0 +.1.3.6.1.2.1.25.3.3.1.2.196608 = INTEGER: 2 +.1.3.6.1.2.1.25.3.4.1.1.262145 = INTEGER: 1 +.1.3.6.1.2.1.25.3.4.1.1.262146 = INTEGER: 2 +.1.3.6.1.2.1.25.3.4.1.1.262147 = INTEGER: 3 +.1.3.6.1.2.1.25.3.4.1.1.262148 = INTEGER: 4 +.1.3.6.1.2.1.25.3.4.1.1.262149 = INTEGER: 5 +.1.3.6.1.2.1.25.3.8.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.25.3.8.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.3.8.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.3.8.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.3.8.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.3.8.1.2.5 = STRING: "/run" +.1.3.6.1.2.1.25.3.8.1.2.6 = STRING: "/" +.1.3.6.1.2.1.25.3.8.1.2.8 = STRING: "/dev/shm" +.1.3.6.1.2.1.25.3.8.1.2.9 = STRING: "/run/lock" +.1.3.6.1.2.1.25.3.8.1.2.21 = STRING: "/run/user/1000" +.1.3.6.1.2.1.25.3.8.1.3.5 = "" +.1.3.6.1.2.1.25.3.8.1.3.6 = "" +.1.3.6.1.2.1.25.3.8.1.3.8 = "" +.1.3.6.1.2.1.25.3.8.1.3.9 = "" +.1.3.6.1.2.1.25.3.8.1.3.21 = "" +.1.3.6.1.2.1.25.3.8.1.4.5 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.6 = OID: .1.3.6.1.2.1.25.3.9.23 +.1.3.6.1.2.1.25.3.8.1.4.8 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.9 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.21 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.5.5 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.6 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.8 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.9 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.21 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.5 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.6 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.8 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.9 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.21 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.7.5 = INTEGER: 35 +.1.3.6.1.2.1.25.3.8.1.7.6 = INTEGER: 36 +.1.3.6.1.2.1.25.3.8.1.7.8 = INTEGER: 38 +.1.3.6.1.2.1.25.3.8.1.7.9 = INTEGER: 39 +.1.3.6.1.2.1.25.3.8.1.7.21 = INTEGER: 51 +.1.3.6.1.2.1.25.3.8.1.8.5 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.6 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.8 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.9 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.21 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.5 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.6 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.8 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.9 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.21 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.4.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.4.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.4.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.4.2.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.4.2.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.4.2.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.4.2.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.4.2.1.1.11 = INTEGER: 11 +.1.3.6.1.2.1.25.4.2.1.1.12 = INTEGER: 12 +.1.3.6.1.2.1.25.4.2.1.1.13 = INTEGER: 13 +.1.3.6.1.2.1.25.4.2.1.1.14 = INTEGER: 14 +.1.3.6.1.2.1.25.4.2.1.1.15 = INTEGER: 15 +.1.3.6.1.2.1.25.4.2.1.1.17 = INTEGER: 17 +.1.3.6.1.2.1.25.4.2.1.1.18 = INTEGER: 18 +.1.3.6.1.2.1.25.4.2.1.1.19 = INTEGER: 19 +.1.3.6.1.2.1.25.4.2.1.1.20 = INTEGER: 20 +.1.3.6.1.2.1.25.4.2.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.4.2.1.1.22 = INTEGER: 22 +.1.3.6.1.2.1.25.4.2.1.1.23 = INTEGER: 23 +.1.3.6.1.2.1.25.4.2.1.1.24 = INTEGER: 24 +.1.3.6.1.2.1.25.4.2.1.1.25 = INTEGER: 25 +.1.3.6.1.2.1.25.4.2.1.1.43 = INTEGER: 43 +.1.3.6.1.2.1.25.4.2.1.1.44 = INTEGER: 44 +.1.3.6.1.2.1.25.4.2.1.1.45 = INTEGER: 45 +.1.3.6.1.2.1.25.4.2.1.1.46 = INTEGER: 46 +.1.3.6.1.2.1.25.4.2.1.1.47 = INTEGER: 47 +.1.3.6.1.2.1.25.4.2.1.1.48 = INTEGER: 48 +.1.3.6.1.2.1.25.4.2.1.1.49 = INTEGER: 49 +.1.3.6.1.2.1.25.4.2.1.1.50 = INTEGER: 50 +.1.3.6.1.2.1.25.4.2.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.4.2.1.1.52 = INTEGER: 52 +.1.3.6.1.2.1.25.4.2.1.1.62 = INTEGER: 62 +.1.3.6.1.2.1.25.4.2.1.1.65 = INTEGER: 65 +.1.3.6.1.2.1.25.4.2.1.1.66 = INTEGER: 66 +.1.3.6.1.2.1.25.4.2.1.1.103 = INTEGER: 103 +.1.3.6.1.2.1.25.4.2.1.1.104 = INTEGER: 104 +.1.3.6.1.2.1.25.4.2.1.1.105 = INTEGER: 105 +.1.3.6.1.2.1.25.4.2.1.1.106 = INTEGER: 106 +.1.3.6.1.2.1.25.4.2.1.1.109 = INTEGER: 109 +.1.3.6.1.2.1.25.4.2.1.1.128 = INTEGER: 128 +.1.3.6.1.2.1.25.4.2.1.1.129 = INTEGER: 129 +.1.3.6.1.2.1.25.4.2.1.1.177 = INTEGER: 177 +.1.3.6.1.2.1.25.4.2.1.1.193 = INTEGER: 193 +.1.3.6.1.2.1.25.4.2.1.1.218 = INTEGER: 218 +.1.3.6.1.2.1.25.4.2.1.1.220 = INTEGER: 220 +.1.3.6.1.2.1.25.4.2.1.1.221 = INTEGER: 221 +.1.3.6.1.2.1.25.4.2.1.1.243 = INTEGER: 243 +.1.3.6.1.2.1.25.4.2.1.1.257 = INTEGER: 257 +.1.3.6.1.2.1.25.4.2.1.1.260 = INTEGER: 260 +.1.3.6.1.2.1.25.4.2.1.1.263 = INTEGER: 263 +.1.3.6.1.2.1.25.4.2.1.1.265 = INTEGER: 265 +.1.3.6.1.2.1.25.4.2.1.1.268 = INTEGER: 268 +.1.3.6.1.2.1.25.4.2.1.1.270 = INTEGER: 270 +.1.3.6.1.2.1.25.4.2.1.1.273 = INTEGER: 273 +.1.3.6.1.2.1.25.4.2.1.1.276 = INTEGER: 276 +.1.3.6.1.2.1.25.4.2.1.1.279 = INTEGER: 279 +.1.3.6.1.2.1.25.4.2.1.1.280 = INTEGER: 280 +.1.3.6.1.2.1.25.4.2.1.1.283 = INTEGER: 283 +.1.3.6.1.2.1.25.4.2.1.1.375 = INTEGER: 375 +.1.3.6.1.2.1.25.4.2.1.1.377 = INTEGER: 377 +.1.3.6.1.2.1.25.4.2.1.1.379 = INTEGER: 379 +.1.3.6.1.2.1.25.4.2.1.1.381 = INTEGER: 381 +.1.3.6.1.2.1.25.4.2.1.1.382 = INTEGER: 382 +.1.3.6.1.2.1.25.4.2.1.1.387 = INTEGER: 387 +.1.3.6.1.2.1.25.4.2.1.1.388 = INTEGER: 388 +.1.3.6.1.2.1.25.4.2.1.1.974 = INTEGER: 974 +.1.3.6.1.2.1.25.4.2.1.1.977 = INTEGER: 977 +.1.3.6.1.2.1.25.4.2.1.1.978 = INTEGER: 978 +.1.3.6.1.2.1.25.4.2.1.1.996 = INTEGER: 996 +.1.3.6.1.2.1.25.4.2.1.1.997 = INTEGER: 997 +.1.3.6.1.2.1.25.4.2.1.1.1015 = INTEGER: 1015 +.1.3.6.1.2.1.25.4.2.1.1.1016 = INTEGER: 1016 +.1.3.6.1.2.1.25.4.2.1.1.1198 = INTEGER: 1198 +.1.3.6.1.2.1.25.4.2.1.1.1199 = INTEGER: 1199 +.1.3.6.1.2.1.25.4.2.1.2.1 = STRING: "systemd" +.1.3.6.1.2.1.25.4.2.1.2.2 = STRING: "kthreadd" +.1.3.6.1.2.1.25.4.2.1.2.3 = STRING: "rcu_gp" +.1.3.6.1.2.1.25.4.2.1.2.4 = STRING: "rcu_par_gp" +.1.3.6.1.2.1.25.4.2.1.2.6 = STRING: "kworker/0:0H-events_highpri" +.1.3.6.1.2.1.25.4.2.1.2.7 = STRING: "kworker/u2:0-flush-8:0" +.1.3.6.1.2.1.25.4.2.1.2.8 = STRING: "mm_percpu_wq" +.1.3.6.1.2.1.25.4.2.1.2.9 = STRING: "rcu_tasks_rude_" +.1.3.6.1.2.1.25.4.2.1.2.10 = STRING: "rcu_tasks_trace" +.1.3.6.1.2.1.25.4.2.1.2.11 = STRING: "ksoftirqd/0" +.1.3.6.1.2.1.25.4.2.1.2.12 = STRING: "rcu_sched" +.1.3.6.1.2.1.25.4.2.1.2.13 = STRING: "migration/0" +.1.3.6.1.2.1.25.4.2.1.2.14 = STRING: "kworker/0:1-events_power_efficient" +.1.3.6.1.2.1.25.4.2.1.2.15 = STRING: "cpuhp/0" +.1.3.6.1.2.1.25.4.2.1.2.17 = STRING: "kdevtmpfs" +.1.3.6.1.2.1.25.4.2.1.2.18 = STRING: "netns" +.1.3.6.1.2.1.25.4.2.1.2.19 = STRING: "kauditd" +.1.3.6.1.2.1.25.4.2.1.2.20 = STRING: "khungtaskd" +.1.3.6.1.2.1.25.4.2.1.2.21 = STRING: "oom_reaper" +.1.3.6.1.2.1.25.4.2.1.2.22 = STRING: "writeback" +.1.3.6.1.2.1.25.4.2.1.2.23 = STRING: "kcompactd0" +.1.3.6.1.2.1.25.4.2.1.2.24 = STRING: "ksmd" +.1.3.6.1.2.1.25.4.2.1.2.25 = STRING: "khugepaged" +.1.3.6.1.2.1.25.4.2.1.2.43 = STRING: "kintegrityd" +.1.3.6.1.2.1.25.4.2.1.2.44 = STRING: "kblockd" +.1.3.6.1.2.1.25.4.2.1.2.45 = STRING: "blkcg_punt_bio" +.1.3.6.1.2.1.25.4.2.1.2.46 = STRING: "edac-poller" +.1.3.6.1.2.1.25.4.2.1.2.47 = STRING: "devfreq_wq" +.1.3.6.1.2.1.25.4.2.1.2.48 = STRING: "kworker/0:1H-kblockd" +.1.3.6.1.2.1.25.4.2.1.2.49 = STRING: "kswapd0" +.1.3.6.1.2.1.25.4.2.1.2.50 = STRING: "kthrotld" +.1.3.6.1.2.1.25.4.2.1.2.51 = STRING: "acpi_thermal_pm" +.1.3.6.1.2.1.25.4.2.1.2.52 = STRING: "ipv6_addrconf" +.1.3.6.1.2.1.25.4.2.1.2.62 = STRING: "kstrp" +.1.3.6.1.2.1.25.4.2.1.2.65 = STRING: "zswap-shrink" +.1.3.6.1.2.1.25.4.2.1.2.66 = STRING: "kworker/u3:0" +.1.3.6.1.2.1.25.4.2.1.2.103 = STRING: "kworker/0:2-events" +.1.3.6.1.2.1.25.4.2.1.2.104 = STRING: "ata_sff" +.1.3.6.1.2.1.25.4.2.1.2.105 = STRING: "scsi_eh_0" +.1.3.6.1.2.1.25.4.2.1.2.106 = STRING: "scsi_tmf_0" +.1.3.6.1.2.1.25.4.2.1.2.109 = STRING: "kworker/u2:2-flush-8:0" +.1.3.6.1.2.1.25.4.2.1.2.128 = STRING: "jbd2/sda1-8" +.1.3.6.1.2.1.25.4.2.1.2.129 = STRING: "ext4-rsv-conver" +.1.3.6.1.2.1.25.4.2.1.2.177 = STRING: "systemd-journal" +.1.3.6.1.2.1.25.4.2.1.2.193 = STRING: "systemd-udevd" +.1.3.6.1.2.1.25.4.2.1.2.218 = STRING: "dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.2.220 = STRING: "rsyslogd" +.1.3.6.1.2.1.25.4.2.1.2.221 = STRING: "systemd-logind" +.1.3.6.1.2.1.25.4.2.1.2.243 = STRING: "cryptd" +.1.3.6.1.2.1.25.4.2.1.2.257 = STRING: "irq/18-vmwgfx" +.1.3.6.1.2.1.25.4.2.1.2.260 = STRING: "ttm_swap" +.1.3.6.1.2.1.25.4.2.1.2.263 = STRING: "card0-crtc0" +.1.3.6.1.2.1.25.4.2.1.2.265 = STRING: "card0-crtc1" +.1.3.6.1.2.1.25.4.2.1.2.268 = STRING: "card0-crtc2" +.1.3.6.1.2.1.25.4.2.1.2.270 = STRING: "card0-crtc3" +.1.3.6.1.2.1.25.4.2.1.2.273 = STRING: "card0-crtc4" +.1.3.6.1.2.1.25.4.2.1.2.276 = STRING: "card0-crtc5" +.1.3.6.1.2.1.25.4.2.1.2.279 = STRING: "card0-crtc6" +.1.3.6.1.2.1.25.4.2.1.2.280 = STRING: "card0-crtc7" +.1.3.6.1.2.1.25.4.2.1.2.283 = STRING: "dhclient" +.1.3.6.1.2.1.25.4.2.1.2.375 = STRING: "unattended-upgr" +.1.3.6.1.2.1.25.4.2.1.2.377 = STRING: "cron" +.1.3.6.1.2.1.25.4.2.1.2.379 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.381 = STRING: "chronyd" +.1.3.6.1.2.1.25.4.2.1.2.382 = STRING: "chronyd" +.1.3.6.1.2.1.25.4.2.1.2.387 = STRING: "centreon-nrpe4" +.1.3.6.1.2.1.25.4.2.1.2.388 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.974 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.977 = STRING: "systemd" +.1.3.6.1.2.1.25.4.2.1.2.978 = STRING: "(sd-pam)" +.1.3.6.1.2.1.25.4.2.1.2.996 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.997 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.1015 = STRING: "sudo" +.1.3.6.1.2.1.25.4.2.1.2.1016 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.1198 = STRING: "kworker/u2:1-ext4-rsv-conversion" +.1.3.6.1.2.1.25.4.2.1.2.1199 = STRING: "snmpd" +.1.3.6.1.2.1.25.4.2.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.7 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.8 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.9 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.10 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.11 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.12 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.13 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.14 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.15 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.17 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.18 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.19 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.20 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.21 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.22 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.23 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.24 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.25 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.43 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.44 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.45 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.46 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.47 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.48 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.49 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.50 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.51 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.52 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.62 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.65 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.66 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.103 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.104 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.105 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.106 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.109 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.128 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.129 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.177 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.193 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.218 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.220 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.221 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.243 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.257 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.260 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.263 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.265 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.268 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.270 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.273 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.276 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.279 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.280 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.283 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.375 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.377 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.379 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.381 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.382 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.387 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.388 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.974 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.977 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.978 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.996 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.997 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1015 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1016 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1198 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1199 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.4.1 = STRING: "/sbin/init" +.1.3.6.1.2.1.25.4.2.1.4.2 = "" +.1.3.6.1.2.1.25.4.2.1.4.3 = "" +.1.3.6.1.2.1.25.4.2.1.4.4 = "" +.1.3.6.1.2.1.25.4.2.1.4.6 = "" +.1.3.6.1.2.1.25.4.2.1.4.7 = "" +.1.3.6.1.2.1.25.4.2.1.4.8 = "" +.1.3.6.1.2.1.25.4.2.1.4.9 = "" +.1.3.6.1.2.1.25.4.2.1.4.10 = "" +.1.3.6.1.2.1.25.4.2.1.4.11 = "" +.1.3.6.1.2.1.25.4.2.1.4.12 = "" +.1.3.6.1.2.1.25.4.2.1.4.13 = "" +.1.3.6.1.2.1.25.4.2.1.4.14 = "" +.1.3.6.1.2.1.25.4.2.1.4.15 = "" +.1.3.6.1.2.1.25.4.2.1.4.17 = "" +.1.3.6.1.2.1.25.4.2.1.4.18 = "" +.1.3.6.1.2.1.25.4.2.1.4.19 = "" +.1.3.6.1.2.1.25.4.2.1.4.20 = "" +.1.3.6.1.2.1.25.4.2.1.4.21 = "" +.1.3.6.1.2.1.25.4.2.1.4.22 = "" +.1.3.6.1.2.1.25.4.2.1.4.23 = "" +.1.3.6.1.2.1.25.4.2.1.4.24 = "" +.1.3.6.1.2.1.25.4.2.1.4.25 = "" +.1.3.6.1.2.1.25.4.2.1.4.43 = "" +.1.3.6.1.2.1.25.4.2.1.4.44 = "" +.1.3.6.1.2.1.25.4.2.1.4.45 = "" +.1.3.6.1.2.1.25.4.2.1.4.46 = "" +.1.3.6.1.2.1.25.4.2.1.4.47 = "" +.1.3.6.1.2.1.25.4.2.1.4.48 = "" +.1.3.6.1.2.1.25.4.2.1.4.49 = "" +.1.3.6.1.2.1.25.4.2.1.4.50 = "" +.1.3.6.1.2.1.25.4.2.1.4.51 = "" +.1.3.6.1.2.1.25.4.2.1.4.52 = "" +.1.3.6.1.2.1.25.4.2.1.4.62 = "" +.1.3.6.1.2.1.25.4.2.1.4.65 = "" +.1.3.6.1.2.1.25.4.2.1.4.66 = "" +.1.3.6.1.2.1.25.4.2.1.4.103 = "" +.1.3.6.1.2.1.25.4.2.1.4.104 = "" +.1.3.6.1.2.1.25.4.2.1.4.105 = "" +.1.3.6.1.2.1.25.4.2.1.4.106 = "" +.1.3.6.1.2.1.25.4.2.1.4.109 = "" +.1.3.6.1.2.1.25.4.2.1.4.128 = "" +.1.3.6.1.2.1.25.4.2.1.4.129 = "" +.1.3.6.1.2.1.25.4.2.1.4.177 = STRING: "/lib/systemd/systemd-journald" +.1.3.6.1.2.1.25.4.2.1.4.193 = STRING: "/lib/systemd/systemd-udevd" +.1.3.6.1.2.1.25.4.2.1.4.218 = STRING: "/usr/bin/dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.4.220 = STRING: "/usr/sbin/rsyslogd" +.1.3.6.1.2.1.25.4.2.1.4.221 = STRING: "/lib/systemd/systemd-logind" +.1.3.6.1.2.1.25.4.2.1.4.243 = "" +.1.3.6.1.2.1.25.4.2.1.4.257 = "" +.1.3.6.1.2.1.25.4.2.1.4.260 = "" +.1.3.6.1.2.1.25.4.2.1.4.263 = "" +.1.3.6.1.2.1.25.4.2.1.4.265 = "" +.1.3.6.1.2.1.25.4.2.1.4.268 = "" +.1.3.6.1.2.1.25.4.2.1.4.270 = "" +.1.3.6.1.2.1.25.4.2.1.4.273 = "" +.1.3.6.1.2.1.25.4.2.1.4.276 = "" +.1.3.6.1.2.1.25.4.2.1.4.279 = "" +.1.3.6.1.2.1.25.4.2.1.4.280 = "" +.1.3.6.1.2.1.25.4.2.1.4.283 = STRING: "/sbin/dhclient" +.1.3.6.1.2.1.25.4.2.1.4.375 = STRING: "/usr/bin/python3" +.1.3.6.1.2.1.25.4.2.1.4.377 = STRING: "/usr/sbin/cron" +.1.3.6.1.2.1.25.4.2.1.4.379 = STRING: "sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups" +.1.3.6.1.2.1.25.4.2.1.4.381 = STRING: "/usr/sbin/chronyd" +.1.3.6.1.2.1.25.4.2.1.4.382 = STRING: "/usr/sbin/chronyd" +.1.3.6.1.2.1.25.4.2.1.4.387 = STRING: "/usr/sbin/centreon-nrpe4" +.1.3.6.1.2.1.25.4.2.1.4.388 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.974 = STRING: "sshd: vagrant [priv]" +.1.3.6.1.2.1.25.4.2.1.4.977 = STRING: "/lib/systemd/systemd" +.1.3.6.1.2.1.25.4.2.1.4.978 = STRING: "(sd-pam)" +.1.3.6.1.2.1.25.4.2.1.4.996 = STRING: "sshd: vagrant@pts/0" +.1.3.6.1.2.1.25.4.2.1.4.997 = STRING: "-bash" +.1.3.6.1.2.1.25.4.2.1.4.1015 = STRING: "sudo" +.1.3.6.1.2.1.25.4.2.1.4.1016 = STRING: "-bash" +.1.3.6.1.2.1.25.4.2.1.4.1198 = "" +.1.3.6.1.2.1.25.4.2.1.4.1199 = STRING: "/usr/sbin/snmpd" +.1.3.6.1.2.1.25.4.2.1.5.1 = "" +.1.3.6.1.2.1.25.4.2.1.5.2 = "" +.1.3.6.1.2.1.25.4.2.1.5.3 = "" +.1.3.6.1.2.1.25.4.2.1.5.4 = "" +.1.3.6.1.2.1.25.4.2.1.5.6 = "" +.1.3.6.1.2.1.25.4.2.1.5.7 = "" +.1.3.6.1.2.1.25.4.2.1.5.8 = "" +.1.3.6.1.2.1.25.4.2.1.5.9 = "" +.1.3.6.1.2.1.25.4.2.1.5.10 = "" +.1.3.6.1.2.1.25.4.2.1.5.11 = "" +.1.3.6.1.2.1.25.4.2.1.5.12 = "" +.1.3.6.1.2.1.25.4.2.1.5.13 = "" +.1.3.6.1.2.1.25.4.2.1.5.14 = "" +.1.3.6.1.2.1.25.4.2.1.5.15 = "" +.1.3.6.1.2.1.25.4.2.1.5.17 = "" +.1.3.6.1.2.1.25.4.2.1.5.18 = "" +.1.3.6.1.2.1.25.4.2.1.5.19 = "" +.1.3.6.1.2.1.25.4.2.1.5.20 = "" +.1.3.6.1.2.1.25.4.2.1.5.21 = "" +.1.3.6.1.2.1.25.4.2.1.5.22 = "" +.1.3.6.1.2.1.25.4.2.1.5.23 = "" +.1.3.6.1.2.1.25.4.2.1.5.24 = "" +.1.3.6.1.2.1.25.4.2.1.5.25 = "" +.1.3.6.1.2.1.25.4.2.1.5.43 = "" +.1.3.6.1.2.1.25.4.2.1.5.44 = "" +.1.3.6.1.2.1.25.4.2.1.5.45 = "" +.1.3.6.1.2.1.25.4.2.1.5.46 = "" +.1.3.6.1.2.1.25.4.2.1.5.47 = "" +.1.3.6.1.2.1.25.4.2.1.5.48 = "" +.1.3.6.1.2.1.25.4.2.1.5.49 = "" +.1.3.6.1.2.1.25.4.2.1.5.50 = "" +.1.3.6.1.2.1.25.4.2.1.5.51 = "" +.1.3.6.1.2.1.25.4.2.1.5.52 = "" +.1.3.6.1.2.1.25.4.2.1.5.62 = "" +.1.3.6.1.2.1.25.4.2.1.5.65 = "" +.1.3.6.1.2.1.25.4.2.1.5.66 = "" +.1.3.6.1.2.1.25.4.2.1.5.103 = "" +.1.3.6.1.2.1.25.4.2.1.5.104 = "" +.1.3.6.1.2.1.25.4.2.1.5.105 = "" +.1.3.6.1.2.1.25.4.2.1.5.106 = "" +.1.3.6.1.2.1.25.4.2.1.5.109 = "" +.1.3.6.1.2.1.25.4.2.1.5.128 = "" +.1.3.6.1.2.1.25.4.2.1.5.129 = "" +.1.3.6.1.2.1.25.4.2.1.5.177 = "" +.1.3.6.1.2.1.25.4.2.1.5.193 = "" +.1.3.6.1.2.1.25.4.2.1.5.218 = STRING: "--system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only" +.1.3.6.1.2.1.25.4.2.1.5.220 = STRING: "-n -iNONE" +.1.3.6.1.2.1.25.4.2.1.5.221 = "" +.1.3.6.1.2.1.25.4.2.1.5.243 = "" +.1.3.6.1.2.1.25.4.2.1.5.257 = "" +.1.3.6.1.2.1.25.4.2.1.5.260 = "" +.1.3.6.1.2.1.25.4.2.1.5.263 = "" +.1.3.6.1.2.1.25.4.2.1.5.265 = "" +.1.3.6.1.2.1.25.4.2.1.5.268 = "" +.1.3.6.1.2.1.25.4.2.1.5.270 = "" +.1.3.6.1.2.1.25.4.2.1.5.273 = "" +.1.3.6.1.2.1.25.4.2.1.5.276 = "" +.1.3.6.1.2.1.25.4.2.1.5.279 = "" +.1.3.6.1.2.1.25.4.2.1.5.280 = "" +.1.3.6.1.2.1.25.4.2.1.5.283 = STRING: "-4 -v -i -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -I -df /var/lib/dhcp/dhclient6.eth0.leases eth0" +.1.3.6.1.2.1.25.4.2.1.5.375 = STRING: "/usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal" +.1.3.6.1.2.1.25.4.2.1.5.377 = STRING: "-f" +.1.3.6.1.2.1.25.4.2.1.5.379 = "" +.1.3.6.1.2.1.25.4.2.1.5.381 = STRING: "-F 1" +.1.3.6.1.2.1.25.4.2.1.5.382 = STRING: "-F 1" +.1.3.6.1.2.1.25.4.2.1.5.387 = STRING: "-c /etc/nrpe/centreon-nrpe4.cfg -d" +.1.3.6.1.2.1.25.4.2.1.5.388 = STRING: "-o -p -- \\u --noclear tty1 linux" +.1.3.6.1.2.1.25.4.2.1.5.974 = "" +.1.3.6.1.2.1.25.4.2.1.5.977 = STRING: "--user" +.1.3.6.1.2.1.25.4.2.1.5.978 = "" +.1.3.6.1.2.1.25.4.2.1.5.996 = "" +.1.3.6.1.2.1.25.4.2.1.5.997 = "" +.1.3.6.1.2.1.25.4.2.1.5.1015 = STRING: "-i" +.1.3.6.1.2.1.25.4.2.1.5.1016 = "" +.1.3.6.1.2.1.25.4.2.1.5.1198 = "" +.1.3.6.1.2.1.25.4.2.1.5.1199 = STRING: "-LOw -u Debian-snmp -g Debian-snmp -I -smux mteTrigger mteTriggerConf -f -p /run/snmpd.pid" +.1.3.6.1.2.1.25.4.2.1.6.1 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.3 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.4 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.6 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.7 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.8 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.9 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.10 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.11 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.12 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.13 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.14 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.15 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.17 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.18 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.19 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.20 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.21 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.22 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.23 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.24 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.25 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.43 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.44 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.45 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.46 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.47 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.48 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.49 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.50 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.51 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.52 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.62 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.65 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.66 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.103 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.104 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.105 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.106 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.109 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.128 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.129 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.177 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.193 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.218 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.220 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.221 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.243 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.257 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.260 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.263 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.265 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.268 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.270 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.273 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.276 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.279 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.280 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.283 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.375 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.377 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.379 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.381 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.382 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.387 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.388 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.974 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.977 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.978 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.996 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.997 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1015 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1016 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1198 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.1199 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.1 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.3 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.4 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.6 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.7 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.8 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.9 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.10 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.11 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.12 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.13 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.14 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.15 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.17 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.18 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.19 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.20 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.21 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.22 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.23 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.24 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.25 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.43 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.44 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.45 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.46 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.47 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.48 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.49 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.50 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.51 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.52 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.62 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.65 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.66 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.103 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.104 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.105 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.106 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.109 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.128 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.129 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.177 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.193 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.218 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.220 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.221 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.243 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.257 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.260 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.263 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.265 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.268 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.270 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.273 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.276 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.279 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.280 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.283 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.375 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.377 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.379 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.381 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.382 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.387 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.388 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.974 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.977 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.978 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.996 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.997 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1015 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1016 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1198 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.1199 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.1 = INTEGER: 201 +.1.3.6.1.2.1.25.5.1.1.1.2 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.3 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.4 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.6 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.7 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.8 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.9 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.10 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.11 = INTEGER: 8 +.1.3.6.1.2.1.25.5.1.1.1.12 = INTEGER: 15 +.1.3.6.1.2.1.25.5.1.1.1.13 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.14 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.15 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.17 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.18 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.19 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.20 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.21 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.22 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.23 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.24 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.25 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.43 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.44 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.45 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.46 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.47 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.48 = INTEGER: 6 +.1.3.6.1.2.1.25.5.1.1.1.49 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.50 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.51 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.52 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.62 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.65 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.66 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.103 = INTEGER: 85 +.1.3.6.1.2.1.25.5.1.1.1.104 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.105 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.106 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.109 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.128 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.129 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.177 = INTEGER: 17 +.1.3.6.1.2.1.25.5.1.1.1.193 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.218 = INTEGER: 9 +.1.3.6.1.2.1.25.5.1.1.1.220 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.221 = INTEGER: 9 +.1.3.6.1.2.1.25.5.1.1.1.243 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.257 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.260 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.263 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.265 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.268 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.270 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.273 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.276 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.279 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.280 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.283 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.375 = INTEGER: 16 +.1.3.6.1.2.1.25.5.1.1.1.377 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.379 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.381 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.382 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.387 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.388 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.974 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.977 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.978 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.996 = INTEGER: 5 +.1.3.6.1.2.1.25.5.1.1.1.997 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.1015 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1016 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.1198 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1199 = INTEGER: 111 +.1.3.6.1.2.1.25.5.1.1.2.1 = INTEGER: 10192 +.1.3.6.1.2.1.25.5.1.1.2.2 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.3 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.4 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.6 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.7 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.8 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.9 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.10 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.11 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.12 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.13 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.14 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.15 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.17 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.18 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.19 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.20 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.21 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.22 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.23 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.24 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.25 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.43 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.44 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.45 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.46 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.47 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.48 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.49 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.50 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.51 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.52 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.62 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.65 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.66 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.103 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.104 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.105 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.106 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.109 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.128 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.129 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.177 = INTEGER: 18432 +.1.3.6.1.2.1.25.5.1.1.2.193 = INTEGER: 4968 +.1.3.6.1.2.1.25.5.1.1.2.218 = INTEGER: 4648 +.1.3.6.1.2.1.25.5.1.1.2.220 = INTEGER: 5928 +.1.3.6.1.2.1.25.5.1.1.2.221 = INTEGER: 7188 +.1.3.6.1.2.1.25.5.1.1.2.243 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.257 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.260 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.263 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.265 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.268 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.270 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.273 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.276 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.279 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.280 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.283 = INTEGER: 5888 +.1.3.6.1.2.1.25.5.1.1.2.375 = INTEGER: 17324 +.1.3.6.1.2.1.25.5.1.1.2.377 = INTEGER: 2692 +.1.3.6.1.2.1.25.5.1.1.2.379 = INTEGER: 7660 +.1.3.6.1.2.1.25.5.1.1.2.381 = INTEGER: 3536 +.1.3.6.1.2.1.25.5.1.1.2.382 = INTEGER: 2940 +.1.3.6.1.2.1.25.5.1.1.2.387 = INTEGER: 2532 +.1.3.6.1.2.1.25.5.1.1.2.388 = INTEGER: 1676 +.1.3.6.1.2.1.25.5.1.1.2.974 = INTEGER: 8628 +.1.3.6.1.2.1.25.5.1.1.2.977 = INTEGER: 7872 +.1.3.6.1.2.1.25.5.1.1.2.978 = INTEGER: 2564 +.1.3.6.1.2.1.25.5.1.1.2.996 = INTEGER: 6244 +.1.3.6.1.2.1.25.5.1.1.2.997 = INTEGER: 4156 +.1.3.6.1.2.1.25.5.1.1.2.1015 = INTEGER: 4564 +.1.3.6.1.2.1.25.5.1.1.2.1016 = INTEGER: 4640 +.1.3.6.1.2.1.25.5.1.1.2.1198 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.1199 = INTEGER: 13548 +.1.3.6.1.2.1.25.6.3.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.6.3.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.6.3.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.25.6.3.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.6.3.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.6.3.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.6.3.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.6.3.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.6.3.1.1.11 = INTEGER: 11 +.1.3.6.1.2.1.25.6.3.1.1.12 = INTEGER: 12 +.1.3.6.1.2.1.25.6.3.1.1.13 = INTEGER: 13 +.1.3.6.1.2.1.25.6.3.1.1.14 = INTEGER: 14 +.1.3.6.1.2.1.25.6.3.1.1.15 = INTEGER: 15 +.1.3.6.1.2.1.25.6.3.1.1.16 = INTEGER: 16 +.1.3.6.1.2.1.25.6.3.1.1.17 = INTEGER: 17 +.1.3.6.1.2.1.25.6.3.1.1.18 = INTEGER: 18 +.1.3.6.1.2.1.25.6.3.1.1.19 = INTEGER: 19 +.1.3.6.1.2.1.25.6.3.1.1.20 = INTEGER: 20 +.1.3.6.1.2.1.25.6.3.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.6.3.1.1.22 = INTEGER: 22 +.1.3.6.1.2.1.25.6.3.1.1.23 = INTEGER: 23 +.1.3.6.1.2.1.25.6.3.1.1.24 = INTEGER: 24 +.1.3.6.1.2.1.25.6.3.1.1.25 = INTEGER: 25 +.1.3.6.1.2.1.25.6.3.1.1.26 = INTEGER: 26 +.1.3.6.1.2.1.25.6.3.1.1.27 = INTEGER: 27 +.1.3.6.1.2.1.25.6.3.1.1.28 = INTEGER: 28 +.1.3.6.1.2.1.25.6.3.1.1.29 = INTEGER: 29 +.1.3.6.1.2.1.25.6.3.1.1.30 = INTEGER: 30 +.1.3.6.1.2.1.25.6.3.1.1.31 = INTEGER: 31 +.1.3.6.1.2.1.25.6.3.1.1.32 = INTEGER: 32 +.1.3.6.1.2.1.25.6.3.1.1.33 = INTEGER: 33 +.1.3.6.1.2.1.25.6.3.1.1.34 = INTEGER: 34 +.1.3.6.1.2.1.25.6.3.1.1.35 = INTEGER: 35 +.1.3.6.1.2.1.25.6.3.1.1.36 = INTEGER: 36 +.1.3.6.1.2.1.25.6.3.1.1.37 = INTEGER: 37 +.1.3.6.1.2.1.25.6.3.1.1.38 = INTEGER: 38 +.1.3.6.1.2.1.25.6.3.1.1.39 = INTEGER: 39 +.1.3.6.1.2.1.25.6.3.1.1.40 = INTEGER: 40 +.1.3.6.1.2.1.25.6.3.1.1.41 = INTEGER: 41 +.1.3.6.1.2.1.25.6.3.1.1.42 = INTEGER: 42 +.1.3.6.1.2.1.25.6.3.1.1.43 = INTEGER: 43 +.1.3.6.1.2.1.25.6.3.1.1.44 = INTEGER: 44 +.1.3.6.1.2.1.25.6.3.1.1.45 = INTEGER: 45 +.1.3.6.1.2.1.25.6.3.1.1.46 = INTEGER: 46 +.1.3.6.1.2.1.25.6.3.1.1.47 = INTEGER: 47 +.1.3.6.1.2.1.25.6.3.1.1.48 = INTEGER: 48 +.1.3.6.1.2.1.25.6.3.1.1.49 = INTEGER: 49 +.1.3.6.1.2.1.25.6.3.1.1.50 = INTEGER: 50 +.1.3.6.1.2.1.25.6.3.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.6.3.1.1.52 = INTEGER: 52 +.1.3.6.1.2.1.25.6.3.1.1.53 = INTEGER: 53 +.1.3.6.1.2.1.25.6.3.1.1.54 = INTEGER: 54 +.1.3.6.1.2.1.25.6.3.1.1.55 = INTEGER: 55 +.1.3.6.1.2.1.25.6.3.1.1.56 = INTEGER: 56 +.1.3.6.1.2.1.25.6.3.1.1.57 = INTEGER: 57 +.1.3.6.1.2.1.25.6.3.1.1.58 = INTEGER: 58 +.1.3.6.1.2.1.25.6.3.1.1.59 = INTEGER: 59 +.1.3.6.1.2.1.25.6.3.1.1.60 = INTEGER: 60 +.1.3.6.1.2.1.25.6.3.1.1.61 = INTEGER: 61 +.1.3.6.1.2.1.25.6.3.1.1.62 = INTEGER: 62 +.1.3.6.1.2.1.25.6.3.1.1.63 = INTEGER: 63 +.1.3.6.1.2.1.25.6.3.1.1.64 = INTEGER: 64 +.1.3.6.1.2.1.25.6.3.1.1.65 = INTEGER: 65 +.1.3.6.1.2.1.25.6.3.1.1.66 = INTEGER: 66 +.1.3.6.1.2.1.25.6.3.1.1.67 = INTEGER: 67 +.1.3.6.1.2.1.25.6.3.1.1.68 = INTEGER: 68 +.1.3.6.1.2.1.25.6.3.1.1.69 = INTEGER: 69 +.1.3.6.1.2.1.25.6.3.1.1.70 = INTEGER: 70 +.1.3.6.1.2.1.25.6.3.1.1.71 = INTEGER: 71 +.1.3.6.1.2.1.25.6.3.1.1.72 = INTEGER: 72 +.1.3.6.1.2.1.25.6.3.1.1.73 = INTEGER: 73 +.1.3.6.1.2.1.25.6.3.1.1.74 = INTEGER: 74 +.1.3.6.1.2.1.25.6.3.1.1.75 = INTEGER: 75 +.1.3.6.1.2.1.25.6.3.1.1.76 = INTEGER: 76 +.1.3.6.1.2.1.25.6.3.1.1.77 = INTEGER: 77 +.1.3.6.1.2.1.25.6.3.1.1.78 = INTEGER: 78 +.1.3.6.1.2.1.25.6.3.1.1.79 = INTEGER: 79 +.1.3.6.1.2.1.25.6.3.1.1.80 = INTEGER: 80 +.1.3.6.1.2.1.25.6.3.1.1.81 = INTEGER: 81 +.1.3.6.1.2.1.25.6.3.1.1.82 = INTEGER: 82 +.1.3.6.1.2.1.25.6.3.1.1.83 = INTEGER: 83 +.1.3.6.1.2.1.25.6.3.1.1.84 = INTEGER: 84 +.1.3.6.1.2.1.25.6.3.1.1.85 = INTEGER: 85 +.1.3.6.1.2.1.25.6.3.1.1.86 = INTEGER: 86 +.1.3.6.1.2.1.25.6.3.1.1.87 = INTEGER: 87 +.1.3.6.1.2.1.25.6.3.1.1.88 = INTEGER: 88 +.1.3.6.1.2.1.25.6.3.1.1.89 = INTEGER: 89 +.1.3.6.1.2.1.25.6.3.1.1.90 = INTEGER: 90 +.1.3.6.1.2.1.25.6.3.1.1.91 = INTEGER: 91 +.1.3.6.1.2.1.25.6.3.1.1.92 = INTEGER: 92 +.1.3.6.1.2.1.25.6.3.1.1.93 = INTEGER: 93 +.1.3.6.1.2.1.25.6.3.1.1.94 = INTEGER: 94 +.1.3.6.1.2.1.25.6.3.1.1.95 = INTEGER: 95 +.1.3.6.1.2.1.25.6.3.1.1.96 = INTEGER: 96 +.1.3.6.1.2.1.25.6.3.1.1.97 = INTEGER: 97 +.1.3.6.1.2.1.25.6.3.1.1.98 = INTEGER: 98 +.1.3.6.1.2.1.25.6.3.1.1.99 = INTEGER: 99 +.1.3.6.1.2.1.25.6.3.1.1.100 = INTEGER: 100 +.1.3.6.1.2.1.25.6.3.1.1.101 = INTEGER: 101 +.1.3.6.1.2.1.25.6.3.1.1.102 = INTEGER: 102 +.1.3.6.1.2.1.25.6.3.1.1.103 = INTEGER: 103 +.1.3.6.1.2.1.25.6.3.1.1.104 = INTEGER: 104 +.1.3.6.1.2.1.25.6.3.1.1.105 = INTEGER: 105 +.1.3.6.1.2.1.25.6.3.1.1.106 = INTEGER: 106 +.1.3.6.1.2.1.25.6.3.1.1.107 = INTEGER: 107 +.1.3.6.1.2.1.25.6.3.1.1.108 = INTEGER: 108 +.1.3.6.1.2.1.25.6.3.1.1.109 = INTEGER: 109 +.1.3.6.1.2.1.25.6.3.1.1.110 = INTEGER: 110 +.1.3.6.1.2.1.25.6.3.1.1.111 = INTEGER: 111 +.1.3.6.1.2.1.25.6.3.1.1.112 = INTEGER: 112 +.1.3.6.1.2.1.25.6.3.1.1.113 = INTEGER: 113 +.1.3.6.1.2.1.25.6.3.1.1.114 = INTEGER: 114 +.1.3.6.1.2.1.25.6.3.1.1.115 = INTEGER: 115 +.1.3.6.1.2.1.25.6.3.1.1.116 = INTEGER: 116 +.1.3.6.1.2.1.25.6.3.1.1.117 = INTEGER: 117 +.1.3.6.1.2.1.25.6.3.1.1.118 = INTEGER: 118 +.1.3.6.1.2.1.25.6.3.1.1.119 = INTEGER: 119 +.1.3.6.1.2.1.25.6.3.1.1.120 = INTEGER: 120 +.1.3.6.1.2.1.25.6.3.1.1.121 = INTEGER: 121 +.1.3.6.1.2.1.25.6.3.1.1.122 = INTEGER: 122 +.1.3.6.1.2.1.25.6.3.1.1.123 = INTEGER: 123 +.1.3.6.1.2.1.25.6.3.1.1.124 = INTEGER: 124 +.1.3.6.1.2.1.25.6.3.1.1.125 = INTEGER: 125 +.1.3.6.1.2.1.25.6.3.1.1.126 = INTEGER: 126 +.1.3.6.1.2.1.25.6.3.1.1.127 = INTEGER: 127 +.1.3.6.1.2.1.25.6.3.1.1.128 = INTEGER: 128 +.1.3.6.1.2.1.25.6.3.1.1.129 = INTEGER: 129 +.1.3.6.1.2.1.25.6.3.1.1.130 = INTEGER: 130 +.1.3.6.1.2.1.25.6.3.1.1.131 = INTEGER: 131 +.1.3.6.1.2.1.25.6.3.1.1.132 = INTEGER: 132 +.1.3.6.1.2.1.25.6.3.1.1.133 = INTEGER: 133 +.1.3.6.1.2.1.25.6.3.1.1.134 = INTEGER: 134 +.1.3.6.1.2.1.25.6.3.1.1.135 = INTEGER: 135 +.1.3.6.1.2.1.25.6.3.1.1.136 = INTEGER: 136 +.1.3.6.1.2.1.25.6.3.1.1.137 = INTEGER: 137 +.1.3.6.1.2.1.25.6.3.1.1.138 = INTEGER: 138 +.1.3.6.1.2.1.25.6.3.1.1.139 = INTEGER: 139 +.1.3.6.1.2.1.25.6.3.1.1.140 = INTEGER: 140 +.1.3.6.1.2.1.25.6.3.1.1.141 = INTEGER: 141 +.1.3.6.1.2.1.25.6.3.1.1.142 = INTEGER: 142 +.1.3.6.1.2.1.25.6.3.1.1.143 = INTEGER: 143 +.1.3.6.1.2.1.25.6.3.1.1.144 = INTEGER: 144 +.1.3.6.1.2.1.25.6.3.1.1.145 = INTEGER: 145 +.1.3.6.1.2.1.25.6.3.1.1.146 = INTEGER: 146 +.1.3.6.1.2.1.25.6.3.1.1.147 = INTEGER: 147 +.1.3.6.1.2.1.25.6.3.1.1.148 = INTEGER: 148 +.1.3.6.1.2.1.25.6.3.1.1.149 = INTEGER: 149 +.1.3.6.1.2.1.25.6.3.1.1.150 = INTEGER: 150 +.1.3.6.1.2.1.25.6.3.1.1.151 = INTEGER: 151 +.1.3.6.1.2.1.25.6.3.1.1.152 = INTEGER: 152 +.1.3.6.1.2.1.25.6.3.1.1.153 = INTEGER: 153 +.1.3.6.1.2.1.25.6.3.1.1.154 = INTEGER: 154 +.1.3.6.1.2.1.25.6.3.1.1.155 = INTEGER: 155 +.1.3.6.1.2.1.25.6.3.1.1.156 = INTEGER: 156 +.1.3.6.1.2.1.25.6.3.1.1.157 = INTEGER: 157 +.1.3.6.1.2.1.25.6.3.1.1.158 = INTEGER: 158 +.1.3.6.1.2.1.25.6.3.1.1.159 = INTEGER: 159 +.1.3.6.1.2.1.25.6.3.1.1.160 = INTEGER: 160 +.1.3.6.1.2.1.25.6.3.1.1.161 = INTEGER: 161 +.1.3.6.1.2.1.25.6.3.1.1.162 = INTEGER: 162 +.1.3.6.1.2.1.25.6.3.1.1.163 = INTEGER: 163 +.1.3.6.1.2.1.25.6.3.1.1.164 = INTEGER: 164 +.1.3.6.1.2.1.25.6.3.1.1.165 = INTEGER: 165 +.1.3.6.1.2.1.25.6.3.1.1.166 = INTEGER: 166 +.1.3.6.1.2.1.25.6.3.1.1.167 = INTEGER: 167 +.1.3.6.1.2.1.25.6.3.1.1.168 = INTEGER: 168 +.1.3.6.1.2.1.25.6.3.1.1.169 = INTEGER: 169 +.1.3.6.1.2.1.25.6.3.1.1.170 = INTEGER: 170 +.1.3.6.1.2.1.25.6.3.1.1.171 = INTEGER: 171 +.1.3.6.1.2.1.25.6.3.1.1.172 = INTEGER: 172 +.1.3.6.1.2.1.25.6.3.1.1.173 = INTEGER: 173 +.1.3.6.1.2.1.25.6.3.1.1.174 = INTEGER: 174 +.1.3.6.1.2.1.25.6.3.1.1.175 = INTEGER: 175 +.1.3.6.1.2.1.25.6.3.1.1.176 = INTEGER: 176 +.1.3.6.1.2.1.25.6.3.1.1.177 = INTEGER: 177 +.1.3.6.1.2.1.25.6.3.1.1.178 = INTEGER: 178 +.1.3.6.1.2.1.25.6.3.1.1.179 = INTEGER: 179 +.1.3.6.1.2.1.25.6.3.1.1.180 = INTEGER: 180 +.1.3.6.1.2.1.25.6.3.1.1.181 = INTEGER: 181 +.1.3.6.1.2.1.25.6.3.1.1.182 = INTEGER: 182 +.1.3.6.1.2.1.25.6.3.1.1.183 = INTEGER: 183 +.1.3.6.1.2.1.25.6.3.1.1.184 = INTEGER: 184 +.1.3.6.1.2.1.25.6.3.1.1.185 = INTEGER: 185 +.1.3.6.1.2.1.25.6.3.1.1.186 = INTEGER: 186 +.1.3.6.1.2.1.25.6.3.1.1.187 = INTEGER: 187 +.1.3.6.1.2.1.25.6.3.1.1.188 = INTEGER: 188 +.1.3.6.1.2.1.25.6.3.1.1.189 = INTEGER: 189 +.1.3.6.1.2.1.25.6.3.1.1.190 = INTEGER: 190 +.1.3.6.1.2.1.25.6.3.1.1.191 = INTEGER: 191 +.1.3.6.1.2.1.25.6.3.1.1.192 = INTEGER: 192 +.1.3.6.1.2.1.25.6.3.1.1.193 = INTEGER: 193 +.1.3.6.1.2.1.25.6.3.1.1.194 = INTEGER: 194 +.1.3.6.1.2.1.25.6.3.1.1.195 = INTEGER: 195 +.1.3.6.1.2.1.25.6.3.1.1.196 = INTEGER: 196 +.1.3.6.1.2.1.25.6.3.1.1.197 = INTEGER: 197 +.1.3.6.1.2.1.25.6.3.1.1.198 = INTEGER: 198 +.1.3.6.1.2.1.25.6.3.1.1.199 = INTEGER: 199 +.1.3.6.1.2.1.25.6.3.1.1.200 = INTEGER: 200 +.1.3.6.1.2.1.25.6.3.1.1.201 = INTEGER: 201 +.1.3.6.1.2.1.25.6.3.1.1.202 = INTEGER: 202 +.1.3.6.1.2.1.25.6.3.1.1.203 = INTEGER: 203 +.1.3.6.1.2.1.25.6.3.1.1.204 = INTEGER: 204 +.1.3.6.1.2.1.25.6.3.1.1.205 = INTEGER: 205 +.1.3.6.1.2.1.25.6.3.1.1.206 = INTEGER: 206 +.1.3.6.1.2.1.25.6.3.1.1.207 = INTEGER: 207 +.1.3.6.1.2.1.25.6.3.1.1.208 = INTEGER: 208 +.1.3.6.1.2.1.25.6.3.1.1.209 = INTEGER: 209 +.1.3.6.1.2.1.25.6.3.1.1.210 = INTEGER: 210 +.1.3.6.1.2.1.25.6.3.1.1.211 = INTEGER: 211 +.1.3.6.1.2.1.25.6.3.1.1.212 = INTEGER: 212 +.1.3.6.1.2.1.25.6.3.1.1.213 = INTEGER: 213 +.1.3.6.1.2.1.25.6.3.1.1.214 = INTEGER: 214 +.1.3.6.1.2.1.25.6.3.1.1.215 = INTEGER: 215 +.1.3.6.1.2.1.25.6.3.1.1.216 = INTEGER: 216 +.1.3.6.1.2.1.25.6.3.1.1.217 = INTEGER: 217 +.1.3.6.1.2.1.25.6.3.1.1.218 = INTEGER: 218 +.1.3.6.1.2.1.25.6.3.1.1.219 = INTEGER: 219 +.1.3.6.1.2.1.25.6.3.1.1.220 = INTEGER: 220 +.1.3.6.1.2.1.25.6.3.1.1.221 = INTEGER: 221 +.1.3.6.1.2.1.25.6.3.1.1.222 = INTEGER: 222 +.1.3.6.1.2.1.25.6.3.1.1.223 = INTEGER: 223 +.1.3.6.1.2.1.25.6.3.1.1.224 = INTEGER: 224 +.1.3.6.1.2.1.25.6.3.1.1.225 = INTEGER: 225 +.1.3.6.1.2.1.25.6.3.1.1.226 = INTEGER: 226 +.1.3.6.1.2.1.25.6.3.1.1.227 = INTEGER: 227 +.1.3.6.1.2.1.25.6.3.1.1.228 = INTEGER: 228 +.1.3.6.1.2.1.25.6.3.1.1.229 = INTEGER: 229 +.1.3.6.1.2.1.25.6.3.1.1.230 = INTEGER: 230 +.1.3.6.1.2.1.25.6.3.1.1.231 = INTEGER: 231 +.1.3.6.1.2.1.25.6.3.1.1.232 = INTEGER: 232 +.1.3.6.1.2.1.25.6.3.1.1.233 = INTEGER: 233 +.1.3.6.1.2.1.25.6.3.1.1.234 = INTEGER: 234 +.1.3.6.1.2.1.25.6.3.1.1.235 = INTEGER: 235 +.1.3.6.1.2.1.25.6.3.1.1.236 = INTEGER: 236 +.1.3.6.1.2.1.25.6.3.1.1.237 = INTEGER: 237 +.1.3.6.1.2.1.25.6.3.1.1.238 = INTEGER: 238 +.1.3.6.1.2.1.25.6.3.1.1.239 = INTEGER: 239 +.1.3.6.1.2.1.25.6.3.1.1.240 = INTEGER: 240 +.1.3.6.1.2.1.25.6.3.1.1.241 = INTEGER: 241 +.1.3.6.1.2.1.25.6.3.1.1.242 = INTEGER: 242 +.1.3.6.1.2.1.25.6.3.1.1.243 = INTEGER: 243 +.1.3.6.1.2.1.25.6.3.1.1.244 = INTEGER: 244 +.1.3.6.1.2.1.25.6.3.1.1.245 = INTEGER: 245 +.1.3.6.1.2.1.25.6.3.1.1.246 = INTEGER: 246 +.1.3.6.1.2.1.25.6.3.1.1.247 = INTEGER: 247 +.1.3.6.1.2.1.25.6.3.1.1.248 = INTEGER: 248 +.1.3.6.1.2.1.25.6.3.1.1.249 = INTEGER: 249 +.1.3.6.1.2.1.25.6.3.1.1.250 = INTEGER: 250 +.1.3.6.1.2.1.25.6.3.1.1.251 = INTEGER: 251 +.1.3.6.1.2.1.25.6.3.1.1.252 = INTEGER: 252 +.1.3.6.1.2.1.25.6.3.1.1.253 = INTEGER: 253 +.1.3.6.1.2.1.25.6.3.1.1.254 = INTEGER: 254 +.1.3.6.1.2.1.25.6.3.1.1.255 = INTEGER: 255 +.1.3.6.1.2.1.25.6.3.1.1.256 = INTEGER: 256 +.1.3.6.1.2.1.25.6.3.1.1.257 = INTEGER: 257 +.1.3.6.1.2.1.25.6.3.1.1.258 = INTEGER: 258 +.1.3.6.1.2.1.25.6.3.1.1.259 = INTEGER: 259 +.1.3.6.1.2.1.25.6.3.1.1.260 = INTEGER: 260 +.1.3.6.1.2.1.25.6.3.1.1.261 = INTEGER: 261 +.1.3.6.1.2.1.25.6.3.1.1.262 = INTEGER: 262 +.1.3.6.1.2.1.25.6.3.1.1.263 = INTEGER: 263 +.1.3.6.1.2.1.25.6.3.1.1.264 = INTEGER: 264 +.1.3.6.1.2.1.25.6.3.1.1.265 = INTEGER: 265 +.1.3.6.1.2.1.25.6.3.1.1.266 = INTEGER: 266 +.1.3.6.1.2.1.25.6.3.1.1.267 = INTEGER: 267 +.1.3.6.1.2.1.25.6.3.1.1.268 = INTEGER: 268 +.1.3.6.1.2.1.25.6.3.1.1.269 = INTEGER: 269 +.1.3.6.1.2.1.25.6.3.1.1.270 = INTEGER: 270 +.1.3.6.1.2.1.25.6.3.1.1.271 = INTEGER: 271 +.1.3.6.1.2.1.25.6.3.1.1.272 = INTEGER: 272 +.1.3.6.1.2.1.25.6.3.1.1.273 = INTEGER: 273 +.1.3.6.1.2.1.25.6.3.1.1.274 = INTEGER: 274 +.1.3.6.1.2.1.25.6.3.1.1.275 = INTEGER: 275 +.1.3.6.1.2.1.25.6.3.1.1.276 = INTEGER: 276 +.1.3.6.1.2.1.25.6.3.1.1.277 = INTEGER: 277 +.1.3.6.1.2.1.25.6.3.1.1.278 = INTEGER: 278 +.1.3.6.1.2.1.25.6.3.1.1.279 = INTEGER: 279 +.1.3.6.1.2.1.25.6.3.1.1.280 = INTEGER: 280 +.1.3.6.1.2.1.25.6.3.1.1.281 = INTEGER: 281 +.1.3.6.1.2.1.25.6.3.1.1.282 = INTEGER: 282 +.1.3.6.1.2.1.25.6.3.1.1.283 = INTEGER: 283 +.1.3.6.1.2.1.25.6.3.1.1.284 = INTEGER: 284 +.1.3.6.1.2.1.25.6.3.1.1.285 = INTEGER: 285 +.1.3.6.1.2.1.25.6.3.1.1.286 = INTEGER: 286 +.1.3.6.1.2.1.25.6.3.1.1.287 = INTEGER: 287 +.1.3.6.1.2.1.25.6.3.1.1.288 = INTEGER: 288 +.1.3.6.1.2.1.25.6.3.1.1.289 = INTEGER: 289 +.1.3.6.1.2.1.25.6.3.1.1.290 = INTEGER: 290 +.1.3.6.1.2.1.25.6.3.1.1.291 = INTEGER: 291 +.1.3.6.1.2.1.25.6.3.1.1.292 = INTEGER: 292 +.1.3.6.1.2.1.25.6.3.1.1.293 = INTEGER: 293 +.1.3.6.1.2.1.25.6.3.1.1.294 = INTEGER: 294 +.1.3.6.1.2.1.25.6.3.1.1.295 = INTEGER: 295 +.1.3.6.1.2.1.25.6.3.1.1.296 = INTEGER: 296 +.1.3.6.1.2.1.25.6.3.1.1.297 = INTEGER: 297 +.1.3.6.1.2.1.25.6.3.1.1.298 = INTEGER: 298 +.1.3.6.1.2.1.25.6.3.1.1.299 = INTEGER: 299 +.1.3.6.1.2.1.25.6.3.1.1.300 = INTEGER: 300 +.1.3.6.1.2.1.25.6.3.1.1.301 = INTEGER: 301 +.1.3.6.1.2.1.25.6.3.1.1.302 = INTEGER: 302 +.1.3.6.1.2.1.25.6.3.1.1.303 = INTEGER: 303 +.1.3.6.1.2.1.25.6.3.1.1.304 = INTEGER: 304 +.1.3.6.1.2.1.25.6.3.1.1.305 = INTEGER: 305 +.1.3.6.1.2.1.25.6.3.1.1.306 = INTEGER: 306 +.1.3.6.1.2.1.25.6.3.1.1.307 = INTEGER: 307 +.1.3.6.1.2.1.25.6.3.1.1.308 = INTEGER: 308 +.1.3.6.1.2.1.25.6.3.1.1.309 = INTEGER: 309 +.1.3.6.1.2.1.25.6.3.1.1.310 = INTEGER: 310 +.1.3.6.1.2.1.25.6.3.1.1.311 = INTEGER: 311 +.1.3.6.1.2.1.25.6.3.1.1.312 = INTEGER: 312 +.1.3.6.1.2.1.25.6.3.1.1.313 = INTEGER: 313 +.1.3.6.1.2.1.25.6.3.1.1.314 = INTEGER: 314 +.1.3.6.1.2.1.25.6.3.1.1.315 = INTEGER: 315 +.1.3.6.1.2.1.25.6.3.1.1.316 = INTEGER: 316 +.1.3.6.1.2.1.25.6.3.1.1.317 = INTEGER: 317 +.1.3.6.1.2.1.25.6.3.1.1.318 = INTEGER: 318 +.1.3.6.1.2.1.25.6.3.1.1.319 = INTEGER: 319 +.1.3.6.1.2.1.25.6.3.1.1.320 = INTEGER: 320 +.1.3.6.1.2.1.25.6.3.1.1.321 = INTEGER: 321 +.1.3.6.1.2.1.25.6.3.1.1.322 = INTEGER: 322 +.1.3.6.1.2.1.25.6.3.1.1.323 = INTEGER: 323 +.1.3.6.1.2.1.25.6.3.1.1.324 = INTEGER: 324 +.1.3.6.1.2.1.25.6.3.1.1.325 = INTEGER: 325 +.1.3.6.1.2.1.25.6.3.1.1.326 = INTEGER: 326 +.1.3.6.1.2.1.25.6.3.1.1.327 = INTEGER: 327 +.1.3.6.1.2.1.25.6.3.1.1.328 = INTEGER: 328 +.1.3.6.1.2.1.25.6.3.1.1.329 = INTEGER: 329 +.1.3.6.1.2.1.25.6.3.1.1.330 = INTEGER: 330 +.1.3.6.1.2.1.25.6.3.1.1.331 = INTEGER: 331 +.1.3.6.1.2.1.25.6.3.1.1.332 = INTEGER: 332 +.1.3.6.1.2.1.25.6.3.1.1.333 = INTEGER: 333 +.1.3.6.1.2.1.25.6.3.1.1.334 = INTEGER: 334 +.1.3.6.1.2.1.25.6.3.1.1.335 = INTEGER: 335 +.1.3.6.1.2.1.25.6.3.1.1.336 = INTEGER: 336 +.1.3.6.1.2.1.25.6.3.1.1.337 = INTEGER: 337 +.1.3.6.1.2.1.25.6.3.1.1.338 = INTEGER: 338 +.1.3.6.1.2.1.25.6.3.1.1.339 = INTEGER: 339 +.1.3.6.1.2.1.25.6.3.1.1.340 = INTEGER: 340 +.1.3.6.1.2.1.25.6.3.1.1.341 = INTEGER: 341 +.1.3.6.1.2.1.25.6.3.1.1.342 = INTEGER: 342 +.1.3.6.1.2.1.25.6.3.1.1.343 = INTEGER: 343 +.1.3.6.1.2.1.25.6.3.1.1.344 = INTEGER: 344 +.1.3.6.1.2.1.25.6.3.1.1.345 = INTEGER: 345 +.1.3.6.1.2.1.25.6.3.1.1.346 = INTEGER: 346 +.1.3.6.1.2.1.25.6.3.1.1.347 = INTEGER: 347 +.1.3.6.1.2.1.25.6.3.1.1.348 = INTEGER: 348 +.1.3.6.1.2.1.25.6.3.1.1.349 = INTEGER: 349 +.1.3.6.1.2.1.25.6.3.1.1.350 = INTEGER: 350 +.1.3.6.1.2.1.25.6.3.1.1.351 = INTEGER: 351 +.1.3.6.1.2.1.25.6.3.1.1.352 = INTEGER: 352 +.1.3.6.1.2.1.25.6.3.1.1.353 = INTEGER: 353 +.1.3.6.1.2.1.25.6.3.1.1.354 = INTEGER: 354 +.1.3.6.1.2.1.25.6.3.1.1.355 = INTEGER: 355 +.1.3.6.1.2.1.25.6.3.1.1.356 = INTEGER: 356 +.1.3.6.1.2.1.25.6.3.1.1.357 = INTEGER: 357 +.1.3.6.1.2.1.25.6.3.1.1.358 = INTEGER: 358 +.1.3.6.1.2.1.25.6.3.1.1.359 = INTEGER: 359 +.1.3.6.1.2.1.25.6.3.1.1.360 = INTEGER: 360 +.1.3.6.1.2.1.25.6.3.1.1.361 = INTEGER: 361 +.1.3.6.1.2.1.25.6.3.1.1.362 = INTEGER: 362 +.1.3.6.1.2.1.25.6.3.1.1.363 = INTEGER: 363 +.1.3.6.1.2.1.25.6.3.1.1.364 = INTEGER: 364 +.1.3.6.1.2.1.25.6.3.1.1.365 = INTEGER: 365 +.1.3.6.1.2.1.25.6.3.1.1.366 = INTEGER: 366 +.1.3.6.1.2.1.25.6.3.1.1.367 = INTEGER: 367 +.1.3.6.1.2.1.25.6.3.1.1.368 = INTEGER: 368 +.1.3.6.1.2.1.25.6.3.1.1.369 = INTEGER: 369 +.1.3.6.1.2.1.25.6.3.1.1.370 = INTEGER: 370 +.1.3.6.1.2.1.25.6.3.1.1.371 = INTEGER: 371 +.1.3.6.1.2.1.25.6.3.1.1.372 = INTEGER: 372 +.1.3.6.1.2.1.25.6.3.1.1.373 = INTEGER: 373 +.1.3.6.1.2.1.25.6.3.1.1.374 = INTEGER: 374 +.1.3.6.1.2.1.25.6.3.1.1.375 = INTEGER: 375 +.1.3.6.1.2.1.25.6.3.1.1.376 = INTEGER: 376 +.1.3.6.1.2.1.25.6.3.1.1.377 = INTEGER: 377 +.1.3.6.1.2.1.25.6.3.1.1.378 = INTEGER: 378 +.1.3.6.1.2.1.25.6.3.1.1.379 = INTEGER: 379 +.1.3.6.1.2.1.25.6.3.1.1.380 = INTEGER: 380 +.1.3.6.1.2.1.25.6.3.1.1.381 = INTEGER: 381 +.1.3.6.1.2.1.25.6.3.1.1.382 = INTEGER: 382 +.1.3.6.1.2.1.25.6.3.1.1.383 = INTEGER: 383 +.1.3.6.1.2.1.25.6.3.1.1.384 = INTEGER: 384 +.1.3.6.1.2.1.25.6.3.1.1.385 = INTEGER: 385 +.1.3.6.1.2.1.25.6.3.1.1.386 = INTEGER: 386 +.1.3.6.1.2.1.25.6.3.1.1.387 = INTEGER: 387 +.1.3.6.1.2.1.25.6.3.1.1.388 = INTEGER: 388 +.1.3.6.1.2.1.25.6.3.1.1.389 = INTEGER: 389 +.1.3.6.1.2.1.25.6.3.1.1.390 = INTEGER: 390 +.1.3.6.1.2.1.25.6.3.1.1.391 = INTEGER: 391 +.1.3.6.1.2.1.25.6.3.1.1.392 = INTEGER: 392 +.1.3.6.1.2.1.25.6.3.1.1.393 = INTEGER: 393 +.1.3.6.1.2.1.25.6.3.1.1.394 = INTEGER: 394 +.1.3.6.1.2.1.25.6.3.1.1.395 = INTEGER: 395 +.1.3.6.1.2.1.25.6.3.1.1.396 = INTEGER: 396 +.1.3.6.1.2.1.25.6.3.1.1.397 = INTEGER: 397 +.1.3.6.1.2.1.25.6.3.1.1.398 = INTEGER: 398 +.1.3.6.1.2.1.25.6.3.1.1.399 = INTEGER: 399 +.1.3.6.1.2.1.25.6.3.1.1.400 = INTEGER: 400 +.1.3.6.1.2.1.25.6.3.1.1.401 = INTEGER: 401 +.1.3.6.1.2.1.25.6.3.1.1.402 = INTEGER: 402 +.1.3.6.1.2.1.25.6.3.1.1.403 = INTEGER: 403 +.1.3.6.1.2.1.25.6.3.1.1.404 = INTEGER: 404 +.1.3.6.1.2.1.25.6.3.1.1.405 = INTEGER: 405 +.1.3.6.1.2.1.25.6.3.1.1.406 = INTEGER: 406 +.1.3.6.1.2.1.25.6.3.1.1.407 = INTEGER: 407 +.1.3.6.1.2.1.25.6.3.1.1.408 = INTEGER: 408 +.1.3.6.1.2.1.25.6.3.1.1.409 = INTEGER: 409 +.1.3.6.1.2.1.25.6.3.1.1.410 = INTEGER: 410 +.1.3.6.1.2.1.25.6.3.1.1.411 = INTEGER: 411 +.1.3.6.1.2.1.25.6.3.1.1.412 = INTEGER: 412 +.1.3.6.1.2.1.25.6.3.1.1.413 = INTEGER: 413 +.1.3.6.1.2.1.25.6.3.1.1.414 = INTEGER: 414 +.1.3.6.1.2.1.25.6.3.1.1.415 = INTEGER: 415 +.1.3.6.1.2.1.25.6.3.1.1.416 = INTEGER: 416 +.1.3.6.1.2.1.25.6.3.1.1.417 = INTEGER: 417 +.1.3.6.1.2.1.25.6.3.1.1.418 = INTEGER: 418 +.1.3.6.1.2.1.25.6.3.1.1.419 = INTEGER: 419 +.1.3.6.1.2.1.25.6.3.1.1.420 = INTEGER: 420 +.1.3.6.1.2.1.25.6.3.1.1.421 = INTEGER: 421 +.1.3.6.1.2.1.25.6.3.1.1.422 = INTEGER: 422 +.1.3.6.1.2.1.25.6.3.1.1.423 = INTEGER: 423 +.1.3.6.1.2.1.25.6.3.1.1.424 = INTEGER: 424 +.1.3.6.1.2.1.25.6.3.1.1.425 = INTEGER: 425 +.1.3.6.1.2.1.25.6.3.1.1.426 = INTEGER: 426 +.1.3.6.1.2.1.25.6.3.1.1.427 = INTEGER: 427 +.1.3.6.1.2.1.25.6.3.1.1.428 = INTEGER: 428 +.1.3.6.1.2.1.25.6.3.1.1.429 = INTEGER: 429 +.1.3.6.1.2.1.25.6.3.1.2.1 = STRING: "adduser_3.118+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.2 = STRING: "apparmor_2.13.6-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.3 = STRING: "apt_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.4 = STRING: "apt-listchanges_3.24_all" +.1.3.6.1.2.1.25.6.3.1.2.5 = STRING: "apt-utils_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.6 = STRING: "base-files_11.1+deb11u9_amd64" +.1.3.6.1.2.1.25.6.3.1.2.7 = STRING: "base-passwd_3.5.51_amd64" +.1.3.6.1.2.1.25.6.3.1.2.8 = STRING: "bash_5.1-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.9 = STRING: "bash-completion_1:2.11-2_all" +.1.3.6.1.2.1.25.6.3.1.2.10 = STRING: "bind9-dnsutils_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.11 = STRING: "bind9-host_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.12 = STRING: "bind9-libs_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.13 = STRING: "bsdextrautils_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.14 = STRING: "bsdutils_1:2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.15 = STRING: "bzip2_1.0.8-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.16 = STRING: "ca-certificates_20210119_all" +.1.3.6.1.2.1.25.6.3.1.2.17 = STRING: "centreon-nrpe4-daemon_4.1.0-102130~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.18 = STRING: "centreon-plugin-operatingsystems-linux-local_20240305-134421~bu" +.1.3.6.1.2.1.25.6.3.1.2.19 = STRING: "chrony_4.0-8+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.20 = STRING: "cloud-guest-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.21 = STRING: "cloud-image-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.22 = STRING: "cloud-initramfs-growroot_0.18.debian8_all" +.1.3.6.1.2.1.25.6.3.1.2.23 = STRING: "cloud-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.24 = STRING: "coreutils_8.32-4+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.25 = STRING: "cpio_2.13+dfsg-7.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.26 = STRING: "cron_3.0pl1-137_amd64" +.1.3.6.1.2.1.25.6.3.1.2.27 = STRING: "dash_0.5.11+git20200708+dd9ef66-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.28 = STRING: "dbus_1.12.28-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.29 = STRING: "debconf_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.30 = STRING: "debconf-i18n_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.31 = STRING: "debian-archive-keyring_2021.1.1+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.32 = STRING: "debian-faq_10.1_all" +.1.3.6.1.2.1.25.6.3.1.2.33 = STRING: "debianutils_4.11.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.34 = STRING: "diffutils_1:3.7-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.35 = STRING: "dirmngr_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.36 = STRING: "distro-info-data_0.51+deb11u5_all" +.1.3.6.1.2.1.25.6.3.1.2.37 = STRING: "dmidecode_3.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.38 = STRING: "dmsetup_2:1.02.175-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.39 = STRING: "doc-debian_6.5_all" +.1.3.6.1.2.1.25.6.3.1.2.40 = STRING: "dpkg_1.20.13_amd64" +.1.3.6.1.2.1.25.6.3.1.2.41 = STRING: "e2fsprogs_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.42 = STRING: "fdisk_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.43 = STRING: "file_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.44 = STRING: "findutils_4.8.0-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.45 = STRING: "firmware-linux-free_20200122-1_all" +.1.3.6.1.2.1.25.6.3.1.2.46 = STRING: "gcc-10-base_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.47 = STRING: "gcc-9-base_9.3.0-22_amd64" +.1.3.6.1.2.1.25.6.3.1.2.48 = STRING: "genisoimage_9:1.1.11-3.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.49 = STRING: "gettext-base_0.21-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.50 = STRING: "gnupg_2.2.27-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.51 = STRING: "gnupg-l10n_2.2.27-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.52 = STRING: "gnupg-utils_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.53 = STRING: "gpg_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.54 = STRING: "gpg-agent_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.55 = STRING: "gpg-wks-client_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.56 = STRING: "gpg-wks-server_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.57 = STRING: "gpgconf_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.58 = STRING: "gpgsm_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.59 = STRING: "gpgv_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.60 = STRING: "grep_3.6-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.61 = STRING: "groff-base_1.22.4-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.62 = STRING: "grub-common_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.63 = STRING: "grub-pc_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.64 = STRING: "grub-pc-bin_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.65 = STRING: "grub2-common_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.66 = STRING: "gzip_1.10-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.67 = STRING: "hostname_3.23_amd64" +.1.3.6.1.2.1.25.6.3.1.2.68 = STRING: "ifupdown_0.8.36_amd64" +.1.3.6.1.2.1.25.6.3.1.2.69 = STRING: "init_1.60_amd64" +.1.3.6.1.2.1.25.6.3.1.2.70 = STRING: "init-system-helpers_1.60_all" +.1.3.6.1.2.1.25.6.3.1.2.71 = STRING: "initramfs-tools_0.140_all" +.1.3.6.1.2.1.25.6.3.1.2.72 = STRING: "initramfs-tools-core_0.140_all" +.1.3.6.1.2.1.25.6.3.1.2.73 = STRING: "iproute2_5.10.0-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.74 = STRING: "iptables_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.75 = STRING: "iputils-ping_3:20210202-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.76 = STRING: "isc-dhcp-client_4.4.1-2.3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.77 = STRING: "isc-dhcp-common_4.4.1-2.3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.78 = STRING: "klibc-utils_2.0.8-6.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.79 = STRING: "kmod_28-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.80 = STRING: "krb5-locales_1.18.3-6+deb11u4_all" +.1.3.6.1.2.1.25.6.3.1.2.81 = STRING: "less_551-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.82 = STRING: "libacl1_2.2.53-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.83 = STRING: "libaio1_0.3.112-9_amd64" +.1.3.6.1.2.1.25.6.3.1.2.84 = STRING: "libalgorithm-c3-perl_0.11-1_all" +.1.3.6.1.2.1.25.6.3.1.2.85 = STRING: "libapparmor1_2.13.6-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.86 = STRING: "libapt-pkg6.0_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.87 = STRING: "libargon2-1_0~20171227-0.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.88 = STRING: "libassuan0_2.5.3-7.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.89 = STRING: "libattr1_1:2.4.48-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.90 = STRING: "libaudit-common_1:3.0-2_all" +.1.3.6.1.2.1.25.6.3.1.2.91 = STRING: "libaudit1_1:3.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.92 = STRING: "libauthen-sasl-perl_2.1600-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.93 = STRING: "libb-hooks-endofscope-perl_0.24-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.94 = STRING: "libb-hooks-op-check-perl_0.22-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.95 = STRING: "libblkid1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.96 = STRING: "libbpf0_1:0.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.97 = STRING: "libbrotli1_1.0.9-2+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.98 = STRING: "libbsd0_0.11.3-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.99 = STRING: "libbz2-1.0_1.0.8-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.100 = STRING: "libc-bin_2.31-13+deb11u8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.101 = STRING: "libc-l10n_2.31-13+deb11u8_all" +.1.3.6.1.2.1.25.6.3.1.2.102 = STRING: "libc6_2.31-13+deb11u8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.103 = STRING: "libcap-ng0_0.7.9-2.2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.104 = STRING: "libcap2_1:2.44-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.105 = STRING: "libcap2-bin_1:2.44-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.106 = STRING: "libcarp-assert-perl_0.21-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.107 = STRING: "libcbor0_0.5.0+dfsg-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.108 = STRING: "libclass-c3-perl_0.35-1_all" +.1.3.6.1.2.1.25.6.3.1.2.109 = STRING: "libclass-c3-xs-perl_0.15-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.110 = STRING: "libclass-data-inheritable-perl_0.08-3_all" +.1.3.6.1.2.1.25.6.3.1.2.111 = STRING: "libclass-inspector-perl_1.36-1_all" +.1.3.6.1.2.1.25.6.3.1.2.112 = STRING: "libclass-method-modifiers-perl_2.13-1_all" +.1.3.6.1.2.1.25.6.3.1.2.113 = STRING: "libclass-singleton-perl_1.6-1_all" +.1.3.6.1.2.1.25.6.3.1.2.114 = STRING: "libclass-xsaccessor-perl_1.19-3+b7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.115 = STRING: "libclone-perl_0.45-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.116 = STRING: "libcom-err2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.117 = STRING: "libcommon-sense-perl_3.75-1+b4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.118 = STRING: "libcrypt-argon2-perl_0.020-1~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.119 = STRING: "libcrypt1_1:4.4.18-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.120 = STRING: "libcryptsetup12_2:2.3.7-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.121 = STRING: "libcryptx-perl_0.069-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.122 = STRING: "libcurl3-gnutls_7.74.0-1.3+deb11u11_amd64" +.1.3.6.1.2.1.25.6.3.1.2.123 = STRING: "libcurl4_7.74.0-1.3+deb11u11_amd64" +.1.3.6.1.2.1.25.6.3.1.2.124 = STRING: "libdata-dump-perl_1.23-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.125 = STRING: "libdata-optlist-perl_0.110-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.126 = STRING: "libdatetime-locale-perl_1:1.31-1_all" +.1.3.6.1.2.1.25.6.3.1.2.127 = STRING: "libdatetime-perl_2:1.54-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.128 = STRING: "libdatetime-timezone-perl_1:2.47-1+2024a_all" +.1.3.6.1.2.1.25.6.3.1.2.129 = STRING: "libdb5.3_5.3.28+dfsg1-0.8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.130 = STRING: "libdbus-1-3_1.12.28-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.131 = STRING: "libdebconfclient0_0.260_amd64" +.1.3.6.1.2.1.25.6.3.1.2.132 = STRING: "libdevel-callchecker-perl_0.008-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.133 = STRING: "libdevel-caller-perl_2.06-2+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.134 = STRING: "libdevel-lexalias-perl_0.05-2+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.135 = STRING: "libdevel-stacktrace-perl_2.0400-1_all" +.1.3.6.1.2.1.25.6.3.1.2.136 = STRING: "libdevmapper1.02.1_2:1.02.175-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.137 = STRING: "libdns-export1110_1:9.11.19+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.138 = STRING: "libdynaloader-functions-perl_0.003-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.139 = STRING: "libedit2_3.1-20191231-2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.140 = STRING: "libefiboot1_37-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.141 = STRING: "libefivar1_37-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.142 = STRING: "libelf1_0.183-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.143 = STRING: "libencode-locale-perl_1.05-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.144 = STRING: "libestr0_0.1.10-2.1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.145 = STRING: "libeval-closure-perl_0.14-1_all" +.1.3.6.1.2.1.25.6.3.1.2.146 = STRING: "libexception-class-perl_1.44-1_all" +.1.3.6.1.2.1.25.6.3.1.2.147 = STRING: "libexpat1_2.2.10-2+deb11u5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.148 = STRING: "libexporter-tiny-perl_1.002002-1_all" +.1.3.6.1.2.1.25.6.3.1.2.149 = STRING: "libext2fs2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.150 = STRING: "libfastjson4_0.99.9-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.151 = STRING: "libfdisk1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.152 = STRING: "libffi7_3.3-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.153 = STRING: "libfido2-1_1.6.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.154 = STRING: "libfile-listing-perl_6.14-1_all" +.1.3.6.1.2.1.25.6.3.1.2.155 = STRING: "libfile-sharedir-perl_1.118-1_all" +.1.3.6.1.2.1.25.6.3.1.2.156 = STRING: "libfont-afm-perl_1.20-3_all" +.1.3.6.1.2.1.25.6.3.1.2.157 = STRING: "libfreetype6_2.10.4+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.158 = STRING: "libfstrm0_0.6.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.159 = STRING: "libfuse2_2.9.9-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.160 = STRING: "libgcc-s1_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.161 = STRING: "libgcrypt20_1.8.7-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.162 = STRING: "libgdbm-compat4_1.19-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.163 = STRING: "libgdbm6_1.19-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.164 = STRING: "libglib2.0-0_2.66.8-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.165 = STRING: "libgmp10_2:6.2.1+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.166 = STRING: "libgnutls30_3.7.1-5+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.167 = STRING: "libgpg-error0_1.38-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.168 = STRING: "libgpm2_1.20.7-8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.169 = STRING: "libgssapi-krb5-2_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.170 = STRING: "libhogweed6_3.7.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.171 = STRING: "libhtml-form-perl_6.07-1_all" +.1.3.6.1.2.1.25.6.3.1.2.172 = STRING: "libhtml-format-perl_2.12-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.173 = STRING: "libhtml-parser-perl_3.75-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.174 = STRING: "libhtml-tagset-perl_3.20-4_all" +.1.3.6.1.2.1.25.6.3.1.2.175 = STRING: "libhtml-tree-perl_5.07-2_all" +.1.3.6.1.2.1.25.6.3.1.2.176 = STRING: "libhttp-cookies-perl_6.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.177 = STRING: "libhttp-daemon-perl_6.16-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.178 = STRING: "libhttp-date-perl_6.05-1_all" +.1.3.6.1.2.1.25.6.3.1.2.179 = STRING: "libhttp-message-perl_6.28-1_all" +.1.3.6.1.2.1.25.6.3.1.2.180 = STRING: "libhttp-negotiate-perl_6.01-1_all" +.1.3.6.1.2.1.25.6.3.1.2.181 = STRING: "libhttp-proxypac-perl_0.31-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.182 = STRING: "libicu67_67.1-7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.183 = STRING: "libidn2-0_2.3.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.184 = STRING: "libio-html-perl_1.004-2_all" +.1.3.6.1.2.1.25.6.3.1.2.185 = STRING: "libio-socket-ssl-perl_2.069-1_all" +.1.3.6.1.2.1.25.6.3.1.2.186 = STRING: "libip4tc2_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.187 = STRING: "libip6tc2_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.188 = STRING: "libisc-export1105_1:9.11.19+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.189 = STRING: "libjansson4_2.13.1-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.190 = STRING: "libjson-c5_0.15-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.191 = STRING: "libjson-parse-perl_0.61-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.192 = STRING: "libjson-path-perl_1.0.4-3~bullseye_all" +.1.3.6.1.2.1.25.6.3.1.2.193 = STRING: "libjson-xs-perl_4.030-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.194 = STRING: "libk5crypto3_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.195 = STRING: "libkeepass-reader-perl_0.2-bullseye_all" +.1.3.6.1.2.1.25.6.3.1.2.196 = STRING: "libkeyutils1_1.6.1-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.197 = STRING: "libklibc_2.0.8-6.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.198 = STRING: "libkmod2_28-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.199 = STRING: "libkrb5-3_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.200 = STRING: "libkrb5support0_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.201 = STRING: "libksba8_1.5.0-3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.202 = STRING: "libldap-2.4-2_2.4.57+dfsg-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.203 = STRING: "liblmdb0_0.9.24-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.204 = STRING: "liblocale-gettext-perl_1.07-4+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.205 = STRING: "liblockfile-bin_1.17-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.206 = STRING: "liblognorm5_2.0.5-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.207 = STRING: "liblv-perl_0.006-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.208 = STRING: "liblwp-mediatypes-perl_6.04-1_all" +.1.3.6.1.2.1.25.6.3.1.2.209 = STRING: "liblwp-protocol-https-perl_6.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.210 = STRING: "liblz4-1_1.9.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.211 = STRING: "liblzma5_5.2.5-2.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.212 = STRING: "libmagic-mgc_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.213 = STRING: "libmagic1_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.214 = STRING: "libmailtools-perl_2.21-1_all" +.1.3.6.1.2.1.25.6.3.1.2.215 = STRING: "libmaxminddb0_1.5.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.216 = STRING: "libmd0_1.0.3-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.217 = STRING: "libmnl0_1.0.4-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.218 = STRING: "libmodule-implementation-perl_0.09-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.219 = STRING: "libmodule-runtime-perl_0.016-1_all" +.1.3.6.1.2.1.25.6.3.1.2.220 = STRING: "libmount1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.221 = STRING: "libmpdec3_2.5.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.222 = STRING: "libmro-compat-perl_0.13-1_all" +.1.3.6.1.2.1.25.6.3.1.2.223 = STRING: "libnamespace-autoclean-perl_0.29-1_all" +.1.3.6.1.2.1.25.6.3.1.2.224 = STRING: "libnamespace-clean-perl_0.27-1_all" +.1.3.6.1.2.1.25.6.3.1.2.225 = STRING: "libncurses6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.226 = STRING: "libncursesw6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.227 = STRING: "libnet-curl-perl_0.55-1~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.228 = STRING: "libnet-http-perl_6.20-1_all" +.1.3.6.1.2.1.25.6.3.1.2.229 = STRING: "libnet-smtp-ssl-perl_1.04-1_all" +.1.3.6.1.2.1.25.6.3.1.2.230 = STRING: "libnet-ssleay-perl_1.88-3+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.231 = STRING: "libnetfilter-conntrack3_1.0.8-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.232 = STRING: "libnettle8_3.7.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.233 = STRING: "libnewt0.52_0.52.21-4+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.234 = STRING: "libnfnetlink0_1.0.1-3+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.235 = STRING: "libnftables1_0.9.8-3.1+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.236 = STRING: "libnftnl11_1.1.9-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.237 = STRING: "libnghttp2-14_1.43.0-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.238 = STRING: "libnl-3-200_3.4.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.239 = STRING: "libnl-genl-3-200_3.4.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.240 = STRING: "libnpth0_1.6-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.241 = STRING: "libnsl2_1.3.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.242 = STRING: "libnss-systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.243 = STRING: "libp11-kit0_0.23.22-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.244 = STRING: "libpackage-stash-perl_0.39-1_all" +.1.3.6.1.2.1.25.6.3.1.2.245 = STRING: "libpackage-stash-xs-perl_0.29-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.246 = STRING: "libpadwalker-perl_2.5-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.247 = STRING: "libpam-modules_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.248 = STRING: "libpam-modules-bin_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.249 = STRING: "libpam-runtime_1.4.0-9+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.250 = STRING: "libpam-systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.251 = STRING: "libpam0g_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.252 = STRING: "libparams-classify-perl_0.015-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.253 = STRING: "libparams-util-perl_1.102-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.254 = STRING: "libparams-validationcompiler-perl_0.30-1_all" +.1.3.6.1.2.1.25.6.3.1.2.255 = STRING: "libpci3_1:3.7.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.256 = STRING: "libpcre2-8-0_10.36-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.257 = STRING: "libpcre3_2:8.39-13_amd64" +.1.3.6.1.2.1.25.6.3.1.2.258 = STRING: "libperl5.32_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.259 = STRING: "libpipeline1_1.5.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.260 = STRING: "libpng16-16_1.6.37-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.261 = STRING: "libpod-parser-perl_1.63-2_all" +.1.3.6.1.2.1.25.6.3.1.2.262 = STRING: "libpopt0_1.18-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.263 = STRING: "libprocps8_2:3.3.17-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.264 = STRING: "libprotobuf-c1_1.3.3-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.265 = STRING: "libpsl5_0.21.0-1.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.266 = STRING: "libpython3-stdlib_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.267 = STRING: "libpython3.9-minimal_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.268 = STRING: "libpython3.9-stdlib_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.269 = STRING: "libreadline8_8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.270 = STRING: "libreadonly-perl_2.050-3_all" +.1.3.6.1.2.1.25.6.3.1.2.271 = STRING: "libref-util-perl_0.204-1_all" +.1.3.6.1.2.1.25.6.3.1.2.272 = STRING: "libref-util-xs-perl_0.117-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.273 = STRING: "librole-tiny-perl_2.002004-1_all" +.1.3.6.1.2.1.25.6.3.1.2.274 = STRING: "librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.275 = STRING: "libsasl2-2_2.1.27+dfsg-2.1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.276 = STRING: "libsasl2-modules-db_2.1.27+dfsg-2.1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.277 = STRING: "libseccomp2_2.5.1-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.278 = STRING: "libselinux1_3.1-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.279 = STRING: "libsemanage-common_3.1-1_all" +.1.3.6.1.2.1.25.6.3.1.2.280 = STRING: "libsemanage1_3.1-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.281 = STRING: "libsensors-config_1:3.6.0-7_all" +.1.3.6.1.2.1.25.6.3.1.2.282 = STRING: "libsensors5_1:3.6.0-7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.283 = STRING: "libsepol1_3.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.284 = STRING: "libslang2_2.3.2-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.285 = STRING: "libsmartcols1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.286 = STRING: "libsnmp-base_5.9+dfsg-4+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.287 = STRING: "libsnmp40_5.9+dfsg-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.288 = STRING: "libspecio-perl_0.47-1_all" +.1.3.6.1.2.1.25.6.3.1.2.289 = STRING: "libsqlite3-0_3.34.1-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.290 = STRING: "libss2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.291 = STRING: "libssh2-1_1.9.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.292 = STRING: "libssl1.1_1.1.1w-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.293 = STRING: "libstdc++6_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.294 = STRING: "libsub-exporter-perl_0.987-1_all" +.1.3.6.1.2.1.25.6.3.1.2.295 = STRING: "libsub-exporter-progressive-perl_0.001013-1_all" +.1.3.6.1.2.1.25.6.3.1.2.296 = STRING: "libsub-identify-perl_0.14-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.297 = STRING: "libsub-install-perl_0.928-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.298 = STRING: "libsub-name-perl_0.26-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.299 = STRING: "libsub-quote-perl_2.006006-1_all" +.1.3.6.1.2.1.25.6.3.1.2.300 = STRING: "libsystemd0_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.301 = STRING: "libtasn1-6_4.16.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.302 = STRING: "libtext-charwidth-perl_0.04-10+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.303 = STRING: "libtext-iconv-perl_1.7-7+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.304 = STRING: "libtext-wrapi18n-perl_0.06-9_all" +.1.3.6.1.2.1.25.6.3.1.2.305 = STRING: "libtie-ixhash-perl_1.23-2.1_all" +.1.3.6.1.2.1.25.6.3.1.2.306 = STRING: "libtimedate-perl_2.3300-2_all" +.1.3.6.1.2.1.25.6.3.1.2.307 = STRING: "libtinfo6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.308 = STRING: "libtirpc-common_1.3.1-1+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.309 = STRING: "libtirpc3_1.3.1-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.310 = STRING: "libtry-tiny-perl_0.30-1_all" +.1.3.6.1.2.1.25.6.3.1.2.311 = STRING: "libtypes-serialiser-perl_1.01-1_all" +.1.3.6.1.2.1.25.6.3.1.2.312 = STRING: "libuchardet0_0.0.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.313 = STRING: "libudev1_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.314 = STRING: "libunistring2_0.9.10-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.315 = STRING: "liburi-encode-perl_1.1.1-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.316 = STRING: "liburi-perl_5.08-1_all" +.1.3.6.1.2.1.25.6.3.1.2.317 = STRING: "liburing1_0.7-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.318 = STRING: "libuuid1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.319 = STRING: "libuv1_1.40.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.320 = STRING: "libvariable-magic-perl_0.62-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.321 = STRING: "libwrap0_7.6.q-31_amd64" +.1.3.6.1.2.1.25.6.3.1.2.322 = STRING: "libwww-perl_6.52-1_all" +.1.3.6.1.2.1.25.6.3.1.2.323 = STRING: "libwww-robotrules-perl_6.02-1_all" +.1.3.6.1.2.1.25.6.3.1.2.324 = STRING: "libxml-libxml-perl_2.0134+dfsg-2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.325 = STRING: "libxml-namespacesupport-perl_1.12-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.326 = STRING: "libxml-parser-perl_2.46-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.327 = STRING: "libxml-sax-base-perl_1.09-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.328 = STRING: "libxml-sax-expat-perl_0.51-1_all" +.1.3.6.1.2.1.25.6.3.1.2.329 = STRING: "libxml-sax-perl_1.02+dfsg-1_all" +.1.3.6.1.2.1.25.6.3.1.2.330 = STRING: "libxml2_2.9.10+dfsg-6.7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.331 = STRING: "libxstring-perl_0.005-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.332 = STRING: "libxtables12_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.333 = STRING: "libxxhash0_0.8.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.334 = STRING: "libzstd1_1.4.8+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.335 = STRING: "linux-base_4.6_all" +.1.3.6.1.2.1.25.6.3.1.2.336 = STRING: "linux-image-5.10.0-22-amd64_5.10.178-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.337 = STRING: "linux-image-5.10.0-28-amd64_5.10.209-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.338 = STRING: "linux-image-amd64_5.10.209-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.339 = STRING: "locales_2.31-13+deb11u8_all" +.1.3.6.1.2.1.25.6.3.1.2.340 = STRING: "login_1:4.8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.341 = STRING: "logrotate_3.18.0-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.342 = STRING: "logsave_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.343 = STRING: "lsb-base_11.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.344 = STRING: "lsb-release_11.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.345 = STRING: "lsof_4.93.2+dfsg-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.346 = STRING: "mailcap_3.69_all" +.1.3.6.1.2.1.25.6.3.1.2.347 = STRING: "man-db_2.9.4-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.348 = STRING: "manpages_5.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.349 = STRING: "mawk_1.3.4.20200120-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.350 = STRING: "media-types_4.0.0_all" +.1.3.6.1.2.1.25.6.3.1.2.351 = STRING: "mime-support_3.66_all" +.1.3.6.1.2.1.25.6.3.1.2.352 = STRING: "mount_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.353 = STRING: "nano_5.4-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.354 = STRING: "ncurses-base_6.2+20201114-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.355 = STRING: "ncurses-bin_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.356 = STRING: "ncurses-term_6.2+20201114-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.357 = STRING: "net-tools_1.60+git20181103.0eebece-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.358 = STRING: "netbase_6.3_all" +.1.3.6.1.2.1.25.6.3.1.2.359 = STRING: "netcat-traditional_1.10-46_amd64" +.1.3.6.1.2.1.25.6.3.1.2.360 = STRING: "nftables_0.9.8-3.1+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.361 = STRING: "openssh-client_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.362 = STRING: "openssh-server_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.363 = STRING: "openssh-sftp-server_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.364 = STRING: "openssl_1.1.1w-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.365 = STRING: "passwd_1:4.8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.366 = STRING: "pci.ids_0.0~2021.02.08-1_all" +.1.3.6.1.2.1.25.6.3.1.2.367 = STRING: "pciutils_1:3.7.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.368 = STRING: "perl_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.369 = STRING: "perl-base_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.370 = STRING: "perl-modules-5.32_5.32.1-4+deb11u3_all" +.1.3.6.1.2.1.25.6.3.1.2.371 = STRING: "perl-openssl-defaults_5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.372 = STRING: "pinentry-curses_1.1.0-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.373 = STRING: "procps_2:3.3.17-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.374 = STRING: "python-apt-common_2.2.1_all" +.1.3.6.1.2.1.25.6.3.1.2.375 = STRING: "python3_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.376 = STRING: "python3-apt_2.2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.377 = STRING: "python3-certifi_2020.6.20-1_all" +.1.3.6.1.2.1.25.6.3.1.2.378 = STRING: "python3-chardet_4.0.0-1_all" +.1.3.6.1.2.1.25.6.3.1.2.379 = STRING: "python3-dbus_1.2.16-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.380 = STRING: "python3-debconf_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.381 = STRING: "python3-debian_0.1.39_all" +.1.3.6.1.2.1.25.6.3.1.2.382 = STRING: "python3-debianbts_3.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.383 = STRING: "python3-distro-info_1.0+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.384 = STRING: "python3-httplib2_0.18.1-3_all" +.1.3.6.1.2.1.25.6.3.1.2.385 = STRING: "python3-idna_2.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.386 = STRING: "python3-minimal_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.387 = STRING: "python3-pkg-resources_52.0.0-4_all" +.1.3.6.1.2.1.25.6.3.1.2.388 = STRING: "python3-pycurl_7.43.0.6-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.389 = STRING: "python3-pysimplesoap_1.16.2-3_all" +.1.3.6.1.2.1.25.6.3.1.2.390 = STRING: "python3-reportbug_7.10.3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.391 = STRING: "python3-requests_2.25.1+dfsg-2_all" +.1.3.6.1.2.1.25.6.3.1.2.392 = STRING: "python3-six_1.16.0-2_all" +.1.3.6.1.2.1.25.6.3.1.2.393 = STRING: "python3-urllib3_1.26.5-1~exp1_all" +.1.3.6.1.2.1.25.6.3.1.2.394 = STRING: "python3.9_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.395 = STRING: "python3.9-minimal_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.396 = STRING: "qemu-utils_1:5.2+dfsg-11+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.397 = STRING: "quota_4.06-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.398 = STRING: "readline-common_8.1-1_all" +.1.3.6.1.2.1.25.6.3.1.2.399 = STRING: "reportbug_7.10.3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.400 = STRING: "rsyslog_8.2102.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.401 = STRING: "runit-helper_2.10.3_all" +.1.3.6.1.2.1.25.6.3.1.2.402 = STRING: "sed_4.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.403 = STRING: "sensible-utils_0.0.14_all" +.1.3.6.1.2.1.25.6.3.1.2.404 = STRING: "snmpd_5.9+dfsg-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.405 = STRING: "sudo_1.9.5p2-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.406 = STRING: "systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.407 = STRING: "systemd-sysv_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.408 = STRING: "systemd-timesyncd_247.3-7+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.409 = STRING: "sysvinit-utils_2.96-7+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.410 = STRING: "tar_1.34+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.411 = STRING: "tasksel_3.68+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.412 = STRING: "tasksel-data_3.68+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.413 = STRING: "telnet_0.17-42_amd64" +.1.3.6.1.2.1.25.6.3.1.2.414 = STRING: "traceroute_1:2.1.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.415 = STRING: "tzdata_2024a-0+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.416 = STRING: "ucf_3.0043_all" +.1.3.6.1.2.1.25.6.3.1.2.417 = STRING: "udev_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.418 = STRING: "unattended-upgrades_2.8_all" +.1.3.6.1.2.1.25.6.3.1.2.419 = STRING: "util-linux_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.420 = STRING: "vim_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.421 = STRING: "vim-common_2:8.2.2434-3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.422 = STRING: "vim-runtime_2:8.2.2434-3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.423 = STRING: "vim-tiny_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.424 = STRING: "wamerican_2019.10.06-1_all" +.1.3.6.1.2.1.25.6.3.1.2.425 = STRING: "wget_1.21-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.426 = STRING: "whiptail_0.52.21-4+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.427 = STRING: "xxd_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.428 = STRING: "xz-utils_5.2.5-2.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.429 = STRING: "zlib1g_1:1.2.11.dfsg-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.5 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.6 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.7 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.8 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.9 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.10 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.11 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.12 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.13 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.14 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.15 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.16 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.17 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.18 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.19 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.20 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.21 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.22 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.23 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.24 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.25 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.26 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.27 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.28 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.29 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.30 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.31 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.32 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.33 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.34 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.35 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.36 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.37 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.38 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.39 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.40 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.41 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.42 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.43 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.44 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.45 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.46 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.47 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.48 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.49 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.50 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.51 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.52 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.53 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.54 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.55 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.56 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.57 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.58 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.59 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.60 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.61 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.62 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.63 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.64 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.65 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.66 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.67 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.68 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.69 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.70 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.71 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.72 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.73 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.74 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.75 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.76 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.77 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.78 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.79 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.80 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.81 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.82 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.83 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.84 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.85 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.86 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.87 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.88 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.89 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.90 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.91 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.92 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.93 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.94 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.95 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.96 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.97 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.98 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.99 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.100 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.101 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.102 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.103 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.104 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.105 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.106 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.107 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.108 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.109 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.110 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.111 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.112 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.113 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.114 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.115 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.116 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.117 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.118 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.119 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.120 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.121 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.122 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.123 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.124 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.125 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.126 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.127 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.128 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.129 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.130 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.131 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.132 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.133 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.134 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.135 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.136 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.137 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.138 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.139 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.140 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.141 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.142 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.143 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.144 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.145 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.146 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.147 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.148 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.149 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.150 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.151 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.152 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.153 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.154 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.155 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.156 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.157 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.158 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.159 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.160 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.161 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.162 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.163 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.164 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.165 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.166 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.167 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.168 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.169 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.170 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.171 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.172 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.173 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.174 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.175 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.176 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.177 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.178 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.179 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.180 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.181 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.182 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.183 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.184 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.185 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.186 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.187 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.188 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.189 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.190 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.191 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.192 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.193 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.194 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.195 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.196 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.197 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.198 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.199 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.200 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.201 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.202 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.203 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.204 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.205 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.206 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.207 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.208 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.209 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.210 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.211 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.212 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.213 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.214 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.215 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.216 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.217 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.218 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.219 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.220 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.221 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.222 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.223 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.224 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.225 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.226 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.227 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.228 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.229 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.230 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.231 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.232 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.233 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.234 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.235 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.236 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.237 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.238 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.239 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.240 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.241 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.242 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.243 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.244 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.245 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.246 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.247 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.248 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.249 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.250 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.251 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.252 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.253 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.254 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.255 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.256 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.257 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.258 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.259 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.260 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.261 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.262 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.263 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.264 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.265 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.266 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.267 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.268 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.269 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.270 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.271 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.272 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.273 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.274 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.275 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.276 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.277 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.278 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.279 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.280 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.281 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.282 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.283 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.284 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.285 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.286 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.287 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.288 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.289 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.290 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.291 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.292 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.293 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.294 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.295 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.296 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.297 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.298 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.299 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.300 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.301 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.302 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.303 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.304 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.305 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.306 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.307 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.308 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.309 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.310 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.311 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.312 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.313 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.314 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.315 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.316 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.317 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.318 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.319 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.320 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.321 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.322 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.323 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.324 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.325 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.326 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.327 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.328 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.329 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.330 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.331 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.332 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.333 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.334 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.335 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.336 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.337 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.338 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.339 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.340 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.341 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.342 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.343 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.344 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.345 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.346 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.347 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.348 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.349 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.350 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.351 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.352 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.353 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.354 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.355 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.356 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.357 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.358 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.359 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.360 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.361 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.362 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.363 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.364 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.365 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.366 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.367 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.368 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.369 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.370 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.371 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.372 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.373 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.374 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.375 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.376 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.377 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.378 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.379 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.380 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.381 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.382 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.383 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.384 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.385 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.386 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.387 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.388 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.389 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.390 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.391 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.392 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.393 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.394 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.395 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.396 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.397 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.398 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.399 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.400 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.401 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.402 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.403 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.404 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.405 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.406 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.407 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.408 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.409 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.410 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.411 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.412 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.413 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.414 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.415 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.416 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.417 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.418 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.419 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.420 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.421 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.422 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.423 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.424 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.425 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.426 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.427 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.428 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.429 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.4.1 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.2 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.3 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.4 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.5 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.6 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.7 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.8 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.9 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.10 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.11 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.12 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.13 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.14 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.15 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.16 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.17 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.18 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.19 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.20 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.21 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.22 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.23 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.24 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.25 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.26 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.27 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.28 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.29 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.30 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.31 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.32 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.33 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.34 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.35 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.36 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.37 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.38 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.39 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.40 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.41 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.42 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.43 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.44 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.45 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.46 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.47 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.48 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.49 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.50 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.51 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.52 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.53 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.54 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.55 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.56 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.57 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.58 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.59 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.60 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.61 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.62 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.63 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.64 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.65 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.66 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.67 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.68 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.69 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.70 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.71 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.72 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.73 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.74 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.75 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.76 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.77 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.78 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.79 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.80 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.81 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.82 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.83 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.84 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.85 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.86 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.87 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.88 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.89 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.90 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.91 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.92 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.93 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.94 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.95 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.96 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.97 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.98 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.99 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.100 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.101 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.102 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.103 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.104 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.105 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.106 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.107 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.108 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.109 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.110 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.111 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.112 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.113 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.114 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.115 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.116 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.117 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.118 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.119 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.120 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.121 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.122 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.123 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.124 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.125 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.126 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.127 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.128 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.129 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.130 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.131 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.132 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.133 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.134 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.135 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.136 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.137 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.138 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.139 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.140 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.141 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.142 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.143 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.144 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.145 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.146 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.147 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.148 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.149 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.150 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.151 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.152 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.153 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.154 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.155 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.156 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.157 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.158 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.159 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.160 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.161 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.162 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.163 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.164 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.165 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.166 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.167 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.168 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.169 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.170 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.171 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.172 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.173 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.174 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.175 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.176 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.177 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.178 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.179 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.180 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.181 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.182 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.183 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.184 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.185 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.186 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.187 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.188 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.189 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.190 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.191 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.192 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.193 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.194 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.195 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.196 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.197 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.198 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.199 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.200 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.201 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.202 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.203 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.204 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.205 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.206 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.207 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.208 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.209 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.210 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.211 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.212 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.213 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.214 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.215 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.216 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.217 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.218 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.219 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.220 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.221 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.222 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.223 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.224 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.225 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.226 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.227 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.228 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.229 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.230 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.231 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.232 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.233 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.234 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.235 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.236 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.237 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.238 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.239 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.240 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.241 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.242 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.243 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.244 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.245 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.246 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.247 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.248 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.249 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.250 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.251 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.252 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.253 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.254 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.255 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.256 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.257 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.258 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.259 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.260 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.261 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.262 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.263 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.264 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.265 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.266 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.267 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.268 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.269 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.270 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.271 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.272 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.273 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.274 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.275 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.276 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.277 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.278 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.279 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.280 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.281 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.282 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.283 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.284 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.285 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.286 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.287 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.288 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.289 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.290 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.291 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.292 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.293 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.294 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.295 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.296 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.297 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.298 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.299 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.300 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.301 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.302 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.303 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.304 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.305 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.306 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.307 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.308 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.309 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.310 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.311 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.312 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.313 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.314 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.315 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.316 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.317 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.318 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.319 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.320 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.321 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.322 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.323 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.324 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.325 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.326 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.327 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.328 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.329 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.330 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.331 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.332 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.333 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.334 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.335 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.336 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.337 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.338 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.339 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.340 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.341 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.342 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.343 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.344 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.345 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.346 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.347 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.348 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.349 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.350 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.351 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.352 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.353 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.354 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.355 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.356 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.357 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.358 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.359 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.360 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.361 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.362 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.363 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.364 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.365 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.366 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.367 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.368 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.369 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.370 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.371 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.372 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.373 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.374 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.375 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.376 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.377 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.378 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.379 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.380 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.381 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.382 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.383 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.384 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.385 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.386 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.387 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.388 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.389 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.390 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.391 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.392 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.393 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.394 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.395 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.396 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.397 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.398 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.399 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.400 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.401 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.402 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.403 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.404 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.405 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.406 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.407 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.408 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.409 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.410 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.411 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.412 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.413 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.414 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.415 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.416 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.417 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.418 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.419 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.420 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.421 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.422 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.423 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.424 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.425 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.426 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.427 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.428 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.429 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.5.1 = Hex-STRING: 07 E8 03 0F 0A 12 38 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.2 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.3 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.4 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.5 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.6 = Hex-STRING: 07 E8 03 0F 0A 12 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.7 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.8 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.9 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.10 = Hex-STRING: 07 E8 03 0F 0A 11 33 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.11 = Hex-STRING: 07 E8 03 0F 0A 12 23 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.12 = Hex-STRING: 07 E8 03 0F 0A 11 33 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.13 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.14 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.15 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.16 = Hex-STRING: 07 E7 06 0F 14 28 17 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.17 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.18 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.19 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.20 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.21 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.22 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.23 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.24 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.25 = Hex-STRING: 07 E8 03 0F 0A 12 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.26 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.27 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.28 = Hex-STRING: 07 E8 03 0F 0A 11 37 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.29 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.30 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.31 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.32 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.33 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.34 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.35 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.36 = Hex-STRING: 07 E8 03 0F 0A 12 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.37 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.38 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.39 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.40 = Hex-STRING: 07 E8 03 0F 0A 13 31 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.41 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.42 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.43 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.44 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.45 = Hex-STRING: 07 E8 03 0F 0A 13 01 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.46 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.47 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.48 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.49 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.50 = Hex-STRING: 07 E8 03 05 10 0D 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.51 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.52 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.53 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.54 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.55 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.56 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.57 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.58 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.59 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.60 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.61 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.62 = Hex-STRING: 07 E8 03 0F 0A 12 00 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.63 = Hex-STRING: 07 E8 03 0F 0A 11 3B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.64 = Hex-STRING: 07 E8 03 0F 0A 12 00 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.65 = Hex-STRING: 07 E8 03 0F 0A 11 3B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.66 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.67 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.68 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.69 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.70 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.71 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.72 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.73 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.74 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.75 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.76 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.77 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.78 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.79 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.80 = Hex-STRING: 07 E8 03 0F 0A 12 1F 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.81 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.82 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.83 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.84 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.85 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.86 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.87 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.88 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.89 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.90 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.91 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.92 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.93 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.94 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.95 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.96 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.97 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.98 = Hex-STRING: 07 E8 03 0F 0A 13 35 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.99 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.100 = Hex-STRING: 07 E8 03 0F 0A 11 35 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.101 = Hex-STRING: 07 E8 03 0F 0A 13 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.102 = Hex-STRING: 07 E8 03 0F 0A 12 27 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.103 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.104 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.105 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.106 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.107 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.108 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.109 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.110 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.111 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.112 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.113 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.114 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.115 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.116 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.117 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.118 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.119 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.120 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.121 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.122 = Hex-STRING: 07 E8 03 0F 0A 13 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.123 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.124 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.125 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.126 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.127 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.128 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.129 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.130 = Hex-STRING: 07 E8 03 0F 0A 11 37 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.131 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.132 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.133 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.134 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.135 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.136 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.137 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.138 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.139 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.140 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.141 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.142 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.143 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.144 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.145 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.146 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.147 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.148 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.149 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.150 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.151 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.152 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.153 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.154 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.155 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.156 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.157 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.158 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.159 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.160 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.161 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.162 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.163 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.164 = Hex-STRING: 07 E8 03 0F 0A 12 31 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.165 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.166 = Hex-STRING: 07 E8 03 0F 0A 11 1A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.167 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.168 = Hex-STRING: 07 E8 03 05 10 0D 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.169 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.170 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.171 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.172 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.173 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.174 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.175 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.176 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.177 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.178 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.179 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.180 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.181 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.182 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.183 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.184 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.185 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.186 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.187 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.188 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.189 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.190 = Hex-STRING: 07 E8 03 0F 0A 12 36 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.191 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.192 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.193 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.194 = Hex-STRING: 07 E8 03 0F 0A 11 1B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.195 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.196 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.197 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.198 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.199 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.200 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.201 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.202 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.203 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.204 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.205 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.206 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.207 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.208 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.209 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.210 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.211 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.212 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.213 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.214 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.215 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.216 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.217 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.218 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.219 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.220 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.221 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.222 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.223 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.224 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.225 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.226 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.227 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.228 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.229 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.230 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.231 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.232 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.233 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.234 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.235 = Hex-STRING: 07 E8 03 0F 0A 12 21 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.236 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.237 = Hex-STRING: 07 E8 03 0F 0A 11 39 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.238 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.239 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.240 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.241 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.242 = Hex-STRING: 07 E8 03 0F 0A 11 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.243 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.244 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.245 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.246 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.247 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.248 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.249 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.250 = Hex-STRING: 07 E8 03 0F 0A 11 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.251 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.252 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.253 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.254 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.255 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.256 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.257 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.258 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.259 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.260 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.261 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.262 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.263 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.264 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.265 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.266 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.267 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.268 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.269 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.270 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.271 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.272 = Hex-STRING: 07 E8 03 05 10 0F 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.273 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.274 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.275 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.276 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.277 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.278 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.279 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.280 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.281 = Hex-STRING: 07 E8 03 05 10 0D 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.282 = Hex-STRING: 07 E8 03 05 10 0D 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.283 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.284 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.285 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.286 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.287 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.288 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.289 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.290 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.291 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.292 = Hex-STRING: 07 E8 03 0F 0A 12 2F 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.293 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.294 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.295 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.296 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.297 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.298 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.299 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.300 = Hex-STRING: 07 E8 03 0F 0A 11 1E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.301 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.302 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.303 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.304 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.305 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.306 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.307 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.308 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.309 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.310 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.311 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.312 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.313 = Hex-STRING: 07 E8 03 0F 0A 12 08 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.314 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.315 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.316 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.317 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.318 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.319 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.320 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.321 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.322 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.323 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.324 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.325 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.326 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.327 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.328 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.329 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.330 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.331 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.332 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.333 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.334 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.335 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.336 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.337 = Hex-STRING: 07 E8 03 0F 0A 13 09 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.338 = Hex-STRING: 07 E8 03 0F 0A 13 09 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.339 = Hex-STRING: 07 E8 03 0F 0A 12 18 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.340 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.341 = Hex-STRING: 07 E8 03 0F 0A 12 1B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.342 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.343 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.344 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.345 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.346 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.347 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.348 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.349 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.350 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.351 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.352 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.353 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.354 = Hex-STRING: 07 E8 03 0F 0A 11 23 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.355 = Hex-STRING: 07 E8 03 0F 0A 12 3A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.356 = Hex-STRING: 07 E8 03 0F 0A 12 34 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.357 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.358 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.359 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.360 = Hex-STRING: 07 E8 03 0F 0A 12 21 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.361 = Hex-STRING: 07 E8 03 0F 0A 11 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.362 = Hex-STRING: 07 E8 03 0F 0A 11 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.363 = Hex-STRING: 07 E8 03 0F 0A 11 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.364 = Hex-STRING: 07 E8 03 0F 0A 13 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.365 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.366 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.367 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.368 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.369 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.370 = Hex-STRING: 07 E8 03 0F 0A 11 28 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.371 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.372 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.373 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.374 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.375 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.376 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.377 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.378 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.379 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.380 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.381 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.382 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.383 = Hex-STRING: 07 E8 03 0F 0A 12 06 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.384 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.385 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.386 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.387 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.388 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.389 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.390 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.391 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.392 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.393 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.394 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.395 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.396 = Hex-STRING: 07 E8 03 0F 0A 13 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.397 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.398 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.399 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.400 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.401 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.402 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.403 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.404 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.405 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.406 = Hex-STRING: 07 E8 03 0F 0A 11 1E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.407 = Hex-STRING: 07 E8 03 0F 0A 13 27 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.408 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.409 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.410 = Hex-STRING: 07 E8 03 0F 0A 11 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.411 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.412 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.413 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.414 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.415 = Hex-STRING: 07 E8 03 0F 0A 12 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.416 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.417 = Hex-STRING: 07 E8 03 0F 0A 12 08 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.418 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.419 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.420 = Hex-STRING: 07 E8 03 05 10 0D 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.421 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.422 = Hex-STRING: 07 E8 03 05 10 0D 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.423 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.424 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.425 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.426 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.427 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.428 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.429 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.28.1.1.2.1 = Gauge32: 0 +.1.3.6.1.2.1.28.1.1.5.1 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.4.1.26 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.7.1.26 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.31.1.1 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.2 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.3 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.4 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.5 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.6 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.7 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.8 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.9 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.10 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.11 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.12 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.13 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.14 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.15 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.16 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.17 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.18 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.19 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.20 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.21 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.22 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.23 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.24 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.25 = INTEGER: -1 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: "lo" +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: "eth0" +.1.3.6.1.2.1.31.1.1.1.1.3 = STRING: "eth1" +.1.3.6.1.2.1.31.1.1.1.1.4 = STRING: "eth2" +.1.3.6.1.2.1.31.1.1.1.1.5 = STRING: "eth3" +.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.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.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.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.6.1 = Counter64: 1904 +.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 175123 +.1.3.6.1.2.1.31.1.1.1.6.3 = Counter64: 614998 +.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.7.1 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 1706 +.1.3.6.1.2.1.31.1.1.1.7.3 = Counter64: 6252 +.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.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.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.10.1 = Counter64: 1904 +.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 192208 +.1.3.6.1.2.1.31.1.1.1.10.3 = Counter64: 647510 +.1.3.6.1.2.1.31.1.1.1.10.4 = Counter64: 1592 +.1.3.6.1.2.1.31.1.1.1.10.5 = Counter64: 1592 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 1339 +.1.3.6.1.2.1.31.1.1.1.11.3 = Counter64: 5865 +.1.3.6.1.2.1.31.1.1.1.11.4 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.11.5 = Counter64: 20 +.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.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.15.1 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.3 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.4 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.5 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.3 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.4 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.5 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.3 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.4 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.5 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.18.1 = "" +.1.3.6.1.2.1.31.1.1.1.18.2 = "" +.1.3.6.1.2.1.31.1.1.1.18.3 = "" +.1.3.6.1.2.1.31.1.1.1.18.4 = "" +.1.3.6.1.2.1.31.1.1.1.18.5 = "" +.1.3.6.1.2.1.31.1.1.1.19.1 = 0 +.1.3.6.1.2.1.31.1.1.1.19.2 = 0 +.1.3.6.1.2.1.31.1.1.1.19.3 = 0 +.1.3.6.1.2.1.31.1.1.1.19.4 = 0 +.1.3.6.1.2.1.31.1.1.1.19.5 = 0 +.1.3.6.1.2.1.31.1.5.0 = 0 +.1.3.6.1.2.1.55.1.1.0 = INTEGER: 2 +.1.3.6.1.2.1.55.1.2.0 = INTEGER: 64 +.1.3.6.1.2.1.55.1.3.0 = Gauge32: 5 +.1.3.6.1.2.1.55.1.5.1.2.1 = STRING: "lo" +.1.3.6.1.2.1.55.1.5.1.2.2 = STRING: "eth0" +.1.3.6.1.2.1.55.1.5.1.2.3 = STRING: "eth1" +.1.3.6.1.2.1.55.1.5.1.2.4 = STRING: "eth2" +.1.3.6.1.2.1.55.1.5.1.2.5 = STRING: "eth3" +.1.3.6.1.2.1.55.1.5.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.5 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.4.1 = Gauge32: 65536 +.1.3.6.1.2.1.55.1.5.1.4.2 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.3 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.4 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.5 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.8.1 = "" +.1.3.6.1.2.1.55.1.5.1.8.2 = Hex-STRING: 08 00 27 8D C0 4D +.1.3.6.1.2.1.55.1.5.1.8.3 = Hex-STRING: 08 00 27 3C 26 92 +.1.3.6.1.2.1.55.1.5.1.8.4 = Hex-STRING: 08 00 27 FE 8E E3 +.1.3.6.1.2.1.55.1.5.1.8.5 = Hex-STRING: 08 00 27 A4 62 F7 +.1.3.6.1.2.1.55.1.5.1.9.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.2 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.3 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.4 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.5 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.2 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.3 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.4 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.1.0 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.2.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.3.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.4.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.5.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = OID: .1.3.6.1.2.1.2.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = OID: .1.3.6.1.2.1.2.2.1.7 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = OID: .1.3.6.1.2.1.2.2.1.8 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = OID: .1.3.6.1.2.1.88.2.1.6 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = OID: .1.3.6.1.2.1.88.2.1.5 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = "" +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = OID: .1.3.6.1.6.3.1.1.5.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = OID: .1.3.6.1.6.3.1.1.5.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = OID: .1.3.6.1.2.1.88.2.0.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = OID: .1.3.6.1.2.1.88.2.0.1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.2 +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: "_linkUpDown" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: "_linkUpDown" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: "_triggerFail" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: "_triggerFire" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: "_triggerFire" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: "_triggerFire" +.1.3.6.1.2.1.92.1.1.1.0 = Gauge32: 1000 +.1.3.6.1.2.1.92.1.1.2.0 = Gauge32: 1440 +.1.3.6.1.2.1.92.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.92.1.2.2.0 = Counter32: 0 diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index 5112a2e447..a3644d8cfb 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -1,13 +1,37 @@ +--display-transform-dst +--display-transform-src --filter-vdom --force-counters32 +--force-counters64 +--map-speed-dsl +--nagvis-perfdata +--oid-display +--oid-extra-display +--oid-filter +2c +ADSL Centreon Datacore +deltaps +eth Fortigate Fortinet +ifAlias +ifDesc +ifName +in-bcast +in-mcast +in-ucast +interface-dsl-name +IpAddr license-instances-usage-prct MBean +NagVis OID oneaccess-sys-mib +out-bcast +out-mcast +out-ucast perfdata powershell proto @@ -18,5 +42,8 @@ space-usage-prct SSH SureBackup topic-messages-inflighted +total-oper-down +total-oper-up +VDSL2 Veeam WSMAN From f8c2dfb4fbeacd9e5338d1b097c4a9816bb82af8 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 26 Mar 2024 10:16:45 +0100 Subject: [PATCH 29/63] fix(syntax): added missing curly bracket (#4963) --- src/apps/backup/veeam/wsman/mode/vsbjobs.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/backup/veeam/wsman/mode/vsbjobs.pm b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm index b026f0035d..d2338524b7 100644 --- a/src/apps/backup/veeam/wsman/mode/vsbjobs.pm +++ b/src/apps/backup/veeam/wsman/mode/vsbjobs.pm @@ -127,6 +127,7 @@ sub new { }); return $self; +} sub manage_selection { my ($self, %options) = @_; From 5e64a89f93b4025e8b0b9b4112ace896e405a696 Mon Sep 17 00:00:00 2001 From: THEPAUT Date: Tue, 26 Mar 2024 06:43:58 -0400 Subject: [PATCH 30/63] =?UTF-8?q?enh(powershell/updates):=20Substituion=20?= =?UTF-8?q?of=20special=20charactere=20for=20Fr,=20Es,=E2=80=A6=20(#4872)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/centreon/common/powershell/windows/updates.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/centreon/common/powershell/windows/updates.pm b/src/centreon/common/powershell/windows/updates.pm index 12b1013047..635da04e39 100644 --- a/src/centreon/common/powershell/windows/updates.pm +++ b/src/centreon/common/powershell/windows/updates.pm @@ -49,7 +49,7 @@ Try { Foreach ($update in $updates) { $item = @{ - title = $update.Title; + title = $update.Title.Normalize([Text.NormalizationForm]::FormD) -replace "\p{M}", "" -replace "\p{Z}", " "; isMandatory = $update.IsMandatory; } From 5adbf04cb797d8fa3b34f5090fe3ecbbb2e7174f Mon Sep 17 00:00:00 2001 From: tcharles Date: Fri, 29 Mar 2024 14:05:22 +0100 Subject: [PATCH 31/63] better compat between map-values and convert-custom-values options (#4902) Co-authored-by: omercier --- src/snmp_standard/mode/stringvalue.pm | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/snmp_standard/mode/stringvalue.pm b/src/snmp_standard/mode/stringvalue.pm index 378b11b792..573ad94621 100644 --- a/src/snmp_standard/mode/stringvalue.pm +++ b/src/snmp_standard/mode/stringvalue.pm @@ -123,16 +123,19 @@ sub get_change_value { my $value = $options{value}; return '' if (!defined($options{value})); - if (defined($self->{map_values}->{$options{value}})) { + + if (defined($self->{option_results}->{convert_custom_values}) && $self->{option_results}->{convert_custom_values} ne '') { + eval "\$value = $self->{option_results}->{convert_custom_values}"; + } + + if (defined($value) && defined($self->{map_values}->{$value})) { + $value = $self->{map_values}->{$value} + } elsif (defined($self->{map_values}->{$options{value}})) { $value = $self->{map_values}->{$options{value}}; } elsif (defined($self->{option_results}->{map_value_other}) && $self->{option_results}->{map_value_other} ne '') { $value = $self->{option_results}->{map_value_other}; } - if (defined($self->{option_results}->{convert_custom_values}) && $self->{option_results}->{convert_custom_values} ne '') { - eval "\$value = $self->{option_results}->{convert_custom_values}"; - } - return $value; } @@ -316,9 +319,9 @@ __END__ =head1 MODE -Check SNMP string values (can be a String or an Integer). +Check SNMP string values (can be a string or an integer). -Check values absent: +Check absent values: centreon_plugins.pl --plugin=snmp_standard::plugin --mode=string-value --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public --oid-table='.1.3.6.1.2.1.25.4.2.1.2' --format-ok='%{filter_rows} processes' --format-critical='processes are absent: %{details_critical}' --critical-absent='centengine' --critical-absent='crond' --filter-table-value='centengine|crond' @@ -392,7 +395,7 @@ Separator uses between values (default: coma). =item B<--convert-custom-values> Custom code to convert values. -Example to convert octetstring to macaddress: --convert-custom-values='join(":", unpack("(H2)*", $value))' +Example to convert octet string to MAC address: --convert-custom-values='join(":", unpack("(H2)*", $value))' =item B<--use-perl-mod> From 921f7e48fd6237c56cf77514fa36495873bd50c2 Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Thu, 4 Apr 2024 17:52:49 +0200 Subject: [PATCH 32/63] CTOR-473-tests-folder-structure-must-follow-code-folder-structure (#4979) Co-authored-by: Sophie Depassio --- .github/workflows/tests-functional.yml | 16 +- .../snmp/hardware-ups-standard-snmp.robot | 101 - .../snmp/network-aruba-instant-ap-usage.robot | 79 - .../network-fortinet-fortigate-snmp.robot | 408 -- .../snmp/storage-synology-snmp.robot | 98 - tests/resources/import.resource | 7 + .../mockoon/storage-datacore-restapi.json | 179 - tests/resources/resources.resource | 23 + .../hardware-ups-socomec.snmpwalk | 10 - .../protocols/snmp/collection-sputnik.robot} | 19 +- .../snmp/collection-sputnik.snmpwalk} | 0 .../aws/cloudtrail}/cloud-aws-cloudtrail.json | 0 .../cloudtrail}/cloud-aws-cloudtrail.robot | 26 +- ...oud-azure-policyinsights-policystates.json | 0 ...ud-azure-policyinsights-policystates.robot | 26 +- .../database/database-mysql.robot | 12 +- .../kvm/avocent/acs/8000/avocent8000.snmpwalk | 762 +-- .../8000}/hardware-kvm-avocent-acs-8000.robot | 5 +- .../apc}/snmp/hardware-sensors-apc-snmp.robot | 26 +- .../sensors/apc/snmp}/sensors.snmpwalk | 0 .../snmp/hardware-ups-sputnik-snmp.robot | 25 +- .../snmp/hardware-ups-sputnik.snmpwalk | 61 + .../socomec/netvision/snmp}/battery.snmpwalk | 0 .../hardware-ups-socomec-netvision-snmp.robot | 25 +- .../hardware-ups-socomec_null_val.snmpwalk | 0 .../snmp/hardware-ups-standard-snmp.robot | 98 + .../snmp/ups-standard-null-val.snmpwalk} | 0 .../ups/standard/snmp/ups-standard.snmpwalk} | 0 .../aruba/instant/snmp}/ap-usage.snmpwalk | 0 .../instant/snmp/aruba-instant-ap-usage.robot | 75 + .../fortigate/snmp/linkmonitor.snmpwalk | 18 + .../network-fortinet-fortigate-snmp.robot | 432 ++ .../network/teldat/snmp/teldat.robot} | 1441 +++--- .../network/teldat/snmp/teldat.snmpwalk} | 2260 ++++----- .../os-linux-list-systemdservices.robot | 15 +- .../local}/os-linux-system-sc-status.robot | 23 +- .../os/linux/local}/systemd-219/systemctl | 0 .../os/linux/local}/systemd-252/systemctl | 0 .../os/linux/snmp/list-diskio-2.snmpwalk | 3747 ++++++++++++++ .../os/linux/snmp/list-diskio.snmpwalk} | 0 .../os/linux}/snmp/network-interfaces.robot | 27 +- .../os/linux/snmp/network-interfaces.snmpwalk | 4490 +++++++++++++++++ .../os/linux}/snmp/os-linux-snmp.robot | 19 +- .../os/windows/snmp/services-en.snmpwalk | 840 +++ .../os/windows/snmp/services-fr.snmpwalk | 400 ++ .../os/windows/snmp/services.robot} | 21 +- .../restapi}/storage-datacore-api.json | 0 .../restapi}/storage-datacore-restapi.robot | 27 +- .../synology/snmp/storage-synology-snmp.robot | 96 + .../snmp/synology-disk-critical.snmpwalk} | 0 .../snmp/synology-disk-failing.snmpwalk} | 0 .../synology/snmp/synology-disk-ok.snmpwalk} | 0 .../snmp/synology-disk-warning.snmpwalk} | 0 53 files changed, 12617 insertions(+), 3320 deletions(-) delete mode 100644 tests/functional/snmp/hardware-ups-standard-snmp.robot delete mode 100644 tests/functional/snmp/network-aruba-instant-ap-usage.robot delete mode 100644 tests/functional/snmp/network-fortinet-fortigate-snmp.robot delete mode 100644 tests/functional/snmp/storage-synology-snmp.robot create mode 100644 tests/resources/import.resource delete mode 100644 tests/resources/mockoon/storage-datacore-restapi.json create mode 100644 tests/resources/resources.resource delete mode 100644 tests/resources/snmp/hardware-ups/hardware-ups-socomec.snmpwalk rename tests/{functional/snmp/snmp-collection-sputnik-snmp.robot => robot/apps/protocols/snmp/collection-sputnik.robot} (69%) rename tests/{resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk => robot/apps/protocols/snmp/collection-sputnik.snmpwalk} (100%) rename tests/{resources/mockoon => robot/cloud/aws/cloudtrail}/cloud-aws-cloudtrail.json (100%) rename tests/{functional/api => robot/cloud/aws/cloudtrail}/cloud-aws-cloudtrail.robot (92%) rename tests/{resources/mockoon => robot/cloud/azure/policyinsights/policystates}/cloud-azure-policyinsights-policystates.json (100%) rename tests/{functional/api => robot/cloud/azure/policyinsights/policystates}/cloud-azure-policyinsights-policystates.robot (80%) rename tests/{functional => robot}/database/database-mysql.robot (66%) rename tests/{resources/snmp => robot}/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk (97%) rename tests/{functional/snmp => robot/hardware/kvm/avocent/acs/8000}/hardware-kvm-avocent-acs-8000.robot (97%) rename tests/{functional => robot/hardware/sensors/apc}/snmp/hardware-sensors-apc-snmp.robot (86%) rename tests/{resources/snmp/hardware/sensors/apc => robot/hardware/sensors/apc/snmp}/sensors.snmpwalk (100%) rename tests/{functional => robot/hardware/ups/inmatics/sputnik}/snmp/hardware-ups-sputnik-snmp.robot (82%) create mode 100644 tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik.snmpwalk rename tests/{resources/snmp/hardware/ups/socomec/netvision/snmp/mode => robot/hardware/ups/socomec/netvision/snmp}/battery.snmpwalk (100%) rename tests/{functional => robot/hardware/ups/socomec/netvision}/snmp/hardware-ups-socomec-netvision-snmp.robot (73%) rename tests/{resources/snmp/hardware-ups => robot/hardware/ups/socomec/netvision/snmp}/hardware-ups-socomec_null_val.snmpwalk (100%) create mode 100644 tests/robot/hardware/ups/standard/snmp/hardware-ups-standard-snmp.robot rename tests/{resources/snmp/hardware-ups/hardware-ups-standard_null_val.snmpwalk => robot/hardware/ups/standard/snmp/ups-standard-null-val.snmpwalk} (100%) rename tests/{resources/snmp/hardware-ups/hardware-ups-standard.snmpwalk => robot/hardware/ups/standard/snmp/ups-standard.snmpwalk} (100%) rename tests/{resources/snmp/network-aruba-instant => robot/network/aruba/instant/snmp}/ap-usage.snmpwalk (100%) create mode 100644 tests/robot/network/aruba/instant/snmp/aruba-instant-ap-usage.robot create mode 100644 tests/robot/network/fortinet/fortigate/snmp/linkmonitor.snmpwalk create mode 100644 tests/robot/network/fortinet/fortigate/snmp/network-fortinet-fortigate-snmp.robot rename tests/{functional/snmp/network-teldat-snmp.robot => robot/network/teldat/snmp/teldat.robot} (97%) rename tests/{resources/snmp/network-teldat-snmp.snmpwalk => robot/network/teldat/snmp/teldat.snmpwalk} (98%) rename tests/{functional/linux => robot/os/linux/local}/os-linux-list-systemdservices.robot (83%) rename tests/{functional/linux => robot/os/linux/local}/os-linux-system-sc-status.robot (88%) rename tests/{resources/linux => robot/os/linux/local}/systemd-219/systemctl (100%) rename tests/{resources/linux => robot/os/linux/local}/systemd-252/systemctl (100%) create mode 100644 tests/robot/os/linux/snmp/list-diskio-2.snmpwalk rename tests/{resources/snmp/os_linux_snmp_plugin.snmpwalk => robot/os/linux/snmp/list-diskio.snmpwalk} (100%) rename tests/{functional => robot/os/linux}/snmp/network-interfaces.robot (82%) create mode 100644 tests/robot/os/linux/snmp/network-interfaces.snmpwalk rename tests/{functional => robot/os/linux}/snmp/os-linux-snmp.robot (66%) create mode 100644 tests/robot/os/windows/snmp/services-en.snmpwalk create mode 100644 tests/robot/os/windows/snmp/services-fr.snmpwalk rename tests/{functional/snmp/os-windows-services.robot => robot/os/windows/snmp/services.robot} (90%) rename tests/{resources/mockoon => robot/storage/datacore/restapi}/storage-datacore-api.json (100%) rename tests/{functional/api => robot/storage/datacore/restapi}/storage-datacore-restapi.robot (80%) create mode 100644 tests/robot/storage/synology/snmp/storage-synology-snmp.robot rename tests/{resources/snmp/synology_component_disk_critical.snmpwalk => robot/storage/synology/snmp/synology-disk-critical.snmpwalk} (100%) rename tests/{resources/snmp/synology_component_disk_failing.snmpwalk => robot/storage/synology/snmp/synology-disk-failing.snmpwalk} (100%) rename tests/{resources/snmp/synology_component_disk_ok.snmpwalk => robot/storage/synology/snmp/synology-disk-ok.snmpwalk} (100%) rename tests/{resources/snmp/synology_component_disk_warning.snmpwalk => robot/storage/synology/snmp/synology-disk-warning.snmpwalk} (100%) diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index b1925098aa..b604dc57c0 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -65,22 +65,12 @@ jobs: pip3.11 install RobotFramework-Examples shell: bash - - name: Run Robot Framework API tests + - name: Run Robot Framework tests run: | sudo mkdir -p /var/lib/centreon/centplugins/ sudo chmod 777 /var/lib/centreon/centplugins/ - robot tests/functional/api - - - name: Run Robot Framework SNMP tests - run: | sudo useradd snmp sudo mkdir -p /usr/snmpsim/data - sudo cp -r tests/resources/snmp/* /usr/snmpsim/data/ + sudo cp -r tests/robot/* /usr/snmpsim/data/ snmpsimd --logging-method=null --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp & - robot tests/functional/snmp - - - name: Run Robot Framework Database tests - run: robot tests/functional/database - - - name: Run Robot Framework Linux tests - run: robot tests/functional/linux + robot tests/robot diff --git a/tests/functional/snmp/hardware-ups-standard-snmp.robot b/tests/functional/snmp/hardware-ups-standard-snmp.robot deleted file mode 100644 index f58c05eb03..0000000000 --- a/tests/functional/snmp/hardware-ups-standard-snmp.robot +++ /dev/null @@ -1,101 +0,0 @@ -*** Settings *** -Documentation Hardware UPS standard SNMP plugin - -Library OperatingSystem -Library String - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::standard::rfc1628::snmp::plugin - -&{ups_standard_test_with_values} -... snmpcommunity=hardware-ups/hardware-ups-standard -... warningpower= -... criticalcurrent= -... warningvoltage= -... warningfrequence= -... excludeid= -... result=OK: All input lines are ok | '1#line.input.frequence.hertz'=49.9Hz;;;; '1#line.input.voltage.volt'=233V;;;; '1#line.input.current.ampere'=0A;;;; '1#line.input.power.watt'=0W;;;; '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; -&{ups_standard_test_critical_with_null_values} -... snmpcommunity=hardware-ups/hardware-ups-standard_null_val -... warningpower='215:' -... criticalcurrent='@0:214' -... warningvoltage='@0:214' -... warningfrequence='@0:214' -... excludeid= -... result=CRITICAL: Input Line '1' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '2' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '3' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W | '1#line.input.frequence.hertz'=0Hz;@0:214;;; '1#line.input.voltage.volt'=0V;@0:214;;; '1#line.input.current.ampere'=0A;;@0:214;; '1#line.input.power.watt'=0W;215:;;; '2#line.input.frequence.hertz'=0Hz;@0:214;;; '2#line.input.voltage.volt'=0V;@0:214;;; '2#line.input.current.ampere'=0A;;@0:214;; '2#line.input.power.watt'=0W;215:;;; '3#line.input.frequence.hertz'=0Hz;@0:214;;; '3#line.input.voltage.volt'=0V;@0:214;;; '3#line.input.current.ampere'=0A;;@0:214;; '3#line.input.power.watt'=0W;215:;;; -&{ups_standard_test_with_exclude_option_1} -... snmpcommunity=hardware-ups/hardware-ups-standard -... warningpower= -... criticalcurrent= -... warningvoltage= -... warningfrequence= -... excludeid='1,2' -... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; -&{ups_standard_test_with_exclude_option_2} -... snmpcommunity=hardware-ups/hardware-ups-standard -... warningpower= -... criticalcurrent= -... warningvoltage= -... warningfrequence= -... excludeid='1, 2' -... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; -&{ups_standard_test_with_exclude_option_3} -... snmpcommunity=hardware-ups/hardware-ups-standard -... warningpower= -... criticalcurrent= -... warningvoltage= -... warningfrequence= -... excludeid='1 ,3' -... result=OK: Input Line '2' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; -@{ups_standard_tests} -... &{ups_standard_test_with_values} -... &{ups_standard_test_critical_with_null_values} -... &{ups_standard_test_with_exclude_option_1} -... &{ups_standard_test_with_exclude_option_2} -... &{ups_standard_test_with_exclude_option_3} - - -*** Test Cases *** -Hardware UPS Standard SNMP input lines - [Documentation] Hardware UPS standard SNMP input lines - [Tags] hardware UPS snmp - FOR ${ups_standard_test} IN @{ups_standard_tests} - ${command} Catenate - ... ${CMD} - ... --mode=input-lines - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=${ups_standard_test.snmpcommunity} - ${length} Get Length ${ups_standard_test.warningpower} - IF ${length} > 0 - ${command} Catenate ${command} --warning-power=${ups_standard_test.warningpower} - END - ${length} Get Length ${ups_standard_test.criticalcurrent} - IF ${length} > 0 - ${command} Catenate ${command} --critical-current=${ups_standard_test.criticalcurrent} - END - ${length} Get Length ${ups_standard_test.warningvoltage} - IF ${length} > 0 - ${command} Catenate ${command} --warning-voltage=${ups_standard_test.warningvoltage} - END - ${length} Get Length ${ups_standard_test.warningfrequence} - IF ${length} > 0 - ${command} Catenate ${command} --warning-frequence=${ups_standard_test.warningfrequence} - END - ${length} Get Length ${ups_standard_test.excludeid} - IF ${length} > 0 - ${command} Catenate ${command} --exclude-id=${ups_standard_test.excludeid} - END - ${output} Run ${command} - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${ups_standard_test.result} - ... Wrong output result for compliance of ${ups_standard_test.result}{\n}Command output:{\n}${output}{\n}{\n}{\n} - END diff --git a/tests/functional/snmp/network-aruba-instant-ap-usage.robot b/tests/functional/snmp/network-aruba-instant-ap-usage.robot deleted file mode 100644 index 8f66068136..0000000000 --- a/tests/functional/snmp/network-aruba-instant-ap-usage.robot +++ /dev/null @@ -1,79 +0,0 @@ -*** Settings *** -Documentation Network Aruba Instant SNMP plugin - AP Usage - -Library OperatingSystem -Library String - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=network::aruba::instant::snmp::plugin --mode=ap-usage --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 - -&{ap_usage_test_1} -... documentation=Test AP usage without filters -... snmpcommunity=network-aruba-instant/ap-usage -... filtercounters= -... filtername= -... warningclients= -... criticalclients= -... result=OK: total access points: 5 - All access points are ok | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 - -&{ap_usage_test_2} -... documentation=Test AP usage with filter on clients -... snmpcommunity=network-aruba-instant/ap-usage -... filtercounters=clients -... filtername= -... warningclients= -... criticalclients= -... result=OK: All access points are ok | 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 4#clients.current.count'=11;;;0; 'AP Sotano#clients.current.count'=4;;;0; - -&{ap_usage_test_3} -... documentation=Test AP usage with filter on clients and filter on name -... snmpcommunity=network-aruba-instant/ap-usage -... filtercounters=clients -... filtername=Piso 4 -... warningclients= -... criticalclients= -... result=OK: Access Point 'AP Piso 4' Current Clients: 11 | 'AP Piso 4#clients.current.count'=11;;;0; - -&{ap_usage_test_4} -... documentation=Test AP usage without filters with warning when less than 20 clients -... snmpcommunity=network-aruba-instant/ap-usage -... filtercounters= -... filtername= -... warningclients=20: -... criticalclients= -... result=WARNING: Access Point 'AP Piso 1' Current Clients: 4 - Access Point 'AP Piso 2' Current Clients: 17 - Access Point 'AP Piso 3' Current Clients: 14 - Access Point 'AP Piso 4' Current Clients: 11 - Access Point 'AP Sotano' Current Clients: 4 | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;20:;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;20:;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;20:;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;20:;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;20:;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 - -@{ap_usage_tests} -... &{ap_usage_test_1} -... &{ap_usage_test_2} -... &{ap_usage_test_3} -... &{ap_usage_test_4} - - -*** Test Cases *** -Network Aruba Instant SNMP plugin - [Documentation] AP Usage - [Tags] network aruba snmp - FOR ${ap_usage_tc} IN @{ap_usage_tests} - ${command} Catenate - ... ${CMD} - ... --filter-counters='${ap_usage_tc.filtercounters}' - ... --filter-name='${ap_usage_tc.filtername}' - ... --warning-clients='${ap_usage_tc.warningclients}' - ... --critical-clients='${ap_usage_tc.criticalclients}' - ... --snmp-community=${ap_usage_tc.snmpcommunity} - - Log To Console ${ap_usage_tc.documentation} - ${output} Run ${command} - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${ap_usage_tc.result} - ... Wrong output result for compliance of ${ap_usage_tc.result}{\n}Command output:{\n}${output}{\n}{\n}{\n} - END - diff --git a/tests/functional/snmp/network-fortinet-fortigate-snmp.robot b/tests/functional/snmp/network-fortinet-fortigate-snmp.robot deleted file mode 100644 index ea0f6c10d1..0000000000 --- a/tests/functional/snmp/network-fortinet-fortigate-snmp.robot +++ /dev/null @@ -1,408 +0,0 @@ -*** Settings *** -Documentation Network Fortinet Fortigate SNMP plugin - -Library OperatingSystem -Library String - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin - -# Test simple usage of the linkmonitor mode -&{fortinet_fortigate_linkmonitor_test1} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with filter-id option set to 3 -&{fortinet_fortigate_linkmonitor_test2} -... filterid=3 -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with filter-name option set to MonitorWAN1 -&{fortinet_fortigate_linkmonitor_test3} -... filterid= -... filtername='MonitorWAN1' -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=OK: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive, latency: 39.739ms, jitter: 0.096ms, packet loss: 0.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; - -# Test linkmonitor mode with filter-vdom option set to 'root' -&{fortinet_fortigate_linkmonitor_test4} -... filterid= -... filtername= -... filtervdom='root' -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with custom-perf-data-instances option set to '%(name) %(id)' -&{fortinet_fortigate_linkmonitor_test5} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances='%(name) %(id)' -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~1#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~1#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~1#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~2#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~2#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~2#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~3#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with unknown-status option set to '%{state} eq "alive"' -&{fortinet_fortigate_linkmonitor_test6} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus='\%{state} eq "alive"' -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead UNKNOWN: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with warning-status option set to '%{state} eq "alive"' -&{fortinet_fortigate_linkmonitor_test7} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus='\%{state} eq "alive"' -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with critical-status option set to '%{state} eq "alive"' -&{fortinet_fortigate_linkmonitor_test8} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus='\%{state} eq "alive"' -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with warning-latency option set to 40 -&{fortinet_fortigate_linkmonitor_test9} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency=40 -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;0:40;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;0:40;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;0:40;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with critical-latency option set to 40 -&{fortinet_fortigate_linkmonitor_test10} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency=40 -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;0:40;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;0:40;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;0:40;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with warning-jitter option set to 1 -&{fortinet_fortigate_linkmonitor_test11} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter=1 -... criticaljitter= -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;0:1;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;0:1;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;0:1;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with critical-jitter option set to 1 -&{fortinet_fortigate_linkmonitor_test12} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter=1 -... warningpacketloss= -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;0:1;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;0:1;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;0:1;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; - -# Test linkmonitor mode with warning-packetloss option set to 0.5 -&{fortinet_fortigate_linkmonitor_test13} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss=0.5 -... criticalpacketloss= -... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;0:0.5;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;0:0.5;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;0:0.5;;0; - -# Test linkmonitor mode with critical-packetloss option set to 0.5 -&{fortinet_fortigate_linkmonitor_test14} -... filterid= -... filtername= -... filtervdom= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warninglatency= -... criticallatency= -... warningjitter= -... criticaljitter= -... warningpacketloss= -... criticalpacketloss=0.5 -... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;0:0.5;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;0:0.5;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;0:0.5;0; - -@{fortinet_fortigate_linkmonitor_tests} -... &{fortinet_fortigate_linkmonitor_test1} -... &{fortinet_fortigate_linkmonitor_test2} -... &{fortinet_fortigate_linkmonitor_test3} -... &{fortinet_fortigate_linkmonitor_test4} -... &{fortinet_fortigate_linkmonitor_test5} -... &{fortinet_fortigate_linkmonitor_test6} -... &{fortinet_fortigate_linkmonitor_test7} -... &{fortinet_fortigate_linkmonitor_test8} -... &{fortinet_fortigate_linkmonitor_test9} -... &{fortinet_fortigate_linkmonitor_test10} -... &{fortinet_fortigate_linkmonitor_test11} -... &{fortinet_fortigate_linkmonitor_test12} -... &{fortinet_fortigate_linkmonitor_test13} -... &{fortinet_fortigate_linkmonitor_test14} - -# Test simple usage of the list-linkmonitors mode -&{fortinet_fortigate_listlinkmonitors_test1} -... filterstate= -... filtername= -... filtervdom= -... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] - -# Test list-linkmonitors mode with filter-name option set to MonitorWAN1 -&{fortinet_fortigate_listlinkmonitors_test2} -... filterstate= -... filtername='MonitorWAN1' -... filtervdom= -... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive] - -# Test list-linkmonitors mode with filter-state option set to alive -&{fortinet_fortigate_listlinkmonitors_test3} -... filterstate='alive' -... filtername= -... filtervdom= -... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive] - -# Test list-linkmonitors mode with filter-vdom option set to root -&{fortinet_fortigate_listlinkmonitors_test4} -... filterstate= -... filtername= -... filtervdom='root' -... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] - -@{fortinet_fortigate_listlinkmonitors_tests} -... &{fortinet_fortigate_listlinkmonitors_test1} -... &{fortinet_fortigate_listlinkmonitors_test2} -... &{fortinet_fortigate_listlinkmonitors_test3} -... &{fortinet_fortigate_listlinkmonitors_test4} - -*** Test Cases *** -Network Fortinet Fortigate SNMP link monitor - [Documentation] Network Fortinet Fortigate SNMP link-monitor - [Tags] network Fortinet Fortigate snmp - FOR ${fortinet_fortigate_linkmonitor_test} IN @{fortinet_fortigate_linkmonitor_tests} - ${command} Catenate - ... ${CMD} - ... --mode=link-monitor - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=network-fortinet-fortigate-linkmonitor - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filterid} - IF ${length} > 0 - ${command} Catenate ${command} --filter-id=${fortinet_fortigate_linkmonitor_test.filterid} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtername} - IF ${length} > 0 - ${command} Catenate ${command} --filter-name=${fortinet_fortigate_linkmonitor_test.filtername} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtervdom} - IF ${length} > 0 - ${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_linkmonitor_test.filtervdom} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.customperfdatainstances} - IF ${length} > 0 - ${command} Catenate ${command} --custom-perfdata-instances=${fortinet_fortigate_linkmonitor_test.customperfdatainstances} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.unknownstatus} - IF ${length} > 0 - ${command} Catenate ${command} --unknown-status=${fortinet_fortigate_linkmonitor_test.unknownstatus} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningstatus} - IF ${length} > 0 - ${command} Catenate ${command} --warning-status=${fortinet_fortigate_linkmonitor_test.warningstatus} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalstatus} - IF ${length} > 0 - ${command} Catenate ${command} --critical-status=${fortinet_fortigate_linkmonitor_test.criticalstatus} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warninglatency} - IF ${length} > 0 - ${command} Catenate ${command} --warning-latency=${fortinet_fortigate_linkmonitor_test.warninglatency} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticallatency} - IF ${length} > 0 - ${command} Catenate ${command} --critical-latency=${fortinet_fortigate_linkmonitor_test.criticallatency} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningjitter} - IF ${length} > 0 - ${command} Catenate ${command} --warning-jitter=${fortinet_fortigate_linkmonitor_test.warningjitter} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticaljitter} - IF ${length} > 0 - ${command} Catenate ${command} --critical-jitter=${fortinet_fortigate_linkmonitor_test.criticaljitter} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningpacketloss} - IF ${length} > 0 - ${command} Catenate ${command} --warning-packet-loss=${fortinet_fortigate_linkmonitor_test.warningpacketloss} - END - ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalpacketloss} - IF ${length} > 0 - ${command} Catenate ${command} --critical-packet-loss=${fortinet_fortigate_linkmonitor_test.criticalpacketloss} - END - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${fortinet_fortigate_linkmonitor_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_linkmonitor_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END - -Network Fortinet Fortigate SNMP list link monitor - [Documentation] Network Fortinet Fortigate SNMP list-linkmonitors - [Tags] network Fortinet Fortigate snmp - FOR ${fortinet_fortigate_listlinkmonitors_test} IN @{fortinet_fortigate_listlinkmonitors_tests} - ${command} Catenate - ... ${CMD} - ... --mode=list-link-monitors - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=network-fortinet-fortigate-linkmonitor - ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filterstate} - IF ${length} > 0 - ${command} Catenate ${command} --filter-state=${fortinet_fortigate_listlinkmonitors_test.filterstate} - END - ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtername} - IF ${length} > 0 - ${command} Catenate ${command} --filter-name=${fortinet_fortigate_listlinkmonitors_test.filtername} - END - ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtervdom} - IF ${length} > 0 - ${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_listlinkmonitors_test.filtervdom} - END - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${fortinet_fortigate_listlinkmonitors_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_listlinkmonitors_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END diff --git a/tests/functional/snmp/storage-synology-snmp.robot b/tests/functional/snmp/storage-synology-snmp.robot deleted file mode 100644 index c1faa5f061..0000000000 --- a/tests/functional/snmp/storage-synology-snmp.robot +++ /dev/null @@ -1,98 +0,0 @@ -*** Settings *** -Documentation Storage Synology SNMP - -Library OperatingSystem -Library XML - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::synology::snmp::plugin - -&{check_components_test1} -... description=Checking disk components when all disks are ok -... snmpcommunity=synology_component_disk_ok -... expected_output=OK: All 8 components are ok [2/2 disk, 2/2 fan, 1/1 psu, 2/2 raid, 1/1 system]. | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; -&{check_components_test2} -... description=Checking disk components when one disks is warning -... snmpcommunity=synology_component_disk_warning -... expected_output=WARNING: Disk 'Disk 2' health is warning | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; -&{check_components_test3} -... description=Checking disk components when one disks is critical -... snmpcommunity=synology_component_disk_critical -... expected_output=CRITICAL: Disk 'Disk 2' health is critical | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; -&{check_components_test4} -... description=Checking disk components when one disks is failing -... snmpcommunity=synology_component_disk_failing -... expected_output=CRITICAL: Disk 'Disk 2' health is failing | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; -@{check_components_tests} -... &{check_components_test1} -... &{check_components_test2} -... &{check_components_test3} -... &{check_components_test4} - -&{uptime_t1} -... description=Uptime check expected to be OK -... snmpcommunity=synology_component_disk_ok -... warning= -... critical= -... expected_output=OK: System uptime is: 46m 5s | 'uptime'=2765.00s;;;0; -&{uptime_t2} -... description=Uptime check expected to be warning -... snmpcommunity=synology_component_disk_ok -... warning=10 -... critical= -... expected_output=WARNING: System uptime is: 46m 5s | 'uptime'=2765.00s;0:10;;0; -&{uptime_t3} -... description=Uptime check expected to be critical -... snmpcommunity=synology_component_disk_ok -... warning= -... critical=10 -... expected_output=CRITICAL: System uptime is: 46m 5s | 'uptime'=2765.00s;;0:10;0; - -@{uptime_tests} -... &{uptime_t1} -... &{uptime_t2} -... &{uptime_t3} - -*** Test Cases *** -Components - [Tags] storage synology snmp - FOR ${check_components_test} IN @{check_components_tests} - ${command} Catenate - ... ${CMD} - ... --mode=components - ... --hostname=127.0.0.1 - ... --snmp-version=2 - ... --snmp-port=2024 - ... --snmp-community=${check_components_test.snmpcommunity} - - ${output} Run ${command} - Should Be Equal As Strings - ... ${check_components_test.expected_output} - ... ${output} - ... ${check_components_test.description} failed. Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output} - END - -Uptime - [Tags] storage synology snmp - FOR ${test_item} IN @{uptime_tests} - ${command} Catenate - ... ${CMD} - ... --mode=uptime - ... --hostname=127.0.0.1 - ... --snmp-version=2 - ... --snmp-port=2024 - ... --snmp-community=${test_item.snmpcommunity} - ... --warning-uptime=${test_item.warning} - ... --critical-uptime=${test_item.critical} - - ${output} Run ${command} - Should Be Equal As Strings - ... ${test_item.expected_output} - ... ${output} - ... ${test_item.description} failed. Wrong output for components mode: ${test_item}.{\n}Command output:{\n}${output} - END diff --git a/tests/resources/import.resource b/tests/resources/import.resource new file mode 100644 index 0000000000..ce5505009a --- /dev/null +++ b/tests/resources/import.resource @@ -0,0 +1,7 @@ +*** Settings *** +Documentation This is the documentation for the import resource file. +Library Examples +Library OperatingSystem +Library String +Library XML +Resource resources.resource diff --git a/tests/resources/mockoon/storage-datacore-restapi.json b/tests/resources/mockoon/storage-datacore-restapi.json deleted file mode 100644 index f7aae507ac..0000000000 --- a/tests/resources/mockoon/storage-datacore-restapi.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "uuid": "8cba072c-7794-4ff7-ab36-158ef1abed39", - "lastMigration": 32, - "name": "Storage datacore api", - "endpointPrefix": "", - "latency": 0, - "port": 3001, - "hostname": "", - "folders": [], - "routes": [ - { - "uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a", - "type": "http", - "documentation": "", - "method": "get", - "endpoint": "RestService/rest.svc/1.0/pools", - "responses": [ - { - "uuid": "003eae6e-f58f-44db-bd03-3b44ca578046", - "body": "[ {\n \"Caption\" : \"Disk pool 1\",\n \"ExtendedCaption\" : \"Disk pool 1 on StorageSvr001\",\n \"Id\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551:{d68b8a36-0ec4-11e5-80ba-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11963,\n \"Alias\" : \"Disk pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : false,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : false,\n \"ServerId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SharedPoolId\" : null,\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n},\n{\n \"Caption\" : \"Shared pool 1\",\n \"ExtendedCaption\" : \"Shared pool 1 on StorageSvr002\",\n \"Id\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"Internal\" : false,\n \"SequenceNumber\" : 11967,\n \"Alias\" : \"Shared pool 1\",\n \"AutoTieringEnabled\" : true,\n \"ChunkSize\" : {\n \"Value\" : 134217728\n },\n \"Description\" : null,\n \"InSharedMode\" : true,\n \"IsAuthorized\" : true,\n \"MaxTierNumber\" : 3,\n \"PoolMode\" : 1,\n \"PoolStatus\" : 0,\n \"PresenceStatus\" : 1,\n \"SMPAApproved\" : true,\n \"ServerId\" : \"B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D\",\n \"SharedPoolId\" : \"{4dec1b5a-2577-11e5-80c3-00155d651622}\",\n \"TierReservedPct\" : 0,\n \"Type\" : 0,\n \"IsBulk\" : false\n} ]", - "latency": 0, - "statusCode": 200, - "label": "", - "headers": [], - "bodyType": "INLINE", - "filePath": "", - "databucketID": "", - "sendFileAsBody": false, - "rules": [], - "rulesOperator": "OR", - "disableTemplating": false, - "fallbackTo404": false, - "default": true, - "crudKey": "id", - "callbacks": [] - } - ], - "responseMode": null - }, - { - "uuid": "0c038179-3723-4d67-9bed-fc226629c847", - "type": "http", - "documentation": "", - "method": "get", - "endpoint": "RestService/rest.svc/1.0/performances/B5C140F5-6B13-4CAD-AF9D-F7C4172B3A1D:%7B4dec1b5a-2577-11e5-80c3-00155d651622%7D", - "responses": [ - { - "uuid": "0eb0a2ca-2f12-40af-ba94-0feef989b6a1", - "body": "[\n {\n \"CollectionTime\": \"/Date(1486402608775)/\",\n \"NullCounterMap\": 0,\n \"BytesAllocated\": 6174015488,\n \"BytesAllocatedPercentage\": 12,\n \"BytesAvailable\": 47110422528,\n \"BytesAvailablePercentage\": 88,\n \"BytesInReclamation\": 0,\n \"BytesInReclamationPercentage\": 0,\n \"BytesOverSubscribed\": 0,\n \"BytesReserved\": 0,\n \"BytesReservedPercentage\": 0,\n \"BytesTotal\": 53284438016,\n \"EstimatedDepletionTime\": 2592000001,\n \"MaxPoolBytes\": 1108127332171776,\n \"MaxReadTime\" : 0,\n \"MaxReadWriteTime\" : 0,\n \"MaxWriteTime\" : 0,\n \"PercentAllocated\" : 12,\n \"PercentAvailable\" : 88,\n \"TotalBytesMigrated\" : 0,\n \"TotalBytesRead\" : 307200,\n \"TotalBytesTransferred\" : 2036756992,\n \"TotalBytesWritten\" : 2036470272,\n \"TotalOperations\" : 53002,\n \"TotalReadTime\" : 0,\n \"TotalReads\" : 18,\n \"TotalWriteTime\" : 74994,\n \"TotalWrites\" : 52998\n }\n]", - "latency": 0, - "statusCode": 200, - "label": "", - "headers": [], - "bodyType": "INLINE", - "filePath": "", - "databucketID": "", - "sendFileAsBody": false, - "rules": [], - "rulesOperator": "OR", - "disableTemplating": false, - "fallbackTo404": false, - "default": true, - "crudKey": "id", - "callbacks": [] - } - ], - "responseMode": null - }, - { - "uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390", - "type": "http", - "documentation": "", - "method": "get", - "endpoint": "RestService/rest.svc/1.0/alerts", - "responses": [ - { - "uuid": "a1dece29-074b-4100-a764-f7ddccdec8da", - "body": "[ {\n \"Caller\" : \"ServerMachineGroup.UpdateServers\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 34937\n },\n \"Level\" : 2,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : [ \"StorageSvr002\" ],\n \"MessageText\" : \"Connection to server {0} has been lost.\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437398005546)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}, {\n \"Caller\" : \"BasePerfMonitor`1.SetState\",\n \"HighPriority\" : true,\n \"Id\" : {\n \"MachineId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SequenceNumber\" : 33985\n },\n \"Level\" : 3,\n \"MachineName\" : \"STORAGESVR001\",\n \"MessageData\" : null,\n \"MessageText\" : \"The Replication buffer free space of StorageSvr001 in Group1 is <= 10%\",\n \"NeedsAcknowledge\" : false,\n \"Sources\" : [ {\n \"SourceCaption\" : \"Replication buffer free space of StorageSvr001 in Group1\",\n \"SourceId\" : \"FallingThresholdPerfMonitor`1ReplicationBufferPercentFreeSpace\",\n \"SourceType\" : 3\n }, {\n \"SourceCaption\" : \"StorageSvr001 in Group1\",\n \"SourceId\" : \"A3E78CFA-DBEC-44E1-A23C-E9E262EC4551\",\n \"SourceType\" : 12\n }, {\n \"SourceCaption\" : \"Group1\",\n \"SourceId\" : \"4b428832-fd51-45df-9c21-ce267e1ceb7a\",\n \"SourceType\" : 12\n } ],\n \"TimeStamp\" : \"/Date(1437397587894)/\",\n \"UserId\" : null,\n \"UserName\" : null,\n \"Visibility\" : 64\n}]", - "latency": 0, - "statusCode": 200, - "label": "", - "headers": [], - "bodyType": "INLINE", - "filePath": "", - "databucketID": "", - "sendFileAsBody": false, - "rules": [], - "rulesOperator": "OR", - "disableTemplating": false, - "fallbackTo404": false, - "default": true, - "crudKey": "id", - "callbacks": [] - } - ], - "responseMode": null - }, - { - "uuid": "be0b350e-f8da-4998-a045-a3cf840745c0", - "type": "http", - "documentation": "", - "method": "get", - "endpoint": "RestService/rest.svc/1.0/monitors", - "responses": [ - { - "uuid": "6f53cd5e-7417-4fdf-a310-e2a7af4b7c3a", - "body": "[\r\n {\r\n \"Caption\": \"State\",\r\n \"ExtendedCaption\": \"State of HostVM2\",\r\n \"Id\": \"ClientMachineStateMonitor\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 9417,\r\n \"Description\": \"Monitors the state of hosts.\",\r\n \"MessageText\": \"Connected\",\r\n \"MonitoredObjectId\": \"ed89ef91d72142dc958e02c5b7014fac\",\r\n \"State\": 16,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.ClientMachineStateMonitor)\",\r\n \"TimeStamp\": \"/Date(1486136115475-0500)/\"\r\n },\r\n {\r\n \"Caption\": \"I/O latency\",\r\n \"ExtendedCaption\": \"I/O latency of Mirror of Virtual disk 1 on StorageSvr005\",\r\n \"Id\": \"RisingThresholdPerfMonitor`1TotalOperationsTime\",\r\n \"Internal\": false,\r\n \"SequenceNumber\": 10036,\r\n \"Description\": \"Monitors the physical disks latency.\",\r\n \"MessageText\": \"Disabled\",\r\n \"MonitoredObjectId\": \"V.{2f652562-e7e3-11e6-80d7-00155d651611}-00000001_N.22690030D9218568\",\r\n \"State\": 1,\r\n \"TemplateId\": \"T(DataCore.Executive.Controller.RisingThresholdPerfMonitor`1[T]TotalOperationsTime)\",\r\n \"TimeStamp\": \"/Date(1486148705910-0500)/\"\r\n }\r\n]", - "latency": 0, - "statusCode": 200, - "label": "", - "headers": [], - "bodyType": "INLINE", - "filePath": "", - "databucketID": "", - "sendFileAsBody": false, - "rules": [], - "rulesOperator": "OR", - "disableTemplating": false, - "fallbackTo404": false, - "default": true, - "crudKey": "id", - "callbacks": [] - } - ], - "responseMode": null - } - ], - "rootChildren": [ - { - "type": "route", - "uuid": "148371c5-aaa7-4bf0-a818-e81a21aa7f9a" - }, - { - "type": "route", - "uuid": "0c038179-3723-4d67-9bed-fc226629c847" - }, - { - "type": "route", - "uuid": "b9f7dd2b-e1e1-4902-95ba-c6b76a1de390" - }, - { - "type": "route", - "uuid": "be0b350e-f8da-4998-a045-a3cf840745c0" - } - ], - "proxyMode": false, - "proxyHost": "", - "proxyRemovePrefix": false, - "tlsOptions": { - "enabled": false, - "type": "CERT", - "pfxPath": "", - "certPath": "", - "keyPath": "", - "caPath": "", - "passphrase": "" - }, - "cors": true, - "headers": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "proxyReqHeaders": [ - { - "key": "", - "value": "" - } - ], - "proxyResHeaders": [ - { - "key": "", - "value": "" - } - ], - "data": [], - "callbacks": [] -} \ No newline at end of file diff --git a/tests/resources/resources.resource b/tests/resources/resources.resource new file mode 100644 index 0000000000..0aad4d6447 --- /dev/null +++ b/tests/resources/resources.resource @@ -0,0 +1,23 @@ +*** Settings *** +Documentation Centreon Plugins for Robot Framework +Library Process + +*** Variables *** +${CENTREON_PLUGINS} perl ${CURDIR}${/}..${/}..${/}src${/}centreon_plugins.pl +# one we use package, we need to remove the "perl" part to be sure the plugin is executable and is correctly formated +# with a shebang at the top. +${PERCENT} % + +*** Keywords *** +Start Mockoon + [Arguments] ${MOCKOON_JSON} + ${process} Start Process + ... mockoon-cli + ... start + ... --data + ... ${MOCKOON_JSON} + ... --port + ... 3000 + Sleep 5s +Stop Mockoon + Terminate All Processes \ No newline at end of file diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-socomec.snmpwalk b/tests/resources/snmp/hardware-ups/hardware-ups-socomec.snmpwalk deleted file mode 100644 index 997763594f..0000000000 --- a/tests/resources/snmp/hardware-ups/hardware-ups-socomec.snmpwalk +++ /dev/null @@ -1,10 +0,0 @@ -.1.3.6.1.4.1.4555.1.1.7.1.3.2.0 = INTEGER: 500 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.1 = INTEGER: 1 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.1 = INTEGER: 2330 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.2 = INTEGER: 2360 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.2.3 = INTEGER: 2360 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.1 = INTEGER: 35 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.2 = INTEGER: 36 -.1.3.6.1.4.1.4555.1.1.7.1.3.3.1.3.3 = INTEGER: 36 \ No newline at end of file diff --git a/tests/functional/snmp/snmp-collection-sputnik-snmp.robot b/tests/robot/apps/protocols/snmp/collection-sputnik.robot similarity index 69% rename from tests/functional/snmp/snmp-collection-sputnik-snmp.robot rename to tests/robot/apps/protocols/snmp/collection-sputnik.robot index 2e380c0aab..cf95b5cd39 100644 --- a/tests/functional/snmp/snmp-collection-sputnik-snmp.robot +++ b/tests/robot/apps/protocols/snmp/collection-sputnik.robot @@ -1,46 +1,43 @@ *** Settings *** Documentation Hardware UPS Sputnik SNMP plugin -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=apps::protocols::snmp::plugin -${CMD} perl ${CENTREON_PLUGINS} --plugin=apps::protocols::snmp::plugin *** Test Cases *** SNMP Collection - Sputnik Environment ${tc}/3 - [Tags] SNMP Collection + [Tags] snmp collection ${command} Catenate ... ${CMD} ... --mode=collection ... --hostname=127.0.0.1 ... --snmp-version=2c ... --snmp-port=2024 - ... --snmp-community=hardware-ups/hardware-ups-sputnik - ... --config=${CURDIR}${/}..${/}..${/}..${/}src/contrib/collection/snmp/sputnik-environment.json + ... --snmp-community=apps/protocols/snmp/collection-sputnik + ... --config=${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}src/contrib/collection/snmp/sputnik-environment.json ${output} Run ${command} ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${expected_result} - ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + ... ${command}\nWrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} Examples: tc expected_result -- ... 1 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 ... 2 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 ... 3 OK: Sensor '1' temperature is '20.06'°C and humidity is '33'% | '1#environment.temperature.celsius'=20.06C;;;; '1#environment.humidity.percent'=33%;;;0;100 + *** Keywords *** Append Option [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' [Arguments] ${option} ${value} ${value} Set Variable If '${value}' == '_empty_' '' ${value} - [return] ${option}=${value} - + RETURN ${option}=${value} diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk b/tests/robot/apps/protocols/snmp/collection-sputnik.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware-ups/hardware-ups-sputnik.snmpwalk rename to tests/robot/apps/protocols/snmp/collection-sputnik.snmpwalk diff --git a/tests/resources/mockoon/cloud-aws-cloudtrail.json b/tests/robot/cloud/aws/cloudtrail/cloud-aws-cloudtrail.json similarity index 100% rename from tests/resources/mockoon/cloud-aws-cloudtrail.json rename to tests/robot/cloud/aws/cloudtrail/cloud-aws-cloudtrail.json diff --git a/tests/functional/api/cloud-aws-cloudtrail.robot b/tests/robot/cloud/aws/cloudtrail/cloud-aws-cloudtrail.robot similarity index 92% rename from tests/functional/api/cloud-aws-cloudtrail.robot rename to tests/robot/cloud/aws/cloudtrail/cloud-aws-cloudtrail.robot index 445a0de15a..97bdea7ea1 100644 --- a/tests/functional/api/cloud-aws-cloudtrail.robot +++ b/tests/robot/cloud/aws/cloudtrail/cloud-aws-cloudtrail.robot @@ -1,20 +1,17 @@ *** Settings *** Documentation AWS CloudTrail plugin -Library OperatingSystem -Library Process -Library String +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource -Suite Setup Start Mockoon +Suite Setup Start Mockoon ${MOCKOON_JSON} Suite Teardown Stop Mockoon Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl -${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-aws-cloudtrail.json +${MOCKOON_JSON} ${CURDIR}${/}cloud-aws-cloudtrail.json -${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtrail::plugin --custommode=paws --region=eu-west --aws-secret-key=secret --aws-access-key=key +${CMD} ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtrail::plugin --custommode=paws --region=eu-west --aws-secret-key=secret --aws-access-key=key &{checktrailstatus_value1} ... trailstatus=true @@ -195,18 +192,3 @@ AWS CloudTrail count events ... ${countevents_value.result} ... Wrong output result for count events of ${countevents_value}.{\n}Command output:{\n}${output} END - - -*** Keywords *** -Start Mockoon - ${process} Start Process - ... mockoon-cli - ... start - ... --data - ... ${MOCKOON_JSON} - ... --port - ... 3000 - Sleep 5s - -Stop Mockoon - Terminate All Processes diff --git a/tests/resources/mockoon/cloud-azure-policyinsights-policystates.json b/tests/robot/cloud/azure/policyinsights/policystates/cloud-azure-policyinsights-policystates.json similarity index 100% rename from tests/resources/mockoon/cloud-azure-policyinsights-policystates.json rename to tests/robot/cloud/azure/policyinsights/policystates/cloud-azure-policyinsights-policystates.json diff --git a/tests/functional/api/cloud-azure-policyinsights-policystates.robot b/tests/robot/cloud/azure/policyinsights/policystates/cloud-azure-policyinsights-policystates.robot similarity index 80% rename from tests/functional/api/cloud-azure-policyinsights-policystates.robot rename to tests/robot/cloud/azure/policyinsights/policystates/cloud-azure-policyinsights-policystates.robot index 14e4d856d3..4e6c274e00 100644 --- a/tests/functional/api/cloud-azure-policyinsights-policystates.robot +++ b/tests/robot/cloud/azure/policyinsights/policystates/cloud-azure-policyinsights-policystates.robot @@ -1,21 +1,18 @@ *** Settings *** Documentation Azure PolicyInsights PolicyStates plugin -Library OperatingSystem -Library Process -Library String +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource -Suite Setup Start Mockoon +Suite Setup Start Mockoon ${MOCKOON_JSON} Suite Teardown Stop Mockoon Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl -${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}cloud-azure-policyinsights-policystates.json +${MOCKOON_JSON} ${CURDIR}${/}cloud-azure-policyinsights-policystates.json ${LOGIN_ENDPOINT} http://localhost:3000/login -${CMD} perl ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT} +${CMD} ${CENTREON_PLUGINS} --plugin=cloud::azure::policyinsights::policystates::plugin --subscription=subscription --tenant=tenant --client-id=client_id --client-secret=secret --login-endpoint=${LOGIN_ENDPOINT} &{compliance_value1} ... endpoint=http://localhost:3000/ok @@ -72,18 +69,3 @@ Azure PolicyInsights PolicyStates compliance ... ${compliance_value.result} ... Wrong output result for compliance of ${compliance_value}.{\n}Command output:{\n}${output} END - - -*** Keywords *** -Start Mockoon - ${process} Start Process - ... mockoon-cli - ... start - ... --data - ... ${MOCKOON_JSON} - ... --port - ... 3000 - Sleep 5s - -Stop Mockoon - Terminate All Processes diff --git a/tests/functional/database/database-mysql.robot b/tests/robot/database/database-mysql.robot similarity index 66% rename from tests/functional/database/database-mysql.robot rename to tests/robot/database/database-mysql.robot index 7f0a51dd68..e30e80e344 100644 --- a/tests/functional/database/database-mysql.robot +++ b/tests/robot/database/database-mysql.robot @@ -1,22 +1,18 @@ *** Settings *** Documentation Database Mysql plugin -Library OperatingSystem -Library Process -Library String +Resource ${CURDIR}${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=database::mysql::plugin +${CMD} ${CENTREON_PLUGINS} --plugin=database::mysql::plugin &{sql_string_test1} -... result=UNKNOWN: Need to specify data_source arguments. +... result=UNKNOWN: Need to specify data_source arguments. @{sql_string_tests} -... &{sql_string_test1} +... &{sql_string_test1} *** Test Cases *** diff --git a/tests/resources/snmp/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk b/tests/robot/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk similarity index 97% rename from tests/resources/snmp/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk rename to tests/robot/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk index 0091a90232..f1a619479f 100644 --- a/tests/resources/snmp/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk +++ b/tests/robot/hardware/kvm/avocent/acs/8000/avocent8000.snmpwalk @@ -1,381 +1,381 @@ -.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 2017284 -.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 633088 -.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 633088 -.1.3.6.1.4.1.2021.4.13.0 = INTEGER: 26716 -.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 2084 -.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 740908 -.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.04 -.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.10 -.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.15 -.1.3.6.1.4.1.2021.11.50.0 = INTEGER: 135503 -.1.3.6.1.4.1.2021.11.51.0 = INTEGER: 2274 -.1.3.6.1.4.1.2021.11.52.0 = INTEGER: 40397 -.1.3.6.1.4.1.2021.11.53.0 = INTEGER: 4196071 -.1.3.6.1.4.1.2021.11.54.0 = INTEGER: 12504 -.1.3.6.1.4.1.2021.11.55.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.56.0 = INTEGER: 20130 -.1.3.6.1.4.1.2021.11.57.0 = INTEGER: 1907546 -.1.3.6.1.4.1.2021.11.58.0 = INTEGER: 1097972 -.1.3.6.1.4.1.2021.11.59.0 = INTEGER: 19954356 -.1.3.6.1.4.1.2021.11.60.0 = INTEGER: 15304192 -.1.3.6.1.4.1.2021.11.61.0 = INTEGER: 5002 -.1.3.6.1.4.1.2021.11.62.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.63.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.64.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.65.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.66.0 = INTEGER: 0 -.1.3.6.1.4.1.2021.11.67.0 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.1.1.0 = STRING: "hostname" -.1.3.6.1.4.1.10418.26.2.1.2.0 = STRING: "ACS8016 with dual power supply" -.1.3.6.1.4.1.10418.26.2.1.3.0 = STRING: "000-000" -.1.3.6.1.4.1.10418.26.2.1.4.0 = STRING: "0520307296" -.1.3.6.1.4.1.10418.26.2.1.5.0 = STRING: "notavailable" -.1.3.6.1.4.1.10418.26.2.1.6.0 = STRING: "1.18" -.1.3.6.1.4.1.10418.26.2.1.7.0 = STRING: "2.4.5.3944+845+37+11" -.1.3.6.1.4.1.10418.26.2.1.8.1.0 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.1.8.2.0 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.1.8.3.0 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.1.9.0 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.2.1.0 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.1.0 = INTEGER: 16 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.11 = INTEGER: 11 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.12 = INTEGER: 12 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.13 = INTEGER: 13 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.14 = INTEGER: 14 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.15 = INTEGER: 15 -.1.3.6.1.4.1.10418.26.2.3.2.1.1.16 = INTEGER: 16 -.1.3.6.1.4.1.10418.26.2.3.2.1.2.1 = STRING: "ttyS1" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.2 = STRING: "ttyS2" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.3 = STRING: "ttyS3" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.4 = STRING: "ttyS4" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.5 = STRING: "ttyS5" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.6 = STRING: "ttyS6" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.7 = STRING: "ttyS7" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.8 = STRING: "ttyS8" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.9 = STRING: "ttyS9" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.10 = STRING: "ttyS10" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.11 = STRING: "ttyS11" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.12 = STRING: "ttyS12" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.13 = STRING: "ttyS13" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.14 = STRING: "ttyS14" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.15 = STRING: "ttyS15" -.1.3.6.1.4.1.10418.26.2.3.2.1.2.16 = STRING: "ttyS16" -.1.3.6.1.4.1.10418.26.2.3.2.1.3.1 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.2 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.3 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.4 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.5 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.6 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.7 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.8 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.9 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.10 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.11 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.12 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.13 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.14 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.15 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.3.16 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.4.1 = STRING: "2e-57-c4-p-1" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.2 = STRING: "2e-57-c4-p-2" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.3 = STRING: "2e-57-c4-p-3" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.4 = STRING: "2e-57-c4-p-4" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.5 = STRING: "2e-57-c4-p-5" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.6 = STRING: "2e-57-c4-p-6" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.7 = STRING: "2e-57-c4-p-7" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.8 = STRING: "2e-57-c4-p-8" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.9 = STRING: "2e-57-c4-p-9" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.10 = STRING: "2e-57-c4-p-10" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.11 = STRING: "2e-57-c4-p-11" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.12 = STRING: "2e-57-c4-p-12" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.13 = STRING: "2e-57-c4-p-13" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.14 = STRING: "2e-57-c4-p-14" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.15 = STRING: "2e-57-c4-p-15" -.1.3.6.1.4.1.10418.26.2.3.2.1.4.16 = STRING: "2e-57-c4-p-16" -.1.3.6.1.4.1.10418.26.2.3.2.1.5.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.2 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.3 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.4 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.5 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.6 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.7 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.9 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.10 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.11 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.13 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.14 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.15 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.5.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.1 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.2 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.3 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.4 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.5 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.6 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.7 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.8 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.9 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.10 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.11 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.12 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.13 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.14 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.15 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.6.16 = INTEGER: 5 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.1 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.2 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.3 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.4 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.5 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.6 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.7 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.8 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.9 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.10 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.11 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.12 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.13 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.14 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.15 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.7.16 = INTEGER: 9600 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.2 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.3 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.4 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.5 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.6 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.7 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.9 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.10 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.11 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.13 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.14 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.15 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.8.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.1 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.2 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.3 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.4 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.5 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.6 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.7 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.8 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.9 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.10 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.11 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.12 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.13 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.14 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.15 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.9.16 = INTEGER: 8 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.2 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.3 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.4 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.5 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.6 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.7 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.9 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.10 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.11 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.13 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.14 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.15 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.10.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.2 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.3 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.4 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.5 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.6 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.7 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.9 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.10 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.11 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.13 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.14 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.15 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.11.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.1 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.2 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.3 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.4 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.5 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.6 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.7 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.8 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.9 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.10 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.11 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.12 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.13 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.14 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.15 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.12.16 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.2 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.3 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.4 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.5 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.6 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.7 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.9 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.10 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.11 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.13 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.14 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.15 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.13.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.1 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.2 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.3 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.4 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.5 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.6 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.7 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.8 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.9 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.10 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.11 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.12 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.13 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.14 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.15 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.14.16 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.1 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.2 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.3 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.4 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.5 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.6 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.7 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.8 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.9 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.10 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.11 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.12 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.13 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.14 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.15 = INTEGER: 2 -.1.3.6.1.4.1.10418.26.2.3.2.1.15.16 = INTEGER: 1 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.1 = INTEGER: 4 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.2 = INTEGER: 1870 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.3 = INTEGER: 455 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.4 = INTEGER: 3132 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.6 = INTEGER: 2867 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.7 = INTEGER: 386 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.8 = INTEGER: 147 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.9 = INTEGER: 355 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.10 = INTEGER: 709 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.11 = INTEGER: 1986 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.12 = INTEGER: 860 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.13 = INTEGER: 7 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.15 = INTEGER: 739 -.1.3.6.1.4.1.10418.26.2.3.2.1.16.16 = INTEGER: 2062 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.1 = INTEGER: 30198 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.2 = INTEGER: 85760 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.3 = INTEGER: 9012 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.4 = INTEGER: 117562 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.6 = INTEGER: 285873 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.7 = INTEGER: 49921 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.8 = INTEGER: 562 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.9 = INTEGER: 27723 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.10 = INTEGER: 72153 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.11 = INTEGER: 141123 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.12 = INTEGER: 14608 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.13 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.15 = INTEGER: 17688 -.1.3.6.1.4.1.10418.26.2.3.2.1.17.16 = INTEGER: 64970 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.1 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.2 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.3 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.4 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.6 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.7 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.8 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.9 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.10 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.11 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.12 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.13 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.15 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.18.16 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.1 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.2 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.3 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.4 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.6 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.7 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.8 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.9 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.10 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.11 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.12 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.13 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.15 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.19.16 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.1 = INTEGER: 3 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.2 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.3 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.4 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.6 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.7 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.8 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.9 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.10 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.11 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.12 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.13 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.15 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.20.16 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.1 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.2 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.3 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.4 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.5 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.6 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.7 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.8 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.9 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.10 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.11 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.12 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.13 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.14 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.15 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.3.2.1.21.16 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.5.1.0 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.5.4.0 = INTEGER: 0 -.1.3.6.1.4.1.10418.26.2.5.6.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 2017284 +.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 633088 +.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 633088 +.1.3.6.1.4.1.2021.4.13.0 = INTEGER: 26716 +.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 2084 +.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 740908 +.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.04 +.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.10 +.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.15 +.1.3.6.1.4.1.2021.11.50.0 = INTEGER: 135503 +.1.3.6.1.4.1.2021.11.51.0 = INTEGER: 2274 +.1.3.6.1.4.1.2021.11.52.0 = INTEGER: 40397 +.1.3.6.1.4.1.2021.11.53.0 = INTEGER: 4196071 +.1.3.6.1.4.1.2021.11.54.0 = INTEGER: 12504 +.1.3.6.1.4.1.2021.11.55.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.56.0 = INTEGER: 20130 +.1.3.6.1.4.1.2021.11.57.0 = INTEGER: 1907546 +.1.3.6.1.4.1.2021.11.58.0 = INTEGER: 1097972 +.1.3.6.1.4.1.2021.11.59.0 = INTEGER: 19954356 +.1.3.6.1.4.1.2021.11.60.0 = INTEGER: 15304192 +.1.3.6.1.4.1.2021.11.61.0 = INTEGER: 5002 +.1.3.6.1.4.1.2021.11.62.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.63.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.64.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.65.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.66.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.67.0 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.1.1.0 = STRING: "hostname" +.1.3.6.1.4.1.10418.26.2.1.2.0 = STRING: "ACS8016 with dual power supply" +.1.3.6.1.4.1.10418.26.2.1.3.0 = STRING: "000-000" +.1.3.6.1.4.1.10418.26.2.1.4.0 = STRING: "0520307296" +.1.3.6.1.4.1.10418.26.2.1.5.0 = STRING: "notavailable" +.1.3.6.1.4.1.10418.26.2.1.6.0 = STRING: "1.18" +.1.3.6.1.4.1.10418.26.2.1.7.0 = STRING: "2.4.5.3944+845+37+11" +.1.3.6.1.4.1.10418.26.2.1.8.1.0 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.1.8.2.0 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.1.8.3.0 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.1.9.0 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.2.1.0 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.1.0 = INTEGER: 16 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.11 = INTEGER: 11 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.12 = INTEGER: 12 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.13 = INTEGER: 13 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.14 = INTEGER: 14 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.15 = INTEGER: 15 +.1.3.6.1.4.1.10418.26.2.3.2.1.1.16 = INTEGER: 16 +.1.3.6.1.4.1.10418.26.2.3.2.1.2.1 = STRING: "ttyS1" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.2 = STRING: "ttyS2" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.3 = STRING: "ttyS3" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.4 = STRING: "ttyS4" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.5 = STRING: "ttyS5" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.6 = STRING: "ttyS6" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.7 = STRING: "ttyS7" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.8 = STRING: "ttyS8" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.9 = STRING: "ttyS9" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.10 = STRING: "ttyS10" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.11 = STRING: "ttyS11" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.12 = STRING: "ttyS12" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.13 = STRING: "ttyS13" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.14 = STRING: "ttyS14" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.15 = STRING: "ttyS15" +.1.3.6.1.4.1.10418.26.2.3.2.1.2.16 = STRING: "ttyS16" +.1.3.6.1.4.1.10418.26.2.3.2.1.3.1 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.2 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.3 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.4 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.5 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.6 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.7 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.8 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.9 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.10 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.11 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.12 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.13 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.14 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.15 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.3.16 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.4.1 = STRING: "2e-57-c4-p-1" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.2 = STRING: "2e-57-c4-p-2" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.3 = STRING: "2e-57-c4-p-3" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.4 = STRING: "2e-57-c4-p-4" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.5 = STRING: "2e-57-c4-p-5" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.6 = STRING: "2e-57-c4-p-6" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.7 = STRING: "2e-57-c4-p-7" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.8 = STRING: "2e-57-c4-p-8" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.9 = STRING: "2e-57-c4-p-9" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.10 = STRING: "2e-57-c4-p-10" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.11 = STRING: "2e-57-c4-p-11" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.12 = STRING: "2e-57-c4-p-12" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.13 = STRING: "2e-57-c4-p-13" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.14 = STRING: "2e-57-c4-p-14" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.15 = STRING: "2e-57-c4-p-15" +.1.3.6.1.4.1.10418.26.2.3.2.1.4.16 = STRING: "2e-57-c4-p-16" +.1.3.6.1.4.1.10418.26.2.3.2.1.5.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.2 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.3 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.4 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.5 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.6 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.7 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.9 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.10 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.11 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.13 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.14 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.15 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.5.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.1 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.2 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.3 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.4 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.5 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.6 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.7 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.8 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.9 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.10 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.11 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.12 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.13 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.14 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.15 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.6.16 = INTEGER: 5 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.1 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.2 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.3 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.4 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.5 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.6 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.7 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.8 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.9 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.10 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.11 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.12 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.13 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.14 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.15 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.7.16 = INTEGER: 9600 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.2 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.3 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.4 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.5 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.6 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.7 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.9 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.10 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.11 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.13 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.14 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.15 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.8.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.1 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.2 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.3 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.4 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.5 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.6 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.7 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.8 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.9 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.10 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.11 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.12 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.13 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.14 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.15 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.9.16 = INTEGER: 8 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.2 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.3 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.4 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.5 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.6 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.7 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.9 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.10 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.11 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.13 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.14 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.15 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.10.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.2 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.3 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.4 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.5 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.6 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.7 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.9 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.10 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.11 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.13 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.14 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.15 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.11.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.1 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.2 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.3 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.4 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.5 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.6 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.7 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.8 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.9 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.10 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.11 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.12 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.13 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.14 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.15 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.12.16 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.2 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.3 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.4 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.5 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.6 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.7 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.9 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.10 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.11 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.13 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.14 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.15 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.13.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.1 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.2 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.3 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.4 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.5 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.6 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.7 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.8 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.9 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.10 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.11 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.12 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.13 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.14 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.15 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.14.16 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.1 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.2 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.3 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.4 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.5 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.6 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.7 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.8 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.9 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.10 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.11 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.12 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.13 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.14 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.15 = INTEGER: 2 +.1.3.6.1.4.1.10418.26.2.3.2.1.15.16 = INTEGER: 1 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.1 = INTEGER: 4 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.2 = INTEGER: 1870 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.3 = INTEGER: 455 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.4 = INTEGER: 3132 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.6 = INTEGER: 2867 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.7 = INTEGER: 386 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.8 = INTEGER: 147 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.9 = INTEGER: 355 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.10 = INTEGER: 709 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.11 = INTEGER: 1986 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.12 = INTEGER: 860 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.13 = INTEGER: 7 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.15 = INTEGER: 739 +.1.3.6.1.4.1.10418.26.2.3.2.1.16.16 = INTEGER: 2062 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.1 = INTEGER: 30198 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.2 = INTEGER: 85760 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.3 = INTEGER: 9012 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.4 = INTEGER: 117562 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.6 = INTEGER: 285873 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.7 = INTEGER: 49921 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.8 = INTEGER: 562 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.9 = INTEGER: 27723 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.10 = INTEGER: 72153 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.11 = INTEGER: 141123 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.12 = INTEGER: 14608 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.13 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.15 = INTEGER: 17688 +.1.3.6.1.4.1.10418.26.2.3.2.1.17.16 = INTEGER: 64970 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.1 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.2 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.3 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.4 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.6 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.7 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.8 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.9 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.10 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.11 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.12 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.13 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.15 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.18.16 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.1 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.2 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.3 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.4 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.6 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.7 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.8 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.9 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.10 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.11 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.12 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.13 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.15 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.19.16 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.1 = INTEGER: 3 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.2 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.3 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.4 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.6 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.7 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.8 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.9 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.10 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.11 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.12 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.13 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.15 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.20.16 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.1 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.2 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.3 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.4 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.5 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.6 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.7 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.8 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.9 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.10 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.11 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.12 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.13 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.14 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.15 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.3.2.1.21.16 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.5.1.0 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.5.4.0 = INTEGER: 0 +.1.3.6.1.4.1.10418.26.2.5.6.0 = INTEGER: 0 diff --git a/tests/functional/snmp/hardware-kvm-avocent-acs-8000.robot b/tests/robot/hardware/kvm/avocent/acs/8000/hardware-kvm-avocent-acs-8000.robot similarity index 97% rename from tests/functional/snmp/hardware-kvm-avocent-acs-8000.robot rename to tests/robot/hardware/kvm/avocent/acs/8000/hardware-kvm-avocent-acs-8000.robot index 8f4b1115f8..fc600c081e 100644 --- a/tests/functional/snmp/hardware-kvm-avocent-acs-8000.robot +++ b/tests/robot/hardware/kvm/avocent/acs/8000/hardware-kvm-avocent-acs-8000.robot @@ -1,8 +1,7 @@ *** Settings *** Documentation hardware::kvm::avocent::acs::8000::snmp::plugin -Library OperatingSystem -Library String +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s @@ -91,7 +90,7 @@ Serial Ports Run Avocent 8000 Plugin [Arguments] ${mode} ${extraoptions} ${command} Catenate - ... perl ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl + ... ${CENTREON_PLUGINS} ... --plugin=hardware::kvm::avocent::acs::8000::snmp::plugin ... --mode=${mode} ... --hostname=${HOSTADDRESS} diff --git a/tests/functional/snmp/hardware-sensors-apc-snmp.robot b/tests/robot/hardware/sensors/apc/snmp/hardware-sensors-apc-snmp.robot similarity index 86% rename from tests/functional/snmp/hardware-sensors-apc-snmp.robot rename to tests/robot/hardware/sensors/apc/snmp/hardware-sensors-apc-snmp.robot index 995dc39eec..1fd8544222 100644 --- a/tests/functional/snmp/hardware-sensors-apc-snmp.robot +++ b/tests/robot/hardware/sensors/apc/snmp/hardware-sensors-apc-snmp.robot @@ -1,37 +1,34 @@ *** Settings *** Documentation Hardware Sensors APC SNMP plugin -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=hardware::sensors::apc::snmp::plugin --mode=sensors --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 -${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::sensors::apc::snmp::plugin --mode=sensors --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 *** Test Cases *** APC Sensors ${tc}/9 - [Tags] hardware Sensors snmp + [Tags] hardware sensors snmp ${command} Catenate ... ${CMD} - ... --snmp-community=hardware/sensors/apc/sensors + ... --snmp-community=hardware/sensors/apc/snmp/sensors # Append options to command - ${command} Append Option To Command ${command} --warning ${warning} - ${command} Append Option To Command ${command} --critical ${critical} - ${command} Append Option To Command ${command} --component ${component} - + ${command} Append Option To Command ${command} --warning ${warning} + ${command} Append Option To Command ${command} --critical ${critical} + ${command} Append Option To Command ${command} --component ${component} + ${output} Run ${command} ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${expected_result} ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} -#--component 'temperature' --warning='humidity,.,45:65' --critical='humidity,.,35:70' +# --component 'temperature' --warning='humidity,.,45:65' --critical='humidity,.,35:70' Examples: tc component warning critical expected_result -- ... 1 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; ... 2 _empty_ humidity,.,45:65 _empty_ WARNING: Humidity 'Main Module:Sonde de temperature' is 35 % | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;45:65;;0;100 'hardware.temperature.count'=2;;;; @@ -43,11 +40,10 @@ APC Sensors ${tc}/9 ... 8 _empty_ temperature,.,22:25 temperature,.,22:25 OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;22:25;22:25;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; ... 9 _empty_ _empty_ _empty_ OK: All 2 components are ok [2/2 temperatures]. | 'Main Module:Sonde de temperature#hardware.sensor.temperature.celsius'=23C;;;; 'Main Module:Sonde de temperature#hardware.sensor.humidity.percentage'=35%;;;0;100 'hardware.temperature.count'=2;;;; -*** Keywords *** +*** Keywords *** Append Option To Command [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' [Arguments] ${cmd} ${option} ${value} ${value} Set Variable If '${value}' == '_empty_' '' ${value} - [return] ${cmd} ${option}=${value} - + RETURN ${cmd} ${option}=${value} diff --git a/tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk b/tests/robot/hardware/sensors/apc/snmp/sensors.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware/sensors/apc/sensors.snmpwalk rename to tests/robot/hardware/sensors/apc/snmp/sensors.snmpwalk diff --git a/tests/functional/snmp/hardware-ups-sputnik-snmp.robot b/tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik-snmp.robot similarity index 82% rename from tests/functional/snmp/hardware-ups-sputnik-snmp.robot rename to tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik-snmp.robot index 59567b59ee..7ba4d1290f 100644 --- a/tests/functional/snmp/hardware-ups-sputnik-snmp.robot +++ b/tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik-snmp.robot @@ -1,39 +1,36 @@ *** Settings *** Documentation Hardware UPS Sputnik SNMP plugin -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::inmatics::sputnik::snmp::plugin -${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::inmatics::sputnik::snmp::plugin *** Test Cases *** Sputnik UPS - Environment ${tc}/9 - [Tags] hardware UPS snmp + [Tags] hardware ups snmp ${command} Catenate ... ${CMD} ... --mode=environment ... --hostname=127.0.0.1 ... --snmp-version=2c ... --snmp-port=2024 - ... --snmp-community=hardware-ups/hardware-ups-sputnik + ... --snmp-community=hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik # Append options to command - ${opt} Append Option --warning-temperature ${w_temperature} + ${opt} Append Option --warning-temperature ${w_temperature} ${command} Catenate ${command} ${opt} - ${opt} Append Option --critical-temperature ${c_temperature} + ${opt} Append Option --critical-temperature ${c_temperature} ${command} Catenate ${command} ${opt} - ${opt} Append Option --warning-humidity ${w_humidity} + ${opt} Append Option --warning-humidity ${w_humidity} ${command} Catenate ${command} ${opt} - ${opt} Append Option --critical-humidity ${c_humidity} + ${opt} Append Option --critical-humidity ${c_humidity} ${command} Catenate ${command} ${opt} - ${opt} Append Option --filter-id ${filter_id} + ${opt} Append Option --filter-id ${filter_id} ${command} Catenate ${command} ${opt} ${output} Run ${command} @@ -54,10 +51,10 @@ Sputnik UPS - Environment ${tc}/9 ... 8 2 30 50 50 70 UNKNOWN: No sensors found. ... 9 1 _empty_ _empty_ _empty_ _empty_ OK: 'Sensor 1': temperature 20.06 C, humidity 33 % | 'Sensor 1#environment.temperature.celsius'=20.06C;;;; 'Sensor 1#environment.humidity.percentage'=33%;;;0;100 + *** Keywords *** Append Option [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' [Arguments] ${option} ${value} ${value} Set Variable If '${value}' == '_empty_' '' ${value} - [return] ${option}=${value} - + RETURN ${option}=${value} diff --git a/tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik.snmpwalk b/tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik.snmpwalk new file mode 100644 index 0000000000..3ae444b015 --- /dev/null +++ b/tests/robot/hardware/ups/inmatics/sputnik/snmp/hardware-ups-sputnik.snmpwalk @@ -0,0 +1,61 @@ +.1.3.6.1.4.1.54661.1.1.1.1.1.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.6.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.7.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.8.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.9.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.10.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.11.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.12.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.13.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.14.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.15.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.16.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.17.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.18.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.19.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.20.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.21.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.22.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.23.0 = INTEGER: 2 +.1.3.6.1.4.1.54661.1.1.1.1.1.1.24.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.6.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.7.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.8.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.9.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.10.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.11.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.12.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.13.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.14.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.15.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.16.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.17.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.18.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.19.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.20.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.21.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.22.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.23.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.2.1.24.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.1.2.0 = INTEGER: 3 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.1.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.2.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.1.6.2.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.1.0 = INTEGER: 1 +.1.3.6.1.4.1.54661.1.1.1.2.2.1.2.1 = INTEGER: 2006 +.1.3.6.1.4.1.54661.1.1.1.2.2.1.3.1 = INTEGER: 33 +.1.3.6.1.4.1.54661.1.1.1.2.3.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.4.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.2.5.0 = INTEGER: 0 +.1.3.6.1.4.1.54661.1.1.1.3.1.0 = INTEGER: 0 diff --git a/tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk b/tests/robot/hardware/ups/socomec/netvision/snmp/battery.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware/ups/socomec/netvision/snmp/mode/battery.snmpwalk rename to tests/robot/hardware/ups/socomec/netvision/snmp/battery.snmpwalk diff --git a/tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot b/tests/robot/hardware/ups/socomec/netvision/snmp/hardware-ups-socomec-netvision-snmp.robot similarity index 73% rename from tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot rename to tests/robot/hardware/ups/socomec/netvision/snmp/hardware-ups-socomec-netvision-snmp.robot index ce95f7a57a..daff8dba2b 100644 --- a/tests/functional/snmp/hardware-ups-socomec-netvision-snmp.robot +++ b/tests/robot/hardware/ups/socomec/netvision/snmp/hardware-ups-socomec-netvision-snmp.robot @@ -1,41 +1,38 @@ *** Settings *** Documentation Hardware UPS Socomec Netvision SNMP plugin -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::socomec::netvision::snmp::plugin -${CMD} perl ${CENTREON_PLUGINS} --plugin=hardware::ups::socomec::netvision::snmp::plugin *** Test Cases *** Battery ${tc}/4 - [Tags] hardware UPS snmp + [Tags] hardware ups snmp ${command} Catenate ... ${CMD} ... --mode=battery ... --hostname=127.0.0.1 ... --snmp-version=2c ... --snmp-port=2024 - ... --snmp-community=hardware/ups/socomec/netvision/snmp/mode/battery + ... --snmp-community=hardware/ups/socomec/netvision/snmp/battery # Append options to command - ${opt} Append Option --warning-temperature ${w_temperature} - ${command} Catenate ${command} ${opt} - ${opt} Append Option --critical-temperature ${c_temperature} - ${command} Catenate ${command} ${opt} + ${opt} Append Option --warning-temperature ${w_temperature} + ${command} Catenate ${command} ${opt} + ${opt} Append Option --critical-temperature ${c_temperature} + ${command} Catenate ${command} ${opt} ${output} Run ${command} ${output} Strip String ${output} Should Be Equal As Strings ... ${output} ... ${expected_result} - ... Wrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + ... ${command} \nWrong output result for compliance of ${expected_result}{\n}Command output:{\n}${output}{\n}{\n}{\n} Examples: tc w_temperature c_temperature expected_result -- ... 1 30 50 OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:30;0:50;; @@ -43,10 +40,10 @@ Battery ${tc}/4 ... 3 10 20 CRITICAL: temperature: 22 C | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;0:10;0:20;; ... 4 _empty_ _empty_ OK: battery status is normal - charge remaining: 100% (0 minutes remaining) | 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=0;;;0; 'battery.voltage.volt'=339.1V;;;; 'battery.temperature.celsius'=22C;;;; + *** Keywords *** Append Option [Documentation] Concatenates the first argument (option) with the second (value) after having replaced the value with "" if its content is '_empty_' [Arguments] ${option} ${value} ${value} Set Variable If '${value}' == '_empty_' '' ${value} - [return] ${option}=${value} - + RETURN ${option}=${value} diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-socomec_null_val.snmpwalk b/tests/robot/hardware/ups/socomec/netvision/snmp/hardware-ups-socomec_null_val.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware-ups/hardware-ups-socomec_null_val.snmpwalk rename to tests/robot/hardware/ups/socomec/netvision/snmp/hardware-ups-socomec_null_val.snmpwalk diff --git a/tests/robot/hardware/ups/standard/snmp/hardware-ups-standard-snmp.robot b/tests/robot/hardware/ups/standard/snmp/hardware-ups-standard-snmp.robot new file mode 100644 index 0000000000..1387268eaf --- /dev/null +++ b/tests/robot/hardware/ups/standard/snmp/hardware-ups-standard-snmp.robot @@ -0,0 +1,98 @@ +*** Settings *** +Documentation Hardware UPS standard SNMP plugin + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=hardware::ups::standard::rfc1628::snmp::plugin + +&{ups_standard_test_with_values} +... snmpcommunity=hardware/ups/standard/snmp/ups-standard +... warningpower= +... criticalcurrent= +... warningvoltage= +... warningfrequence= +... excludeid= +... result=OK: All input lines are ok | '1#line.input.frequence.hertz'=49.9Hz;;;; '1#line.input.voltage.volt'=233V;;;; '1#line.input.current.ampere'=0A;;;; '1#line.input.power.watt'=0W;;;; '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; +&{ups_standard_test_critical_with_null_values} +... snmpcommunity=hardware/ups/standard/snmp/ups-standard-null-val +... warningpower='215:' +... criticalcurrent='@0:214' +... warningvoltage='@0:214' +... warningfrequence='@0:214' +... excludeid= +... result=CRITICAL: Input Line '1' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '2' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W - Input Line '3' Frequence : 0.00 Hz, Voltage : 0.00 V, Current : 0.00 A, Power : 0.00 W | '1#line.input.frequence.hertz'=0Hz;@0:214;;; '1#line.input.voltage.volt'=0V;@0:214;;; '1#line.input.current.ampere'=0A;;@0:214;; '1#line.input.power.watt'=0W;215:;;; '2#line.input.frequence.hertz'=0Hz;@0:214;;; '2#line.input.voltage.volt'=0V;@0:214;;; '2#line.input.current.ampere'=0A;;@0:214;; '2#line.input.power.watt'=0W;215:;;; '3#line.input.frequence.hertz'=0Hz;@0:214;;; '3#line.input.voltage.volt'=0V;@0:214;;; '3#line.input.current.ampere'=0A;;@0:214;; '3#line.input.power.watt'=0W;215:;;; +&{ups_standard_test_with_exclude_option_1} +... snmpcommunity=hardware/ups/standard/snmp/ups-standard +... warningpower= +... criticalcurrent= +... warningvoltage= +... warningfrequence= +... excludeid='1,2' +... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; +&{ups_standard_test_with_exclude_option_2} +... snmpcommunity=hardware/ups/standard/snmp/ups-standard +... warningpower= +... criticalcurrent= +... warningvoltage= +... warningfrequence= +... excludeid='1, 2' +... result=OK: Input Line '3' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '3#line.input.frequence.hertz'=49.9Hz;;;; '3#line.input.voltage.volt'=234V;;;; '3#line.input.current.ampere'=0A;;;; '3#line.input.power.watt'=0W;;;; +&{ups_standard_test_with_exclude_option_3} +... snmpcommunity=hardware/ups/standard/snmp/ups-standard +... warningpower= +... criticalcurrent= +... warningvoltage= +... warningfrequence= +... excludeid='1 ,3' +... result=OK: Input Line '2' Frequence : 49.90 Hz, Voltage : 234.00 V, Current : 0.00 A, Power : 0.00 W | '2#line.input.frequence.hertz'=49.9Hz;;;; '2#line.input.voltage.volt'=234V;;;; '2#line.input.current.ampere'=0A;;;; '2#line.input.power.watt'=0W;;;; +@{ups_standard_tests} +... &{ups_standard_test_with_values} +... &{ups_standard_test_critical_with_null_values} +... &{ups_standard_test_with_exclude_option_1} +... &{ups_standard_test_with_exclude_option_2} +... &{ups_standard_test_with_exclude_option_3} + + +*** Test Cases *** +Hardware UPS Standard SNMP input lines + [Documentation] Hardware UPS standard SNMP input lines + [Tags] hardware ups snmp + FOR ${ups_standard_test} IN @{ups_standard_tests} + ${command} Catenate + ... ${CMD} + ... --mode=input-lines + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=${ups_standard_test.snmpcommunity} + ${length} Get Length ${ups_standard_test.warningpower} + IF ${length} > 0 + ${command} Catenate ${command} --warning-power=${ups_standard_test.warningpower} + END + ${length} Get Length ${ups_standard_test.criticalcurrent} + IF ${length} > 0 + ${command} Catenate ${command} --critical-current=${ups_standard_test.criticalcurrent} + END + ${length} Get Length ${ups_standard_test.warningvoltage} + IF ${length} > 0 + ${command} Catenate ${command} --warning-voltage=${ups_standard_test.warningvoltage} + END + ${length} Get Length ${ups_standard_test.warningfrequence} + IF ${length} > 0 + ${command} Catenate ${command} --warning-frequence=${ups_standard_test.warningfrequence} + END + ${length} Get Length ${ups_standard_test.excludeid} + IF ${length} > 0 + ${command} Catenate ${command} --exclude-id=${ups_standard_test.excludeid} + END + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${ups_standard_test.result} + ... Wrong output result for compliance of ${ups_standard_test.result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + END diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-standard_null_val.snmpwalk b/tests/robot/hardware/ups/standard/snmp/ups-standard-null-val.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware-ups/hardware-ups-standard_null_val.snmpwalk rename to tests/robot/hardware/ups/standard/snmp/ups-standard-null-val.snmpwalk diff --git a/tests/resources/snmp/hardware-ups/hardware-ups-standard.snmpwalk b/tests/robot/hardware/ups/standard/snmp/ups-standard.snmpwalk similarity index 100% rename from tests/resources/snmp/hardware-ups/hardware-ups-standard.snmpwalk rename to tests/robot/hardware/ups/standard/snmp/ups-standard.snmpwalk diff --git a/tests/resources/snmp/network-aruba-instant/ap-usage.snmpwalk b/tests/robot/network/aruba/instant/snmp/ap-usage.snmpwalk similarity index 100% rename from tests/resources/snmp/network-aruba-instant/ap-usage.snmpwalk rename to tests/robot/network/aruba/instant/snmp/ap-usage.snmpwalk diff --git a/tests/robot/network/aruba/instant/snmp/aruba-instant-ap-usage.robot b/tests/robot/network/aruba/instant/snmp/aruba-instant-ap-usage.robot new file mode 100644 index 0000000000..f40c341446 --- /dev/null +++ b/tests/robot/network/aruba/instant/snmp/aruba-instant-ap-usage.robot @@ -0,0 +1,75 @@ +*** Settings *** +Documentation Network Aruba Instant SNMP plugin - AP Usage + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::aruba::instant::snmp::plugin --mode=ap-usage --hostname=127.0.0.1 --snmp-version=2c --snmp-port=2024 + +&{ap_usage_test_1} +... documentation=Test AP usage without filters +... snmpcommunity=network/aruba/instant/snmp/ap-usage +... filtercounters= +... filtername= +... warningclients= +... criticalclients= +... result=OK: total access points: 5 - All access points are ok | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 + +&{ap_usage_test_2} +... documentation=Test AP usage with filter on clients +... snmpcommunity=network/aruba/instant/snmp/ap-usage +... filtercounters=clients +... filtername= +... warningclients= +... criticalclients= +... result=OK: All access points are ok | 'AP Piso 1#clients.current.count'=4;;;0; 'AP Piso 2#clients.current.count'=17;;;0; 'AP Piso 3#clients.current.count'=14;;;0; 'AP Piso 4#clients.current.count'=11;;;0; 'AP Sotano#clients.current.count'=4;;;0; + +&{ap_usage_test_3} +... documentation=Test AP usage with filter on clients and filter on name +... snmpcommunity=network/aruba/instant/snmp/ap-usage +... filtercounters=clients +... filtername=Piso 4 +... warningclients= +... criticalclients= +... result=OK: Access Point 'AP Piso 4' Current Clients: 11 | 'AP Piso 4#clients.current.count'=11;;;0; + +&{ap_usage_test_4} +... documentation=Test AP usage without filters with warning when less than 20 clients +... snmpcommunity=network/aruba/instant/snmp/ap-usage +... filtercounters= +... filtername= +... warningclients=20: +... criticalclients= +... result=WARNING: Access Point 'AP Piso 1' Current Clients: 4 - Access Point 'AP Piso 2' Current Clients: 17 - Access Point 'AP Piso 3' Current Clients: 14 - Access Point 'AP Piso 4' Current Clients: 11 - Access Point 'AP Sotano' Current Clients: 4 | 'accesspoints.total.count'=5;;;0; 'AP Piso 1#clients.current.count'=4;20:;;0; 'AP Piso 1#cpu.utilization.percentage'=3.00%;;;0;100 'AP Piso 1#memory.usage.bytes'=215711744B;;;0;527028224 'AP Piso 1#memory.free.bytes'=311316480B;;;0;527028224 'AP Piso 1#memory.usage.percentage'=40.93%;;;0;100 'AP Piso 2#clients.current.count'=17;20:;;0; 'AP Piso 2#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 2#memory.usage.bytes'=219455488B;;;0;527028224 'AP Piso 2#memory.free.bytes'=307572736B;;;0;527028224 'AP Piso 2#memory.usage.percentage'=41.64%;;;0;100 'AP Piso 3#clients.current.count'=14;20:;;0; 'AP Piso 3#cpu.utilization.percentage'=18.00%;;;0;100 'AP Piso 3#memory.usage.bytes'=219185152B;;;0;527028224 'AP Piso 3#memory.free.bytes'=307843072B;;;0;527028224 'AP Piso 3#memory.usage.percentage'=41.59%;;;0;100 'AP Piso 4#clients.current.count'=11;20:;;0; 'AP Piso 4#cpu.utilization.percentage'=11.00%;;;0;100 'AP Piso 4#memory.usage.bytes'=221700096B;;;0;527028224 'AP Piso 4#memory.free.bytes'=305328128B;;;0;527028224 'AP Piso 4#memory.usage.percentage'=42.07%;;;0;100 'AP Sotano#clients.current.count'=4;20:;;0; 'AP Sotano#cpu.utilization.percentage'=4.00%;;;0;100 'AP Sotano#memory.usage.bytes'=217473024B;;;0;527028224 'AP Sotano#memory.free.bytes'=309555200B;;;0;527028224 'AP Sotano#memory.usage.percentage'=41.26%;;;0;100 + +@{ap_usage_tests} +... &{ap_usage_test_1} +... &{ap_usage_test_2} +... &{ap_usage_test_3} +... &{ap_usage_test_4} + + +*** Test Cases *** +Network Aruba Instant SNMP plugin + [Documentation] AP Usage + [Tags] network aruba snmp + FOR ${ap_usage_tc} IN @{ap_usage_tests} + ${command} Catenate + ... ${CMD} + ... --filter-counters='${ap_usage_tc.filtercounters}' + ... --filter-name='${ap_usage_tc.filtername}' + ... --warning-clients='${ap_usage_tc.warningclients}' + ... --critical-clients='${ap_usage_tc.criticalclients}' + ... --snmp-community=${ap_usage_tc.snmpcommunity} + + Log To Console ${command} + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${ap_usage_tc.result} + ... Wrong output result for compliance of ${ap_usage_tc.result}{\n}Command output:{\n}${output}{\n}{\n}{\n} + END diff --git a/tests/robot/network/fortinet/fortigate/snmp/linkmonitor.snmpwalk b/tests/robot/network/fortinet/fortigate/snmp/linkmonitor.snmpwalk new file mode 100644 index 0000000000..8bdd06911f --- /dev/null +++ b/tests/robot/network/fortinet/fortigate/snmp/linkmonitor.snmpwalk @@ -0,0 +1,18 @@ +.1.3.6.1.4.1.12356.101.4.8.2.1.2.1 = STRING: "MonitorWAN1" +.1.3.6.1.4.1.12356.101.4.8.2.1.2.2 = STRING: "MonitorWAN2" +.1.3.6.1.4.1.12356.101.4.8.2.1.2.3 = STRING: "MonitorWAN3" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.1 = STRING: "0" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.2 = STRING: "0" +.1.3.6.1.4.1.12356.101.4.8.2.1.3.3 = STRING: "1" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.1 = STRING: "39.739" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.2 = STRING: "46.446" +.1.3.6.1.4.1.12356.101.4.8.2.1.4.3 = STRING: "0.000" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.1 = STRING: "0.096" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.2 = STRING: "1.868" +.1.3.6.1.4.1.12356.101.4.8.2.1.5.3 = STRING: "0.000" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.1 = STRING: "0%" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.2 = STRING: "1%" +.1.3.6.1.4.1.12356.101.4.8.2.1.8.3 = STRING: "100%" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.1 = STRING: "root" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.2 = STRING: "root" +.1.3.6.1.4.1.12356.101.4.8.2.1.9.3 = STRING: "root" \ No newline at end of file diff --git a/tests/robot/network/fortinet/fortigate/snmp/network-fortinet-fortigate-snmp.robot b/tests/robot/network/fortinet/fortigate/snmp/network-fortinet-fortigate-snmp.robot new file mode 100644 index 0000000000..0ed4814b0b --- /dev/null +++ b/tests/robot/network/fortinet/fortigate/snmp/network-fortinet-fortigate-snmp.robot @@ -0,0 +1,432 @@ +*** Settings *** +Documentation Network Fortinet Fortigate SNMP plugin + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin + +# Test simple usage of the linkmonitor mode +&{fortinet_fortigate_linkmonitor_test1} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with filter-id option set to 3 +&{fortinet_fortigate_linkmonitor_test2} +... filterid=3 +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with filter-name option set to MonitorWAN1 +&{fortinet_fortigate_linkmonitor_test3} +... filterid= +... filtername='MonitorWAN1' +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=OK: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive, latency: 39.739ms, jitter: 0.096ms, packet loss: 0.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; + +# Test linkmonitor mode with filter-vdom option set to 'root' +&{fortinet_fortigate_linkmonitor_test4} +... filterid= +... filtername= +... filtervdom='root' +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with custom-perf-data-instances option set to '%(name) %(id)' +&{fortinet_fortigate_linkmonitor_test5} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances='%(name) %(id)' +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~1#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~1#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~1#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~2#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~2#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~2#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~3#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~3#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with unknown-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test6} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus='\%{state} eq "alive"' +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead UNKNOWN: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test7} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus='\%{state} eq "alive"' +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-status option set to '%{state} eq "alive"' +&{fortinet_fortigate_linkmonitor_test8} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus='\%{state} eq "alive"' +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN1' [vdom: root] [id: 1] state: alive - Link monitor 'MonitorWAN2' [vdom: root] [id: 2] state: alive | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-latency option set to 40 +&{fortinet_fortigate_linkmonitor_test9} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency=40 +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;0:40;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;0:40;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;0:40;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-latency option set to 40 +&{fortinet_fortigate_linkmonitor_test10} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency=40 +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] latency: 46.446ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;0:40;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;0:40;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;0:40;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-jitter option set to 1 +&{fortinet_fortigate_linkmonitor_test11} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter=1 +... criticaljitter= +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;0:1;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;0:1;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;0:1;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with critical-jitter option set to 1 +&{fortinet_fortigate_linkmonitor_test12} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter=1 +... warningpacketloss= +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] jitter: 1.868ms - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;0:1;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;0:1;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;0:1;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;;0; + +# Test linkmonitor mode with warning-packetloss option set to 0.5 +&{fortinet_fortigate_linkmonitor_test13} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss=0.5 +... criticalpacketloss= +... result=CRITICAL: Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% WARNING: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;0:0.5;;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;0:0.5;;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;0:0.5;;0; + +# Test linkmonitor mode with critical-packetloss option set to 0.5 +&{fortinet_fortigate_linkmonitor_test14} +... filterid= +... filtername= +... filtervdom= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warninglatency= +... criticallatency= +... warningjitter= +... criticaljitter= +... warningpacketloss= +... criticalpacketloss=0.5 +... result=CRITICAL: Link monitor 'MonitorWAN2' [vdom: root] [id: 2] packet loss: 1.000% - Link monitor 'MonitorWAN3' [vdom: root] [id: 3] state: dead, packet loss: 100.000% | 'MonitorWAN1~root#linkmonitor.latency.milliseconds'=39.739;;;0; 'MonitorWAN1~root#linkmonitor.jitter.milliseconds'=0.096;;;0; 'MonitorWAN1~root#linkmonitor.packet.loss.percentage'=0;;0:0.5;0; 'MonitorWAN2~root#linkmonitor.latency.milliseconds'=46.446;;;0; 'MonitorWAN2~root#linkmonitor.jitter.milliseconds'=1.868;;;0; 'MonitorWAN2~root#linkmonitor.packet.loss.percentage'=1;;0:0.5;0; 'MonitorWAN3~root#linkmonitor.latency.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.jitter.milliseconds'=0.000;;;0; 'MonitorWAN3~root#linkmonitor.packet.loss.percentage'=100;;0:0.5;0; + +@{fortinet_fortigate_linkmonitor_tests} +... &{fortinet_fortigate_linkmonitor_test1} +... &{fortinet_fortigate_linkmonitor_test2} +... &{fortinet_fortigate_linkmonitor_test3} +... &{fortinet_fortigate_linkmonitor_test4} +... &{fortinet_fortigate_linkmonitor_test5} +... &{fortinet_fortigate_linkmonitor_test6} +... &{fortinet_fortigate_linkmonitor_test7} +... &{fortinet_fortigate_linkmonitor_test8} +... &{fortinet_fortigate_linkmonitor_test9} +... &{fortinet_fortigate_linkmonitor_test10} +... &{fortinet_fortigate_linkmonitor_test11} +... &{fortinet_fortigate_linkmonitor_test12} +... &{fortinet_fortigate_linkmonitor_test13} +... &{fortinet_fortigate_linkmonitor_test14} + +# Test simple usage of the list-linkmonitors mode +&{fortinet_fortigate_listlinkmonitors_test1} +... filterstate= +... filtername= +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] + +# Test list-linkmonitors mode with filter-name option set to MonitorWAN1 +&{fortinet_fortigate_listlinkmonitors_test2} +... filterstate= +... filtername='MonitorWAN1' +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive] + +# Test list-linkmonitors mode with filter-state option set to alive +&{fortinet_fortigate_listlinkmonitors_test3} +... filterstate='alive' +... filtername= +... filtervdom= +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive] + +# Test list-linkmonitors mode with filter-vdom option set to root +&{fortinet_fortigate_listlinkmonitors_test4} +... filterstate= +... filtername= +... filtervdom='root' +... result=List link monitors: \n[Name = MonitorWAN1] [Vdom = root] [State = alive]\n[Name = MonitorWAN2] [Vdom = root] [State = alive]\n[Name = MonitorWAN3] [Vdom = root] [State = dead] + +@{fortinet_fortigate_listlinkmonitors_tests} +... &{fortinet_fortigate_listlinkmonitors_test1} +... &{fortinet_fortigate_listlinkmonitors_test2} +... &{fortinet_fortigate_listlinkmonitors_test3} +... &{fortinet_fortigate_listlinkmonitors_test4} + + +*** Test Cases *** +Network Fortinet Fortigate SNMP link monitor + [Documentation] Network Fortinet Fortigate SNMP link-monitor + [Tags] network fortinet fortigate snmp + FOR ${fortinet_fortigate_linkmonitor_test} IN @{fortinet_fortigate_linkmonitor_tests} + ${command} Catenate + ... ${CMD} + ... --mode=link-monitor + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network/fortinet/fortigate/snmp/linkmonitor + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filterid} + IF ${length} > 0 + ${command} Catenate ${command} --filter-id=${fortinet_fortigate_linkmonitor_test.filterid} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtername} + IF ${length} > 0 + ${command} Catenate ${command} --filter-name=${fortinet_fortigate_linkmonitor_test.filtername} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.filtervdom} + IF ${length} > 0 + ${command} Catenate ${command} --filter-vdom=${fortinet_fortigate_linkmonitor_test.filtervdom} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.customperfdatainstances} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --custom-perfdata-instances=${fortinet_fortigate_linkmonitor_test.customperfdatainstances} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.unknownstatus} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --unknown-status=${fortinet_fortigate_linkmonitor_test.unknownstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningstatus} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-status=${fortinet_fortigate_linkmonitor_test.warningstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalstatus} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-status=${fortinet_fortigate_linkmonitor_test.criticalstatus} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warninglatency} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-latency=${fortinet_fortigate_linkmonitor_test.warninglatency} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticallatency} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-latency=${fortinet_fortigate_linkmonitor_test.criticallatency} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningjitter} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-jitter=${fortinet_fortigate_linkmonitor_test.warningjitter} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticaljitter} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-jitter=${fortinet_fortigate_linkmonitor_test.criticaljitter} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.warningpacketloss} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-packet-loss=${fortinet_fortigate_linkmonitor_test.warningpacketloss} + END + ${length} Get Length ${fortinet_fortigate_linkmonitor_test.criticalpacketloss} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-packet-loss=${fortinet_fortigate_linkmonitor_test.criticalpacketloss} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${fortinet_fortigate_linkmonitor_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_linkmonitor_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END + +Network Fortinet Fortigate SNMP list link monitor + [Documentation] Network Fortinet Fortigate SNMP list-linkmonitors + [Tags] network fortinet fortigate snmp + FOR ${fortinet_fortigate_listlinkmonitors_test} IN @{fortinet_fortigate_listlinkmonitors_tests} + ${command} Catenate + ... ${CMD} + ... --mode=list-link-monitors + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network/fortinet/fortigate/snmp/linkmonitor + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filterstate} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --filter-state=${fortinet_fortigate_listlinkmonitors_test.filterstate} + END + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtername} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --filter-name=${fortinet_fortigate_listlinkmonitors_test.filtername} + END + ${length} Get Length ${fortinet_fortigate_listlinkmonitors_test.filtervdom} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --filter-vdom=${fortinet_fortigate_listlinkmonitors_test.filtervdom} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${fortinet_fortigate_listlinkmonitors_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${fortinet_fortigate_listlinkmonitors_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END diff --git a/tests/functional/snmp/network-teldat-snmp.robot b/tests/robot/network/teldat/snmp/teldat.robot similarity index 97% rename from tests/functional/snmp/network-teldat-snmp.robot rename to tests/robot/network/teldat/snmp/teldat.robot index 43c492cc6e..86a5e5619e 100644 --- a/tests/functional/snmp/network-teldat-snmp.robot +++ b/tests/robot/network/teldat/snmp/teldat.robot @@ -1,722 +1,719 @@ -*** Settings *** -Documentation Network Teldat SNMP plugin - -Library OperatingSystem -Library String - -Test Timeout 120s - - -*** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=network::teldat::snmp::plugin - -# Test simple usage of the cellsradio mode -&{teldat_cellsradio_test1} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with filter-cell-id option set to a fake value -&{teldat_cellsradio_test2} -... filtercellid=toto -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=UNKNOWN: No Cell ID found matching with filter : toto - -# Test cellsradio mode with filter-cell-id option set to a imei value -&{teldat_cellsradio_test3} -... filtercellid='359072066403821' -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with custom-perfdata-instances option set to '%(cellId) %(simIcc)' -&{teldat_cellsradio_test4} -... filtercellid= -... customperfdatainstances='%(cellId) %(simIcc)' -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~89330122115801091660#module.cellradio.snr.db'=-1;;;0; '359072066403821~89330122115801091660#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~89330122115801091660#module.cellradio.snr.db'=-1;;;0; '359072066403821~89330122115801091660#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with warning-modules-cellradio-detected option set to a 2 -&{teldat_cellsradio_test5} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected=2 -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: Number of cellular radio modules detected: 3 - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;0:2;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with critical-modules-cellradio-detected option set to a 2 -&{teldat_cellsradio_test6} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected=2 -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: Number of cellular radio modules detected: 3 - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;0:2;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with warning-module-cellradio-rsrp option set to a -100 -&{teldat_cellsradio_test7} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp=-100 -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] rsrp: -114 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;0:-100;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;0:-100;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with critical-module-cellradio-rsrp option set to a -100 -&{teldat_cellsradio_test8} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp=-100 -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;0:-100;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;0:-100;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with warning-module-cellradio-rsrq option set to a -10 -&{teldat_cellsradio_test9} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq=-10 -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] rsrq: -18 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;0:-10;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;0:-10;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with critical-module-cellradio-rsrq option set to a -10 -&{teldat_cellsradio_test10} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq=-10 -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;0:-10;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;0:-10;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with warning-module-cellradio-csq option set to a -10 -&{teldat_cellsradio_test11} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq=-10 -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] csq: -73 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;0:-10;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;0:-10;;0; - -# Test cellsradio mode with critical-module-cellradio-csq option set to a -10 -&{teldat_cellsradio_test12} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq=-10 -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;0:-10;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;0:-10;0; - -# Test cellsradio mode with warning-module-cellradio-snr option set to a 0 -&{teldat_cellsradio_test13} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr=0 -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] snr: -1 dB | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;0:0;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;0:0;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with critical-module-cellradio-snr option set to a 0 -&{teldat_cellsradio_test14} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus= -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr=0 -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;0:0;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;0:0;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -# Test cellsradio mode with critical-status option set to '%{interfaceState} =~ /disconnect/' -&{teldat_cellsradio_test15} -... filtercellid= -... customperfdatainstances= -... unknownstatus= -... warningstatus= -... criticalstatus='\%{interfaceState} =~ /disconnect/' -... warningmodulescellradiodetected= -... criticalmodulescellradiodetected= -... warningmodulecellradiorsrp= -... criticalmodulecellradiorsrp= -... warningmodulecellradiorsrq= -... criticalmodulecellradiorsrq= -... warningmodulecellradiorscp= -... criticalmodulecellradiorscp= -... warningmodulecellradiocsq= -... criticalmodulecellradiocsq= -... warningmodulecellradiosnr= -... criticalmodulecellradiosnr= -... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; - -@{teldat_cellsradio_tests} -... &{teldat_cellsradio_test1} -... &{teldat_cellsradio_test2} -... &{teldat_cellsradio_test3} -... &{teldat_cellsradio_test4} -... &{teldat_cellsradio_test5} -... &{teldat_cellsradio_test6} -... &{teldat_cellsradio_test7} -... &{teldat_cellsradio_test8} -... &{teldat_cellsradio_test9} -... &{teldat_cellsradio_test10} -... &{teldat_cellsradio_test11} -... &{teldat_cellsradio_test12} -... &{teldat_cellsradio_test13} -... &{teldat_cellsradio_test14} -... &{teldat_cellsradio_test15} - -# Test simple usage of the CPU mode -&{teldat_cpu_test1} -... warningcpuutilization5s= -... criticalcpuutilization5s= -... warningcpuutilization1m= -... criticalcpuutilization1m= -... warningcpuutilization5m= -... criticalcpuutilization5m= -... result=OK: cpu average usage: 1.00 % (5s), 1.00 % (1m), 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 - -# Test CPU mode with warning-cpu-utilization-5s option set to a 0.5 -&{teldat_cpu_test2} -... warningcpuutilization5s=0.5 -... criticalcpuutilization5s= -... warningcpuutilization1m= -... criticalcpuutilization1m= -... warningcpuutilization5m= -... criticalcpuutilization5m= -... result=WARNING: cpu average usage: 1.00 % (5s) | 'cpu.utilization.5s.percentage'=1.00%;0:0.5;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 - -# Test CPU mode with critical-cpu-utilization-5s option set to a 0.5 -&{teldat_cpu_test3} -... warningcpuutilization5s= -... criticalcpuutilization5s=0.5 -... warningcpuutilization1m= -... criticalcpuutilization1m= -... warningcpuutilization5m= -... criticalcpuutilization5m= -... result=CRITICAL: cpu average usage: 1.00 % (5s) | 'cpu.utilization.5s.percentage'=1.00%;;0:0.5;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 - -# Test CPU mode with warning-cpu-utilization-1m option set to a 0.5 -&{teldat_cpu_test4} -... warningcpuutilization5s= -... criticalcpuutilization5s= -... warningcpuutilization1m=0.5 -... criticalcpuutilization1m= -... warningcpuutilization5m= -... criticalcpuutilization5m= -... result=WARNING: cpu average usage: 1.00 % (1m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;0:0.5;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 - -# Test CPU mode with critical-cpu-utilization-1m option set to a 0.5 -&{teldat_cpu_test5} -... warningcpuutilization5s= -... criticalcpuutilization5s= -... warningcpuutilization1m= -... criticalcpuutilization1m=0.5 -... warningcpuutilization5m= -... criticalcpuutilization5m= -... result=CRITICAL: cpu average usage: 1.00 % (1m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;0:0.5;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 - -# Test CPU mode with warning-cpu-utilization-5m option set to a 0.5 -&{teldat_cpu_test6} -... warningcpuutilization5s= -... criticalcpuutilization5s= -... warningcpuutilization1m= -... criticalcpuutilization1m= -... warningcpuutilization5m=0.5 -... criticalcpuutilization5m= -... result=WARNING: cpu average usage: 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;0:0.5;;0;100 - -# Test CPU mode with critical-cpu-utilization-5m option set to a 0.5 -&{teldat_cpu_test7} -... warningcpuutilization5s= -... criticalcpuutilization5s= -... warningcpuutilization1m= -... criticalcpuutilization1m= -... warningcpuutilization5m= -... criticalcpuutilization5m=0.5 -... result=CRITICAL: cpu average usage: 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;0:0.5;0;100 - -@{teldat_cpu_tests} -... &{teldat_cpu_test1} -... &{teldat_cpu_test2} -... &{teldat_cpu_test3} -... &{teldat_cpu_test4} -... &{teldat_cpu_test5} -... &{teldat_cpu_test6} -... &{teldat_cpu_test7} - -# Test simple usage of the memory mode -&{teldat_memory_test1} -... warningusage= -... criticalusage= -... warningusagefree= -... criticalusagefree= -... warningusageprct= -... criticalusageprct= -... result=OK: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 - -# Test memory mode with warning-usage option set to a 100 -&{teldat_memory_test2} -... warningusage=100 -... criticalusage= -... warningusagefree= -... criticalusagefree= -... warningusageprct= -... criticalusageprct= -... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;0:100;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 - -# Test memory mode with critical-usage option set to a 100 -&{teldat_memory_test3} -... warningusage= -... criticalusage=100 -... warningusagefree= -... criticalusagefree= -... warningusageprct= -... criticalusageprct= -... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;0:100;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 - -# Test memory mode with warning-usage-free option set to a 100 -&{teldat_memory_test4} -... warningusage= -... criticalusage= -... warningusagefree=100 -... criticalusagefree= -... warningusageprct= -... criticalusageprct= -... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;0:100;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 - -# Test memory mode with critical-usage-free option set to a 100 -&{teldat_memory_test5} -... warningusage= -... criticalusage= -... warningusagefree= -... criticalusagefree=100 -... warningusageprct= -... criticalusageprct= -... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;0:100;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 - -# Test memory mode with warning-usage-prct option set to a 30 -&{teldat_memory_test6} -... warningusage= -... criticalusage= -... warningusagefree= -... criticalusagefree= -... warningusageprct=30 -... criticalusageprct= -... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;0:30;;0;100 - -# Test memory mode with critical-usage-prct option set to a 30 -&{teldat_memory_test7} -... warningusage= -... criticalusage= -... warningusagefree= -... criticalusagefree= -... warningusageprct= -... criticalusageprct=30 -... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;0:30;0;100 - -@{teldat_memory_tests} -... &{teldat_memory_test1} -... &{teldat_memory_test2} -... &{teldat_memory_test3} -... &{teldat_memory_test4} -... &{teldat_memory_test5} -... &{teldat_memory_test6} -... &{teldat_memory_test7} - - -*** Test Cases *** -Network Teldat SNMP cells radio - [Documentation] Network Teldat SNMP cells radio - [Tags] network teldat snmp - FOR ${teldat_cellsradio_test} IN @{teldat_cellsradio_tests} - ${command} Catenate - ... ${CMD} - ... --mode=cells-radio - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=network-teldat-snmp - ${length} Get Length ${teldat_cellsradio_test.filtercellid} - IF ${length} > 0 - ${command} Catenate ${command} --filter-cell-id=${teldat_cellsradio_test.filtercellid} - END - ${length} Get Length ${teldat_cellsradio_test.customperfdatainstances} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --custom-perfdata-instances=${teldat_cellsradio_test.customperfdatainstances} - END - ${length} Get Length ${teldat_cellsradio_test.unknownstatus} - IF ${length} > 0 - ${command} Catenate ${command} --unknown-status=${teldat_cellsradio_test.unknownstatus} - END - ${length} Get Length ${teldat_cellsradio_test.warningstatus} - IF ${length} > 0 - ${command} Catenate ${command} --warning-status=${teldat_cellsradio_test.warningstatus} - END - ${length} Get Length ${teldat_cellsradio_test.criticalstatus} - IF ${length} > 0 - ${command} Catenate ${command} --critical-status=${teldat_cellsradio_test.criticalstatus} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulescellradiodetected} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-modules-cellradio-detected=${teldat_cellsradio_test.warningmodulescellradiodetected} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulescellradiodetected} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-modules-cellradio-detected=${teldat_cellsradio_test.criticalmodulescellradiodetected} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorsrp} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-module-cellradio-rsrp=${teldat_cellsradio_test.warningmodulecellradiorsrp} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorsrp} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-module-cellradio-rsrp=${teldat_cellsradio_test.criticalmodulecellradiorsrp} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorsrq} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-module-cellradio-rsrq=${teldat_cellsradio_test.warningmodulecellradiorsrq} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorsrq} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-module-cellradio-rsrq=${teldat_cellsradio_test.criticalmodulecellradiorsrq} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorscp} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-module-cellradio-rscp=${teldat_cellsradio_test.warningmodulecellradiorscp} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorscp} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-module-cellradio-rscp=${teldat_cellsradio_test.criticalmodulecellradiorscp} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiocsq} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-module-cellradio-csq=${teldat_cellsradio_test.warningmodulecellradiocsq} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiocsq} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-module-cellradio-csq=${teldat_cellsradio_test.criticalmodulecellradiocsq} - END - ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiosnr} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-module-cellradio-snr=${teldat_cellsradio_test.warningmodulecellradiosnr} - END - ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiosnr} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-module-cellradio-snr=${teldat_cellsradio_test.criticalmodulecellradiosnr} - END - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${teldat_cellsradio_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_cellsradio_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END - -Network Teldat SNMP CPU - [Documentation] Network Teldat SNMP CPU - [Tags] network teldat snmp - FOR ${teldat_cpu_test} IN @{teldat_cpu_tests} - ${command} Catenate - ... ${CMD} - ... --mode=cpu - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=network-teldat-snmp - ${length} Get Length ${teldat_cpu_test.warningcpuutilization5s} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-cpu-utilization-5s=${teldat_cpu_test.warningcpuutilization5s} - END - ${length} Get Length ${teldat_cpu_test.criticalcpuutilization5s} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-cpu-utilization-5s=${teldat_cpu_test.criticalcpuutilization5s} - END - ${length} Get Length ${teldat_cpu_test.warningcpuutilization1m} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-cpu-utilization-1m=${teldat_cpu_test.warningcpuutilization1m} - END - ${length} Get Length ${teldat_cpu_test.criticalcpuutilization1m} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-cpu-utilization-1m=${teldat_cpu_test.criticalcpuutilization1m} - END - ${length} Get Length ${teldat_cpu_test.warningcpuutilization5m} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --warning-cpu-utilization-5m=${teldat_cpu_test.warningcpuutilization5m} - END - ${length} Get Length ${teldat_cpu_test.criticalcpuutilization5m} - IF ${length} > 0 - ${command} Catenate - ... ${command} - ... --critical-cpu-utilization-5m=${teldat_cpu_test.criticalcpuutilization5m} - END - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${teldat_cpu_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_cpu_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END - -Network Teldat SNMP Memory - [Documentation] Network Teldat SNMP memory - [Tags] network teldat snmp - FOR ${teldat_memory_test} IN @{teldat_memory_tests} - ${command} Catenate - ... ${CMD} - ... --mode=memory - ... --hostname=127.0.0.1 - ... --snmp-version=2c - ... --snmp-port=2024 - ... --snmp-community=network-teldat-snmp - ${length} Get Length ${teldat_memory_test.warningusage} - IF ${length} > 0 - ${command} Catenate ${command} --warning-usage=${teldat_memory_test.warningusage} - END - ${length} Get Length ${teldat_memory_test.criticalusage} - IF ${length} > 0 - ${command} Catenate ${command} --critical-usage=${teldat_memory_test.criticalusage} - END - ${length} Get Length ${teldat_memory_test.warningusagefree} - IF ${length} > 0 - ${command} Catenate ${command} --warning-usage-free=${teldat_memory_test.warningusagefree} - END - ${length} Get Length ${teldat_memory_test.criticalusagefree} - IF ${length} > 0 - ${command} Catenate ${command} --critical-usage-free=${teldat_memory_test.criticalusagefree} - END - ${length} Get Length ${teldat_memory_test.warningusageprct} - IF ${length} > 0 - ${command} Catenate ${command} --warning-usage-prct=${teldat_memory_test.warningusageprct} - END - ${length} Get Length ${teldat_memory_test.criticalusageprct} - IF ${length} > 0 - ${command} Catenate ${command} --critical-usage-prct=${teldat_memory_test.criticalusageprct} - END - ${output} Run ${command} - Log To Console . no_newline=true - ${output} Strip String ${output} - Should Be Equal As Strings - ... ${output} - ... ${teldat_memory_test.result} - ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_memory_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} - ... values=False - END +*** Settings *** +Documentation Network Teldat SNMP plugin + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::teldat::snmp::plugin + +# Test simple usage of the cellsradio mode +&{teldat_cellsradio_test1} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with filter-cell-id option set to a fake value +&{teldat_cellsradio_test2} +... filtercellid=toto +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=UNKNOWN: No Cell ID found matching with filter : toto + +# Test cellsradio mode with filter-cell-id option set to a imei value +&{teldat_cellsradio_test3} +... filtercellid='359072066403821' +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with custom-perfdata-instances option set to '%(cellId) %(simIcc)' +&{teldat_cellsradio_test4} +... filtercellid= +... customperfdatainstances='%(cellId) %(simIcc)' +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~89330122115801091660#module.cellradio.snr.db'=-1;;;0; '359072066403821~89330122115801091660#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~89330122115801091660#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~89330122115801091660#module.cellradio.snr.db'=-1;;;0; '359072066403821~89330122115801091660#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with warning-modules-cellradio-detected option set to a 2 +&{teldat_cellsradio_test5} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected=2 +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: Number of cellular radio modules detected: 3 - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;0:2;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with critical-modules-cellradio-detected option set to a 2 +&{teldat_cellsradio_test6} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected=2 +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: Number of cellular radio modules detected: 3 - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;0:2;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with warning-module-cellradio-rsrp option set to a -100 +&{teldat_cellsradio_test7} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp=-100 +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] rsrp: -114 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;0:-100;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;0:-100;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with critical-module-cellradio-rsrp option set to a -100 +&{teldat_cellsradio_test8} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp=-100 +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - rsrp: -114 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;0:-100;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;0:-100;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with warning-module-cellradio-rsrq option set to a -10 +&{teldat_cellsradio_test9} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq=-10 +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] rsrq: -18 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;0:-10;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;0:-10;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with critical-module-cellradio-rsrq option set to a -10 +&{teldat_cellsradio_test10} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq=-10 +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - rsrq: -18 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;0:-10;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;0:-10;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with warning-module-cellradio-csq option set to a -10 +&{teldat_cellsradio_test11} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq=-10 +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] csq: -73 dBm | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;0:-10;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;0:-10;;0; + +# Test cellsradio mode with critical-module-cellradio-csq option set to a -10 +&{teldat_cellsradio_test12} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq=-10 +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - csq: -73 dBm - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;0:-10;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;0:-10;0; + +# Test cellsradio mode with warning-module-cellradio-snr option set to a 0 +&{teldat_cellsradio_test13} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr=0 +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] snr: -1 dB | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;0:0;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;0:0;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with critical-module-cellradio-snr option set to a 0 +&{teldat_cellsradio_test14} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus= +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr=0 +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: PHENIX] sim status: LOCKED [imsi: 208015606540916] [interface state: connect(9)] - snr: -1 dB - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] WARNING: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;0:0;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;0:0;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +# Test cellsradio mode with critical-status option set to '%{interfaceState} =~ /disconnect/' +&{teldat_cellsradio_test15} +... filtercellid= +... customperfdatainstances= +... unknownstatus= +... warningstatus= +... criticalstatus='\%{interfaceState} =~ /disconnect/' +... warningmodulescellradiodetected= +... criticalmodulescellradiodetected= +... warningmodulecellradiorsrp= +... criticalmodulecellradiorsrp= +... warningmodulecellradiorsrq= +... criticalmodulecellradiorsrq= +... warningmodulecellradiorscp= +... criticalmodulecellradiorscp= +... warningmodulecellradiocsq= +... criticalmodulecellradiocsq= +... warningmodulecellradiosnr= +... criticalmodulecellradiosnr= +... result=CRITICAL: cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: OK [imsi: 208015606540916] [interface state: disconnect(1)] - cellular radio module '359072066403821' [sim icc: 89330122115801091660, operator: N/A] sim status: DETECTING [imsi: 208015606540916] [interface state: disconnect(1)] | 'modules.cellradio.detected.count'=3;;;0; '359072066403821~N/A#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~N/A#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~N/A#module.cellradio.snr.db'=-1;;;0; '359072066403821~N/A#module.cellradio.csq.dbm'=-73;;;0; '359072066403821~PHENIX#module.cellradio.rsrp.dbm'=-114;;;0; '359072066403821~PHENIX#module.cellradio.rsrq.dbm'=-18;;;0; '359072066403821~PHENIX#module.cellradio.snr.db'=-1;;;0; '359072066403821~PHENIX#module.cellradio.csq.dbm'=-73;;;0; + +@{teldat_cellsradio_tests} +... &{teldat_cellsradio_test1} +... &{teldat_cellsradio_test2} +... &{teldat_cellsradio_test3} +... &{teldat_cellsradio_test4} +... &{teldat_cellsradio_test5} +... &{teldat_cellsradio_test6} +... &{teldat_cellsradio_test7} +... &{teldat_cellsradio_test8} +... &{teldat_cellsradio_test9} +... &{teldat_cellsradio_test10} +... &{teldat_cellsradio_test11} +... &{teldat_cellsradio_test12} +... &{teldat_cellsradio_test13} +... &{teldat_cellsradio_test14} +... &{teldat_cellsradio_test15} + +# Test simple usage of the CPU mode +&{teldat_cpu_test1} +... warningcpuutilization5s= +... criticalcpuutilization5s= +... warningcpuutilization1m= +... criticalcpuutilization1m= +... warningcpuutilization5m= +... criticalcpuutilization5m= +... result=OK: cpu average usage: 1.00 % (5s), 1.00 % (1m), 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 + +# Test CPU mode with warning-cpu-utilization-5s option set to a 0.5 +&{teldat_cpu_test2} +... warningcpuutilization5s=0.5 +... criticalcpuutilization5s= +... warningcpuutilization1m= +... criticalcpuutilization1m= +... warningcpuutilization5m= +... criticalcpuutilization5m= +... result=WARNING: cpu average usage: 1.00 % (5s) | 'cpu.utilization.5s.percentage'=1.00%;0:0.5;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 + +# Test CPU mode with critical-cpu-utilization-5s option set to a 0.5 +&{teldat_cpu_test3} +... warningcpuutilization5s= +... criticalcpuutilization5s=0.5 +... warningcpuutilization1m= +... criticalcpuutilization1m= +... warningcpuutilization5m= +... criticalcpuutilization5m= +... result=CRITICAL: cpu average usage: 1.00 % (5s) | 'cpu.utilization.5s.percentage'=1.00%;;0:0.5;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 + +# Test CPU mode with warning-cpu-utilization-1m option set to a 0.5 +&{teldat_cpu_test4} +... warningcpuutilization5s= +... criticalcpuutilization5s= +... warningcpuutilization1m=0.5 +... criticalcpuutilization1m= +... warningcpuutilization5m= +... criticalcpuutilization5m= +... result=WARNING: cpu average usage: 1.00 % (1m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;0:0.5;;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 + +# Test CPU mode with critical-cpu-utilization-1m option set to a 0.5 +&{teldat_cpu_test5} +... warningcpuutilization5s= +... criticalcpuutilization5s= +... warningcpuutilization1m= +... criticalcpuutilization1m=0.5 +... warningcpuutilization5m= +... criticalcpuutilization5m= +... result=CRITICAL: cpu average usage: 1.00 % (1m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;0:0.5;0;100 'cpu.utilization.15m.percentage'=1.00%;;;0;100 + +# Test CPU mode with warning-cpu-utilization-5m option set to a 0.5 +&{teldat_cpu_test6} +... warningcpuutilization5s= +... criticalcpuutilization5s= +... warningcpuutilization1m= +... criticalcpuutilization1m= +... warningcpuutilization5m=0.5 +... criticalcpuutilization5m= +... result=WARNING: cpu average usage: 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;0:0.5;;0;100 + +# Test CPU mode with critical-cpu-utilization-5m option set to a 0.5 +&{teldat_cpu_test7} +... warningcpuutilization5s= +... criticalcpuutilization5s= +... warningcpuutilization1m= +... criticalcpuutilization1m= +... warningcpuutilization5m= +... criticalcpuutilization5m=0.5 +... result=CRITICAL: cpu average usage: 1.00 % (5m) | 'cpu.utilization.5s.percentage'=1.00%;;;0;100 'cpu.utilization.1m.percentage'=1.00%;;;0;100 'cpu.utilization.15m.percentage'=1.00%;;0:0.5;0;100 + +@{teldat_cpu_tests} +... &{teldat_cpu_test1} +... &{teldat_cpu_test2} +... &{teldat_cpu_test3} +... &{teldat_cpu_test4} +... &{teldat_cpu_test5} +... &{teldat_cpu_test6} +... &{teldat_cpu_test7} + +# Test simple usage of the memory mode +&{teldat_memory_test1} +... warningusage= +... criticalusage= +... warningusagefree= +... criticalusagefree= +... warningusageprct= +... criticalusageprct= +... result=OK: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 + +# Test memory mode with warning-usage option set to a 100 +&{teldat_memory_test2} +... warningusage=100 +... criticalusage= +... warningusagefree= +... criticalusagefree= +... warningusageprct= +... criticalusageprct= +... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;0:100;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 + +# Test memory mode with critical-usage option set to a 100 +&{teldat_memory_test3} +... warningusage= +... criticalusage=100 +... warningusagefree= +... criticalusagefree= +... warningusageprct= +... criticalusageprct= +... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;0:100;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 + +# Test memory mode with warning-usage-free option set to a 100 +&{teldat_memory_test4} +... warningusage= +... criticalusage= +... warningusagefree=100 +... criticalusagefree= +... warningusageprct= +... criticalusageprct= +... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;0:100;;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 + +# Test memory mode with critical-usage-free option set to a 100 +&{teldat_memory_test5} +... warningusage= +... criticalusage= +... warningusagefree= +... criticalusagefree=100 +... warningusageprct= +... criticalusageprct= +... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;0:100;0;268435456 'system#memory.usage.percentage'=39.27%;;;0;100 + +# Test memory mode with warning-usage-prct option set to a 30 +&{teldat_memory_test6} +... warningusage= +... criticalusage= +... warningusagefree= +... criticalusagefree= +... warningusageprct=30 +... criticalusageprct= +... result=WARNING: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;0:30;;0;100 + +# Test memory mode with critical-usage-prct option set to a 30 +&{teldat_memory_test7} +... warningusage= +... criticalusage= +... warningusagefree= +... criticalusagefree= +... warningusageprct= +... criticalusageprct=30 +... result=CRITICAL: Memory 'system' total: 256.00 MB used: 100.54 MB (39.27%) free: 155.46 MB (60.73%) | 'system#memory.usage.bytes'=105419600B;;;0;268435456 'system#memory.free.bytes'=163015856B;;;0;268435456 'system#memory.usage.percentage'=39.27%;;0:30;0;100 + +@{teldat_memory_tests} +... &{teldat_memory_test1} +... &{teldat_memory_test2} +... &{teldat_memory_test3} +... &{teldat_memory_test4} +... &{teldat_memory_test5} +... &{teldat_memory_test6} +... &{teldat_memory_test7} + + +*** Test Cases *** +Network Teldat SNMP cells radio + [Documentation] Network Teldat SNMP cells radio + [Tags] network teldat snmp + FOR ${teldat_cellsradio_test} IN @{teldat_cellsradio_tests} + ${command} Catenate + ... ${CMD} + ... --mode=cells-radio + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network/teldat/snmp/teldat + ${length} Get Length ${teldat_cellsradio_test.filtercellid} + IF ${length} > 0 + ${command} Catenate ${command} --filter-cell-id=${teldat_cellsradio_test.filtercellid} + END + ${length} Get Length ${teldat_cellsradio_test.customperfdatainstances} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --custom-perfdata-instances=${teldat_cellsradio_test.customperfdatainstances} + END + ${length} Get Length ${teldat_cellsradio_test.unknownstatus} + IF ${length} > 0 + ${command} Catenate ${command} --unknown-status=${teldat_cellsradio_test.unknownstatus} + END + ${length} Get Length ${teldat_cellsradio_test.warningstatus} + IF ${length} > 0 + ${command} Catenate ${command} --warning-status=${teldat_cellsradio_test.warningstatus} + END + ${length} Get Length ${teldat_cellsradio_test.criticalstatus} + IF ${length} > 0 + ${command} Catenate ${command} --critical-status=${teldat_cellsradio_test.criticalstatus} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulescellradiodetected} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-modules-cellradio-detected=${teldat_cellsradio_test.warningmodulescellradiodetected} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulescellradiodetected} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-modules-cellradio-detected=${teldat_cellsradio_test.criticalmodulescellradiodetected} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorsrp} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-module-cellradio-rsrp=${teldat_cellsradio_test.warningmodulecellradiorsrp} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorsrp} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-module-cellradio-rsrp=${teldat_cellsradio_test.criticalmodulecellradiorsrp} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorsrq} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-module-cellradio-rsrq=${teldat_cellsradio_test.warningmodulecellradiorsrq} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorsrq} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-module-cellradio-rsrq=${teldat_cellsradio_test.criticalmodulecellradiorsrq} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiorscp} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-module-cellradio-rscp=${teldat_cellsradio_test.warningmodulecellradiorscp} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiorscp} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-module-cellradio-rscp=${teldat_cellsradio_test.criticalmodulecellradiorscp} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiocsq} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-module-cellradio-csq=${teldat_cellsradio_test.warningmodulecellradiocsq} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiocsq} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-module-cellradio-csq=${teldat_cellsradio_test.criticalmodulecellradiocsq} + END + ${length} Get Length ${teldat_cellsradio_test.warningmodulecellradiosnr} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-module-cellradio-snr=${teldat_cellsradio_test.warningmodulecellradiosnr} + END + ${length} Get Length ${teldat_cellsradio_test.criticalmodulecellradiosnr} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-module-cellradio-snr=${teldat_cellsradio_test.criticalmodulecellradiosnr} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${teldat_cellsradio_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_cellsradio_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END + +Network Teldat SNMP CPU + [Documentation] Network Teldat SNMP CPU + [Tags] network teldat snmp + FOR ${teldat_cpu_test} IN @{teldat_cpu_tests} + ${command} Catenate + ... ${CMD} + ... --mode=cpu + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network/teldat/snmp/teldat + ${length} Get Length ${teldat_cpu_test.warningcpuutilization5s} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-cpu-utilization-5s=${teldat_cpu_test.warningcpuutilization5s} + END + ${length} Get Length ${teldat_cpu_test.criticalcpuutilization5s} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-cpu-utilization-5s=${teldat_cpu_test.criticalcpuutilization5s} + END + ${length} Get Length ${teldat_cpu_test.warningcpuutilization1m} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-cpu-utilization-1m=${teldat_cpu_test.warningcpuutilization1m} + END + ${length} Get Length ${teldat_cpu_test.criticalcpuutilization1m} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-cpu-utilization-1m=${teldat_cpu_test.criticalcpuutilization1m} + END + ${length} Get Length ${teldat_cpu_test.warningcpuutilization5m} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --warning-cpu-utilization-5m=${teldat_cpu_test.warningcpuutilization5m} + END + ${length} Get Length ${teldat_cpu_test.criticalcpuutilization5m} + IF ${length} > 0 + ${command} Catenate + ... ${command} + ... --critical-cpu-utilization-5m=${teldat_cpu_test.criticalcpuutilization5m} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${teldat_cpu_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_cpu_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END + +Network Teldat SNMP Memory + [Documentation] Network Teldat SNMP memory + [Tags] network teldat snmp + FOR ${teldat_memory_test} IN @{teldat_memory_tests} + ${command} Catenate + ... ${CMD} + ... --mode=memory + ... --hostname=127.0.0.1 + ... --snmp-version=2c + ... --snmp-port=2024 + ... --snmp-community=network/teldat/snmp/teldat + ${length} Get Length ${teldat_memory_test.warningusage} + IF ${length} > 0 + ${command} Catenate ${command} --warning-usage=${teldat_memory_test.warningusage} + END + ${length} Get Length ${teldat_memory_test.criticalusage} + IF ${length} > 0 + ${command} Catenate ${command} --critical-usage=${teldat_memory_test.criticalusage} + END + ${length} Get Length ${teldat_memory_test.warningusagefree} + IF ${length} > 0 + ${command} Catenate ${command} --warning-usage-free=${teldat_memory_test.warningusagefree} + END + ${length} Get Length ${teldat_memory_test.criticalusagefree} + IF ${length} > 0 + ${command} Catenate ${command} --critical-usage-free=${teldat_memory_test.criticalusagefree} + END + ${length} Get Length ${teldat_memory_test.warningusageprct} + IF ${length} > 0 + ${command} Catenate ${command} --warning-usage-prct=${teldat_memory_test.warningusageprct} + END + ${length} Get Length ${teldat_memory_test.criticalusageprct} + IF ${length} > 0 + ${command} Catenate ${command} --critical-usage-prct=${teldat_memory_test.criticalusageprct} + END + ${output} Run ${command} + Log To Console . no_newline=true + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${teldat_memory_test.result} + ... Wrong result output for:${\n}Command: ${\n}${command}${\n}${\n}Expected output: ${\n}${teldat_memory_test.result}${\n}${\n}Obtained output:${\n}${output}${\n}${\n}${\n} + ... values=False + END diff --git a/tests/resources/snmp/network-teldat-snmp.snmpwalk b/tests/robot/network/teldat/snmp/teldat.snmpwalk similarity index 98% rename from tests/resources/snmp/network-teldat-snmp.snmpwalk rename to tests/robot/network/teldat/snmp/teldat.snmpwalk index bbab371ef1..2b527ea5a5 100644 --- a/tests/resources/snmp/network-teldat-snmp.snmpwalk +++ b/tests/robot/network/teldat/snmp/teldat.snmpwalk @@ -1,1130 +1,1130 @@ -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.9.4.0 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.1.1 = Gauge32: 1 -.1.3.6.1.4.1.2007.1.2.10.1.1.2 = Gauge32: 2 -.1.3.6.1.4.1.2007.1.2.10.1.1.3 = Gauge32: 3 -.1.3.6.1.4.1.2007.1.2.10.1.1.4 = Gauge32: 4 -.1.3.6.1.4.1.2007.1.2.10.1.1.5 = Gauge32: 5 -.1.3.6.1.4.1.2007.1.2.10.1.1.6 = Gauge32: 6 -.1.3.6.1.4.1.2007.1.2.10.1.1.7 = Gauge32: 7 -.1.3.6.1.4.1.2007.1.2.10.1.1.8 = Gauge32: 8 -.1.3.6.1.4.1.2007.1.2.10.1.1.9 = Gauge32: 9 -.1.3.6.1.4.1.2007.1.2.10.1.1.10 = Gauge32: 10 -.1.3.6.1.4.1.2007.1.2.10.1.1.11 = Gauge32: 11 -.1.3.6.1.4.1.2007.1.2.10.1.1.12 = Gauge32: 12 -.1.3.6.1.4.1.2007.1.2.10.1.1.13 = Gauge32: 13 -.1.3.6.1.4.1.2007.1.2.10.1.1.14 = Gauge32: 14 -.1.3.6.1.4.1.2007.1.2.10.1.1.15 = Gauge32: 15 -.1.3.6.1.4.1.2007.1.2.10.1.1.16 = Gauge32: 16 -.1.3.6.1.4.1.2007.1.2.10.1.2.1 = INTEGER: 121 -.1.3.6.1.4.1.2007.1.2.10.1.2.2 = INTEGER: 162 -.1.3.6.1.4.1.2007.1.2.10.1.2.3 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.4 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.5 = INTEGER: 162 -.1.3.6.1.4.1.2007.1.2.10.1.2.6 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.7 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.8 = INTEGER: 162 -.1.3.6.1.4.1.2007.1.2.10.1.2.9 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.10 = INTEGER: 140 -.1.3.6.1.4.1.2007.1.2.10.1.2.11 = INTEGER: 112 -.1.3.6.1.4.1.2007.1.2.10.1.2.12 = INTEGER: 139 -.1.3.6.1.4.1.2007.1.2.10.1.2.13 = INTEGER: 139 -.1.3.6.1.4.1.2007.1.2.10.1.2.14 = INTEGER: 139 -.1.3.6.1.4.1.2007.1.2.10.1.2.15 = INTEGER: 95 -.1.3.6.1.4.1.2007.1.2.10.1.2.16 = INTEGER: 95 -.1.3.6.1.4.1.2007.1.2.10.1.3.1 = INTEGER: 34 -.1.3.6.1.4.1.2007.1.2.10.1.3.2 = INTEGER: 23 -.1.3.6.1.4.1.2007.1.2.10.1.3.3 = INTEGER: 23 -.1.3.6.1.4.1.2007.1.2.10.1.3.4 = INTEGER: 23 -.1.3.6.1.4.1.2007.1.2.10.1.3.5 = INTEGER: 24 -.1.3.6.1.4.1.2007.1.2.10.1.3.6 = INTEGER: 24 -.1.3.6.1.4.1.2007.1.2.10.1.3.7 = INTEGER: 24 -.1.3.6.1.4.1.2007.1.2.10.1.3.8 = INTEGER: 25 -.1.3.6.1.4.1.2007.1.2.10.1.3.9 = INTEGER: 25 -.1.3.6.1.4.1.2007.1.2.10.1.3.10 = INTEGER: 25 -.1.3.6.1.4.1.2007.1.2.10.1.3.11 = INTEGER: 32 -.1.3.6.1.4.1.2007.1.2.10.1.3.12 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.3.13 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.3.14 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.3.15 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.3.16 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.10.1.4.1 = STRING: "GigabitEthernet interface" -.1.3.6.1.4.1.2007.1.2.10.1.4.2 = STRING: "Cellular Interface" -.1.3.6.1.4.1.2007.1.2.10.1.4.3 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.4 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.5 = STRING: "Cellular Interface" -.1.3.6.1.4.1.2007.1.2.10.1.4.6 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.7 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.8 = STRING: "Cellular Interface" -.1.3.6.1.4.1.2007.1.2.10.1.4.9 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.10 = STRING: "USB_NIC Device" -.1.3.6.1.4.1.2007.1.2.10.1.4.11 = STRING: "Atheros WLAN" -.1.3.6.1.4.1.2007.1.2.10.1.4.12 = STRING: "Generic DirectIP encapsulation" -.1.3.6.1.4.1.2007.1.2.10.1.4.13 = STRING: "Generic DirectIP encapsulation" -.1.3.6.1.4.1.2007.1.2.10.1.4.14 = STRING: "Generic DirectIP encapsulation" -.1.3.6.1.4.1.2007.1.2.10.1.4.15 = STRING: "Ethernet subinterface" -.1.3.6.1.4.1.2007.1.2.10.1.4.16 = STRING: "Ethernet subinterface" -.1.3.6.1.4.1.2007.1.2.11.0 = Hex-STRING: 26 06 21 00 12 10 04 00 -.1.3.6.1.4.1.2007.1.2.12.0 = INTEGER: 3 -.1.3.6.1.4.1.2007.1.2.13.0 = INTEGER: 2 -.1.3.6.1.4.1.2007.1.2.14.0 = INTEGER: 4 -.1.3.6.1.4.1.2007.1.2.15.0 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.16.0 = Gauge32: 600 -.1.3.6.1.4.1.2007.1.2.17.0 = INTEGER: 0 -.1.3.6.1.4.1.2007.1.2.18.0 = INTEGER: 1 -.1.3.6.1.4.1.2007.3.2.1.1.0 = IpAddress: 0.0.0.12 -.1.3.6.1.4.1.2007.3.2.1.2.0 = Gauge32: 10 -.1.3.6.1.4.1.2007.3.2.1.3.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.1.1.0 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.1.1.2.0 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.1.1.3.0 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.1.1.4.0 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.1.1.5.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.1.7.0 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.1.1.8.0 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.1.2.1.0 = STRING: "Router model H2Rail S/N: 899/000841 SWL: BASE GPS WLAN WNMS_MAX_WTPs-18 Teldat (c)1996 - 2021" -.1.3.6.1.4.1.2007.4.1.1.2.2.0 = OID: .1.3.6.1.4.1.2007.1.1.227 -.1.3.6.1.4.1.2007.4.1.1.2.3.0 = "" -.1.3.6.1.4.1.2007.4.1.1.2.4.0 = STRING: "......" -.1.3.6.1.4.1.2007.4.1.1.2.5.0 = STRING: "......." -.1.3.6.1.4.1.2007.4.1.1.2.6.0 = Gauge32: 72 -.1.3.6.1.4.1.2007.4.1.1.2.7.0 = Timeticks: (7598700) 21:06:27.00 -.1.3.6.1.4.1.2007.4.1.1.2.9.0 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.1.0 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.2.0 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.3.0 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.4.0 = INTEGER: 12000 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.5.0 = INTEGER: 64 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.6.0 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.7.0 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.10.0 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.1.5.1.1.16.0 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.2 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.3 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.4 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.1 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.2 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.3 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.4 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.1 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.2 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.3 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.4 = IpAddress: 0.0.0.0 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.1 = IpAddress: 0.0.0.10 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.2 = IpAddress: 0.0.0.11 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.3 = IpAddress: 0.0.0.12 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.4 = IpAddress: 0.0.0.13 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.2 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.3 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.4 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.1.5.12.1.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.1.5.12.2.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.12.3.0 = Gauge32: 21 -.1.3.6.1.4.1.2007.4.1.1.5.12.4.0 = Gauge32: 20 -.1.3.6.1.4.1.2007.4.1.1.5.12.5.0 = Gauge32: 360 -.1.3.6.1.4.1.2007.4.1.1.5.12.6.0 = Gauge32: 4 -.1.3.6.1.4.1.2007.4.1.1.5.12.7.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.12.8.0 = Gauge32: 1024 -.1.3.6.1.4.1.2007.4.1.1.5.12.9.0 = Gauge32: 2048 -.1.3.6.1.4.1.2007.4.1.1.5.12.10.0 = Gauge32: 16384 -.1.3.6.1.4.1.2007.4.1.1.5.12.11.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.12.12.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.12.13.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.12.14.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.1.5.12.15.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.1.5.12.16.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.13.1.1.0 = Gauge32: 2 -.1.3.6.1.4.1.2007.4.1.1.5.13.1.2.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.1.5.13.1.3.0 = Gauge32: 64 -.1.3.6.1.4.1.2007.4.1.1.5.13.1.4.0 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.1.1.14.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.1.1.15.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.1.1.16.0 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.1.1.26.0 = Gauge32: 268435456 -.1.3.6.1.4.1.2007.4.1.2.1.1.27.0 = Gauge32: 224182272 -.1.3.6.1.4.1.2007.4.1.2.1.1.28.0 = Gauge32: 163015856 -.1.3.6.1.4.1.2007.4.1.2.1.1.29.0 = Gauge32: 224182272 -.1.3.6.1.4.1.2007.4.1.2.1.1.30.0 = Gauge32: 163015856 -.1.3.6.1.4.1.2007.4.1.2.1.1.31.0 = STRING: "Caches: ON Write Back" -.1.3.6.1.4.1.2007.4.1.2.1.1.32.0 = Gauge32: 33030144 -.1.3.6.1.4.1.2007.4.1.2.1.1.33.0 = Gauge32: 9429 -.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.1.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.2.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.3.0 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.1.1 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.2.1 = Hex-STRING: 00 A0 26 54 02 E5 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.3.1 = Hex-STRING: 00 A0 26 54 02 E5 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.4.1 = STRING: "ethernet0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.1.1 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.2.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.3.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.4.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.5.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.6.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.7.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.8.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.9.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.10.1 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.11.1 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.12.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.13.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.14.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.15.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.16.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.17.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.18.1 = Gauge32: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.2 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.3 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.4 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.5 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.6 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.7 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.8 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.9 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.10 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.11 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.12 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.13 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.14 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.15 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.11 = INTEGER: 11 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.12 = INTEGER: 12 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.13 = INTEGER: 13 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.14 = INTEGER: 14 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.15 = INTEGER: 15 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.1 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.11 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.12 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.13 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.14 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.15 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.11 = INTEGER: 11 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.15 = INTEGER: 15 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.16 = INTEGER: 16 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.1 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.11 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.15 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.16 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.2 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.3 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.4 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.5 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.6 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.7 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.8 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.9 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.10 = STRING: "Sierra Wireless, Incorporated" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.2 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.3 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.4 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.5 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.6 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.7 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.8 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.9 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.10 = STRING: "MC7455" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.2 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.3 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.4 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.5 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.6 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.7 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.8 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.9 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.10 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.5 = STRING: "359072066403821" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.6 = STRING: "359072066403821" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.7 = STRING: "359072066403821" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.5 = STRING: "208015606540916" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.6 = STRING: "208015606540916" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.7 = STRING: "208015606540916" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.5 = STRING: "89330122115801091660" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.6 = STRING: "89330122115801091660" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.5 = STRING: "89330122115801091660" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.6 = STRING: "89330122115801091660" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.7 = STRING: "89330122115801091660" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.2 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.3 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.4 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.5 = STRING: "50000/300000" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.6 = STRING: "50000/300000" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.7 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.8 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.9 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.10 = STRING: "0/0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.2 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.3 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.4 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.5 = STRING: "disconnect(1)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.6 = STRING: "connect(9)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.7 = STRING: "disconnect(1)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.8 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.9 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.10 = STRING: "initial(0)" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.6 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.6 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.6 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.6 = Gauge32: 75947 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.6 = Gauge32: 75948 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.6 = STRING: "POTATO" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.6 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.5 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.6 = STRING: "phenix.com" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.6 = Gauge32: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.5 = STRING: "192.168.1.120" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.6 = STRING: "192.168.1.120" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.5 = STRING: "1.1.1.1" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.6 = STRING: "1.1.1.1" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.5 = STRING: "192.168.2.5" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.6 = STRING: "192.168.2.5" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.5 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.6 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.7 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.5 = INTEGER: 20801 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.6 = INTEGER: 20801 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.7 = INTEGER: 20801 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.5 = Gauge32: 50560 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.6 = Gauge32: 50560 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.5 = Gauge32: 95123 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6 = Gauge32: 95123 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.2 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.3 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.4 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.5 = STRING: "E-UTRAN LTE" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.6 = STRING: "E-UTRAN LTE" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.7 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.8 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.9 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.10 = STRING: "Unknown" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.2 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.3 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.4 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.5 = STRING: "EUTRABand3_1800_DCS" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.6 = STRING: "EUTRABand3_1800_DCS" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.7 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.8 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.9 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.10 = STRING: "CDMABandClass0" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.5 = INTEGER: -73 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6 = INTEGER: -73 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.5 = INTEGER: 39 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.6 = INTEGER: 39 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.7 = INTEGER: 39 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.6 = Gauge32: 388788 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.6 = Gauge32: 323656619 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.6 = Gauge32: 386103 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.6 = Gauge32: 57389151 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.6 = Gauge32: 31648 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.6 = Gauge32: 31648 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.6 = Gauge32: 36306 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.6 = Gauge32: 37383 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.6 = Gauge32: 12222 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.5 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.6 = Gauge32: 12590 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.5 = INTEGER: -114 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6 = INTEGER: -114 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.5 = INTEGER: -18 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6 = INTEGER: -18 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.5 = INTEGER: -1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6 = INTEGER: -1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.5 = Gauge32: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6 = Gauge32: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.2 = STRING: "LOCKED" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.3 = STRING: "OK" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.4 = STRING: "LOCKED" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.5 = STRING: "OK" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.6 = STRING: "LOCKED" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.7 = STRING: "DETECTING" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.8 = STRING: "LOCKED" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.9 = STRING: "DETECTING" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.10 = STRING: "OK" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.5 = STRING: "Mobile O" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.6 = STRING: "Mobile O" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.2 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.3 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.4 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.5 = STRING: "PS" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.6 = STRING: "PS" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.7 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.8 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.9 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.10 = STRING: "None" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.2 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.3 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.4 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.5 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.6 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.7 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.8 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.9 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.10 = STRING: "Off" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.5 = Gauge32: 1300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.6 = Gauge32: 1300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.4 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.5 = Gauge32: 19300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.6 = Gauge32: 19300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.5 = STRING: "20 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.6 = STRING: "20 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.5 = STRING: "Attached" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.6 = STRING: "Attached" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.5 = STRING: "(2) Registered" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.6 = STRING: "(2) Registered" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.5 = STRING: "(0) Normal Service" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.6 = STRING: "(0) Normal Service" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.5 = STRING: "(2) RRC Connected" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.6 = STRING: "(2) RRC Connected" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.5 = STRING: "c580" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.6 = STRING: "c580" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.2 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.3 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.4 = Gauge32: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.5 = Gauge32: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.6 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.7 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.8 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.9 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.10 = Gauge32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.3 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.4 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.5 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.6 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.7 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.8 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.9 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.10 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.5 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.6 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.5 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.6 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.5 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.6 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.2 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.3 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.4 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.5 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.6 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.7 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.8 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.9 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.10 = "" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.6 = STRING: "PHENIX" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.6 = STRING: "potato.com" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.6 = STRING: "POTATO" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.6 = STRING: "potato.com" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.6 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.3 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.4 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.5 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.6 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.7 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.8 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.9 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.10 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.2.1 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.2.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.3.1 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.3.2 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.4.1 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.4.2 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.5.1 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.5.2 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.6.1 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.6.2 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.7.1 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.7.2 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.8.1 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.8.2 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.9.1 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.9.2 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.10.1 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.10.2 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.2.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.2.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.3.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.3.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.4.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.4.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.5.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.5.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.6.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.6.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.7.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.7.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.8.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.8.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.9.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.9.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.10.1 = INTEGER: 1 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.10.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.2.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.2.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.3.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.3.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.4.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.4.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.5.1 = STRING: "20 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.5.2 = STRING: "10 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.6.1 = STRING: "20 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.6.2 = STRING: "10 MHz" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.7.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.7.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.8.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.8.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.9.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.9.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.10.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.10.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.2.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.2.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.3.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.3.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.4.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.4.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.5.1 = INTEGER: 1300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.5.2 = INTEGER: 6400 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.6.1 = INTEGER: 1300 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.6.2 = INTEGER: 6400 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.7.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.7.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.8.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.8.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.9.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.9.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.10.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.10.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.2.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.2.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.3.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.3.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.4.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.4.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.5.1 = STRING: "E-UTRA Band 3" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.5.2 = STRING: "E-UTRA Band 20" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.6.1 = STRING: "E-UTRA Band 3" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.6.2 = STRING: "E-UTRA Band 20" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.7.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.7.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.8.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.8.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.9.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.9.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.10.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.10.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.2.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.2.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.3.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.3.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.4.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.4.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.5.1 = INTEGER: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.5.2 = INTEGER: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.6.1 = INTEGER: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.6.2 = INTEGER: 328 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.7.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.7.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.8.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.8.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.9.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.9.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.10.1 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.10.2 = INTEGER: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.2.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.2.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.3.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.3.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.4.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.4.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.5.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.5.2 = STRING: "INACTIVE" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.6.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.6.2 = STRING: "INACTIVE" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.7.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.7.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.8.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.8.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.9.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.9.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.10.1 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.10.2 = STRING: "---" -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.2 = INTEGER: 2 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.3 = INTEGER: 3 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.4 = INTEGER: 4 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.5 = INTEGER: 5 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.6 = INTEGER: 6 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.7 = INTEGER: 7 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.8 = INTEGER: 8 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.9 = INTEGER: 9 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.10 = INTEGER: 10 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.10 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.2 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.3 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.4 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.5 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.6 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.7 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.8 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.9 = Counter32: 0 -.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.10 = Counter32: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.2.1.7.274.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.9.4.0 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.1.1 = Gauge32: 1 +.1.3.6.1.4.1.2007.1.2.10.1.1.2 = Gauge32: 2 +.1.3.6.1.4.1.2007.1.2.10.1.1.3 = Gauge32: 3 +.1.3.6.1.4.1.2007.1.2.10.1.1.4 = Gauge32: 4 +.1.3.6.1.4.1.2007.1.2.10.1.1.5 = Gauge32: 5 +.1.3.6.1.4.1.2007.1.2.10.1.1.6 = Gauge32: 6 +.1.3.6.1.4.1.2007.1.2.10.1.1.7 = Gauge32: 7 +.1.3.6.1.4.1.2007.1.2.10.1.1.8 = Gauge32: 8 +.1.3.6.1.4.1.2007.1.2.10.1.1.9 = Gauge32: 9 +.1.3.6.1.4.1.2007.1.2.10.1.1.10 = Gauge32: 10 +.1.3.6.1.4.1.2007.1.2.10.1.1.11 = Gauge32: 11 +.1.3.6.1.4.1.2007.1.2.10.1.1.12 = Gauge32: 12 +.1.3.6.1.4.1.2007.1.2.10.1.1.13 = Gauge32: 13 +.1.3.6.1.4.1.2007.1.2.10.1.1.14 = Gauge32: 14 +.1.3.6.1.4.1.2007.1.2.10.1.1.15 = Gauge32: 15 +.1.3.6.1.4.1.2007.1.2.10.1.1.16 = Gauge32: 16 +.1.3.6.1.4.1.2007.1.2.10.1.2.1 = INTEGER: 121 +.1.3.6.1.4.1.2007.1.2.10.1.2.2 = INTEGER: 162 +.1.3.6.1.4.1.2007.1.2.10.1.2.3 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.4 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.5 = INTEGER: 162 +.1.3.6.1.4.1.2007.1.2.10.1.2.6 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.7 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.8 = INTEGER: 162 +.1.3.6.1.4.1.2007.1.2.10.1.2.9 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.10 = INTEGER: 140 +.1.3.6.1.4.1.2007.1.2.10.1.2.11 = INTEGER: 112 +.1.3.6.1.4.1.2007.1.2.10.1.2.12 = INTEGER: 139 +.1.3.6.1.4.1.2007.1.2.10.1.2.13 = INTEGER: 139 +.1.3.6.1.4.1.2007.1.2.10.1.2.14 = INTEGER: 139 +.1.3.6.1.4.1.2007.1.2.10.1.2.15 = INTEGER: 95 +.1.3.6.1.4.1.2007.1.2.10.1.2.16 = INTEGER: 95 +.1.3.6.1.4.1.2007.1.2.10.1.3.1 = INTEGER: 34 +.1.3.6.1.4.1.2007.1.2.10.1.3.2 = INTEGER: 23 +.1.3.6.1.4.1.2007.1.2.10.1.3.3 = INTEGER: 23 +.1.3.6.1.4.1.2007.1.2.10.1.3.4 = INTEGER: 23 +.1.3.6.1.4.1.2007.1.2.10.1.3.5 = INTEGER: 24 +.1.3.6.1.4.1.2007.1.2.10.1.3.6 = INTEGER: 24 +.1.3.6.1.4.1.2007.1.2.10.1.3.7 = INTEGER: 24 +.1.3.6.1.4.1.2007.1.2.10.1.3.8 = INTEGER: 25 +.1.3.6.1.4.1.2007.1.2.10.1.3.9 = INTEGER: 25 +.1.3.6.1.4.1.2007.1.2.10.1.3.10 = INTEGER: 25 +.1.3.6.1.4.1.2007.1.2.10.1.3.11 = INTEGER: 32 +.1.3.6.1.4.1.2007.1.2.10.1.3.12 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.3.13 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.3.14 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.3.15 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.3.16 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.10.1.4.1 = STRING: "GigabitEthernet interface" +.1.3.6.1.4.1.2007.1.2.10.1.4.2 = STRING: "Cellular Interface" +.1.3.6.1.4.1.2007.1.2.10.1.4.3 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.4 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.5 = STRING: "Cellular Interface" +.1.3.6.1.4.1.2007.1.2.10.1.4.6 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.7 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.8 = STRING: "Cellular Interface" +.1.3.6.1.4.1.2007.1.2.10.1.4.9 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.10 = STRING: "USB_NIC Device" +.1.3.6.1.4.1.2007.1.2.10.1.4.11 = STRING: "Atheros WLAN" +.1.3.6.1.4.1.2007.1.2.10.1.4.12 = STRING: "Generic DirectIP encapsulation" +.1.3.6.1.4.1.2007.1.2.10.1.4.13 = STRING: "Generic DirectIP encapsulation" +.1.3.6.1.4.1.2007.1.2.10.1.4.14 = STRING: "Generic DirectIP encapsulation" +.1.3.6.1.4.1.2007.1.2.10.1.4.15 = STRING: "Ethernet subinterface" +.1.3.6.1.4.1.2007.1.2.10.1.4.16 = STRING: "Ethernet subinterface" +.1.3.6.1.4.1.2007.1.2.11.0 = Hex-STRING: 26 06 21 00 12 10 04 00 +.1.3.6.1.4.1.2007.1.2.12.0 = INTEGER: 3 +.1.3.6.1.4.1.2007.1.2.13.0 = INTEGER: 2 +.1.3.6.1.4.1.2007.1.2.14.0 = INTEGER: 4 +.1.3.6.1.4.1.2007.1.2.15.0 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.16.0 = Gauge32: 600 +.1.3.6.1.4.1.2007.1.2.17.0 = INTEGER: 0 +.1.3.6.1.4.1.2007.1.2.18.0 = INTEGER: 1 +.1.3.6.1.4.1.2007.3.2.1.1.0 = IpAddress: 0.0.0.12 +.1.3.6.1.4.1.2007.3.2.1.2.0 = Gauge32: 10 +.1.3.6.1.4.1.2007.3.2.1.3.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.1.1.2.0 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.1.1.3.0 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.1.1.4.0 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.1.1.5.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.1.7.0 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.1.1.8.0 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.1.2.1.0 = STRING: "Router model H2Rail S/N: 899/000841 SWL: BASE GPS WLAN WNMS_MAX_WTPs-18 Teldat (c)1996 - 2021" +.1.3.6.1.4.1.2007.4.1.1.2.2.0 = OID: .1.3.6.1.4.1.2007.1.1.227 +.1.3.6.1.4.1.2007.4.1.1.2.3.0 = "" +.1.3.6.1.4.1.2007.4.1.1.2.4.0 = STRING: "......" +.1.3.6.1.4.1.2007.4.1.1.2.5.0 = STRING: "......." +.1.3.6.1.4.1.2007.4.1.1.2.6.0 = Gauge32: 72 +.1.3.6.1.4.1.2007.4.1.1.2.7.0 = Timeticks: (7598700) 21:06:27.00 +.1.3.6.1.4.1.2007.4.1.1.2.9.0 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.1.0 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.2.0 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.3.0 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.4.0 = INTEGER: 12000 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.5.0 = INTEGER: 64 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.6.0 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.7.0 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.10.0 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.1.5.1.1.16.0 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.2 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.3 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.2.4 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.1 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.2 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.3 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.3.4 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.1 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.2 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.3 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.4.4 = IpAddress: 0.0.0.0 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.1 = IpAddress: 0.0.0.10 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.2 = IpAddress: 0.0.0.11 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.3 = IpAddress: 0.0.0.12 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.5.4 = IpAddress: 0.0.0.13 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.2 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.3 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.1.5.1.4.1.6.4 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.1.5.12.1.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.1.5.12.2.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.12.3.0 = Gauge32: 21 +.1.3.6.1.4.1.2007.4.1.1.5.12.4.0 = Gauge32: 20 +.1.3.6.1.4.1.2007.4.1.1.5.12.5.0 = Gauge32: 360 +.1.3.6.1.4.1.2007.4.1.1.5.12.6.0 = Gauge32: 4 +.1.3.6.1.4.1.2007.4.1.1.5.12.7.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.12.8.0 = Gauge32: 1024 +.1.3.6.1.4.1.2007.4.1.1.5.12.9.0 = Gauge32: 2048 +.1.3.6.1.4.1.2007.4.1.1.5.12.10.0 = Gauge32: 16384 +.1.3.6.1.4.1.2007.4.1.1.5.12.11.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.12.12.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.12.13.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.12.14.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.1.5.12.15.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.1.5.12.16.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.13.1.1.0 = Gauge32: 2 +.1.3.6.1.4.1.2007.4.1.1.5.13.1.2.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.1.5.13.1.3.0 = Gauge32: 64 +.1.3.6.1.4.1.2007.4.1.1.5.13.1.4.0 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.1.1.14.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.1.1.15.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.1.1.16.0 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.1.1.26.0 = Gauge32: 268435456 +.1.3.6.1.4.1.2007.4.1.2.1.1.27.0 = Gauge32: 224182272 +.1.3.6.1.4.1.2007.4.1.2.1.1.28.0 = Gauge32: 163015856 +.1.3.6.1.4.1.2007.4.1.2.1.1.29.0 = Gauge32: 224182272 +.1.3.6.1.4.1.2007.4.1.2.1.1.30.0 = Gauge32: 163015856 +.1.3.6.1.4.1.2007.4.1.2.1.1.31.0 = STRING: "Caches: ON Write Back" +.1.3.6.1.4.1.2007.4.1.2.1.1.32.0 = Gauge32: 33030144 +.1.3.6.1.4.1.2007.4.1.2.1.1.33.0 = Gauge32: 9429 +.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.1.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.2.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.1.2.1.1.3.0 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.1.1 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.2.1 = Hex-STRING: 00 A0 26 54 02 E5 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.3.1 = Hex-STRING: 00 A0 26 54 02 E5 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.1.1.4.1 = STRING: "ethernet0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.1.1 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.2.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.3.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.4.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.5.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.6.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.7.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.8.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.9.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.10.1 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.11.1 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.12.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.13.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.14.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.15.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.16.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.17.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.2.1.18.1 = Gauge32: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.2 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.3 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.4 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.5 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.6 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.7 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.8 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.9 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.10 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.11 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.12 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.13 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.14 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.1.1.15 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.11 = INTEGER: 11 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.12 = INTEGER: 12 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.13 = INTEGER: 13 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.14 = INTEGER: 14 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.2.1.15 = INTEGER: 15 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.1 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.11 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.12 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.13 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.14 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.6.3.1.3.1.15 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.11 = INTEGER: 11 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.15 = INTEGER: 15 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.1.16 = INTEGER: 16 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.1 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.11 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.15 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.8.1.1.2.16 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.2 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.3 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.4 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.5 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.6 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.7 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.8 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.9 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.2.10 = STRING: "Sierra Wireless, Incorporated" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.2 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.3 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.4 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.5 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.6 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.7 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.8 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.9 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.3.10 = STRING: "MC7455" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.2 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.3 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.4 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.5 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.6 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.7 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.8 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.9 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.4.10 = STRING: "SWI9X30C_02.24.05.06 r7040 CARMD-EV-FRMWR2 2017/05/19 06:23:09" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.5 = STRING: "359072066403821" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.6 = STRING: "359072066403821" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.7 = STRING: "359072066403821" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.5.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.5 = STRING: "208015606540916" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.6 = STRING: "208015606540916" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.7 = STRING: "208015606540916" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.6.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.5 = STRING: "89330122115801091660" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.6 = STRING: "89330122115801091660" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.7.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.5 = STRING: "89330122115801091660" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.6 = STRING: "89330122115801091660" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.7 = STRING: "89330122115801091660" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.8.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.2 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.3 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.4 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.5 = STRING: "50000/300000" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.6 = STRING: "50000/300000" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.7 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.8 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.9 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.1.1.9.10 = STRING: "0/0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.2 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.3 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.4 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.5 = STRING: "disconnect(1)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.6 = STRING: "connect(9)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.7 = STRING: "disconnect(1)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.8 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.9 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.2.10 = STRING: "initial(0)" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.6 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.3.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.6 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.4.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.6 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.5.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.6 = Gauge32: 75947 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.6.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.6 = Gauge32: 75948 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.7.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.6 = STRING: "POTATO" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.8.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.6 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.9.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.5 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.6 = STRING: "phenix.com" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.10.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.6 = Gauge32: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.11.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.5 = STRING: "192.168.1.120" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.6 = STRING: "192.168.1.120" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.12.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.5 = STRING: "1.1.1.1" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.6 = STRING: "1.1.1.1" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.13.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.5 = STRING: "192.168.2.5" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.6 = STRING: "192.168.2.5" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.1.1.14.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.5 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.6 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.7 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.2.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.5 = INTEGER: 20801 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.6 = INTEGER: 20801 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.7 = INTEGER: 20801 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.3.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.5 = Gauge32: 50560 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.6 = Gauge32: 50560 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.4.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.5 = Gauge32: 95123 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6 = Gauge32: 95123 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.2 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.3 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.4 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.5 = STRING: "E-UTRAN LTE" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.6 = STRING: "E-UTRAN LTE" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.7 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.8 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.9 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.6.10 = STRING: "Unknown" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.2 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.3 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.4 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.5 = STRING: "EUTRABand3_1800_DCS" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.6 = STRING: "EUTRABand3_1800_DCS" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.7 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.8 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.9 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.7.10 = STRING: "CDMABandClass0" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.8.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.9.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.5 = INTEGER: -73 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6 = INTEGER: -73 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.5 = INTEGER: 39 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.6 = INTEGER: 39 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.7 = INTEGER: 39 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.11.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.6 = Gauge32: 388788 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.12.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.6 = Gauge32: 323656619 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.13.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.6 = Gauge32: 386103 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.14.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.6 = Gauge32: 57389151 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.15.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.6 = Gauge32: 31648 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.16.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.6 = Gauge32: 31648 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.17.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.6 = Gauge32: 36306 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.18.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.6 = Gauge32: 37383 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.19.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.6 = Gauge32: 12222 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.20.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.5 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.6 = Gauge32: 12590 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.21.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.5 = INTEGER: -114 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6 = INTEGER: -114 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.5 = INTEGER: -18 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6 = INTEGER: -18 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.5 = INTEGER: -1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6 = INTEGER: -1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.5 = Gauge32: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6 = Gauge32: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.2 = STRING: "LOCKED" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.3 = STRING: "OK" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.4 = STRING: "LOCKED" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.5 = STRING: "OK" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.6 = STRING: "LOCKED" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.7 = STRING: "DETECTING" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.8 = STRING: "LOCKED" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.9 = STRING: "DETECTING" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.26.10 = STRING: "OK" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.5 = STRING: "Mobile O" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.6 = STRING: "Mobile O" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.27.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.2 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.3 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.4 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.5 = STRING: "PS" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.6 = STRING: "PS" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.7 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.8 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.9 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.28.10 = STRING: "None" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.2 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.3 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.4 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.5 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.6 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.7 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.8 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.9 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.29.10 = STRING: "Off" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.5 = Gauge32: 1300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.6 = Gauge32: 1300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.30.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.4 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.5 = Gauge32: 19300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.6 = Gauge32: 19300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.31.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.5 = STRING: "20 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.6 = STRING: "20 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.32.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.5 = STRING: "Attached" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.6 = STRING: "Attached" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.33.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.5 = STRING: "(2) Registered" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.6 = STRING: "(2) Registered" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.34.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.5 = STRING: "(0) Normal Service" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.6 = STRING: "(0) Normal Service" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.35.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.5 = STRING: "(2) RRC Connected" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.6 = STRING: "(2) RRC Connected" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.36.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.5 = STRING: "c580" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.6 = STRING: "c580" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.37.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.2 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.3 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.4 = Gauge32: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.5 = Gauge32: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.6 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.7 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.8 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.9 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.38.10 = Gauge32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.2.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.3.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.3 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.4 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.5 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.6 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.7 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.8 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.9 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.4.10 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.5 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.6 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.5.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.5 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.6 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.6.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.5 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.6 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.7.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.2 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.3 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.4 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.5 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.6 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.7 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.8 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.9 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.3.1.8.10 = "" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.6 = STRING: "PHENIX" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.2.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.6 = STRING: "potato.com" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.6 = STRING: "POTATO" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.4.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.6 = STRING: "potato.com" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.5.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.6 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.2.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.3 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.4 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.5 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.6 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.7 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.8 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.9 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.5.1.3.10 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.2.1 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.2.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.3.1 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.3.2 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.4.1 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.4.2 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.5.1 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.5.2 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.6.1 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.6.2 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.7.1 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.7.2 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.8.1 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.8.2 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.9.1 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.9.2 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.10.1 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.1.10.2 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.2.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.2.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.3.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.3.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.4.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.4.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.5.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.5.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.6.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.6.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.7.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.7.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.8.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.8.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.9.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.9.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.10.1 = INTEGER: 1 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.2.10.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.2.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.2.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.3.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.3.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.4.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.4.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.5.1 = STRING: "20 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.5.2 = STRING: "10 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.6.1 = STRING: "20 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.6.2 = STRING: "10 MHz" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.7.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.7.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.8.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.8.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.9.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.9.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.10.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.3.10.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.2.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.2.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.3.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.3.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.4.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.4.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.5.1 = INTEGER: 1300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.5.2 = INTEGER: 6400 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.6.1 = INTEGER: 1300 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.6.2 = INTEGER: 6400 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.7.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.7.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.8.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.8.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.9.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.9.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.10.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.4.10.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.2.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.2.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.3.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.3.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.4.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.4.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.5.1 = STRING: "E-UTRA Band 3" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.5.2 = STRING: "E-UTRA Band 20" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.6.1 = STRING: "E-UTRA Band 3" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.6.2 = STRING: "E-UTRA Band 20" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.7.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.7.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.8.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.8.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.9.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.9.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.10.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.5.10.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.2.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.2.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.3.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.3.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.4.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.4.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.5.1 = INTEGER: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.5.2 = INTEGER: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.6.1 = INTEGER: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.6.2 = INTEGER: 328 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.7.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.7.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.8.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.8.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.9.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.9.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.10.1 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.6.10.2 = INTEGER: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.2.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.2.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.3.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.3.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.4.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.4.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.5.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.5.2 = STRING: "INACTIVE" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.6.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.6.2 = STRING: "INACTIVE" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.7.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.7.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.8.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.8.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.9.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.9.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.10.1 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.6.1.7.10.2 = STRING: "---" +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.2.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.3.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.4.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.5.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.6.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.7.10 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.2 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.3 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.4 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.5 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.6 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.7 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.8 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.9 = Counter32: 0 +.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.7.1.8.10 = Counter32: 0 diff --git a/tests/functional/linux/os-linux-list-systemdservices.robot b/tests/robot/os/linux/local/os-linux-list-systemdservices.robot similarity index 83% rename from tests/functional/linux/os-linux-list-systemdservices.robot rename to tests/robot/os/linux/local/os-linux-list-systemdservices.robot index 30f1a5375f..f3410b9c89 100644 --- a/tests/functional/linux/os-linux-list-systemdservices.robot +++ b/tests/robot/os/linux/local/os-linux-list-systemdservices.robot @@ -1,20 +1,15 @@ *** Settings *** Documentation Linux Local list-systemdservices -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin +${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' -${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin -${PERCENT} % - -${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' *** Test Cases *** List-Systemdservices v219 ${tc}/4 @@ -23,7 +18,7 @@ List-Systemdservices v219 ${tc}/4 ${command} Catenate ... ${CMD} ... --mode=list-systemdservices - ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-219 + ... --command-path=${CURDIR}${/}systemd-219 ... --filter-name='${filtername}' ... --filter-description='${filterdescription}' @@ -46,7 +41,7 @@ List-Systemdservices v252 ${tc}/4 ${command} Catenate ... ${CMD} ... --mode=list-systemdservices - ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-252 + ... --command-path=${CURDIR}${/}systemd-252 ... --filter-name='${filtername}' ... --filter-description='${filterdescription}' diff --git a/tests/functional/linux/os-linux-system-sc-status.robot b/tests/robot/os/linux/local/os-linux-system-sc-status.robot similarity index 88% rename from tests/functional/linux/os-linux-system-sc-status.robot rename to tests/robot/os/linux/local/os-linux-system-sc-status.robot index f6de4194fe..eb03671695 100644 --- a/tests/functional/linux/os-linux-system-sc-status.robot +++ b/tests/robot/os/linux/local/os-linux-system-sc-status.robot @@ -1,20 +1,15 @@ *** Settings *** Documentation Linux Local Systemd-sc-status -Library OperatingSystem -Library String -Library Examples +# systemd changed the output format of the command starting from version 252, so we need to check for a systemd version and use the correct parameter. +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin -${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::local::plugin -# attempt to work around the interpretation of %{} as env variables instead of plugin macros -#${PERCENT} % -#${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' *** Test Cases *** Systemd-sc-status v219 ${tc}/15 @@ -23,7 +18,7 @@ Systemd-sc-status v219 ${tc}/15 ${command} Catenate ... ${CMD} ... --mode=systemd-sc-status - ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-219 + ... --command-path=${CURDIR}${/}systemd-219 ... --filter-name='${filter}' ... --exclude-name='${exclude}' ... --warning-status='${w_stat}' @@ -58,9 +53,6 @@ Systemd-sc-status v219 ${tc}/15 ... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 25 | 'total_running'=34;;;0;220 'total_failed'=1;;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;0:0;0;220 ... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 ${EMPTY} WARNING: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;0:0;;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 ... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 0 CRITICAL: Total Failed: 1 | 'total_running'=34;;;0;220 'total_failed'=1;;0:0;0;220 'total_dead'=97;;;0;220 'total_exited'=25;;;0;220 -# not working atm - # ... 6 ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING - # ... 7 ${EMPTY} ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL Systemd-sc-status v252 ${tc}/15 [Documentation] Systemd version >= 248 @@ -68,7 +60,7 @@ Systemd-sc-status v252 ${tc}/15 ${command} Catenate ... ${CMD} ... --mode=systemd-sc-status - ... --command-path=${CURDIR}${/}..${/}..${/}resources${/}linux${/}systemd-252 + ... --command-path=${CURDIR}${/}systemd-252 ... --filter-name='${filter}' ... --exclude-name='${exclude}' ... --warning-status='${w_stat}' @@ -103,8 +95,3 @@ Systemd-sc-status v252 ${tc}/15 ... 13 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} ${EMPTY} CRITICAL: Total Exited: 19 | 'total_running'=31;;;0;258 'total_failed'=4;;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;0:2;0;258 ... 14 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 ${EMPTY} WARNING: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;0:2;;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 ... 15 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} 2 CRITICAL: Total Failed: 4 | 'total_running'=31;;;0;258 'total_failed'=4;;0:2;0;258 'total_dead'=108;;;0;258 'total_exited'=19;;;0;258 - -# not working atm - # ... 6 ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} WARNING - # ... 7 ${EMPTY} ${EMPTY} ${EMPTY} ${COND} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} CRITICAL - diff --git a/tests/resources/linux/systemd-219/systemctl b/tests/robot/os/linux/local/systemd-219/systemctl similarity index 100% rename from tests/resources/linux/systemd-219/systemctl rename to tests/robot/os/linux/local/systemd-219/systemctl diff --git a/tests/resources/linux/systemd-252/systemctl b/tests/robot/os/linux/local/systemd-252/systemctl similarity index 100% rename from tests/resources/linux/systemd-252/systemctl rename to tests/robot/os/linux/local/systemd-252/systemctl diff --git a/tests/robot/os/linux/snmp/list-diskio-2.snmpwalk b/tests/robot/os/linux/snmp/list-diskio-2.snmpwalk new file mode 100644 index 0000000000..c3b009ff44 --- /dev/null +++ b/tests/robot/os/linux/snmp/list-diskio-2.snmpwalk @@ -0,0 +1,3747 @@ +.1.3.6.1.2.1.1.1.0 = STRING: Linux cray 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686 +.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.8072.3.2.10 +.1.3.6.1.2.1.1.3.0 = 121722922 +.1.3.6.1.2.1.1.4.0 = STRING: Root (configure /etc/snmp/snmp.local.conf) +.1.3.6.1.2.1.1.5.0 = STRING: new system name +.1.3.6.1.2.1.1.6.0 = STRING: KK12 (edit /etc/snmp/snmpd.conf) +.1.3.6.1.2.1.1.8.0 = 0 +.1.3.6.1.2.1.1.9.1.2.1 = OID: .1.3.6.1.6.3.11.2.3.1.1 +.1.3.6.1.2.1.1.9.1.2.2 = OID: .1.3.6.1.6.3.15.2.1.1 +.1.3.6.1.2.1.1.9.1.2.3 = OID: .1.3.6.1.6.3.10.3.1.1 +.1.3.6.1.2.1.1.9.1.2.4 = OID: .1.3.6.1.6.3.1 +.1.3.6.1.2.1.1.9.1.2.5 = OID: .1.3.6.1.2.1.49 +.1.3.6.1.2.1.1.9.1.2.6 = OID: .1.3.6.1.2.1.4 +.1.3.6.1.2.1.1.9.1.2.7 = OID: .1.3.6.1.2.1.50 +.1.3.6.1.2.1.1.9.1.2.8 = OID: .1.3.6.1.6.3.16.2.2.1 +.1.3.6.1.2.1.1.9.1.3.1 = STRING: The MIB for Message Processing and Dispatching. +.1.3.6.1.2.1.1.9.1.3.2 = STRING: The MIB for Message Processing and Dispatching. +.1.3.6.1.2.1.1.9.1.3.3 = STRING: The SNMP Management Architecture MIB. +.1.3.6.1.2.1.1.9.1.3.4 = STRING: The MIB module for SNMPv2 entities +.1.3.6.1.2.1.1.9.1.3.5 = STRING: The MIB module for managing TCP implementations +.1.3.6.1.2.1.1.9.1.3.6 = STRING: The MIB module for managing IP and ICMP implementations +.1.3.6.1.2.1.1.9.1.3.7 = STRING: The MIB module for managing UDP implementations +.1.3.6.1.2.1.1.9.1.3.8 = STRING: View-based Access Control Model for SNMP. +.1.3.6.1.2.1.1.9.1.4.1 = 0 +.1.3.6.1.2.1.1.9.1.4.2 = 0 +.1.3.6.1.2.1.1.9.1.4.3 = 0 +.1.3.6.1.2.1.1.9.1.4.4 = 0 +.1.3.6.1.2.1.1.9.1.4.5 = 0 +.1.3.6.1.2.1.1.9.1.4.6 = 0 +.1.3.6.1.2.1.1.9.1.4.7 = 0 +.1.3.6.1.2.1.1.9.1.4.8 = 0 +.1.3.6.1.2.1.2.1.0 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.2.1 = STRING: lo +.1.3.6.1.2.1.2.2.1.2.2 = STRING: eth0 +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 24 +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 16436 +.1.3.6.1.2.1.2.2.1.4.2 = INTEGER: 1500 +.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: 100000000 +.1.3.6.1.2.1.2.2.1.6.1 = STRING: +.1.3.6.1.2.1.2.2.1.6.2 = STRING: 0:12:79:62:f9:40 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.9.1 = 0 +.1.3.6.1.2.1.2.2.1.9.2 = 0 +.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 3651043677 +.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 1914489014 +.1.3.6.1.2.1.2.2.1.11.1 = Counter32: 17979662 +.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 326497672 +.1.3.6.1.2.1.2.2.1.12.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.2 = 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.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.15.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 3651043677 +.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 2295707401 +.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 17979662 +.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 240979609 +.1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.2 = 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: 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.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.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.3.1.1.1.2.1.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.3.1.1.2.2.1.195.218.254.97 = Hex-STRING: 00 0E 84 9F 9C 19 +.1.3.6.1.2.1.3.1.1.3.2.1.195.218.254.97 = IpAddress: 195.218.254.97 +.1.3.6.1.2.1.4.1.0 = INTEGER: 2 +.1.3.6.1.2.1.4.2.0 = INTEGER: 64 +.1.3.6.1.2.1.4.3.0 = Counter32: 337456326 +.1.3.6.1.2.1.4.4.0 = Counter32: 0 +.1.3.6.1.2.1.4.5.0 = Counter32: 502838 +.1.3.6.1.2.1.4.6.0 = Counter32: 0 +.1.3.6.1.2.1.4.7.0 = Counter32: 0 +.1.3.6.1.2.1.4.8.0 = Counter32: 0 +.1.3.6.1.2.1.4.9.0 = Counter32: 336867885 +.1.3.6.1.2.1.4.10.0 = Counter32: 246842684 +.1.3.6.1.2.1.4.11.0 = Counter32: 0 +.1.3.6.1.2.1.4.12.0 = Counter32: 0 +.1.3.6.1.2.1.4.13.0 = INTEGER: 30 +.1.3.6.1.2.1.4.14.0 = Counter32: 2095 +.1.3.6.1.2.1.4.15.0 = Counter32: 1040 +.1.3.6.1.2.1.4.16.0 = Counter32: 0 +.1.3.6.1.2.1.4.17.0 = Counter32: 96105 +.1.3.6.1.2.1.4.18.0 = Counter32: 0 +.1.3.6.1.2.1.4.19.0 = Counter32: 2142577 +.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.4.20.1.1.195.218.254.105 = IpAddress: 195.218.254.105 +.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.195.218.254.105 = INTEGER: 2 +.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0 +.1.3.6.1.2.1.4.20.1.3.195.218.254.105 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = INTEGER: 0 +.1.3.6.1.2.1.4.20.1.4.195.218.254.105 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.1.127.0.0.0 = IpAddress: 127.0.0.0 +.1.3.6.1.2.1.4.21.1.1.195.218.254.0 = IpAddress: 195.218.254.0 +.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.2.127.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.2.195.218.254.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.3.127.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.195.218.254.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = IpAddress: 195.218.254.97 +.1.3.6.1.2.1.4.21.1.7.127.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.195.218.254.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.21.1.8.127.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.195.218.254.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.127.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.195.218.254.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.11.127.0.0.0 = IpAddress: 255.0.0.0 +.1.3.6.1.2.1.4.21.1.11.195.218.254.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.127.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.195.218.254.0 = OID: .0.0 +.1.3.6.1.2.1.4.22.1.1.2.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.4.22.1.2.2.195.218.254.97 = STRING: 0:e:84:9f:9c:19 +.1.3.6.1.2.1.4.22.1.3.2.195.218.254.97 = IpAddress: 195.218.254.97 +.1.3.6.1.2.1.4.22.1.4.2.195.218.254.97 = INTEGER: 3 +.1.3.6.1.2.1.4.23.0 = Counter32: 0 +.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 127.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 195.218.254.0 +.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 0.0.0.255 +.1.3.6.1.2.1.4.24.4.1.2.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 0.255.255.255 +.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.195.218.254.97 = IpAddress: 195.218.254.97 +.1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.0.0.0.255.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.195.218.254.0.0.255.255.255.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.5.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 4 +.1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.195.218.254.97 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.0.0.0.255.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.195.218.254.0.0.255.255.255.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.0.0.0.255.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.195.218.254.0.0.255.255.255.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.6.0 = Gauge32: 6 +.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.3.0.0.1.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.195.218.254.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.25.0 = INTEGER: 2 +.1.3.6.1.2.1.4.26.0 = INTEGER: 64 +.1.3.6.1.2.1.4.31.1.1.3.1 = Counter32: 337452904 +.1.3.6.1.2.1.4.31.1.1.3.2 = Counter32: 82494 +.1.3.6.1.2.1.4.31.1.1.4.1 = Counter64: 337452904 +.1.3.6.1.2.1.4.31.1.1.4.2 = Counter64: 82494 +.1.3.6.1.2.1.4.31.1.1.5.2 = Counter32: 16107769 +.1.3.6.1.2.1.4.31.1.1.6.2 = Counter64: 16107769 +.1.3.6.1.2.1.4.31.1.1.7.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.7.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.9.1 = Counter32: 502838 +.1.3.6.1.2.1.4.31.1.1.9.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.13.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.14.1 = Counter32: 2095 +.1.3.6.1.2.1.4.31.1.1.14.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.15.1 = Counter32: 1040 +.1.3.6.1.2.1.4.31.1.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.18.1 = Counter32: 336864463 +.1.3.6.1.2.1.4.31.1.1.18.2 = Counter32: 82494 +.1.3.6.1.2.1.4.31.1.1.19.1 = Counter64: 336864463 +.1.3.6.1.2.1.4.31.1.1.19.2 = Counter64: 82494 +.1.3.6.1.2.1.4.31.1.1.20.1 = Counter32: 246839263 +.1.3.6.1.2.1.4.31.1.1.20.2 = Counter32: 82500 +.1.3.6.1.2.1.4.31.1.1.21.1 = Counter64: 246839263 +.1.3.6.1.2.1.4.31.1.1.21.2 = Counter64: 82500 +.1.3.6.1.2.1.4.31.1.1.22.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.22.2 = Counter32: 79095 +.1.3.6.1.2.1.4.31.1.1.23.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.23.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.24.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.24.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.25.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.25.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.26.1 = Counter32: 96105 +.1.3.6.1.2.1.4.31.1.1.26.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.27.1 = Counter32: 96105 +.1.3.6.1.2.1.4.31.1.1.27.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.29.1 = Counter32: 2142577 +.1.3.6.1.2.1.4.31.1.1.29.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.30.1 = Counter32: 248885735 +.1.3.6.1.2.1.4.31.1.1.30.2 = Counter32: 3405 +.1.3.6.1.2.1.4.31.1.1.31.1 = Counter64: 248885735 +.1.3.6.1.2.1.4.31.1.1.31.2 = Counter64: 3405 +.1.3.6.1.2.1.4.31.1.1.32.2 = Counter32: 16108153 +.1.3.6.1.2.1.4.31.1.1.33.2 = Counter64: 16108153 +.1.3.6.1.2.1.4.31.1.1.34.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.34.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.35.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.35.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.36.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.37.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.38.1 = Counter32: 18 +.1.3.6.1.2.1.4.31.1.1.38.2 = Counter32: 8 +.1.3.6.1.2.1.4.31.1.1.39.1 = Counter64: 18 +.1.3.6.1.2.1.4.31.1.1.39.2 = Counter64: 8 +.1.3.6.1.2.1.4.31.1.1.40.2 = Counter32: 536 +.1.3.6.1.2.1.4.31.1.1.41.2 = Counter64: 536 +.1.3.6.1.2.1.4.31.1.1.42.1 = Counter32: 13953 +.1.3.6.1.2.1.4.31.1.1.43.1 = Counter64: 13953 +.1.3.6.1.2.1.4.31.1.1.44.1 = Counter32: 49 +.1.3.6.1.2.1.4.31.1.1.45.1 = Counter64: 49 +.1.3.6.1.2.1.4.31.1.1.46.1 = 0 +.1.3.6.1.2.1.4.31.1.1.46.2 = 0 +.1.3.6.1.2.1.4.31.1.1.47.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.1.1.47.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.2.0 = 0 +.1.3.6.1.2.1.4.31.3.1.3.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.1 = Counter32: 82494 +.1.3.6.1.2.1.4.31.3.1.7.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.21.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.21.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.1 = Counter32: 82494 +.1.3.6.1.2.1.4.31.3.1.26.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.1 = Counter32: 82494 +.1.3.6.1.2.1.4.31.3.1.27.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.30.2.1 = Counter32: 4294884802 +.1.3.6.1.2.1.4.31.3.1.30.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.31.2.1 = Counter64: 18446744073709469122 +.1.3.6.1.2.1.4.31.3.1.31.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.32.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.32.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.33.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.33.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.38.2.1 = Counter32: 82494 +.1.3.6.1.2.1.4.31.3.1.38.2.2 = Counter32: 6 +.1.3.6.1.2.1.4.31.3.1.39.2.1 = Counter64: 82494 +.1.3.6.1.2.1.4.31.3.1.39.2.2 = Counter64: 6 +.1.3.6.1.2.1.4.31.3.1.40.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.40.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.41.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.41.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.46.2.1 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.2 = 0 +.1.3.6.1.2.1.4.31.3.1.47.2.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.33.0 = INTEGER: 465941894 +.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.105 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.1.4.195.218.254.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.105 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.195.218.254.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +.1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.105 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.195.218.254.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.195.218.254.255 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.195.218.254.0.24 +.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = OID: .1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.105 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.195.218.254.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.105 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.195.218.254.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.105 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.195.218.254.255 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.105 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.195.218.254.255 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = 0 +.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.105 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.195.218.254.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.105 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.195.218.254.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64 = INTEGER: 4 +.1.3.6.1.2.1.4.35.1.4.2.1.4.195.218.254.97 = STRING: 0:e:84:9f:9c:19 +.1.3.6.1.2.1.4.35.1.5.2.1.4.195.218.254.97 = 282 +.1.3.6.1.2.1.4.35.1.6.2.1.4.195.218.254.97 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.7.2.1.4.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.2.1.4.195.218.254.97 = INTEGER: 1 +.1.3.6.1.2.1.4.36.1.2.2 = Gauge32: 2 +.1.3.6.1.2.1.4.36.1.3.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.2 = Gauge32: 0 +.1.3.6.1.2.1.5.1.0 = Counter32: 63631 +.1.3.6.1.2.1.5.2.0 = Counter32: 1153 +.1.3.6.1.2.1.5.3.0 = Counter32: 52531 +.1.3.6.1.2.1.5.4.0 = Counter32: 9467 +.1.3.6.1.2.1.5.5.0 = Counter32: 0 +.1.3.6.1.2.1.5.6.0 = Counter32: 0 +.1.3.6.1.2.1.5.7.0 = Counter32: 0 +.1.3.6.1.2.1.5.8.0 = Counter32: 18 +.1.3.6.1.2.1.5.9.0 = Counter32: 1603 +.1.3.6.1.2.1.5.10.0 = Counter32: 0 +.1.3.6.1.2.1.5.11.0 = Counter32: 0 +.1.3.6.1.2.1.5.12.0 = Counter32: 0 +.1.3.6.1.2.1.5.13.0 = Counter32: 0 +.1.3.6.1.2.1.5.14.0 = Counter32: 113055 +.1.3.6.1.2.1.5.15.0 = Counter32: 0 +.1.3.6.1.2.1.5.16.0 = Counter32: 111352 +.1.3.6.1.2.1.5.17.0 = Counter32: 0 +.1.3.6.1.2.1.5.18.0 = Counter32: 0 +.1.3.6.1.2.1.5.19.0 = Counter32: 0 +.1.3.6.1.2.1.5.20.0 = Counter32: 0 +.1.3.6.1.2.1.5.21.0 = Counter32: 1685 +.1.3.6.1.2.1.5.22.0 = Counter32: 18 +.1.3.6.1.2.1.5.23.0 = Counter32: 0 +.1.3.6.1.2.1.5.24.0 = Counter32: 0 +.1.3.6.1.2.1.5.25.0 = Counter32: 0 +.1.3.6.1.2.1.5.26.0 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.2.1 = Counter32: 63631 +.1.3.6.1.2.1.5.29.1.2.2 = Counter32: 161 +.1.3.6.1.2.1.5.29.1.3.1 = Counter32: 1153 +.1.3.6.1.2.1.5.29.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.4.1 = Counter32: 113055 +.1.3.6.1.2.1.5.29.1.4.2 = Counter32: 167 +.1.3.6.1.2.1.5.29.1.5.1 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.5.2 = Counter32: 151 +.1.3.6.1.2.1.5.30.1.3.1.0 = Counter32: 1603 +.1.3.6.1.2.1.5.30.1.3.1.3 = Counter32: 52531 +.1.3.6.1.2.1.5.30.1.3.1.8 = Counter32: 18 +.1.3.6.1.2.1.5.30.1.3.1.11 = Counter32: 9467 +.1.3.6.1.2.1.5.30.1.3.2.1 = Counter32: 151 +.1.3.6.1.2.1.5.30.1.3.2.128 = Counter32: 5 +.1.3.6.1.2.1.5.30.1.3.2.129 = Counter32: 5 +.1.3.6.1.2.1.5.30.1.4.1.0 = Counter32: 18 +.1.3.6.1.2.1.5.30.1.4.1.3 = Counter32: 111352 +.1.3.6.1.2.1.5.30.1.4.1.8 = Counter32: 1685 +.1.3.6.1.2.1.5.30.1.4.2.1 = Counter32: 151 +.1.3.6.1.2.1.5.30.1.4.2.128 = Counter32: 5 +.1.3.6.1.2.1.5.30.1.4.2.129 = Counter32: 5 +.1.3.6.1.2.1.5.30.1.4.2.133 = Counter32: 3 +.1.3.6.1.2.1.5.30.1.4.2.135 = Counter32: 1 +.1.3.6.1.2.1.5.30.1.4.2.143 = Counter32: 2 +.1.3.6.1.2.1.6.1.0 = INTEGER: 1 +.1.3.6.1.2.1.6.2.0 = INTEGER: 200 +.1.3.6.1.2.1.6.3.0 = INTEGER: 120000 +.1.3.6.1.2.1.6.4.0 = INTEGER: -1 +.1.3.6.1.2.1.6.5.0 = Counter32: 975732 +.1.3.6.1.2.1.6.6.0 = Counter32: 428005 +.1.3.6.1.2.1.6.7.0 = Counter32: 3323 +.1.3.6.1.2.1.6.8.0 = Counter32: 25964 +.1.3.6.1.2.1.6.9.0 = Gauge32: 9 +.1.3.6.1.2.1.6.10.0 = Counter32: 328629333 +.1.3.6.1.2.1.6.11.0 = Counter32: 247688424 +.1.3.6.1.2.1.6.12.0 = Counter32: 85162 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.25.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.37.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.111.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.113.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.587.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.127.0.0.1.53.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.127.0.0.1.631.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.127.0.0.1.953.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.53.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.1.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.25.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.37.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.111.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.113.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.587.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.1004.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.2049.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.6000.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.34144.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.47017.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.57163.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.127.0.0.1.53.0.0.0.0.0 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.6.13.1.2.127.0.0.1.631.0.0.0.0.0 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.6.13.1.2.127.0.0.1.953.0.0.0.0.0 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.6.13.1.2.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.6.13.1.2.127.0.0.1.8118.0.0.0.0.0 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.22.195.218.195.227.2583 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.53.0.0.0.0.0 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.32973.194.67.1.250.993 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.33283.10.105.41.24.3389 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.35719.194.67.2.106.5222 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.42313.74.125.143.101.443 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.42383.64.12.30.89.5190 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.49715.173.194.69.125.5222 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.56014.74.125.232.50.443 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.2.195.218.254.105.57822.194.67.3.9.22 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.25.0.0.0.0.0 = INTEGER: 25 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.37.0.0.0.0.0 = INTEGER: 37 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.111.0.0.0.0.0 = INTEGER: 111 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.113.0.0.0.0.0 = INTEGER: 113 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.587.0.0.0.0.0 = INTEGER: 587 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 1004 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 2049 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 6000 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 34144 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 47017 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 57163 +.1.3.6.1.2.1.6.13.1.3.127.0.0.1.53.0.0.0.0.0 = INTEGER: 53 +.1.3.6.1.2.1.6.13.1.3.127.0.0.1.631.0.0.0.0.0 = INTEGER: 631 +.1.3.6.1.2.1.6.13.1.3.127.0.0.1.953.0.0.0.0.0 = INTEGER: 953 +.1.3.6.1.2.1.6.13.1.3.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 1024 +.1.3.6.1.2.1.6.13.1.3.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 8118 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.53.0.0.0.0.0 = INTEGER: 53 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 32973 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 33283 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 35719 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 42313 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 42383 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 49715 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 56014 +.1.3.6.1.2.1.6.13.1.3.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 57822 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.25.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.37.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.111.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.113.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.587.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.1004.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.2049.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.6000.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.34144.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.47017.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.57163.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.127.0.0.1.53.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.127.0.0.1.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.127.0.0.1.953.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.127.0.0.1.8118.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.22.195.218.195.227.2583 = IpAddress: 195.218.195.227 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.53.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.32973.194.67.1.250.993 = IpAddress: 194.67.1.250 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.33283.10.105.41.24.3389 = IpAddress: 10.105.41.24 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.35719.194.67.2.106.5222 = IpAddress: 194.67.2.106 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.42313.74.125.143.101.443 = IpAddress: 74.125.143.101 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.42383.64.12.30.89.5190 = IpAddress: 64.12.30.89 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.49715.173.194.69.125.5222 = IpAddress: 173.194.69.125 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.56014.74.125.232.50.443 = IpAddress: 74.125.232.50 +.1.3.6.1.2.1.6.13.1.4.195.218.254.105.57822.194.67.3.9.22 = IpAddress: 194.67.3.9 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.25.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.37.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.111.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.113.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.587.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.1004.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.2049.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.6000.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.34144.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.47017.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.57163.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.127.0.0.1.53.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.127.0.0.1.631.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.127.0.0.1.953.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.127.0.0.1.8118.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.22.195.218.195.227.2583 = INTEGER: 2583 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.53.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.32973.194.67.1.250.993 = INTEGER: 993 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.33283.10.105.41.24.3389 = INTEGER: 3389 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.35719.194.67.2.106.5222 = INTEGER: 5222 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.42313.74.125.143.101.443 = INTEGER: 443 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.42383.64.12.30.89.5190 = INTEGER: 5190 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.49715.173.194.69.125.5222 = INTEGER: 5222 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.56014.74.125.232.50.443 = INTEGER: 443 +.1.3.6.1.2.1.6.13.1.5.195.218.254.105.57822.194.67.3.9.22 = INTEGER: 22 +.1.3.6.1.2.1.6.14.0 = Counter32: 6 +.1.3.6.1.2.1.6.15.0 = Counter32: 39280 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.22.1.4.195.218.195.227.2583 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.32973.1.4.194.67.1.250.993 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.33283.1.4.10.105.41.24.3389 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.35719.1.4.194.67.2.106.5222 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.42313.1.4.74.125.143.101.443 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.42383.1.4.64.12.30.89.5190 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.49715.1.4.173.194.69.125.5222 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.56014.1.4.74.125.232.50.443 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.7.1.4.195.218.254.105.57822.1.4.194.67.3.9.22 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.22.1.4.195.218.195.227.2583 = Gauge32: 30187 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.32973.1.4.194.67.1.250.993 = Gauge32: 21203 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.33283.1.4.10.105.41.24.3389 = Gauge32: 27422 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.35719.1.4.194.67.2.106.5222 = Gauge32: 24819 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.42313.1.4.74.125.143.101.443 = Gauge32: 28010 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.42383.1.4.64.12.30.89.5190 = Gauge32: 24819 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.49715.1.4.173.194.69.125.5222 = Gauge32: 24819 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.56014.1.4.74.125.232.50.443 = Gauge32: 28010 +.1.3.6.1.2.1.6.19.1.8.1.4.195.218.254.105.57822.1.4.194.67.3.9.22 = Gauge32: 15251 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22 = Gauge32: 1648 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.25 = Gauge32: 1899 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.37 = Gauge32: 1643 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.111 = Gauge32: 1586 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.113 = Gauge32: 1643 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.587 = Gauge32: 1899 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.1004 = Gauge32: 1672 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.2049 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.6000 = Gauge32: 6137 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.34144 = Gauge32: 1590 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.47017 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.57163 = Gauge32: 1688 +.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.53 = Gauge32: 1651 +.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.631 = Gauge32: 1889 +.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.953 = Gauge32: 1651 +.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.1024 = Gauge32: 15251 +.1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.8118 = Gauge32: 17901 +.1.3.6.1.2.1.6.20.1.4.1.4.195.218.254.105.53 = Gauge32: 1651 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22 = Gauge32: 1648 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.80 = Gauge32: 1932 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6000 = Gauge32: 6137 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.631 = Gauge32: 1889 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.953 = Gauge32: 1651 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.1024 = Gauge32: 15251 +.1.3.6.1.2.1.7.1.0 = Counter32: 8220816 +.1.3.6.1.2.1.7.2.0 = Counter32: 37564 +.1.3.6.1.2.1.7.3.0 = Counter32: 1 +.1.3.6.1.2.1.7.4.0 = Counter32: 8960543 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.37 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.111 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.123 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.631 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.918 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.1001 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.2049 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.34860 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.40481 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.46090 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.57149 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.127.0.0.1.53 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.7.5.1.1.127.0.0.1.123 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.7.5.1.1.127.0.0.1.161 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.7.5.1.1.195.218.254.105.53 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.7.5.1.1.195.218.254.105.123 = IpAddress: 195.218.254.105 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.37 = INTEGER: 37 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.111 = INTEGER: 111 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.123 = INTEGER: 123 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.631 = INTEGER: 631 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.918 = INTEGER: 918 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.1001 = INTEGER: 1001 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.2049 = INTEGER: 2049 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.34860 = INTEGER: 34860 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.40481 = INTEGER: 40481 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.46090 = INTEGER: 46090 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.57149 = INTEGER: 57149 +.1.3.6.1.2.1.7.5.1.2.127.0.0.1.53 = INTEGER: 53 +.1.3.6.1.2.1.7.5.1.2.127.0.0.1.123 = INTEGER: 123 +.1.3.6.1.2.1.7.5.1.2.127.0.0.1.161 = INTEGER: 161 +.1.3.6.1.2.1.7.5.1.2.195.218.254.105.53 = INTEGER: 53 +.1.3.6.1.2.1.7.5.1.2.195.218.254.105.123 = INTEGER: 123 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.37.1.4.0.0.0.0.0.5073 = Gauge32: 1643 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.111.1.4.0.0.0.0.0.5127 = Gauge32: 1586 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.123.1.4.0.0.0.0.0.6267 = Gauge32: 1709 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.631.1.4.0.0.0.0.0.93602972 = Gauge32: 1889 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.918.1.4.0.0.0.0.0.5138 = Gauge32: 1590 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.1001.1.4.0.0.0.0.0.6175 = Gauge32: 1672 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.2049.1.4.0.0.0.0.0.5209 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.34860.1.4.0.0.0.0.0.6207 = Gauge32: 1688 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.40481.1.4.0.0.0.0.0.341634558 = Gauge32: 30254 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.46090.1.4.0.0.0.0.0.5217 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.57149.1.4.0.0.0.0.0.5041 = Gauge32: 1590 +.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.53.1.4.0.0.0.0.0.5113 = Gauge32: 1651 +.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.123.1.4.0.0.0.0.0.6274 = Gauge32: 1709 +.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.161.1.4.0.0.0.0.0.320468325 = Gauge32: 28066 +.1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.53.1.4.0.0.0.0.0.5115 = Gauge32: 1651 +.1.3.6.1.2.1.7.7.1.8.1.4.195.218.254.105.123.1.4.0.0.0.0.0.6275 = Gauge32: 1709 +.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6268 = Gauge32: 1709 +.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6277 = Gauge32: 1709 +.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.161.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.320468326 = Gauge32: 28066 +.1.3.6.1.2.1.7.7.1.8.2.16.254.128.0.0.0.0.0.0.2.18.121.255.254.98.249.64.123.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6276 = Gauge32: 1709 +.1.3.6.1.2.1.11.1.0 = Counter32: 84734 +.1.3.6.1.2.1.11.2.0 = Counter32: 84734 +.1.3.6.1.2.1.11.3.0 = Counter32: 0 +.1.3.6.1.2.1.11.4.0 = Counter32: 0 +.1.3.6.1.2.1.11.5.0 = Counter32: 0 +.1.3.6.1.2.1.11.6.0 = Counter32: 0 +.1.3.6.1.2.1.11.8.0 = Counter32: 0 +.1.3.6.1.2.1.11.9.0 = Counter32: 0 +.1.3.6.1.2.1.11.10.0 = Counter32: 0 +.1.3.6.1.2.1.11.11.0 = Counter32: 0 +.1.3.6.1.2.1.11.12.0 = Counter32: 0 +.1.3.6.1.2.1.11.13.0 = Counter32: 84744 +.1.3.6.1.2.1.11.14.0 = Counter32: 0 +.1.3.6.1.2.1.11.15.0 = Counter32: 5 +.1.3.6.1.2.1.11.16.0 = Counter32: 84743 +.1.3.6.1.2.1.11.17.0 = Counter32: 0 +.1.3.6.1.2.1.11.18.0 = Counter32: 0 +.1.3.6.1.2.1.11.19.0 = Counter32: 0 +.1.3.6.1.2.1.11.20.0 = Counter32: 0 +.1.3.6.1.2.1.11.21.0 = Counter32: 0 +.1.3.6.1.2.1.11.22.0 = Counter32: 0 +.1.3.6.1.2.1.11.24.0 = Counter32: 0 +.1.3.6.1.2.1.11.25.0 = Counter32: 0 +.1.3.6.1.2.1.11.26.0 = Counter32: 0 +.1.3.6.1.2.1.11.27.0 = Counter32: 0 +.1.3.6.1.2.1.11.28.0 = Counter32: 84758 +.1.3.6.1.2.1.11.29.0 = Counter32: 0 +.1.3.6.1.2.1.11.30.0 = INTEGER: 2 +.1.3.6.1.2.1.11.31.0 = Counter32: 0 +.1.3.6.1.2.1.11.32.0 = Counter32: 0 +.1.3.6.1.2.1.25.1.1.0 = 1980283918 +.1.3.6.1.2.1.25.1.2.0 = STRING: 2012-10-2,19:27:28.0,-4:0 +.1.3.6.1.2.1.25.1.3.0 = INTEGER: 1536 +.1.3.6.1.2.1.25.1.4.0 = STRING: "auto BOOT_IMAGE=Linux ro root=801" +.1.3.6.1.2.1.25.1.5.0 = Gauge32: 16 +.1.3.6.1.2.1.25.1.7.0 = INTEGER: 0 +.1.3.6.1.2.1.25.2.2.0 = INTEGER: 1011344 +.1.3.6.1.2.1.25.2.3.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.2.3.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.2.3.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.2.3.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.2.3.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.2.3.1.1.31 = INTEGER: 31 +.1.3.6.1.2.1.25.2.3.1.1.32 = INTEGER: 32 +.1.3.6.1.2.1.25.2.3.1.1.33 = INTEGER: 33 +.1.3.6.1.2.1.25.2.3.1.2.1 = OID: .1.3.6.1.2.1.25.2.1.2 +.1.3.6.1.2.1.25.2.3.1.2.3 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.6 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.7 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.10 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.31 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.32 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.33 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.3.1 = STRING: Physical memory +.1.3.6.1.2.1.25.2.3.1.3.3 = STRING: Virtual memory +.1.3.6.1.2.1.25.2.3.1.3.6 = STRING: Memory buffers +.1.3.6.1.2.1.25.2.3.1.3.7 = STRING: Cached memory +.1.3.6.1.2.1.25.2.3.1.3.10 = STRING: Swap space +.1.3.6.1.2.1.25.2.3.1.3.31 = STRING: / +.1.3.6.1.2.1.25.2.3.1.3.32 = STRING: /usr/local +.1.3.6.1.2.1.25.2.3.1.3.33 = STRING: /export +.1.3.6.1.2.1.25.2.3.1.4.1 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.3 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.6 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.7 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.10 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.31 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.32 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.33 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 1011344 +.1.3.6.1.2.1.25.2.3.1.5.3 = INTEGER: 1999336 +.1.3.6.1.2.1.25.2.3.1.5.6 = INTEGER: 1011344 +.1.3.6.1.2.1.25.2.3.1.5.7 = INTEGER: 288160 +.1.3.6.1.2.1.25.2.3.1.5.10 = INTEGER: 987992 +.1.3.6.1.2.1.25.2.3.1.5.31 = INTEGER: 2164327 +.1.3.6.1.2.1.25.2.3.1.5.32 = INTEGER: 16822765 +.1.3.6.1.2.1.25.2.3.1.5.33 = INTEGER: 96144541 +.1.3.6.1.2.1.25.2.3.1.6.1 = INTEGER: 611892 +.1.3.6.1.2.1.25.2.3.1.6.3 = INTEGER: 776480 +.1.3.6.1.2.1.25.2.3.1.6.6 = INTEGER: 24024 +.1.3.6.1.2.1.25.2.3.1.6.7 = INTEGER: 288160 +.1.3.6.1.2.1.25.2.3.1.6.10 = INTEGER: 164588 +.1.3.6.1.2.1.25.2.3.1.6.31 = INTEGER: 2031594 +.1.3.6.1.2.1.25.2.3.1.6.32 = INTEGER: 13799546 +.1.3.6.1.2.1.25.2.3.1.6.33 = INTEGER: 84733159 +.1.3.6.1.2.1.25.3.2.1.1.768 = INTEGER: 768 +.1.3.6.1.2.1.25.3.2.1.1.769 = INTEGER: 769 +.1.3.6.1.2.1.25.3.2.1.1.1025 = INTEGER: 1025 +.1.3.6.1.2.1.25.3.2.1.1.1026 = INTEGER: 1026 +.1.3.6.1.2.1.25.3.2.1.1.1280 = INTEGER: 1280 +.1.3.6.1.2.1.25.3.2.1.1.1281 = INTEGER: 1281 +.1.3.6.1.2.1.25.3.2.1.1.1282 = INTEGER: 1282 +.1.3.6.1.2.1.25.3.2.1.1.1552 = INTEGER: 1552 +.1.3.6.1.2.1.25.3.2.1.1.1553 = INTEGER: 1553 +.1.3.6.1.2.1.25.3.2.1.1.3072 = INTEGER: 3072 +.1.3.6.1.2.1.25.3.2.1.2.768 = OID: .1.3.6.1.2.1.25.3.1.3 +.1.3.6.1.2.1.25.3.2.1.2.769 = OID: .1.3.6.1.2.1.25.3.1.3 +.1.3.6.1.2.1.25.3.2.1.2.1025 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.1026 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.1280 = OID: .1.3.6.1.2.1.25.3.1.5 +.1.3.6.1.2.1.25.3.2.1.2.1281 = OID: .1.3.6.1.2.1.25.3.1.5 +.1.3.6.1.2.1.25.3.2.1.2.1282 = OID: .1.3.6.1.2.1.25.3.1.5 +.1.3.6.1.2.1.25.3.2.1.2.1552 = OID: .1.3.6.1.2.1.25.3.1.6 +.1.3.6.1.2.1.25.3.2.1.2.1553 = OID: .1.3.6.1.2.1.25.3.1.6 +.1.3.6.1.2.1.25.3.2.1.2.3072 = OID: .1.3.6.1.2.1.25.3.1.12 +.1.3.6.1.2.1.25.3.2.1.3.768 = STRING: GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz +.1.3.6.1.2.1.25.3.2.1.3.769 = STRING: GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz +.1.3.6.1.2.1.25.3.2.1.3.1025 = STRING: network interface lo +.1.3.6.1.2.1.25.3.2.1.3.1026 = STRING: network interface eth0 +.1.3.6.1.2.1.25.3.2.1.3.1280 = STRING: xerox +.1.3.6.1.2.1.25.3.2.1.3.1281 = STRING: lj +.1.3.6.1.2.1.25.3.2.1.3.1282 = STRING: ljc +.1.3.6.1.2.1.25.3.2.1.3.1552 = STRING: SCSI disk (/dev/sda) +.1.3.6.1.2.1.25.3.2.1.3.1553 = STRING: SCSI disk (/dev/sdb) +.1.3.6.1.2.1.25.3.2.1.3.3072 = STRING: Guessing that there's a floating point co-processor +.1.3.6.1.2.1.25.3.2.1.4.768 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.769 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1025 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1026 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1280 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1281 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1282 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1552 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.1553 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.3072 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.5.768 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.769 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.1025 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.1026 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.1280 = INTEGER: 1 +.1.3.6.1.2.1.25.3.2.1.5.1281 = INTEGER: 1 +.1.3.6.1.2.1.25.3.2.1.5.1282 = INTEGER: 1 +.1.3.6.1.2.1.25.3.2.1.6.1025 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.1026 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.1280 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.1281 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.1282 = Counter32: 0 +.1.3.6.1.2.1.25.3.3.1.1.768 = OID: .0.0 +.1.3.6.1.2.1.25.3.3.1.1.769 = OID: .0.0 +.1.3.6.1.2.1.25.3.3.1.2.768 = INTEGER: 6 +.1.3.6.1.2.1.25.3.3.1.2.769 = INTEGER: 16 +.1.3.6.1.2.1.25.3.4.1.1.1025 = INTEGER: 1 +.1.3.6.1.2.1.25.3.4.1.1.1026 = INTEGER: 2 +.1.3.6.1.2.1.25.3.5.1.1.1280 = INTEGER: 2 +.1.3.6.1.2.1.25.3.5.1.1.1281 = INTEGER: 2 +.1.3.6.1.2.1.25.3.5.1.1.1282 = INTEGER: 2 +.1.3.6.1.2.1.25.3.6.1.1.1552 = INTEGER: 1 +.1.3.6.1.2.1.25.3.6.1.1.1553 = INTEGER: 1 +.1.3.6.1.2.1.25.3.6.1.2.1552 = INTEGER: 2 +.1.3.6.1.2.1.25.3.6.1.2.1553 = INTEGER: 2 +.1.3.6.1.2.1.25.3.6.1.3.1552 = INTEGER: 2 +.1.3.6.1.2.1.25.3.6.1.3.1553 = INTEGER: 2 +.1.3.6.1.2.1.25.3.6.1.4.1552 = INTEGER: 78150744 +.1.3.6.1.2.1.25.3.6.1.4.1553 = INTEGER: 390711384 +.1.3.6.1.2.1.25.3.7.1.1.1552.1 = INTEGER: 1 +.1.3.6.1.2.1.25.3.7.1.1.1552.2 = INTEGER: 2 +.1.3.6.1.2.1.25.3.7.1.1.1552.3 = INTEGER: 3 +.1.3.6.1.2.1.25.3.7.1.1.1553.1 = INTEGER: 1 +.1.3.6.1.2.1.25.3.7.1.2.1552.1 = STRING: "/dev/sda1" +.1.3.6.1.2.1.25.3.7.1.2.1552.2 = STRING: "/dev/sda2" +.1.3.6.1.2.1.25.3.7.1.2.1552.3 = STRING: "/dev/sda3" +.1.3.6.1.2.1.25.3.7.1.2.1553.1 = STRING: "/dev/sdb1" +.1.3.6.1.2.1.25.3.7.1.3.1552.1 = STRING: "0x801" +.1.3.6.1.2.1.25.3.7.1.3.1552.2 = STRING: "0x802" +.1.3.6.1.2.1.25.3.7.1.3.1552.3 = STRING: "0x803" +.1.3.6.1.2.1.25.3.7.1.3.1553.1 = STRING: "0x811" +.1.3.6.1.2.1.25.3.7.1.4.1552.1 = INTEGER: 0 +.1.3.6.1.2.1.25.3.7.1.4.1552.2 = INTEGER: 0 +.1.3.6.1.2.1.25.3.7.1.4.1552.3 = INTEGER: 67291060 +.1.3.6.1.2.1.25.3.7.1.4.1553.1 = INTEGER: 384578164 +.1.3.6.1.2.1.25.3.7.1.5.1552.1 = INTEGER: 0 +.1.3.6.1.2.1.25.3.7.1.5.1552.2 = INTEGER: 0 +.1.3.6.1.2.1.25.3.7.1.5.1552.3 = INTEGER: 2 +.1.3.6.1.2.1.25.3.7.1.5.1553.1 = INTEGER: 3 +.1.3.6.1.2.1.25.3.8.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.3.8.1.2.1 = STRING: "/" +.1.3.6.1.2.1.25.3.8.1.2.2 = STRING: "/usr/local" +.1.3.6.1.2.1.25.3.8.1.2.3 = STRING: "/export" +.1.3.6.1.2.1.25.3.8.1.3.1 = "" +.1.3.6.1.2.1.25.3.8.1.3.2 = "" +.1.3.6.1.2.1.25.3.8.1.3.3 = "" +.1.3.6.1.2.1.25.3.8.1.4.1 = OID: .1.3.6.1.2.1.25.3.9.23 +.1.3.6.1.2.1.25.3.8.1.4.2 = OID: .1.3.6.1.2.1.25.3.9.23 +.1.3.6.1.2.1.25.3.8.1.4.3 = OID: .1.3.6.1.2.1.25.3.9.23 +.1.3.6.1.2.1.25.3.8.1.5.1 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.2 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.3 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.1 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.2 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.3 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.7.1 = INTEGER: 31 +.1.3.6.1.2.1.25.3.8.1.7.2 = INTEGER: 32 +.1.3.6.1.2.1.25.3.8.1.7.3 = INTEGER: 33 +.1.3.6.1.2.1.25.3.8.1.8.1 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.3.8.1.8.2 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.3.8.1.8.3 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.3.8.1.9.1 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.3.8.1.9.2 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.3.8.1.9.3 = STRING: 0-1-1,0:0:0.0 +.1.3.6.1.2.1.25.4.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.4.2.1.1.1173 = INTEGER: 1173 +.1.3.6.1.2.1.25.4.2.1.1.1456 = INTEGER: 1456 +.1.3.6.1.2.1.25.4.2.1.1.1461 = INTEGER: 1461 +.1.3.6.1.2.1.25.4.2.1.1.1586 = INTEGER: 1586 +.1.3.6.1.2.1.25.4.2.1.1.1590 = INTEGER: 1590 +.1.3.6.1.2.1.25.4.2.1.1.1643 = INTEGER: 1643 +.1.3.6.1.2.1.25.4.2.1.1.1648 = INTEGER: 1648 +.1.3.6.1.2.1.25.4.2.1.1.1651 = INTEGER: 1651 +.1.3.6.1.2.1.25.4.2.1.1.1672 = INTEGER: 1672 +.1.3.6.1.2.1.25.4.2.1.1.1688 = INTEGER: 1688 +.1.3.6.1.2.1.25.4.2.1.1.1698 = INTEGER: 1698 +.1.3.6.1.2.1.25.4.2.1.1.1709 = INTEGER: 1709 +.1.3.6.1.2.1.25.4.2.1.1.1714 = INTEGER: 1714 +.1.3.6.1.2.1.25.4.2.1.1.1731 = INTEGER: 1731 +.1.3.6.1.2.1.25.4.2.1.1.1734 = INTEGER: 1734 +.1.3.6.1.2.1.25.4.2.1.1.1736 = INTEGER: 1736 +.1.3.6.1.2.1.25.4.2.1.1.1803 = INTEGER: 1803 +.1.3.6.1.2.1.25.4.2.1.1.1806 = INTEGER: 1806 +.1.3.6.1.2.1.25.4.2.1.1.1835 = INTEGER: 1835 +.1.3.6.1.2.1.25.4.2.1.1.1847 = INTEGER: 1847 +.1.3.6.1.2.1.25.4.2.1.1.1851 = INTEGER: 1851 +.1.3.6.1.2.1.25.4.2.1.1.1856 = INTEGER: 1856 +.1.3.6.1.2.1.25.4.2.1.1.1866 = INTEGER: 1866 +.1.3.6.1.2.1.25.4.2.1.1.1889 = INTEGER: 1889 +.1.3.6.1.2.1.25.4.2.1.1.1894 = INTEGER: 1894 +.1.3.6.1.2.1.25.4.2.1.1.1896 = INTEGER: 1896 +.1.3.6.1.2.1.25.4.2.1.1.1899 = INTEGER: 1899 +.1.3.6.1.2.1.25.4.2.1.1.1902 = INTEGER: 1902 +.1.3.6.1.2.1.25.4.2.1.1.1932 = INTEGER: 1932 +.1.3.6.1.2.1.25.4.2.1.1.1945 = INTEGER: 1945 +.1.3.6.1.2.1.25.4.2.1.1.1946 = INTEGER: 1946 +.1.3.6.1.2.1.25.4.2.1.1.1947 = INTEGER: 1947 +.1.3.6.1.2.1.25.4.2.1.1.1948 = INTEGER: 1948 +.1.3.6.1.2.1.25.4.2.1.1.1949 = INTEGER: 1949 +.1.3.6.1.2.1.25.4.2.1.1.1954 = INTEGER: 1954 +.1.3.6.1.2.1.25.4.2.1.1.1955 = INTEGER: 1955 +.1.3.6.1.2.1.25.4.2.1.1.1956 = INTEGER: 1956 +.1.3.6.1.2.1.25.4.2.1.1.1957 = INTEGER: 1957 +.1.3.6.1.2.1.25.4.2.1.1.1958 = INTEGER: 1958 +.1.3.6.1.2.1.25.4.2.1.1.1959 = INTEGER: 1959 +.1.3.6.1.2.1.25.4.2.1.1.1960 = INTEGER: 1960 +.1.3.6.1.2.1.25.4.2.1.1.2071 = INTEGER: 2071 +.1.3.6.1.2.1.25.4.2.1.1.3147 = INTEGER: 3147 +.1.3.6.1.2.1.25.4.2.1.1.3198 = INTEGER: 3198 +.1.3.6.1.2.1.25.4.2.1.1.4772 = INTEGER: 4772 +.1.3.6.1.2.1.25.4.2.1.1.6137 = INTEGER: 6137 +.1.3.6.1.2.1.25.4.2.1.1.6144 = INTEGER: 6144 +.1.3.6.1.2.1.25.4.2.1.1.6154 = INTEGER: 6154 +.1.3.6.1.2.1.25.4.2.1.1.6197 = INTEGER: 6197 +.1.3.6.1.2.1.25.4.2.1.1.6200 = INTEGER: 6200 +.1.3.6.1.2.1.25.4.2.1.1.6205 = INTEGER: 6205 +.1.3.6.1.2.1.25.4.2.1.1.6206 = INTEGER: 6206 +.1.3.6.1.2.1.25.4.2.1.1.6208 = INTEGER: 6208 +.1.3.6.1.2.1.25.4.2.1.1.6217 = INTEGER: 6217 +.1.3.6.1.2.1.25.4.2.1.1.6219 = INTEGER: 6219 +.1.3.6.1.2.1.25.4.2.1.1.6224 = INTEGER: 6224 +.1.3.6.1.2.1.25.4.2.1.1.6225 = INTEGER: 6225 +.1.3.6.1.2.1.25.4.2.1.1.6228 = INTEGER: 6228 +.1.3.6.1.2.1.25.4.2.1.1.6229 = INTEGER: 6229 +.1.3.6.1.2.1.25.4.2.1.1.6230 = INTEGER: 6230 +.1.3.6.1.2.1.25.4.2.1.1.6231 = INTEGER: 6231 +.1.3.6.1.2.1.25.4.2.1.1.6238 = INTEGER: 6238 +.1.3.6.1.2.1.25.4.2.1.1.6239 = INTEGER: 6239 +.1.3.6.1.2.1.25.4.2.1.1.6240 = INTEGER: 6240 +.1.3.6.1.2.1.25.4.2.1.1.6241 = INTEGER: 6241 +.1.3.6.1.2.1.25.4.2.1.1.6244 = INTEGER: 6244 +.1.3.6.1.2.1.25.4.2.1.1.6245 = INTEGER: 6245 +.1.3.6.1.2.1.25.4.2.1.1.6246 = INTEGER: 6246 +.1.3.6.1.2.1.25.4.2.1.1.6247 = INTEGER: 6247 +.1.3.6.1.2.1.25.4.2.1.1.6248 = INTEGER: 6248 +.1.3.6.1.2.1.25.4.2.1.1.6249 = INTEGER: 6249 +.1.3.6.1.2.1.25.4.2.1.1.6250 = INTEGER: 6250 +.1.3.6.1.2.1.25.4.2.1.1.6251 = INTEGER: 6251 +.1.3.6.1.2.1.25.4.2.1.1.6252 = INTEGER: 6252 +.1.3.6.1.2.1.25.4.2.1.1.6253 = INTEGER: 6253 +.1.3.6.1.2.1.25.4.2.1.1.6254 = INTEGER: 6254 +.1.3.6.1.2.1.25.4.2.1.1.6255 = INTEGER: 6255 +.1.3.6.1.2.1.25.4.2.1.1.6256 = INTEGER: 6256 +.1.3.6.1.2.1.25.4.2.1.1.6257 = INTEGER: 6257 +.1.3.6.1.2.1.25.4.2.1.1.6258 = INTEGER: 6258 +.1.3.6.1.2.1.25.4.2.1.1.6268 = INTEGER: 6268 +.1.3.6.1.2.1.25.4.2.1.1.6269 = INTEGER: 6269 +.1.3.6.1.2.1.25.4.2.1.1.6270 = INTEGER: 6270 +.1.3.6.1.2.1.25.4.2.1.1.6273 = INTEGER: 6273 +.1.3.6.1.2.1.25.4.2.1.1.6274 = INTEGER: 6274 +.1.3.6.1.2.1.25.4.2.1.1.6275 = INTEGER: 6275 +.1.3.6.1.2.1.25.4.2.1.1.6289 = INTEGER: 6289 +.1.3.6.1.2.1.25.4.2.1.1.6292 = INTEGER: 6292 +.1.3.6.1.2.1.25.4.2.1.1.6293 = INTEGER: 6293 +.1.3.6.1.2.1.25.4.2.1.1.6301 = INTEGER: 6301 +.1.3.6.1.2.1.25.4.2.1.1.6305 = INTEGER: 6305 +.1.3.6.1.2.1.25.4.2.1.1.6307 = INTEGER: 6307 +.1.3.6.1.2.1.25.4.2.1.1.6308 = INTEGER: 6308 +.1.3.6.1.2.1.25.4.2.1.1.6310 = INTEGER: 6310 +.1.3.6.1.2.1.25.4.2.1.1.6321 = INTEGER: 6321 +.1.3.6.1.2.1.25.4.2.1.1.7875 = INTEGER: 7875 +.1.3.6.1.2.1.25.4.2.1.1.7876 = INTEGER: 7876 +.1.3.6.1.2.1.25.4.2.1.1.14038 = INTEGER: 14038 +.1.3.6.1.2.1.25.4.2.1.1.15251 = INTEGER: 15251 +.1.3.6.1.2.1.25.4.2.1.1.17901 = INTEGER: 17901 +.1.3.6.1.2.1.25.4.2.1.1.21203 = INTEGER: 21203 +.1.3.6.1.2.1.25.4.2.1.1.21880 = INTEGER: 21880 +.1.3.6.1.2.1.25.4.2.1.1.22288 = INTEGER: 22288 +.1.3.6.1.2.1.25.4.2.1.1.23625 = INTEGER: 23625 +.1.3.6.1.2.1.25.4.2.1.1.24819 = INTEGER: 24819 +.1.3.6.1.2.1.25.4.2.1.1.25327 = INTEGER: 25327 +.1.3.6.1.2.1.25.4.2.1.1.25672 = INTEGER: 25672 +.1.3.6.1.2.1.25.4.2.1.1.27421 = INTEGER: 27421 +.1.3.6.1.2.1.25.4.2.1.1.27422 = INTEGER: 27422 +.1.3.6.1.2.1.25.4.2.1.1.28010 = INTEGER: 28010 +.1.3.6.1.2.1.25.4.2.1.1.28066 = INTEGER: 28066 +.1.3.6.1.2.1.25.4.2.1.1.28418 = INTEGER: 28418 +.1.3.6.1.2.1.25.4.2.1.1.28680 = INTEGER: 28680 +.1.3.6.1.2.1.25.4.2.1.1.30187 = INTEGER: 30187 +.1.3.6.1.2.1.25.4.2.1.1.30190 = INTEGER: 30190 +.1.3.6.1.2.1.25.4.2.1.1.30191 = INTEGER: 30191 +.1.3.6.1.2.1.25.4.2.1.1.30254 = INTEGER: 30254 +.1.3.6.1.2.1.25.4.2.1.2.1 = STRING: "init" +.1.3.6.1.2.1.25.4.2.1.2.1173 = STRING: "udevd" +.1.3.6.1.2.1.25.4.2.1.2.1456 = STRING: "syslogd" +.1.3.6.1.2.1.25.4.2.1.2.1461 = STRING: "klogd" +.1.3.6.1.2.1.25.4.2.1.2.1586 = STRING: "rpc.portmap" +.1.3.6.1.2.1.25.4.2.1.2.1590 = STRING: "rpc.statd" +.1.3.6.1.2.1.25.4.2.1.2.1643 = STRING: "inetd" +.1.3.6.1.2.1.25.4.2.1.2.1648 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.1651 = STRING: "named" +.1.3.6.1.2.1.25.4.2.1.2.1672 = STRING: "rpc.rquotad" +.1.3.6.1.2.1.25.4.2.1.2.1688 = STRING: "rpc.mountd" +.1.3.6.1.2.1.25.4.2.1.2.1698 = STRING: "automount" +.1.3.6.1.2.1.25.4.2.1.2.1709 = STRING: "ntpd" +.1.3.6.1.2.1.25.4.2.1.2.1714 = STRING: "acpid" +.1.3.6.1.2.1.25.4.2.1.2.1731 = STRING: "dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.2.1734 = STRING: "hald" +.1.3.6.1.2.1.25.4.2.1.2.1736 = STRING: "console-kit-dae" +.1.3.6.1.2.1.25.4.2.1.2.1803 = STRING: "polkitd" +.1.3.6.1.2.1.25.4.2.1.2.1806 = STRING: "hald-runner" +.1.3.6.1.2.1.25.4.2.1.2.1835 = STRING: "hald-addon-inpu" +.1.3.6.1.2.1.25.4.2.1.2.1847 = STRING: "hald-addon-acpi" +.1.3.6.1.2.1.25.4.2.1.2.1851 = STRING: "hald-addon-stor" +.1.3.6.1.2.1.25.4.2.1.2.1856 = STRING: "wicd" +.1.3.6.1.2.1.25.4.2.1.2.1866 = STRING: "wicd-monitor" +.1.3.6.1.2.1.25.4.2.1.2.1889 = STRING: "cupsd" +.1.3.6.1.2.1.25.4.2.1.2.1894 = STRING: "crond" +.1.3.6.1.2.1.25.4.2.1.2.1896 = STRING: "atd" +.1.3.6.1.2.1.25.4.2.1.2.1899 = STRING: "sendmail" +.1.3.6.1.2.1.25.4.2.1.2.1902 = STRING: "sendmail" +.1.3.6.1.2.1.25.4.2.1.2.1932 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1945 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1946 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1947 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1948 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1949 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.1954 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1955 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1956 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1957 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1958 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1959 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.1960 = STRING: "xdm" +.1.3.6.1.2.1.25.4.2.1.2.2071 = STRING: "gam_server" +.1.3.6.1.2.1.25.4.2.1.2.3147 = STRING: "knotify4" +.1.3.6.1.2.1.25.4.2.1.2.3198 = STRING: "kio_http_cache_" +.1.3.6.1.2.1.25.4.2.1.2.4772 = STRING: "xfce4-notifyd" +.1.3.6.1.2.1.25.4.2.1.2.6137 = STRING: "X" +.1.3.6.1.2.1.25.4.2.1.2.6144 = STRING: "xdm" +.1.3.6.1.2.1.25.4.2.1.2.6154 = STRING: "xinitrc" +.1.3.6.1.2.1.25.4.2.1.2.6197 = STRING: "xscreensaver" +.1.3.6.1.2.1.25.4.2.1.2.6200 = STRING: "ssh-agent" +.1.3.6.1.2.1.25.4.2.1.2.6205 = STRING: "dbus-launch" +.1.3.6.1.2.1.25.4.2.1.2.6206 = STRING: "dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.2.6208 = STRING: "ck-launch-sessi" +.1.3.6.1.2.1.25.4.2.1.2.6217 = STRING: "xfce4-session" +.1.3.6.1.2.1.25.4.2.1.2.6219 = STRING: "xfconfd" +.1.3.6.1.2.1.25.4.2.1.2.6224 = STRING: "xfwm4" +.1.3.6.1.2.1.25.4.2.1.2.6225 = STRING: "xfsettingsd" +.1.3.6.1.2.1.25.4.2.1.2.6228 = STRING: "xfce4-panel" +.1.3.6.1.2.1.25.4.2.1.2.6229 = STRING: "xfdesktop" +.1.3.6.1.2.1.25.4.2.1.2.6230 = STRING: "xfce4-power-man" +.1.3.6.1.2.1.25.4.2.1.2.6231 = STRING: "xfce4-settings-" +.1.3.6.1.2.1.25.4.2.1.2.6238 = STRING: "Thunar" +.1.3.6.1.2.1.25.4.2.1.2.6239 = STRING: "xfce4-menu-plug" +.1.3.6.1.2.1.25.4.2.1.2.6240 = STRING: "xfce4-screensho" +.1.3.6.1.2.1.25.4.2.1.2.6241 = STRING: "xfce4-xmms-plug" +.1.3.6.1.2.1.25.4.2.1.2.6244 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6245 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6246 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6247 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6248 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6249 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6250 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6251 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6252 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6253 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6254 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6255 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6256 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6257 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6258 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.2.6268 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6269 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6270 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6273 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6274 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6275 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6289 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6292 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6293 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6301 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6305 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6307 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6308 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6310 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.6321 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.7875 = STRING: "udevd" +.1.3.6.1.2.1.25.4.2.1.2.7876 = STRING: "udevd" +.1.3.6.1.2.1.25.4.2.1.2.14038 = STRING: "ssh-agent" +.1.3.6.1.2.1.25.4.2.1.2.15251 = STRING: "ssh" +.1.3.6.1.2.1.25.4.2.1.2.17901 = STRING: "privoxy" +.1.3.6.1.2.1.25.4.2.1.2.21203 = STRING: "alpine" +.1.3.6.1.2.1.25.4.2.1.2.21880 = STRING: "mocp" +.1.3.6.1.2.1.25.4.2.1.2.22288 = STRING: "mocp" +.1.3.6.1.2.1.25.4.2.1.2.23625 = STRING: "httpd" +.1.3.6.1.2.1.25.4.2.1.2.24819 = STRING: "pidgin" +.1.3.6.1.2.1.25.4.2.1.2.25327 = STRING: "vi" +.1.3.6.1.2.1.25.4.2.1.2.25672 = STRING: "python2.4" +.1.3.6.1.2.1.25.4.2.1.2.27421 = STRING: "lotus" +.1.3.6.1.2.1.25.4.2.1.2.27422 = STRING: "rdesktop" +.1.3.6.1.2.1.25.4.2.1.2.28010 = STRING: "firefox" +.1.3.6.1.2.1.25.4.2.1.2.28066 = STRING: "snmpd" +.1.3.6.1.2.1.25.4.2.1.2.28418 = STRING: "plugin-containe" +.1.3.6.1.2.1.25.4.2.1.2.28680 = STRING: "in.identd" +.1.3.6.1.2.1.25.4.2.1.2.30187 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.30190 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.30191 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.30254 = STRING: "snmpwalk" +.1.3.6.1.2.1.25.4.2.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1173 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1456 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1461 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1586 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1590 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1643 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1648 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1651 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1672 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1688 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1698 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1709 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1714 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1731 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1734 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1736 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1803 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1806 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1835 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1847 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1851 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1856 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1866 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1889 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1894 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1896 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1899 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1902 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1932 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1945 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1946 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1947 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1948 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1949 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1954 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1955 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1956 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1957 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1958 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1959 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1960 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.2071 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.3147 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.3198 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.4772 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6137 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6144 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6154 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6197 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6200 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6205 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6206 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6208 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6217 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6219 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6224 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6225 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6228 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6229 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6230 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6231 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6238 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6239 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6240 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6241 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6244 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6245 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6246 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6247 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6248 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6249 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6250 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6251 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6252 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6253 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6254 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6255 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6256 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6257 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6258 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6268 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6269 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6270 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6273 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6274 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6275 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6289 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6292 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6293 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6301 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6305 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6307 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6308 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6310 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6321 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.7875 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.7876 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.14038 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.15251 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.17901 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.21203 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.21880 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.22288 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.23625 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.24819 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.25327 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.25672 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.27421 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.27422 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.28010 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.28066 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.28418 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.28680 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.30187 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.30190 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.30191 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.30254 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.4.1 = STRING: "init [4]" +.1.3.6.1.2.1.25.4.2.1.4.1173 = STRING: "/sbin/udevd" +.1.3.6.1.2.1.25.4.2.1.4.1456 = STRING: "/usr/sbin/syslogd" +.1.3.6.1.2.1.25.4.2.1.4.1461 = STRING: "/usr/sbin/klogd" +.1.3.6.1.2.1.25.4.2.1.4.1586 = STRING: "/sbin/rpc.portmap" +.1.3.6.1.2.1.25.4.2.1.4.1590 = STRING: "/sbin/rpc.statd" +.1.3.6.1.2.1.25.4.2.1.4.1643 = STRING: "/usr/sbin/inetd" +.1.3.6.1.2.1.25.4.2.1.4.1648 = STRING: "/usr/sbin/sshd" +.1.3.6.1.2.1.25.4.2.1.4.1651 = STRING: "/usr/sbin/named" +.1.3.6.1.2.1.25.4.2.1.4.1672 = STRING: "/usr/sbin/rpc.rquotad" +.1.3.6.1.2.1.25.4.2.1.4.1688 = STRING: "/usr/sbin/rpc.mountd" +.1.3.6.1.2.1.25.4.2.1.4.1698 = STRING: "automount" +.1.3.6.1.2.1.25.4.2.1.4.1709 = STRING: "/usr/sbin/ntpd" +.1.3.6.1.2.1.25.4.2.1.4.1714 = STRING: "/usr/sbin/acpid" +.1.3.6.1.2.1.25.4.2.1.4.1731 = STRING: "/usr/bin/dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.4.1734 = STRING: "/usr/sbin/hald" +.1.3.6.1.2.1.25.4.2.1.4.1736 = STRING: "/usr/sbin/console-kit-daemon" +.1.3.6.1.2.1.25.4.2.1.4.1803 = STRING: "/usr/libexec/polkitd" +.1.3.6.1.2.1.25.4.2.1.4.1806 = STRING: "hald-runner" +.1.3.6.1.2.1.25.4.2.1.4.1835 = STRING: "hald-addon-input: Listening on /dev/input/event0 /dev/input/event1 /dev/input/event2 /dev/input/event3" +.1.3.6.1.2.1.25.4.2.1.4.1847 = STRING: "hald-addon-acpi: listening on acpid socket /var/run/acpid.socket" +.1.3.6.1.2.1.25.4.2.1.4.1851 = STRING: "hald-addon-storage: polling /dev/sr0 (every 2 sec)" +.1.3.6.1.2.1.25.4.2.1.4.1856 = STRING: "/usr/bin/python" +.1.3.6.1.2.1.25.4.2.1.4.1866 = STRING: "/usr/bin/python" +.1.3.6.1.2.1.25.4.2.1.4.1889 = STRING: "/usr/sbin/cupsd" +.1.3.6.1.2.1.25.4.2.1.4.1894 = STRING: "/usr/sbin/crond" +.1.3.6.1.2.1.25.4.2.1.4.1896 = STRING: "/usr/sbin/atd" +.1.3.6.1.2.1.25.4.2.1.4.1899 = STRING: "sendmail: accepting connections" +.1.3.6.1.2.1.25.4.2.1.4.1902 = STRING: "sendmail: Queue runner@00:25:00 for /var/spool/clientmqueue" +.1.3.6.1.2.1.25.4.2.1.4.1932 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1945 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1946 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1947 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1948 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1949 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.1954 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1955 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1956 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1957 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1958 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1959 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.1960 = STRING: "/usr/bin/xdm" +.1.3.6.1.2.1.25.4.2.1.4.2071 = STRING: "/usr/libexec/gam_server" +.1.3.6.1.2.1.25.4.2.1.4.3147 = STRING: "/usr/bin/knotify4" +.1.3.6.1.2.1.25.4.2.1.4.3198 = STRING: "kdeinit4: kio_http_cache_cleaner [kdeinit]" +.1.3.6.1.2.1.25.4.2.1.4.4772 = STRING: "/usr/libexec/xfce4-notifyd" +.1.3.6.1.2.1.25.4.2.1.4.6137 = STRING: "/usr/bin/X" +.1.3.6.1.2.1.25.4.2.1.4.6144 = STRING: "-:0 " +.1.3.6.1.2.1.25.4.2.1.4.6154 = STRING: "/bin/sh" +.1.3.6.1.2.1.25.4.2.1.4.6197 = STRING: "xscreensaver" +.1.3.6.1.2.1.25.4.2.1.4.6200 = STRING: "/usr/bin/ssh-agent" +.1.3.6.1.2.1.25.4.2.1.4.6205 = STRING: "/usr/bin/dbus-launch" +.1.3.6.1.2.1.25.4.2.1.4.6206 = STRING: "/usr/bin/dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.4.6208 = STRING: "ck-launch-session" +.1.3.6.1.2.1.25.4.2.1.4.6217 = STRING: "/usr/bin/xfce4-session" +.1.3.6.1.2.1.25.4.2.1.4.6219 = STRING: "/usr/libexec/xfconfd" +.1.3.6.1.2.1.25.4.2.1.4.6224 = STRING: "xfwm4" +.1.3.6.1.2.1.25.4.2.1.4.6225 = STRING: "xfsettingsd" +.1.3.6.1.2.1.25.4.2.1.4.6228 = STRING: "xfce4-panel" +.1.3.6.1.2.1.25.4.2.1.4.6229 = STRING: "xfdesktop" +.1.3.6.1.2.1.25.4.2.1.4.6230 = STRING: "xfce4-power-manager" +.1.3.6.1.2.1.25.4.2.1.4.6231 = STRING: "xfce4-settings-helper" +.1.3.6.1.2.1.25.4.2.1.4.6238 = STRING: "/usr/bin/Thunar" +.1.3.6.1.2.1.25.4.2.1.4.6239 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-menu-plugin" +.1.3.6.1.2.1.25.4.2.1.4.6240 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin" +.1.3.6.1.2.1.25.4.2.1.4.6241 = STRING: "/usr/libexec/xfce4/panel-plugins/xfce4-xmms-plugin" +.1.3.6.1.2.1.25.4.2.1.4.6244 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6245 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6246 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6247 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6248 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6249 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6250 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6251 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6252 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6253 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6254 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6255 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6256 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6257 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6258 = STRING: "xterm" +.1.3.6.1.2.1.25.4.2.1.4.6268 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6269 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6270 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6273 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6274 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6275 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6289 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6292 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6293 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6301 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6305 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6307 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6308 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6310 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.6321 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.4.7875 = STRING: "/sbin/udevd" +.1.3.6.1.2.1.25.4.2.1.4.7876 = STRING: "/sbin/udevd" +.1.3.6.1.2.1.25.4.2.1.4.14038 = STRING: "ssh-agent" +.1.3.6.1.2.1.25.4.2.1.4.15251 = STRING: "ssh" +.1.3.6.1.2.1.25.4.2.1.4.17901 = STRING: "/usr/sbin/privoxy" +.1.3.6.1.2.1.25.4.2.1.4.21203 = STRING: "alpine" +.1.3.6.1.2.1.25.4.2.1.4.21880 = STRING: "mocp" +.1.3.6.1.2.1.25.4.2.1.4.22288 = STRING: "mocp" +.1.3.6.1.2.1.25.4.2.1.4.23625 = STRING: "/usr/sbin/httpd" +.1.3.6.1.2.1.25.4.2.1.4.24819 = STRING: "/usr/bin/pidgin" +.1.3.6.1.2.1.25.4.2.1.4.25327 = STRING: "vi" +.1.3.6.1.2.1.25.4.2.1.4.25672 = STRING: "python2.4" +.1.3.6.1.2.1.25.4.2.1.4.27421 = STRING: "/bin/bash" +.1.3.6.1.2.1.25.4.2.1.4.27422 = STRING: "rdesktop" +.1.3.6.1.2.1.25.4.2.1.4.28010 = STRING: "/usr/bin/firefox" +.1.3.6.1.2.1.25.4.2.1.4.28066 = STRING: "/usr/sbin/snmpd" +.1.3.6.1.2.1.25.4.2.1.4.28418 = STRING: "/usr/lib/firefox-15.0.1/plugin-container" +.1.3.6.1.2.1.25.4.2.1.4.28680 = STRING: "in.identd" +.1.3.6.1.2.1.25.4.2.1.4.30187 = STRING: "sshd: dopusk [priv]" +.1.3.6.1.2.1.25.4.2.1.4.30190 = STRING: "sshd: dopusk@pts/15" +.1.3.6.1.2.1.25.4.2.1.4.30191 = STRING: "-bash" +.1.3.6.1.2.1.25.4.2.1.4.30254 = STRING: "snmpwalk" +.1.3.6.1.2.1.25.4.2.1.5.1 = "" +.1.3.6.1.2.1.25.4.2.1.5.1173 = STRING: "--daemon" +.1.3.6.1.2.1.25.4.2.1.5.1456 = "" +.1.3.6.1.2.1.25.4.2.1.5.1461 = STRING: "-c 3 -x" +.1.3.6.1.2.1.25.4.2.1.5.1586 = "" +.1.3.6.1.2.1.25.4.2.1.5.1590 = "" +.1.3.6.1.2.1.25.4.2.1.5.1643 = "" +.1.3.6.1.2.1.25.4.2.1.5.1648 = "" +.1.3.6.1.2.1.25.4.2.1.5.1651 = "" +.1.3.6.1.2.1.25.4.2.1.5.1672 = "" +.1.3.6.1.2.1.25.4.2.1.5.1688 = "" +.1.3.6.1.2.1.25.4.2.1.5.1698 = "" +.1.3.6.1.2.1.25.4.2.1.5.1709 = STRING: "-g -p /var/run/ntpd.pid" +.1.3.6.1.2.1.25.4.2.1.5.1714 = "" +.1.3.6.1.2.1.25.4.2.1.5.1731 = STRING: "--system" +.1.3.6.1.2.1.25.4.2.1.5.1734 = STRING: "--daemon=yes" +.1.3.6.1.2.1.25.4.2.1.5.1736 = STRING: "--no-daemon" +.1.3.6.1.2.1.25.4.2.1.5.1803 = "" +.1.3.6.1.2.1.25.4.2.1.5.1806 = "" +.1.3.6.1.2.1.25.4.2.1.5.1835 = "" +.1.3.6.1.2.1.25.4.2.1.5.1847 = "" +.1.3.6.1.2.1.25.4.2.1.5.1851 = "" +.1.3.6.1.2.1.25.4.2.1.5.1856 = STRING: "-O /usr/share/wicd/daemon/wicd-daemon.py" +.1.3.6.1.2.1.25.4.2.1.5.1866 = STRING: "-O /usr/share/wicd/daemon/monitor.py" +.1.3.6.1.2.1.25.4.2.1.5.1889 = STRING: "-C /etc/cups/cupsd.conf" +.1.3.6.1.2.1.25.4.2.1.5.1894 = STRING: "-l notice" +.1.3.6.1.2.1.25.4.2.1.5.1896 = STRING: "-b 15 -l 1" +.1.3.6.1.2.1.25.4.2.1.5.1899 = "" +.1.3.6.1.2.1.25.4.2.1.5.1902 = "" +.1.3.6.1.2.1.25.4.2.1.5.1932 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1945 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1946 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1947 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1948 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1949 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.1954 = STRING: "38400 tty1 linux" +.1.3.6.1.2.1.25.4.2.1.5.1955 = STRING: "38400 tty2 linux" +.1.3.6.1.2.1.25.4.2.1.5.1956 = STRING: "38400 tty3 linux" +.1.3.6.1.2.1.25.4.2.1.5.1957 = STRING: "38400 tty4 linux" +.1.3.6.1.2.1.25.4.2.1.5.1958 = STRING: "38400 tty5 linux" +.1.3.6.1.2.1.25.4.2.1.5.1959 = STRING: "38400 tty6 linux" +.1.3.6.1.2.1.25.4.2.1.5.1960 = STRING: "-nodaemon" +.1.3.6.1.2.1.25.4.2.1.5.2071 = "" +.1.3.6.1.2.1.25.4.2.1.5.3147 = "" +.1.3.6.1.2.1.25.4.2.1.5.3198 = "" +.1.3.6.1.2.1.25.4.2.1.5.4772 = "" +.1.3.6.1.2.1.25.4.2.1.5.6137 = STRING: ":0 -auth /var/lib/xdm/authdir/authfiles/A:0-aG97gL" +.1.3.6.1.2.1.25.4.2.1.5.6144 = "" +.1.3.6.1.2.1.25.4.2.1.5.6154 = STRING: "/etc/X11/xinit/xinitrc" +.1.3.6.1.2.1.25.4.2.1.5.6197 = STRING: "-no-splash" +.1.3.6.1.2.1.25.4.2.1.5.6200 = STRING: "-s" +.1.3.6.1.2.1.25.4.2.1.5.6205 = STRING: "--sh-syntax --exit-with-session" +.1.3.6.1.2.1.25.4.2.1.5.6206 = STRING: "--fork --print-pid 5 --print-address 7 --session" +.1.3.6.1.2.1.25.4.2.1.5.6208 = STRING: "/usr/bin/xfce4-session" +.1.3.6.1.2.1.25.4.2.1.5.6217 = "" +.1.3.6.1.2.1.25.4.2.1.5.6219 = "" +.1.3.6.1.2.1.25.4.2.1.5.6224 = STRING: "--display :0.0 --sm-client-id 11c3dafe69000115209737700000029700000" +.1.3.6.1.2.1.25.4.2.1.5.6225 = "" +.1.3.6.1.2.1.25.4.2.1.5.6228 = STRING: "--sm-client-id 11c3dafe69000115209737700000029700001" +.1.3.6.1.2.1.25.4.2.1.5.6229 = STRING: "--display :0.0 --sm-client-id 11c3dafe69000115209737700000029700003" +.1.3.6.1.2.1.25.4.2.1.5.6230 = STRING: "--restart --sm-client-id 2ed126790-4e4d-4adb-9f4e-d77ca20838fc" +.1.3.6.1.2.1.25.4.2.1.5.6231 = STRING: "--display :0.0 --sm-client-id 29733d25f-afc0-4b88-b0d6-0688a43f4976" +.1.3.6.1.2.1.25.4.2.1.5.6238 = STRING: "--daemon" +.1.3.6.1.2.1.25.4.2.1.5.6239 = STRING: "socket_id 16777252 name xfce4-menu id 5 display_name Xfce Menu size 36 screen_position 11" +.1.3.6.1.2.1.25.4.2.1.5.6240 = STRING: "socket_id 16777253 name screenshooter id 13333796140 display_name Screenshot size 36 screen_position 11" +.1.3.6.1.2.1.25.4.2.1.5.6241 = STRING: "socket_id 16777254 name xfce4-xmms-plugin id 11946297210 display_name Xfce4 XMMS Plugin size 36 screen_position 11" +.1.3.6.1.2.1.25.4.2.1.5.6244 = STRING: "-xtsessionID 11c3dafe69000115225556500000050600004 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6245 = STRING: "-xtsessionID 11c3dafe69000115225555600000050600003 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6246 = STRING: "-xtsessionID 11c3dafe69000115225555000000050600002 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6247 = STRING: "-xtsessionID 11c3dafe69000115211623900000081180004 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6248 = STRING: "-xtsessionID 11c3dafe69000115211110100000064280005 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6249 = STRING: "-xtsessionID 11c3dafe69000115211106700000064280002 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6250 = STRING: "-xtsessionID 11c3dafe69000115211106800000064280003 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6251 = STRING: "-xtsessionID 11c3dafe69000115211110000000064280004 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6252 = STRING: "-xtsessionID 11c3dafe69000115211110300000064280006 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6253 = STRING: "-xtsessionID 11c3dafe69000115211106500000064280001 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6254 = STRING: "-xtsessionID 11c3dafe69000115209747200000029700005 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6255 = STRING: "-xtsessionID 11c3dafe69000115209986400000029700006 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6256 = STRING: "-xtsessionID 11c3dafe69000115210961600000061770006 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6257 = STRING: "-xtsessionID 11c3dafe69000115210972100000061770008 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6258 = STRING: "-xtsessionID 11c3dafe69000115210965900000061770007 -title Terminal" +.1.3.6.1.2.1.25.4.2.1.5.6268 = "" +.1.3.6.1.2.1.25.4.2.1.5.6269 = "" +.1.3.6.1.2.1.25.4.2.1.5.6270 = "" +.1.3.6.1.2.1.25.4.2.1.5.6273 = "" +.1.3.6.1.2.1.25.4.2.1.5.6274 = "" +.1.3.6.1.2.1.25.4.2.1.5.6275 = "" +.1.3.6.1.2.1.25.4.2.1.5.6289 = "" +.1.3.6.1.2.1.25.4.2.1.5.6292 = "" +.1.3.6.1.2.1.25.4.2.1.5.6293 = "" +.1.3.6.1.2.1.25.4.2.1.5.6301 = "" +.1.3.6.1.2.1.25.4.2.1.5.6305 = "" +.1.3.6.1.2.1.25.4.2.1.5.6307 = "" +.1.3.6.1.2.1.25.4.2.1.5.6308 = "" +.1.3.6.1.2.1.25.4.2.1.5.6310 = "" +.1.3.6.1.2.1.25.4.2.1.5.6321 = "" +.1.3.6.1.2.1.25.4.2.1.5.7875 = STRING: "--daemon" +.1.3.6.1.2.1.25.4.2.1.5.7876 = STRING: "--daemon" +.1.3.6.1.2.1.25.4.2.1.5.14038 = "" +.1.3.6.1.2.1.25.4.2.1.5.15251 = STRING: "-CN -L 1024:127.0.0.1:80 tt" +.1.3.6.1.2.1.25.4.2.1.5.17901 = STRING: "--user privoxy privoxy --pidfile /var/run/privoxy/privoxy.pid /etc/privoxy/config" +.1.3.6.1.2.1.25.4.2.1.5.21203 = "" +.1.3.6.1.2.1.25.4.2.1.5.21880 = STRING: "-Tgreen_theme" +.1.3.6.1.2.1.25.4.2.1.5.22288 = "" +.1.3.6.1.2.1.25.4.2.1.5.23625 = STRING: "-k start" +.1.3.6.1.2.1.25.4.2.1.5.24819 = "" +.1.3.6.1.2.1.25.4.2.1.5.25327 = STRING: "walk2dev.py" +.1.3.6.1.2.1.25.4.2.1.5.25672 = "" +.1.3.6.1.2.1.25.4.2.1.5.27421 = STRING: "/home/ilya/bin/lotus" +.1.3.6.1.2.1.25.4.2.1.5.27422 = STRING: "-r disk:floppy /home/ilya/pp -r sound -g 1200x700 -d VIMPELCOM_MAIN -r printer:lj -u ietingof -p XXXXXXXXXXXX 10.105.41.24" +.1.3.6.1.2.1.25.4.2.1.5.28010 = "" +.1.3.6.1.2.1.25.4.2.1.5.28066 = STRING: "-A -p /var/run/snmpd -a -c /etc/snmp/snmpd.conf udp:127.0.0.1:161 udp6:[::1]:161 unix:/var/run/snmp-agent" +.1.3.6.1.2.1.25.4.2.1.5.28418 = STRING: "/usr/lib/mozilla/plugins/libflashplayer.so -greomni /usr/lib/firefox-15.0.1/omni.ja 28010 true plugin" +.1.3.6.1.2.1.25.4.2.1.5.28680 = "" +.1.3.6.1.2.1.25.4.2.1.5.30187 = "" +.1.3.6.1.2.1.25.4.2.1.5.30190 = "" +.1.3.6.1.2.1.25.4.2.1.5.30191 = "" +.1.3.6.1.2.1.25.4.2.1.5.30254 = STRING: "-ObentU -v2c -c" +.1.3.6.1.2.1.25.4.2.1.6.1 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1173 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1456 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1461 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1586 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1590 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1643 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1648 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1651 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1672 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1688 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1698 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1709 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1714 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1731 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1734 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1736 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1803 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1806 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1835 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1847 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1851 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1856 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1866 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1889 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1894 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1896 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1899 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1902 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1932 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1945 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1946 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1947 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1948 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1949 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1954 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1955 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1956 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1957 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1958 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1959 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1960 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.2071 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.3147 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.3198 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.4772 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6137 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6144 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6154 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6197 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6200 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6205 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6206 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6208 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6217 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6219 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6224 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6225 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6228 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6229 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6230 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6231 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6238 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6239 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6240 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6241 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6244 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6245 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6246 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6247 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6248 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6249 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6250 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6251 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6252 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6253 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6254 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6255 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6256 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6257 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6258 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6268 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6269 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6270 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6273 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6274 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6275 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6289 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6292 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6293 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6301 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6305 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6307 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6308 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6310 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.6321 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.7875 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.7876 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.14038 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.15251 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.17901 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.21203 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.21880 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.22288 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.23625 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.24819 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.25327 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.25672 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.27421 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.27422 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.28010 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.28066 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.28418 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.28680 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.30187 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.30190 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.30191 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.30254 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.1 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1173 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1456 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1461 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1586 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1590 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1643 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1648 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1651 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1672 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1688 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1698 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1709 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1714 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1731 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1734 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1736 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1803 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1806 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1835 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1847 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1851 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1856 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1866 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1889 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1894 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1896 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1899 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1902 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1932 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1945 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1946 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1947 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1948 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1949 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1954 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1955 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1956 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1957 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1958 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1959 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1960 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.2071 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.3147 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.3198 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.4772 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6137 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6144 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6154 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6197 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6200 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6205 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6206 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6208 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6217 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6219 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6224 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6225 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6228 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6229 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6230 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6231 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6238 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6239 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6240 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6241 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6244 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6245 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6246 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6247 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6248 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6249 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6250 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6251 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6252 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6253 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6254 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6255 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6256 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6257 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6258 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6268 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6269 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6270 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6273 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6274 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6275 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6289 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6292 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6293 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6301 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6305 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6307 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6308 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6310 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.6321 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.7875 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.7876 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.14038 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.15251 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.17901 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.21203 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.21880 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.22288 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.23625 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.24819 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.25327 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.25672 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.27421 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.27422 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.28010 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.28066 = INTEGER: 1 +.1.3.6.1.2.1.25.4.2.1.7.28418 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.28680 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.30187 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.30190 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.30191 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.30254 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.1 = INTEGER: 73594 +.1.3.6.1.2.1.25.5.1.1.1.1173 = INTEGER: 57 +.1.3.6.1.2.1.25.5.1.1.1.1456 = INTEGER: 932 +.1.3.6.1.2.1.25.5.1.1.1.1461 = INTEGER: 264 +.1.3.6.1.2.1.25.5.1.1.1.1586 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.1590 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1643 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1648 = INTEGER: 733 +.1.3.6.1.2.1.25.5.1.1.1.1651 = INTEGER: 41630 +.1.3.6.1.2.1.25.5.1.1.1.1672 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1688 = INTEGER: 12 +.1.3.6.1.2.1.25.5.1.1.1.1698 = INTEGER: 6675 +.1.3.6.1.2.1.25.5.1.1.1.1709 = INTEGER: 24878 +.1.3.6.1.2.1.25.5.1.1.1.1714 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1731 = INTEGER: 575694 +.1.3.6.1.2.1.25.5.1.1.1.1734 = INTEGER: 13376 +.1.3.6.1.2.1.25.5.1.1.1.1736 = INTEGER: 9 +.1.3.6.1.2.1.25.5.1.1.1.1803 = INTEGER: 30 +.1.3.6.1.2.1.25.5.1.1.1.1806 = INTEGER: 50 +.1.3.6.1.2.1.25.5.1.1.1.1835 = INTEGER: 20040 +.1.3.6.1.2.1.25.5.1.1.1.1847 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1851 = INTEGER: 36336 +.1.3.6.1.2.1.25.5.1.1.1.1856 = INTEGER: 59195 +.1.3.6.1.2.1.25.5.1.1.1.1866 = INTEGER: 780028 +.1.3.6.1.2.1.25.5.1.1.1.1889 = INTEGER: 59 +.1.3.6.1.2.1.25.5.1.1.1.1894 = INTEGER: 705 +.1.3.6.1.2.1.25.5.1.1.1.1896 = INTEGER: 14 +.1.3.6.1.2.1.25.5.1.1.1.1899 = INTEGER: 3055 +.1.3.6.1.2.1.25.5.1.1.1.1902 = INTEGER: 39 +.1.3.6.1.2.1.25.5.1.1.1.1932 = INTEGER: 27088 +.1.3.6.1.2.1.25.5.1.1.1.1945 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1946 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.1947 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1948 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1949 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1954 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1955 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1956 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1957 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1958 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1959 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1960 = INTEGER: 4488 +.1.3.6.1.2.1.25.5.1.1.1.2071 = INTEGER: 74714 +.1.3.6.1.2.1.25.5.1.1.1.3147 = INTEGER: 60938 +.1.3.6.1.2.1.25.5.1.1.1.3198 = INTEGER: 696 +.1.3.6.1.2.1.25.5.1.1.1.4772 = INTEGER: 30 +.1.3.6.1.2.1.25.5.1.1.1.6137 = INTEGER: 26429108 +.1.3.6.1.2.1.25.5.1.1.1.6144 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.6154 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.6197 = INTEGER: 8724 +.1.3.6.1.2.1.25.5.1.1.1.6200 = INTEGER: 196 +.1.3.6.1.2.1.25.5.1.1.1.6205 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.6206 = INTEGER: 34334 +.1.3.6.1.2.1.25.5.1.1.1.6208 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.6217 = INTEGER: 514 +.1.3.6.1.2.1.25.5.1.1.1.6219 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.6224 = INTEGER: 7033 +.1.3.6.1.2.1.25.5.1.1.1.6225 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.6228 = INTEGER: 871 +.1.3.6.1.2.1.25.5.1.1.1.6229 = INTEGER: 6202 +.1.3.6.1.2.1.25.5.1.1.1.6230 = INTEGER: 16 +.1.3.6.1.2.1.25.5.1.1.1.6231 = INTEGER: 8918 +.1.3.6.1.2.1.25.5.1.1.1.6238 = INTEGER: 3568 +.1.3.6.1.2.1.25.5.1.1.1.6239 = INTEGER: 646 +.1.3.6.1.2.1.25.5.1.1.1.6240 = INTEGER: 52 +.1.3.6.1.2.1.25.5.1.1.1.6241 = INTEGER: 290846 +.1.3.6.1.2.1.25.5.1.1.1.6244 = INTEGER: 12472 +.1.3.6.1.2.1.25.5.1.1.1.6245 = INTEGER: 112 +.1.3.6.1.2.1.25.5.1.1.1.6246 = INTEGER: 48 +.1.3.6.1.2.1.25.5.1.1.1.6247 = INTEGER: 1550 +.1.3.6.1.2.1.25.5.1.1.1.6248 = INTEGER: 320 +.1.3.6.1.2.1.25.5.1.1.1.6249 = INTEGER: 500 +.1.3.6.1.2.1.25.5.1.1.1.6250 = INTEGER: 2210 +.1.3.6.1.2.1.25.5.1.1.1.6251 = INTEGER: 198 +.1.3.6.1.2.1.25.5.1.1.1.6252 = INTEGER: 76 +.1.3.6.1.2.1.25.5.1.1.1.6253 = INTEGER: 2570 +.1.3.6.1.2.1.25.5.1.1.1.6254 = INTEGER: 3220 +.1.3.6.1.2.1.25.5.1.1.1.6255 = INTEGER: 954 +.1.3.6.1.2.1.25.5.1.1.1.6256 = INTEGER: 200 +.1.3.6.1.2.1.25.5.1.1.1.6257 = INTEGER: 2278 +.1.3.6.1.2.1.25.5.1.1.1.6258 = INTEGER: 3502 +.1.3.6.1.2.1.25.5.1.1.1.6268 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.6269 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.6270 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.6273 = INTEGER: 12 +.1.3.6.1.2.1.25.5.1.1.1.6274 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.6275 = INTEGER: 5043 +.1.3.6.1.2.1.25.5.1.1.1.6289 = INTEGER: 170 +.1.3.6.1.2.1.25.5.1.1.1.6292 = INTEGER: 35 +.1.3.6.1.2.1.25.5.1.1.1.6293 = INTEGER: 512 +.1.3.6.1.2.1.25.5.1.1.1.6301 = INTEGER: 47 +.1.3.6.1.2.1.25.5.1.1.1.6305 = INTEGER: 97 +.1.3.6.1.2.1.25.5.1.1.1.6307 = INTEGER: 30 +.1.3.6.1.2.1.25.5.1.1.1.6308 = INTEGER: 299 +.1.3.6.1.2.1.25.5.1.1.1.6310 = INTEGER: 820 +.1.3.6.1.2.1.25.5.1.1.1.6321 = INTEGER: 64 +.1.3.6.1.2.1.25.5.1.1.1.7875 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.7876 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.14038 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.15251 = INTEGER: 5 +.1.3.6.1.2.1.25.5.1.1.1.17901 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.21203 = INTEGER: 100 +.1.3.6.1.2.1.25.5.1.1.1.21880 = INTEGER: 44218 +.1.3.6.1.2.1.25.5.1.1.1.22288 = INTEGER: 240064 +.1.3.6.1.2.1.25.5.1.1.1.23625 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.24819 = INTEGER: 79480 +.1.3.6.1.2.1.25.5.1.1.1.25327 = INTEGER: 838 +.1.3.6.1.2.1.25.5.1.1.1.25672 = INTEGER: 76 +.1.3.6.1.2.1.25.5.1.1.1.27421 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.27422 = INTEGER: 1524 +.1.3.6.1.2.1.25.5.1.1.1.28010 = INTEGER: 39021 +.1.3.6.1.2.1.25.5.1.1.1.28066 = INTEGER: 8935 +.1.3.6.1.2.1.25.5.1.1.1.28418 = INTEGER: 4194 +.1.3.6.1.2.1.25.5.1.1.1.28680 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.30187 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.30190 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.30191 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.30254 = INTEGER: 12 +.1.3.6.1.2.1.25.5.1.1.2.1 = INTEGER: 3375104 +.1.3.6.1.2.1.25.5.1.1.2.1173 = INTEGER: 96 +.1.3.6.1.2.1.25.5.1.1.2.1456 = INTEGER: 1452 +.1.3.6.1.2.1.25.5.1.1.2.1461 = INTEGER: 1716 +.1.3.6.1.2.1.25.5.1.1.2.1586 = INTEGER: 2644 +.1.3.6.1.2.1.25.5.1.1.2.1590 = INTEGER: 2660 +.1.3.6.1.2.1.25.5.1.1.2.1643 = INTEGER: 3080 +.1.3.6.1.2.1.25.5.1.1.2.1648 = INTEGER: 3368 +.1.3.6.1.2.1.25.5.1.1.2.1651 = INTEGER: 3696 +.1.3.6.1.2.1.25.5.1.1.2.1672 = INTEGER: 576 +.1.3.6.1.2.1.25.5.1.1.2.1688 = INTEGER: 608 +.1.3.6.1.2.1.25.5.1.1.2.1698 = INTEGER: 1124 +.1.3.6.1.2.1.25.5.1.1.2.1709 = INTEGER: 1320 +.1.3.6.1.2.1.25.5.1.1.2.1714 = INTEGER: 1400 +.1.3.6.1.2.1.25.5.1.1.2.1731 = INTEGER: 3512 +.1.3.6.1.2.1.25.5.1.1.2.1734 = INTEGER: 24 +.1.3.6.1.2.1.25.5.1.1.2.1736 = INTEGER: 24 +.1.3.6.1.2.1.25.5.1.1.2.1803 = INTEGER: 100 +.1.3.6.1.2.1.25.5.1.1.2.1806 = INTEGER: 272 +.1.3.6.1.2.1.25.5.1.1.2.1835 = INTEGER: 692 +.1.3.6.1.2.1.25.5.1.1.2.1847 = INTEGER: 896 +.1.3.6.1.2.1.25.5.1.1.2.1851 = INTEGER: 908 +.1.3.6.1.2.1.25.5.1.1.2.1856 = INTEGER: 1904 +.1.3.6.1.2.1.25.5.1.1.2.1866 = INTEGER: 2152 +.1.3.6.1.2.1.25.5.1.1.2.1889 = INTEGER: 3304 +.1.3.6.1.2.1.25.5.1.1.2.1894 = INTEGER: 3608 +.1.3.6.1.2.1.25.5.1.1.2.1896 = INTEGER: 3632 +.1.3.6.1.2.1.25.5.1.1.2.1899 = INTEGER: 3740 +.1.3.6.1.2.1.25.5.1.1.2.1902 = INTEGER: 3752 +.1.3.6.1.2.1.25.5.1.1.2.1932 = INTEGER: 468 +.1.3.6.1.2.1.25.5.1.1.2.1945 = INTEGER: 856 +.1.3.6.1.2.1.25.5.1.1.2.1946 = INTEGER: 856 +.1.3.6.1.2.1.25.5.1.1.2.1947 = INTEGER: 856 +.1.3.6.1.2.1.25.5.1.1.2.1948 = INTEGER: 856 +.1.3.6.1.2.1.25.5.1.1.2.1949 = INTEGER: 856 +.1.3.6.1.2.1.25.5.1.1.2.1954 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1955 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1956 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1957 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1958 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1959 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.1960 = INTEGER: 904 +.1.3.6.1.2.1.25.5.1.1.2.2071 = INTEGER: 768 +.1.3.6.1.2.1.25.5.1.1.2.3147 = INTEGER: 349517092 +.1.3.6.1.2.1.25.5.1.1.2.3198 = INTEGER: 349544004 +.1.3.6.1.2.1.25.5.1.1.2.4772 = INTEGER: -1582650044 +.1.3.6.1.2.1.25.5.1.1.2.6137 = INTEGER: -1624332492 +.1.3.6.1.2.1.25.5.1.1.2.6144 = INTEGER: -1624331632 +.1.3.6.1.2.1.25.5.1.1.2.6154 = INTEGER: -1624328704 +.1.3.6.1.2.1.25.5.1.1.2.6197 = INTEGER: -1624328288 +.1.3.6.1.2.1.25.5.1.1.2.6200 = INTEGER: -1624328288 +.1.3.6.1.2.1.25.5.1.1.2.6205 = INTEGER: -1624328276 +.1.3.6.1.2.1.25.5.1.1.2.6206 = INTEGER: -1624328180 +.1.3.6.1.2.1.25.5.1.1.2.6208 = INTEGER: -1624328140 +.1.3.6.1.2.1.25.5.1.1.2.6217 = INTEGER: -1624328092 +.1.3.6.1.2.1.25.5.1.1.2.6219 = INTEGER: -1624327992 +.1.3.6.1.2.1.25.5.1.1.2.6224 = INTEGER: -1624327928 +.1.3.6.1.2.1.25.5.1.1.2.6225 = INTEGER: -1624327904 +.1.3.6.1.2.1.25.5.1.1.2.6228 = INTEGER: -1624327712 +.1.3.6.1.2.1.25.5.1.1.2.6229 = INTEGER: -1624327712 +.1.3.6.1.2.1.25.5.1.1.2.6230 = INTEGER: -1624327676 +.1.3.6.1.2.1.25.5.1.1.2.6231 = INTEGER: -1624327548 +.1.3.6.1.2.1.25.5.1.1.2.6238 = INTEGER: -1624327260 +.1.3.6.1.2.1.25.5.1.1.2.6239 = INTEGER: -1624327084 +.1.3.6.1.2.1.25.5.1.1.2.6240 = INTEGER: -1624327008 +.1.3.6.1.2.1.25.5.1.1.2.6241 = INTEGER: -1624326860 +.1.3.6.1.2.1.25.5.1.1.2.6244 = INTEGER: -1624324508 +.1.3.6.1.2.1.25.5.1.1.2.6245 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6246 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6247 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6248 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6249 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6250 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6251 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6252 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6253 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6254 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6255 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6256 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6257 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6258 = INTEGER: -1624324504 +.1.3.6.1.2.1.25.5.1.1.2.6268 = INTEGER: -1624323800 +.1.3.6.1.2.1.25.5.1.1.2.6269 = INTEGER: -1624323800 +.1.3.6.1.2.1.25.5.1.1.2.6270 = INTEGER: -1624323800 +.1.3.6.1.2.1.25.5.1.1.2.6273 = INTEGER: -1624323796 +.1.3.6.1.2.1.25.5.1.1.2.6274 = INTEGER: -1624323788 +.1.3.6.1.2.1.25.5.1.1.2.6275 = INTEGER: -1624323784 +.1.3.6.1.2.1.25.5.1.1.2.6289 = INTEGER: -1624323692 +.1.3.6.1.2.1.25.5.1.1.2.6292 = INTEGER: -1624323688 +.1.3.6.1.2.1.25.5.1.1.2.6293 = INTEGER: -1624323688 +.1.3.6.1.2.1.25.5.1.1.2.6301 = INTEGER: -1624323652 +.1.3.6.1.2.1.25.5.1.1.2.6305 = INTEGER: -1624323644 +.1.3.6.1.2.1.25.5.1.1.2.6307 = INTEGER: -1624323644 +.1.3.6.1.2.1.25.5.1.1.2.6308 = INTEGER: -1624323640 +.1.3.6.1.2.1.25.5.1.1.2.6310 = INTEGER: -1624323632 +.1.3.6.1.2.1.25.5.1.1.2.6321 = INTEGER: -1624323576 +.1.3.6.1.2.1.25.5.1.1.2.7875 = INTEGER: -1622391620 +.1.3.6.1.2.1.25.5.1.1.2.7876 = INTEGER: -1622391620 +.1.3.6.1.2.1.25.5.1.1.2.14038 = INTEGER: -936638064 +.1.3.6.1.2.1.25.5.1.1.2.15251 = INTEGER: -935064036 +.1.3.6.1.2.1.25.5.1.1.2.17901 = INTEGER: -706169884 +.1.3.6.1.2.1.25.5.1.1.2.21203 = INTEGER: -384654656 +.1.3.6.1.2.1.25.5.1.1.2.21880 = INTEGER: -1517042024 +.1.3.6.1.2.1.25.5.1.1.2.22288 = INTEGER: -1557181104 +.1.3.6.1.2.1.25.5.1.1.2.23625 = INTEGER: 1708223840 +.1.3.6.1.2.1.25.5.1.1.2.24819 = INTEGER: -825759732 +.1.3.6.1.2.1.25.5.1.1.2.25327 = INTEGER: -381534356 +.1.3.6.1.2.1.25.5.1.1.2.25672 = INTEGER: -380970912 +.1.3.6.1.2.1.25.5.1.1.2.27421 = INTEGER: -378173492 +.1.3.6.1.2.1.25.5.1.1.2.27422 = INTEGER: -378173472 +.1.3.6.1.2.1.25.5.1.1.2.28010 = INTEGER: -377228088 +.1.3.6.1.2.1.25.5.1.1.2.28066 = INTEGER: -860723488 +.1.3.6.1.2.1.25.5.1.1.2.28418 = INTEGER: -376674868 +.1.3.6.1.2.1.25.5.1.1.2.28680 = INTEGER: 53070224 +.1.3.6.1.2.1.25.5.1.1.2.30187 = INTEGER: -373899312 +.1.3.6.1.2.1.25.5.1.1.2.30190 = INTEGER: -373898812 +.1.3.6.1.2.1.25.5.1.1.2.30191 = INTEGER: -373898784 +.1.3.6.1.2.1.25.5.1.1.2.30254 = INTEGER: -373831868 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: lo +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: eth0 +.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.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.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.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.6.1 = Counter64: 12240978269 +.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 272497428662 +.1.3.6.1.2.1.31.1.1.1.7.1 = Counter64: 17979662 +.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 326497672 +.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.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.10.1 = Counter64: 12240978269 +.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 40950413065 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 17979662 +.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 240979609 +.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.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.15.1 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: 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.19.1 = 0 +.1.3.6.1.2.1.31.1.1.1.19.2 = 0 +.1.3.6.1.2.1.31.1.5.0 = 0 +.1.3.6.1.2.1.55.1.1.0 = INTEGER: 2 +.1.3.6.1.2.1.55.1.2.0 = INTEGER: 64 +.1.3.6.1.2.1.55.1.3.0 = Gauge32: 2 +.1.3.6.1.2.1.55.1.5.1.2.1 = STRING: lo +.1.3.6.1.2.1.55.1.5.1.2.2 = STRING: eth0 +.1.3.6.1.2.1.55.1.5.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.4.1 = Gauge32: 16436 +.1.3.6.1.2.1.55.1.5.1.4.2 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.8.1 = STRING: +.1.3.6.1.2.1.55.1.5.1.8.2 = STRING: 0:12:79:62:f9:40 +.1.3.6.1.2.1.55.1.5.1.9.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.2 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.1.0 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.2.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.3.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.4.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.5.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = OID: .1.3.6.1.2.1.2.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = OID: .1.3.6.1.2.1.2.2.1.7 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = OID: .1.3.6.1.2.1.2.2.1.8 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = OID: .1.3.6.1.2.1.88.2.1.6 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = OID: .1.3.6.1.2.1.88.2.1.5 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = BITS: 80 0 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = OID: .1.3.6.1.6.3.1.1.5.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = OID: .1.3.6.1.6.3.1.1.5.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = OID: .1.3.6.1.2.1.88.2.0.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = OID: .1.3.6.1.2.1.88.2.0.1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.2 +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: _snmpd +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: _linkUpDown +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: _linkUpDown +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: _triggerFail +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: _triggerFire +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: _triggerFire +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: _triggerFire +.1.3.6.1.2.1.92.1.1.1.0 = Gauge32: 1000 +.1.3.6.1.2.1.92.1.1.2.0 = Gauge32: 1440 +.1.3.6.1.2.1.92.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.92.1.2.2.0 = Counter32: 0 +.1.3.6.1.4.1.2021.4.1.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.4.2.0 = STRING: swap +.1.3.6.1.4.1.2021.4.3.0 = INTEGER: 987992 +.1.3.6.1.4.1.2021.4.4.0 = INTEGER: 823404 +.1.3.6.1.4.1.2021.4.5.0 = INTEGER: 1011344 +.1.3.6.1.4.1.2021.4.6.0 = INTEGER: 399452 +.1.3.6.1.4.1.2021.4.11.0 = INTEGER: 1222856 +.1.3.6.1.4.1.2021.4.12.0 = INTEGER: 16000 +.1.3.6.1.4.1.2021.4.14.0 = INTEGER: 24024 +.1.3.6.1.4.1.2021.4.15.0 = INTEGER: 288160 +.1.3.6.1.4.1.2021.4.100.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.4.101.0 = STRING: +.1.3.6.1.4.1.2021.10.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2021.10.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2021.10.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2021.10.1.2.1 = STRING: Load-1 +.1.3.6.1.4.1.2021.10.1.2.2 = STRING: Load-5 +.1.3.6.1.4.1.2021.10.1.2.3 = STRING: Load-15 +.1.3.6.1.4.1.2021.10.1.3.1 = STRING: 0.05 +.1.3.6.1.4.1.2021.10.1.3.2 = STRING: 0.13 +.1.3.6.1.4.1.2021.10.1.3.3 = STRING: 0.18 +.1.3.6.1.4.1.2021.10.1.4.1 = STRING: 12.00 +.1.3.6.1.4.1.2021.10.1.4.2 = STRING: 12.00 +.1.3.6.1.4.1.2021.10.1.4.3 = STRING: 12.00 +.1.3.6.1.4.1.2021.10.1.5.1 = INTEGER: 5 +.1.3.6.1.4.1.2021.10.1.5.2 = INTEGER: 13 +.1.3.6.1.4.1.2021.10.1.5.3 = INTEGER: 17 +.1.3.6.1.4.1.2021.10.1.6.1 = Opaque: Float: 0.050000 +.1.3.6.1.4.1.2021.10.1.6.2 = Opaque: Float: 0.130000 +.1.3.6.1.4.1.2021.10.1.6.3 = Opaque: Float: 0.180000 +.1.3.6.1.4.1.2021.10.1.100.1 = INTEGER: 0 +.1.3.6.1.4.1.2021.10.1.100.2 = INTEGER: 0 +.1.3.6.1.4.1.2021.10.1.100.3 = INTEGER: 0 +.1.3.6.1.4.1.2021.10.1.101.1 = STRING: +.1.3.6.1.4.1.2021.10.1.101.2 = STRING: +.1.3.6.1.4.1.2021.10.1.101.3 = STRING: +.1.3.6.1.4.1.2021.11.1.0 = INTEGER: 1 +.1.3.6.1.4.1.2021.11.2.0 = STRING: systemStats +.1.3.6.1.4.1.2021.11.3.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.4.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.11.5.0 = INTEGER: 4 +.1.3.6.1.4.1.2021.11.6.0 = INTEGER: 1 +.1.3.6.1.4.1.2021.11.7.0 = INTEGER: 592 +.1.3.6.1.4.1.2021.11.8.0 = INTEGER: 694 +.1.3.6.1.4.1.2021.11.9.0 = INTEGER: 9 +.1.3.6.1.4.1.2021.11.10.0 = INTEGER: 1 +.1.3.6.1.4.1.2021.11.11.0 = INTEGER: 89 +.1.3.6.1.4.1.2021.11.50.0 = Counter32: 430808302 +.1.3.6.1.4.1.2021.11.51.0 = Counter32: 19832237 +.1.3.6.1.4.1.2021.11.52.0 = Counter32: 128229404 +.1.3.6.1.4.1.2021.11.53.0 = Counter32: 3372536426 +.1.3.6.1.4.1.2021.11.54.0 = Counter32: 7100603 +.1.3.6.1.4.1.2021.11.55.0 = Counter32: 0 +.1.3.6.1.4.1.2021.11.56.0 = Counter32: 4284 +.1.3.6.1.4.1.2021.11.57.0 = Counter32: 488030848 +.1.3.6.1.4.1.2021.11.58.0 = Counter32: 331975270 +.1.3.6.1.4.1.2021.11.59.0 = Counter32: 1573722881 +.1.3.6.1.4.1.2021.11.60.0 = Counter32: 3518068325 +.1.3.6.1.4.1.2021.11.61.0 = Counter32: 605394 +.1.3.6.1.4.1.2021.11.62.0 = Counter32: 1505892 +.1.3.6.1.4.1.2021.11.63.0 = Counter32: 1815591 +.1.3.6.1.4.1.2021.13.14.1.0 = INTEGER: 1 +.1.3.6.1.4.1.2021.13.15.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.2021.13.15.1.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.2021.13.15.1.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.2021.13.15.1.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.2021.13.15.1.1.2.1 = STRING: sda +.1.3.6.1.4.1.2021.13.15.1.1.2.2 = STRING: sda1 +.1.3.6.1.4.1.2021.13.15.1.1.2.3 = STRING: sda2 +.1.3.6.1.4.1.2021.13.15.1.1.2.4 = STRING: sda3 +.1.3.6.1.4.1.2021.13.15.1.1.3.1 = Counter32: 805373952 +.1.3.6.1.4.1.2021.13.15.1.1.3.2 = Counter32: 2023085056 +.1.3.6.1.4.1.2021.13.15.1.1.3.3 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.3.4 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.4.1 = Counter32: 2733486080 +.1.3.6.1.4.1.2021.13.15.1.1.4.2 = Counter32: 837136384 +.1.3.6.1.4.1.2021.13.15.1.1.4.3 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.4.4 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.5.1 = Counter32: 1212523 +.1.3.6.1.4.1.2021.13.15.1.1.5.2 = Counter32: 1155671 +.1.3.6.1.4.1.2021.13.15.1.1.5.3 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.5.4 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.6.1 = Counter32: 45347298 +.1.3.6.1.4.1.2021.13.15.1.1.6.2 = Counter32: 14594960 +.1.3.6.1.4.1.2021.13.15.1.1.6.3 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.6.4 = Counter32: 0 +.1.3.6.1.4.1.2021.13.15.1.1.9.1 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.9.2 = INTEGER: 8 +.1.3.6.1.4.1.2021.13.15.1.1.9.3 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.9.4 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.10.1 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.10.2 = INTEGER: 2 +.1.3.6.1.4.1.2021.13.15.1.1.10.3 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.10.4 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.11.1 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.11.2 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.11.3 = INTEGER: 0 +.1.3.6.1.4.1.2021.13.15.1.1.11.4 = INTEGER: 0 +.1.3.6.1.4.1.2021.16.1.0 = INTEGER: 250 +.1.3.6.1.4.1.2021.100.1.0 = INTEGER: 1 +.1.3.6.1.4.1.2021.100.2.0 = STRING: 5.6.1 +.1.3.6.1.4.1.2021.100.3.0 = STRING: $Date: 2013/03/12 19:26:12 $ +.1.3.6.1.4.1.2021.100.4.0 = STRING: Tue Oct 2 19:27:28 2012 +.1.3.6.1.4.1.2021.100.5.0 = STRING: $Id: linux.snmpwalk,v 1.1 2013/03/12 19:26:12 elie Exp $ +.1.3.6.1.4.1.2021.100.6.0 = STRING: '--prefix=/usr' '--libdir=/usr/lib' '--sysconfdir=/etc/snmp' '--mandir=/usr/man' '--enable-ipv6' '--disable-debugging' '--enable-static=no' '--with-libwrap' '--with-perl-modules' '--with-default-snmp-version=3' '--with-sys-contact=root@example.org' '--with-sys-location=unknown' '--with-logfile=/var/log/snmpd.log' '--with-persistent-directory=/var/lib/net-snmp' '--without-rpm' '--program-suffix=' '--program-prefix=' '--build=i486-slackware-linux' 'build_alias=i486-slackware-linux' 'CFLAGS=-O2 -march=i486 -mtune=i686' +.1.3.6.1.4.1.2021.100.10.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.100.11.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.100.12.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.100.13.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.100.20.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.101.1.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.101.2.0 = STRING: snmp +.1.3.6.1.4.1.2021.101.100.0 = INTEGER: 0 +.1.3.6.1.4.1.2021.101.101.0 = STRING: +.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.0.0 = STRING: +.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.1.0 = STRING: +.1.3.6.1.4.1.8072.1.2.1.1.4.0.1.2.0 = STRING: +.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.4.127 = STRING: ip +.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.5.127 = STRING: icmp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.6.127 = STRING: tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.7.127 = STRING: udp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.7.1.3.6.1.2.1.11.127 = STRING: mibII/snmp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.1.127 = STRING: mibII/sysDescr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.2.127 = STRING: mibII/sysObjectID +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.3.127 = STRING: mibII/sysUpTime +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.4.127 = STRING: mibII/sysContact +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.5.127 = STRING: mibII/sysName +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.6.127 = STRING: mibII/sysLocation +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.7.127 = STRING: mibII/sysServices +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.8.127 = STRING: mibII/sysORLastChange +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.1.9.127 = STRING: mibII/sysORTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.1.127 = STRING: if number +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.2.2.127 = STRING: ifTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.1.127 = STRING: ipForwarding +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.25.127 = STRING: ipv6IpForwarding +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.33.127 = STRING: ipAddressSpinLock +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.34.127 = STRING: ipAddressTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.35.127 = STRING: inetNetToMediaTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.4.36.127 = STRING: ipv6ScopeZoneIndexTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.5.29.127 = STRING: icmpStatsTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.5.30.127 = STRING: icmpMsgStatsTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.13.127 = STRING: tcpTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.19.127 = STRING: tcpConnectionTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.6.20.127 = STRING: tcpListenerTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.5.127 = STRING: udpTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.2.1.7.7.127 = STRING: udpEndpointTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.4.127 = STRING: memory +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.4.1.2021.11.127 = STRING: vmstat +.1.3.6.1.4.1.8072.1.2.1.1.4.0.8.1.3.6.1.6.3.12.1.127 = STRING: target_counters +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.2.0.127 = STRING: ipDefaultTTL +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.13.0.127 = STRING: ipReasmTimeout +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.4.127 = STRING: ipCidrRouteTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.24.7.127 = STRING: inetCidrRouteTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.26.0.127 = STRING: ipv6IpDefaultHopLimit +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.1.127 = STRING: ipSystemStatsTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.2.127 = STRING: ipIfStatsTableLastChanged +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.4.31.3.127 = STRING: ipIfStatsTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.11.30.0.127 = STRING: mibII/snmpEnableAuthenTraps +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.1.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.2.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.3.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.4.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.5.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.6.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.1.7.127 = STRING: host/hr_system +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.2.2.127 = STRING: host/hrMemorySize +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.4.2.127 = STRING: hrSWRunTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.5.1.127 = STRING: hrSWRunPerfTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.25.6.3.127 = STRING: hrSWInstalledTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.1.127 = STRING: ifXTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.31.1.5.127 = STRING: ifTableLastChanged +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.1.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.2.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.3.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.55.1.4.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.63.1.2.127 = STRING: schedTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.2.1.88.1.1.127 = STRING: mteResource +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.100.127 = STRING: memSwapError +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.4.101.127 = STRING: memSwapErrMsg +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.16.1.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.1.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.2.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.3.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.4.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.5.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.6.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.10.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.11.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.12.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.13.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.100.20.127 = STRING: ucd-snmp/versioninfo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.1.127 = STRING: ucd-snmp/errormib +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.2.127 = STRING: ucd-snmp/errormib +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.100.127 = STRING: ucd-snmp/errormib +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.2021.101.101.127 = STRING: ucd-snmp/errormib +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.4.1.4413.4.1.127 = STRING: pass +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.11.2.1.127 = STRING: snmpMPDStats +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.12.1.1.127 = STRING: target/snmpTargetSpinLock +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.13.1.3.127 = STRING: snmpNotifyFilterTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.15.1.1.127 = STRING: usmStats +.1.3.6.1.4.1.8072.1.2.1.1.4.0.9.1.3.6.1.6.3.16.1.1.127 = STRING: vacm_context +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.1.127 = STRING: mibII/at +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.2.127 = STRING: mibII/at +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.3.1.1.3.127 = STRING: mibII/at +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.1.127 = STRING: mibII/ipaddr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.2.127 = STRING: mibII/ipaddr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.3.127 = STRING: mibII/ipaddr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.4.127 = STRING: mibII/ipaddr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.20.1.5.127 = STRING: mibII/ipaddr +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.1.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.2.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.3.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.4.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.5.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.6.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.7.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.8.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.9.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.10.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.11.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.12.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.21.1.13.127 = STRING: mibII/iproute +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.1.127 = STRING: mibII/ipmedia +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.2.127 = STRING: mibII/ipmedia +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.3.127 = STRING: mibII/ipmedia +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.22.1.4.127 = STRING: mibII/ipmedia +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.4.24.6.0.127 = STRING: route number +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.1.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.2.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.3.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.4.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.5.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.6.16.1.6.127 = STRING: mibII/ipv6tcp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.1.127 = STRING: mibII/ipv6udp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.2.127 = STRING: mibII/ipv6udp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.7.6.1.3.127 = STRING: mibII/ipv6udp +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.1.127 = STRING: mteTriggerFailures +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.2.127 = STRING: mteTriggerTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.3.127 = STRING: mteTriggerDeltaTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.4.127 = STRING: mteTriggerExistenceTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.5.127 = STRING: mteTriggerBooleanTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.2.6.127 = STRING: mteTriggerThresholdTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.3.1.127 = STRING: mteObjectsTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.2.127 = STRING: mteEventTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.3.127 = STRING: mteEventNotificationTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.88.1.4.4.127 = STRING: mteEventSetTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.1.127 = STRING: nlmLogTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.2.1.92.1.3.2.127 = STRING: nlmLogVariableTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.1.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.2.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.3.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.4.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.5.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.100.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.101.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.102.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.2.1.103.127 = STRING: ucd-snmp/proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.1.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.2.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.3.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.100.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.101.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.102.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.8.1.103.127 = STRING: ucd-extensible +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.1.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.2.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.3.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.4.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.5.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.6.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.7.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.8.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.9.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.10.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.11.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.12.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.13.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.14.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.15.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.16.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.100.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.9.1.101.127 = STRING: ucd-snmp/disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.1.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.2.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.3.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.4.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.5.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.6.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.100.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.10.1.101.127 = STRING: ucd-snmp/loadave +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.13.14.1.127 = STRING: dlmod +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.1.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.2.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.3.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.4.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.100.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.2021.15.1.101.127 = STRING: ucd-snmp/file +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.2.1.127 = STRING: nsModuleTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.1.127 = STRING: nsCacheTimeout +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.2.127 = STRING: nsCacheEnabled +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.5.3.127 = STRING: tzCacheTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.8.1.127 = STRING: nsTransactionTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.4.1.8072.1.9.1.127 = STRING: nsVacmAccessTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.1.1.6.1.127 = STRING: snmpSetSerialNo +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.1.127 = STRING: snmpv3/snmpEngine +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.2.127 = STRING: snmpv3/snmpEngine +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.3.127 = STRING: snmpv3/snmpEngine +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.10.2.1.4.127 = STRING: snmpv3/snmpEngine +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.15.1.2.1.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.10.1.3.6.1.6.3.16.1.5.1.127 = STRING: mibII/vacm:view +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = STRING: host/hr_storage +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = STRING: host/hr_device +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = STRING: host/hr_proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = STRING: host/hr_proc +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = STRING: host/hr_network +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = STRING: host/hr_print +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = STRING: host/hr_print +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = STRING: host/hr_disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = STRING: host/hr_disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = STRING: host/hr_disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = STRING: host/hr_disk +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = STRING: host/hr_partition +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = STRING: host/hr_partition +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = STRING: host/hr_partition +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = STRING: host/hr_partition +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = STRING: host/hr_partition +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = STRING: host/hr_filesys +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = STRING: mibII/ipv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = STRING: mibII/icmpv6 +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = STRING: nlmConfigGlobalEntryLimit +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = STRING: nlmConfigGlobalAgeOut +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = STRING: nlmStatsGlobalNotificationsLogged +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = STRING: nlmStatsGlobalNotificationsBumped +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = STRING: ucd-snmp/logmatch +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = STRING: nsExtendNumEntries +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = STRING: nsExtendConfigTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = STRING: nsExtendOut1Table +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = STRING: nsExtendOut2Table +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = STRING: tzLoggingTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = STRING: target/snmpTargetAddrEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = STRING: target/snmpTargetParamsEntry +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = STRING: snmpNotifyTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = STRING: snmpNotifyTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = STRING: snmpNotifyTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = STRING: snmpNotifyTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = STRING: snmpNotifyFilterProfileTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = STRING: snmpNotifyFilterProfileTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = STRING: snmpNotifyFilterProfileTable +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = STRING: mibII/vacm:sec2group +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = STRING: mibII/vacm:sec2group +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = STRING: mibII/vacm:sec2group +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = STRING: mibII/vacm:access +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = STRING: dlmod +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = STRING: dlmod +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = STRING: dlmod +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = STRING: dlmod +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = STRING: snmpv3/usmUser +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = STRING: mibII/vacm:view +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = STRING: mibII/vacm:view +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = STRING: mibII/vacm:view +.1.3.6.1.4.1.8072.1.2.1.1.4.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = STRING: mibII/vacm:view +.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.0.0 = BITS: A0 0 2 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.1.0 = BITS: A0 0 2 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.1.2.0 = BITS: A0 0 2 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.4.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.5.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.6.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.7.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.7.1.3.6.1.2.1.11.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.2.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.3.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.7.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.8.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.1.9.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.2.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.25.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.33.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.34.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.35.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.4.36.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.5.29.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.5.30.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.13.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.19.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.6.20.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.5.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.2.1.7.7.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.4.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.4.1.2021.11.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.8.1.3.6.1.6.3.12.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.2.0.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.13.0.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.4.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.24.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.26.0.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.2.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.4.31.3.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.11.30.0.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.2.2.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.4.2.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.5.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.25.6.3.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.31.1.5.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.55.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.63.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.2.1.88.1.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.100.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.4.101.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.16.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.100.20.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.2021.101.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.4.1.4413.4.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.11.2.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.12.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.13.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.15.1.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.9.1.3.6.1.6.3.16.1.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.3.1.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.20.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.21.1.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.22.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.4.24.6.0.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.6.16.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.7.6.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.2.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.3.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.88.1.4.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.2.1.92.1.3.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.102.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.2.1.103.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.102.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.8.1.103.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.14.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.15.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.16.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.9.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.10.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.13.14.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.2021.15.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.2.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.5.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.8.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.4.1.8072.1.9.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.1.1.6.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.10.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.15.1.2.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.10.1.3.6.1.6.3.16.1.5.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = BITS: 80 0 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.5.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = BITS: C0 0 1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.0.0 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.1.2.0 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.5.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.6.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.7.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.7.1.3.6.1.2.1.11.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.5.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.6.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.7.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.8.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.1.9.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.2.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.25.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.33.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.34.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.35.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.4.36.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.5.29.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.5.30.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.13.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.19.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.6.20.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.5.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.2.1.7.7.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.4.1.2021.11.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.8.1.3.6.1.6.3.12.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.2.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.13.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.24.7.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.26.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.4.31.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.11.30.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.2.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.4.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.5.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.25.6.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.31.1.5.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.55.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.63.1.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.2.1.88.1.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.100.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.4.101.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.16.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.100.20.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.2021.101.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.4.1.4413.4.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.11.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.12.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.13.1.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.15.1.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.9.1.3.6.1.6.3.16.1.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.3.1.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.20.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.21.1.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.22.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.4.24.6.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.6.16.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.7.6.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.5.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.2.6.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.3.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.88.1.4.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.2.1.92.1.3.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.102.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.2.1.103.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.102.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.8.1.103.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.14.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.15.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.16.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.9.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.10.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.13.14.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.2021.15.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.5.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.8.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.4.1.8072.1.9.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.1.1.6.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.10.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.15.1.2.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.10.1.3.6.1.6.3.16.1.5.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.2.3.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.2.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.3.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.4.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.5.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.6.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.7.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.25.3.8.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.5.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.14.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.15.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.16.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.17.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.18.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.19.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.55.1.6.1.20.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.14.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.15.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.16.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.17.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.18.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.19.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.20.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.21.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.22.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.23.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.24.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.25.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.26.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.27.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.28.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.29.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.30.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.31.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.32.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.33.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.56.1.1.1.34.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.1.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.1.2.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.1.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.2.1.92.1.2.2.0.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.100.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.2021.16.2.1.101.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.2.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.3.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.3.2.4.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.4.1.8072.1.7.2.1.127 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.2.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.12.1.3.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.1.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.1.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.13.1.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.11.1.3.6.1.6.3.16.1.4.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.2.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.4.1.2021.13.14.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.7.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.8.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.9.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.10.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.11.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.12.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.15.1.2.2.1.13.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.3.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.4.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.5.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.2.1.1.6.0.12.1.3.6.1.6.3.16.1.5.2.1.6.127 = INTEGER: -1 +.1.3.6.1.4.1.8072.1.3.2.1.0 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.5.1.0 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.2.0 = INTEGER: 2 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.2.2 = INTEGER: 3 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.4 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.24.7 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.1 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.31.3 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.34 = INTEGER: 30 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.35 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.4.36 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5.29 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.5.30 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.13 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.19 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.6.20 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.5 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.7.7 = INTEGER: 60 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.25.4.2 = INTEGER: 30 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.2.1.25.6.3 = INTEGER: 30 +.1.3.6.1.4.1.8072.1.5.3.1.2.1.3.6.1.4.1.8072.1.31 = INTEGER: 5 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.2.2 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.4 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.24.7 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.1 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.31.3 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.34 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.35 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.4.36 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5.29 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.5.30 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.13 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.19 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.6.20 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.5 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.7.7 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.25.4.2 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.2.1.25.6.3 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.5.3.1.3.1.3.6.1.4.1.8072.1.31 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.7.2.1.1.3.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 3 +.1.3.6.1.4.1.8072.1.7.2.1.1.4.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 0 +.1.3.6.1.4.1.8072.1.7.2.1.1.5.7.47.118.97.114.47.108.111.103.47.115.110.109.112.100.46.108.111.103 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 2 +.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 2 +.1.3.6.1.4.1.8072.1.9.1.1.2.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 2 +.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = STRING: all +.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = STRING: all +.1.3.6.1.4.1.8072.1.9.1.1.3.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = STRING: all +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = STRING: pysnmpview +.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = STRING: _all_ +.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = STRING: _all_ +.1.3.6.1.4.1.8072.1.9.1.1.3.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = STRING: _all_ +.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 4 +.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.4.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.5.119.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.8072.1.9.1.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2.6.110.111.116.105.102.121 = INTEGER: 1 +.1.3.6.1.6.3.1.1.6.1.0 = INTEGER: 989152241 +.1.3.6.1.6.3.10.2.1.1.0 = Hex-STRING: 80 00 1F 88 80 92 C3 70 21 52 9F 46 47 +.1.3.6.1.6.3.10.2.1.2.0 = INTEGER: 121 +.1.3.6.1.6.3.10.2.1.3.0 = INTEGER: 1217046 +.1.3.6.1.6.3.10.2.1.4.0 = INTEGER: 1500 +.1.3.6.1.6.3.11.2.1.1.0 = Counter32: 0 +.1.3.6.1.6.3.11.2.1.2.0 = Counter32: 0 +.1.3.6.1.6.3.11.2.1.3.0 = Counter32: 0 +.1.3.6.1.6.3.12.1.1.0 = INTEGER: 0 +.1.3.6.1.6.3.12.1.4.0 = Counter32: 0 +.1.3.6.1.6.3.12.1.5.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.1.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.2.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.3.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.4.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.5.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.1.6.0 = Counter32: 0 +.1.3.6.1.6.3.15.1.2.1.0 = INTEGER: 0 +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = STRING: test-user +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = STRING: usr-md5-aes +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = STRING: usr-md5-des +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = STRING: usr-sha-aes +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = STRING: usr-sha-des +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = STRING: usr-md5-none +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = STRING: usr-sha-none +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = STRING: test-user-aes +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = STRING: usr-none-none +.1.3.6.1.6.3.15.1.2.2.1.3.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = STRING: usr-sha-aes128 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.4.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .0.0 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .1.3.6.1.6.3.10.1.1.2 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.2 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.1.2 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.3 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.1.3 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.2 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.3 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.1.2 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.1.1 +.1.3.6.1.6.3.15.1.2.2.1.5.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .1.3.6.1.6.3.10.1.1.3 +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.6.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.7.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = "" +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = OID: .1.3.6.1.6.3.10.1.2.2 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.2.2 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = OID: .1.3.6.1.6.3.10.1.2.2 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = OID: .1.3.6.1.6.3.10.1.2.4 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = OID: .1.3.6.1.6.3.10.1.2.1 +.1.3.6.1.6.3.15.1.2.2.1.8.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = OID: .1.3.6.1.6.3.10.1.2.4 +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.9.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.10.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = Hex-STRING: 00 +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = Hex-STRING: 00 +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = "" +.1.3.6.1.6.3.15.1.2.2.1.11.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = "" +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.12.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 3 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.9.116.101.115.116.45.117.115.101.114 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.15.1.2.2.1.13.13.128.0.31.136.128.146.195.112.33.82.159.70.71.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 1 +.1.3.6.1.6.3.16.1.1.1.1.0 = STRING: +.1.3.6.1.6.3.16.1.2.1.3.1.5.108.111.99.97.108 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.1.6.108.111.99.97.108.54 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.1.9.108.111.99.97.108.117.110.105.120 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.2.5.108.111.99.97.108 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.2.6.108.111.99.97.108.54 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.2.9.108.111.99.97.108.117.110.105.120 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.109.100.53.45.97.101.115 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.109.100.53.45.100.101.115 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.115.104.97.45.97.101.115 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.11.117.115.114.45.115.104.97.45.100.101.115 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = STRING: grptest_user_aes +.1.3.6.1.6.3.16.1.2.1.3.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.3.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = STRING: PySNMPGroup +.1.3.6.1.6.3.16.1.2.1.4.1.5.108.111.99.97.108 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.1.6.108.111.99.97.108.54 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.1.9.108.111.99.97.108.117.110.105.120 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.2.5.108.111.99.97.108 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.2.6.108.111.99.97.108.54 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.2.9.108.111.99.97.108.117.110.105.120 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.4.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 4 +.1.3.6.1.6.3.16.1.2.1.5.1.5.108.111.99.97.108 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.1.6.108.111.99.97.108.54 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.1.9.108.111.99.97.108.117.110.105.120 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.2.5.108.111.99.97.108 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.2.6.108.111.99.97.108.54 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.2.9.108.111.99.97.108.117.110.105.120 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.109.100.53.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.109.100.53.45.100.101.115 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.115.104.97.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.11.117.115.114.45.115.104.97.45.100.101.115 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.12.117.115.114.45.109.100.53.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.12.117.115.114.45.115.104.97.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.13.116.101.115.116.45.117.115.101.114.45.97.101.115 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.13.117.115.114.45.110.111.110.101.45.110.111.110.101 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.14.117.115.114.45.109.100.53.45.97.101.115.49.50.56 = INTEGER: 1 +.1.3.6.1.6.3.16.1.2.1.5.3.14.117.115.114.45.115.104.97.45.97.101.115.49.50.56 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.4.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.4.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.4.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 2 +.1.3.6.1.6.3.16.1.4.1.5.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all +.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.5.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.5.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_ +.1.3.6.1.6.3.16.1.4.1.6.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all +.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.6.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.6.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_ +.1.3.6.1.6.3.16.1.4.1.7.9.77.121.82.87.71.114.111.117.112.0.0.1 = STRING: all +.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.7.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = STRING: pysnmpview +.1.3.6.1.6.3.16.1.4.1.7.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = STRING: _all_ +.1.3.6.1.6.3.16.1.4.1.8.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 4 +.1.3.6.1.6.3.16.1.4.1.8.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 4 +.1.3.6.1.6.3.16.1.4.1.8.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 4 +.1.3.6.1.6.3.16.1.4.1.9.9.77.121.82.87.71.114.111.117.112.0.0.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.9.11.80.121.83.78.77.80.71.114.111.117.112.0.0.3 = INTEGER: 1 +.1.3.6.1.6.3.16.1.4.1.9.16.103.114.112.116.101.115.116.95.117.115.101.114.95.97.101.115.0.3.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.1.0 = INTEGER: 0 +.1.3.6.1.6.3.16.1.5.2.1.3.3.97.108.108.1.1 = Hex-STRING: 80 +.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.10.112.121.115.110.109.112.118.105.101.119.1.1 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = "" +.1.3.6.1.6.3.16.1.5.2.1.3.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = "" +.1.3.6.1.6.3.16.1.5.2.1.4.3.97.108.108.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0 = INTEGER: 2 +.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1 = INTEGER: 2 +.1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2 = INTEGER: 2 +.1.3.6.1.6.3.16.1.5.2.1.4.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.4.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.5.3.97.108.108.1.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.5.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 4 +.1.3.6.1.6.3.16.1.5.2.1.6.3.97.108.108.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.10.112.121.115.110.109.112.118.105.101.119.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.3.1.3.6 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = INTEGER: 1 +.1.3.6.1.6.3.16.1.5.2.1.6.10.115.121.115.116.101.109.118.105.101.119.9.1.3.6.1.2.1.25.1.1 = No more variables left in this MIB View (It is past the end of the MIB tree) \ No newline at end of file diff --git a/tests/resources/snmp/os_linux_snmp_plugin.snmpwalk b/tests/robot/os/linux/snmp/list-diskio.snmpwalk similarity index 100% rename from tests/resources/snmp/os_linux_snmp_plugin.snmpwalk rename to tests/robot/os/linux/snmp/list-diskio.snmpwalk diff --git a/tests/functional/snmp/network-interfaces.robot b/tests/robot/os/linux/snmp/network-interfaces.robot similarity index 82% rename from tests/functional/snmp/network-interfaces.robot rename to tests/robot/os/linux/snmp/network-interfaces.robot index 96a9196149..3c292d0dca 100644 --- a/tests/functional/snmp/network-interfaces.robot +++ b/tests/robot/os/linux/snmp/network-interfaces.robot @@ -1,27 +1,22 @@ *** Settings *** Documentation Network Interfaces -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} +... --plugin=os::linux::snmp::plugin +... --mode=interfaces +... --hostname=127.0.0.1 +... --snmp-port=2024 +... --snmp-community=os/linux/snmp/network-interfaces +... --statefile-dir=/tmp/ -${CMD} perl ${CENTREON_PLUGINS} -... --plugin=os::linux::snmp::plugin -... --mode=interfaces -... --hostname=127.0.0.1 -... --snmp-port=2024 -... --snmp-community=network-interfaces -... --statefile-dir=/tmp/ +${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' -${PERCENT} % - -${COND} ${PERCENT}\{sub\} =~ /exited/ && ${PERCENT}{display} =~ /network/' *** Test Cases *** Interfaces by id ${tc}/5 @@ -31,7 +26,6 @@ Interfaces by id ${tc}/5 ... --interface='${filter}' ... ${extra_options} - ${output} Run ${command} ${output} Strip String ${output} Should Be Equal As Strings @@ -45,6 +39,8 @@ Interfaces by id ${tc}/5 ... 3 1,3 --add-traffic OK: All interfaces are ok | 'traffic_in_lo'=0.00b/s;;;0;10000000 'traffic_out_lo'=0.00b/s;;;0;10000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 ... 4 2,3,4 --add-traffic OK: All interfaces are ok ... 5 2,3,4 --add-traffic OK: All interfaces are ok | 'traffic_in_eth0'=0.00b/s;;;0;1000000000 'traffic_out_eth0'=0.00b/s;;;0;1000000000 'traffic_in_eth1'=0.00b/s;;;0;1000000000 'traffic_out_eth1'=0.00b/s;;;0;1000000000 'traffic_in_eth2'=0.00b/s;;;0;1000000000 'traffic_out_eth2'=0.00b/s;;;0;1000000000 +# theese test are linked together. The test 2 create the cache file in /tmp/, and the test 3 use this cache file +# to calculate traffic throughput by second. Interfaces by id regexp ${tc}/6 [Tags] os linux network interfaces @@ -54,7 +50,6 @@ Interfaces by id regexp ${tc}/6 ... --regex-id ... ${extra_options} - ${output} Run ${command} ${output} Strip String ${output} Should Be Equal As Strings diff --git a/tests/robot/os/linux/snmp/network-interfaces.snmpwalk b/tests/robot/os/linux/snmp/network-interfaces.snmpwalk new file mode 100644 index 0000000000..0b9f60d2dd --- /dev/null +++ b/tests/robot/os/linux/snmp/network-interfaces.snmpwalk @@ -0,0 +1,4490 @@ +.1.3.6.1.2.1.1.1.0 = STRING: "Linux server-debian11 5.10.0-28-amd64 #1 SMP Debian 5.10.209-2 (2024-01-31) x86_64" +.1.3.6.1.2.1.1.2.0 = OID: .1.3.6.1.4.1.8072.3.2.10 +.1.3.6.1.2.1.1.3.0 = 8074 +.1.3.6.1.2.1.1.4.0 = STRING: "Me " +.1.3.6.1.2.1.1.5.0 = STRING: "server-debian11" +.1.3.6.1.2.1.1.6.0 = STRING: "Sitting on the Dock of the Bay" +.1.3.6.1.2.1.1.7.0 = INTEGER: 72 +.1.3.6.1.2.1.1.8.0 = 0 +.1.3.6.1.2.1.1.9.1.2.1 = OID: .1.3.6.1.6.3.10.3.1.1 +.1.3.6.1.2.1.1.9.1.2.2 = OID: .1.3.6.1.6.3.11.3.1.1 +.1.3.6.1.2.1.1.9.1.2.3 = OID: .1.3.6.1.6.3.15.2.1.1 +.1.3.6.1.2.1.1.9.1.2.4 = OID: .1.3.6.1.6.3.1 +.1.3.6.1.2.1.1.9.1.2.5 = OID: .1.3.6.1.6.3.16.2.2.1 +.1.3.6.1.2.1.1.9.1.2.6 = OID: .1.3.6.1.2.1.49 +.1.3.6.1.2.1.1.9.1.2.7 = OID: .1.3.6.1.2.1.50 +.1.3.6.1.2.1.1.9.1.2.8 = OID: .1.3.6.1.2.1.4 +.1.3.6.1.2.1.1.9.1.2.9 = OID: .1.3.6.1.6.3.13.3.1.3 +.1.3.6.1.2.1.1.9.1.2.10 = OID: .1.3.6.1.2.1.92 +.1.3.6.1.2.1.1.9.1.3.1 = STRING: "The SNMP Management Architecture MIB." +.1.3.6.1.2.1.1.9.1.3.2 = STRING: "The MIB for Message Processing and Dispatching." +.1.3.6.1.2.1.1.9.1.3.3 = STRING: "The management information definitions for the SNMP User-based Security Model." +.1.3.6.1.2.1.1.9.1.3.4 = STRING: "The MIB module for SNMPv2 entities" +.1.3.6.1.2.1.1.9.1.3.5 = STRING: "View-based Access Control Model for SNMP." +.1.3.6.1.2.1.1.9.1.3.6 = STRING: "The MIB module for managing TCP implementations" +.1.3.6.1.2.1.1.9.1.3.7 = STRING: "The MIB module for managing UDP implementations" +.1.3.6.1.2.1.1.9.1.3.8 = STRING: "The MIB module for managing IP and ICMP implementations" +.1.3.6.1.2.1.1.9.1.3.9 = STRING: "The MIB modules for managing SNMP Notification, plus filtering." +.1.3.6.1.2.1.1.9.1.3.10 = STRING: "The MIB module for logging SNMP Notifications." +.1.3.6.1.2.1.1.9.1.4.1 = 0 +.1.3.6.1.2.1.1.9.1.4.2 = 0 +.1.3.6.1.2.1.1.9.1.4.3 = 0 +.1.3.6.1.2.1.1.9.1.4.4 = 0 +.1.3.6.1.2.1.1.9.1.4.5 = 0 +.1.3.6.1.2.1.1.9.1.4.6 = 0 +.1.3.6.1.2.1.1.9.1.4.7 = 0 +.1.3.6.1.2.1.1.9.1.4.8 = 0 +.1.3.6.1.2.1.1.9.1.4.9 = 0 +.1.3.6.1.2.1.1.9.1.4.10 = 0 +.1.3.6.1.2.1.2.1.0 = INTEGER: 5 +.1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.2.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.2.2.1.2.1 = STRING: "lo" +.1.3.6.1.2.1.2.2.1.2.2 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.3 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.4 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.2.5 = STRING: "Intel Corporation 82540EM Gigabit Ethernet Controller" +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 24 +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.3 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.4 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.5 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.4.1 = INTEGER: 65536 +.1.3.6.1.2.1.2.2.1.4.2 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.3 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.4 = INTEGER: 1500 +.1.3.6.1.2.1.2.2.1.4.5 = INTEGER: 1500 +.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: 1000000000 +.1.3.6.1.2.1.2.2.1.5.3 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.4 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.5 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.6.1 = "" +.1.3.6.1.2.1.2.2.1.6.2 = Hex-STRING: 08 00 27 8D C0 4D +.1.3.6.1.2.1.2.2.1.6.3 = Hex-STRING: 08 00 27 3C 26 92 +.1.3.6.1.2.1.2.2.1.6.4 = Hex-STRING: 08 00 27 FE 8E E3 +.1.3.6.1.2.1.2.2.1.6.5 = Hex-STRING: 08 00 27 A4 62 F7 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.4 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.4 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.9.1 = 0 +.1.3.6.1.2.1.2.2.1.9.2 = 0 +.1.3.6.1.2.1.2.2.1.9.3 = 0 +.1.3.6.1.2.1.2.2.1.9.4 = 0 +.1.3.6.1.2.1.2.2.1.9.5 = 0 +.1.3.6.1.2.1.2.2.1.10.1 = Counter32: 1904 +.1.3.6.1.2.1.2.2.1.10.2 = Counter32: 175123 +.1.3.6.1.2.1.2.2.1.10.3 = Counter32: 525425 +.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.11.1 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.11.2 = Counter32: 1706 +.1.3.6.1.2.1.2.2.1.11.3 = Counter32: 5363 +.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.12.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.12.5 = 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.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.15.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.15.5 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = Counter32: 1904 +.1.3.6.1.2.1.2.2.1.16.2 = Counter32: 192208 +.1.3.6.1.2.1.2.2.1.16.3 = Counter32: 555336 +.1.3.6.1.2.1.2.2.1.16.4 = Counter32: 1592 +.1.3.6.1.2.1.2.2.1.16.5 = Counter32: 1592 +.1.3.6.1.2.1.2.2.1.17.1 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.17.2 = Counter32: 1339 +.1.3.6.1.2.1.2.2.1.17.3 = Counter32: 4978 +.1.3.6.1.2.1.2.2.1.17.4 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.17.5 = Counter32: 20 +.1.3.6.1.2.1.2.2.1.18.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.2 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.3 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.4 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.18.5 = 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: 0 +.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.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.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.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.3.1.1.1.2.1.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.3.1.1.1.2.1.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.3.1.1.1.3.1.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.3.1.1.2.2.1.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.3.1.1.2.2.1.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.3.1.1.2.3.1.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.3.1.1.3.2.1.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.3.1.1.3.2.1.10.0.2.3 = IpAddress: 10.0.2.3 +.1.3.6.1.2.1.3.1.1.3.3.1.192.168.57.131 = IpAddress: 192.168.57.131 +.1.3.6.1.2.1.4.1.0 = INTEGER: 2 +.1.3.6.1.2.1.4.2.0 = INTEGER: 64 +.1.3.6.1.2.1.4.3.0 = Counter32: 6865 +.1.3.6.1.2.1.4.4.0 = Counter32: 0 +.1.3.6.1.2.1.4.5.0 = Counter32: 2 +.1.3.6.1.2.1.4.6.0 = Counter32: 0 +.1.3.6.1.2.1.4.7.0 = Counter32: 0 +.1.3.6.1.2.1.4.8.0 = Counter32: 0 +.1.3.6.1.2.1.4.9.0 = Counter32: 6863 +.1.3.6.1.2.1.4.10.0 = Counter32: 6435 +.1.3.6.1.2.1.4.11.0 = Counter32: 0 +.1.3.6.1.2.1.4.12.0 = Counter32: 2 +.1.3.6.1.2.1.4.13.0 = INTEGER: 0 +.1.3.6.1.2.1.4.14.0 = Counter32: 0 +.1.3.6.1.2.1.4.15.0 = Counter32: 0 +.1.3.6.1.2.1.4.16.0 = Counter32: 0 +.1.3.6.1.2.1.4.17.0 = Counter32: 0 +.1.3.6.1.2.1.4.18.0 = Counter32: 0 +.1.3.6.1.2.1.4.19.0 = Counter32: 0 +.1.3.6.1.2.1.4.20.1.1.10.0.2.15 = IpAddress: 10.0.2.15 +.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.4.20.1.1.192.168.57.126 = IpAddress: 192.168.57.126 +.1.3.6.1.2.1.4.20.1.1.192.168.58.126 = IpAddress: 192.168.58.126 +.1.3.6.1.2.1.4.20.1.1.192.168.59.126 = IpAddress: 192.168.59.126 +.1.3.6.1.2.1.4.20.1.2.10.0.2.15 = INTEGER: 2 +.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.192.168.57.126 = INTEGER: 3 +.1.3.6.1.2.1.4.20.1.2.192.168.58.126 = INTEGER: 4 +.1.3.6.1.2.1.4.20.1.2.192.168.59.126 = INTEGER: 5 +.1.3.6.1.2.1.4.20.1.3.10.0.2.15 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = IpAddress: 255.0.0.0 +.1.3.6.1.2.1.4.20.1.3.192.168.57.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.192.168.58.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.192.168.59.126 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.20.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = INTEGER: 0 +.1.3.6.1.2.1.4.20.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.20.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.1.10.0.2.0 = IpAddress: 10.0.2.0 +.1.3.6.1.2.1.4.21.1.1.192.168.57.0 = IpAddress: 192.168.57.0 +.1.3.6.1.2.1.4.21.1.1.192.168.58.0 = IpAddress: 192.168.58.0 +.1.3.6.1.2.1.4.21.1.1.192.168.59.0 = IpAddress: 192.168.59.0 +.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.2.10.0.2.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.2.192.168.57.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.2.192.168.58.0 = INTEGER: 4 +.1.3.6.1.2.1.4.21.1.2.192.168.59.0 = INTEGER: 5 +.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.21.1.3.10.0.2.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.57.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.58.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.3.192.168.59.0 = INTEGER: 0 +.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.21.1.7.10.0.2.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.57.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.58.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.59.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.21.1.8.10.0.2.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.57.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.58.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.8.192.168.59.0 = INTEGER: 3 +.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.10.0.2.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.57.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.58.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.9.192.168.59.0 = INTEGER: 2 +.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.21.1.11.10.0.2.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.57.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.58.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.192.168.59.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.10.0.2.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.57.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.58.0 = OID: .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.59.0 = OID: .0.0 +.1.3.6.1.2.1.4.22.1.1.2.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.22.1.1.2.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.4.22.1.1.3.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.2.2.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.4.22.1.2.2.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.4.22.1.2.3.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.4.22.1.3.2.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.22.1.3.2.10.0.2.3 = IpAddress: 10.0.2.3 +.1.3.6.1.2.1.4.22.1.3.3.192.168.57.131 = IpAddress: 192.168.57.131 +.1.3.6.1.2.1.4.22.1.4.2.10.0.2.2 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.4.2.10.0.2.3 = INTEGER: 3 +.1.3.6.1.2.1.4.22.1.4.3.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.23.0 = Counter32: 0 +.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 10.0.2.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.57.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.58.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.59.0 +.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.0.2.2 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.4.24.4.1.4.10.0.2.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.57.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.58.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.59.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.5.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.5.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.5.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.4.1.5.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 4 +.1.3.6.1.2.1.4.24.4.1.6.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.6.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.7.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.0.2.2 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.10.0.2.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.57.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.58.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.59.0.255.255.255.0.0.0.0.0.0 = OID: .0.0 +.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.10.0.2.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.57.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.58.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.4.1.16.192.168.59.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.6.0 = Gauge32: 19 +.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 5 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 4 +.1.3.6.1.2.1.4.24.7.1.8.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.10.0.2.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.57.0.24.3.0.0.3.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.58.0.24.3.0.0.4.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.59.0.24.3.0.0.5.1.4.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146.128.3.0.0.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77.128.3.0.0.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247.128.3.0.0.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227.128.3.0.0.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.18.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.19.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.20.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +.1.3.6.1.2.1.4.25.0 = INTEGER: 2 +.1.3.6.1.2.1.4.26.0 = INTEGER: 64 +.1.3.6.1.2.1.4.31.1.1.3.1 = Counter32: 6681 +.1.3.6.1.2.1.4.31.1.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.4.1 = Counter64: 6681 +.1.3.6.1.2.1.4.31.1.1.4.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.5.1 = Counter32: 582599 +.1.3.6.1.2.1.4.31.1.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.6.1 = Counter64: 582599 +.1.3.6.1.2.1.4.31.1.1.6.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.7.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.7.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.8.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.9.1 = Counter32: 2 +.1.3.6.1.2.1.4.31.1.1.9.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.12.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.13.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.14.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.14.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.15.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.15.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.17.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.18.1 = Counter32: 6679 +.1.3.6.1.2.1.4.31.1.1.18.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.19.1 = Counter64: 6679 +.1.3.6.1.2.1.4.31.1.1.19.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.20.1 = Counter32: 6255 +.1.3.6.1.2.1.4.31.1.1.20.2 = Counter32: 72 +.1.3.6.1.2.1.4.31.1.1.21.1 = Counter64: 6255 +.1.3.6.1.2.1.4.31.1.1.21.2 = Counter64: 72 +.1.3.6.1.2.1.4.31.1.1.22.1 = Counter32: 2 +.1.3.6.1.2.1.4.31.1.1.22.2 = Counter32: 8 +.1.3.6.1.2.1.4.31.1.1.23.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.23.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.24.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.24.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.25.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.25.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.26.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.26.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.27.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.27.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.28.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.29.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.29.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.30.1 = Counter32: 6253 +.1.3.6.1.2.1.4.31.1.1.30.2 = Counter32: 64 +.1.3.6.1.2.1.4.31.1.1.31.1 = Counter64: 6253 +.1.3.6.1.2.1.4.31.1.1.31.2 = Counter64: 64 +.1.3.6.1.2.1.4.31.1.1.32.1 = Counter32: 653122 +.1.3.6.1.2.1.4.31.1.1.32.2 = Counter32: 4704 +.1.3.6.1.2.1.4.31.1.1.33.1 = Counter64: 653122 +.1.3.6.1.2.1.4.31.1.1.33.2 = Counter64: 4704 +.1.3.6.1.2.1.4.31.1.1.34.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.34.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.35.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.35.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.36.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.36.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.37.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.37.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.38.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.38.2 = Counter32: 72 +.1.3.6.1.2.1.4.31.1.1.39.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.39.2 = Counter64: 72 +.1.3.6.1.2.1.4.31.1.1.40.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.40.2 = Counter32: 4704 +.1.3.6.1.2.1.4.31.1.1.41.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.41.2 = Counter64: 4704 +.1.3.6.1.2.1.4.31.1.1.42.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.43.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.44.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.1.1.45.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.1.1.46.1 = 0 +.1.3.6.1.2.1.4.31.1.1.46.2 = 0 +.1.3.6.1.2.1.4.31.1.1.47.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.1.1.47.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.2.0 = 0 +.1.3.6.1.2.1.4.31.3.1.3.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.3.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.4.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.5.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.6.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.7.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.8.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.9.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.10.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.11.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.12.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.13.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.14.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.15.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.16.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.17.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.18.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.19.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.20.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.20.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.20.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.20.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.21.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.21.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.21.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.23.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.23.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.24.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.25.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.26.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.27.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.28.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.29.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.30.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.30.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.30.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.30.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.30.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.31.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.31.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.31.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.32.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.32.2.2 = Counter32: 768 +.1.3.6.1.2.1.4.31.3.1.32.2.3 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.32.2.4 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.32.2.5 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.33.2.2 = Counter64: 768 +.1.3.6.1.2.1.4.31.3.1.33.2.3 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.4 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.33.2.5 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.34.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.34.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.35.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.2 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.3 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.4 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.36.2.5 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.2 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.3 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.4 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.37.2.5 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.38.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.38.2.2 = Counter32: 12 +.1.3.6.1.2.1.4.31.3.1.38.2.3 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.38.2.4 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.38.2.5 = Counter32: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.39.2.2 = Counter64: 12 +.1.3.6.1.2.1.4.31.3.1.39.2.3 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.4 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.39.2.5 = Counter64: 20 +.1.3.6.1.2.1.4.31.3.1.40.2.1 = Counter32: 0 +.1.3.6.1.2.1.4.31.3.1.40.2.2 = Counter32: 768 +.1.3.6.1.2.1.4.31.3.1.40.2.3 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.40.2.4 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.40.2.5 = Counter32: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.1 = Counter64: 0 +.1.3.6.1.2.1.4.31.3.1.41.2.2 = Counter64: 768 +.1.3.6.1.2.1.4.31.3.1.41.2.3 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.4 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.41.2.5 = Counter64: 1312 +.1.3.6.1.2.1.4.31.3.1.46.2.1 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.2 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.3 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.4 = 0 +.1.3.6.1.2.1.4.31.3.1.46.2.5 = 0 +.1.3.6.1.2.1.4.31.3.1.47.2.1 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.2 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.3 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.4 = Gauge32: 60000 +.1.3.6.1.2.1.4.31.3.1.47.2.5 = Gauge32: 60000 +.1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.5.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 3 +.1.3.6.1.2.1.4.32.1.6.1.1.4.127.0.0.0.8 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.2.1.4.10.0.2.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.3.1.4.192.168.57.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.4.1.4.192.168.58.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.5.1.4.192.168.59.0.24 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.6.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 1 +.1.3.6.1.2.1.4.32.1.7.1.1.4.127.0.0.0.8 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.2.1.4.10.0.2.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.3.1.4.192.168.57.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.4.1.4.192.168.58.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.5.1.4.192.168.59.0.24 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.7.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = INTEGER: 2 +.1.3.6.1.2.1.4.32.1.8.1.1.4.127.0.0.0.8 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.2.1.4.10.0.2.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.3.1.4.192.168.57.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.4.1.4.192.168.58.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.5.1.4.192.168.59.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.8.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.1.1.4.127.0.0.0.8 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.2.1.4.10.0.2.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.3.1.4.192.168.57.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.4.1.4.192.168.58.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.5.1.4.192.168.59.0.24 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.32.1.9.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 = Gauge32: 4294967295 +.1.3.6.1.2.1.4.33.0 = INTEGER: 1436303740 +.1.3.6.1.2.1.4.34.1.3.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.57.126 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.57.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.58.126 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.58.255 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.59.126 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.59.255 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.4.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.10.0.2.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.57.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.58.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.59.255 = INTEGER: 3 +.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.5.1.4.10.0.2.15 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.10.0.2.255 = OID: .1.3.6.1.2.1.4.32.1.5.2.1.4.10.0.2.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.57.126 = OID: .1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.57.255 = OID: .1.3.6.1.2.1.4.32.1.5.3.1.4.192.168.57.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.58.126 = OID: .1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.58.255 = OID: .1.3.6.1.2.1.4.32.1.5.4.1.4.192.168.58.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.59.126 = OID: .1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.59.255 = OID: .1.3.6.1.2.1.4.32.1.5.5.1.4.192.168.59.0.24 +.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = OID: .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = OID: .1.3.6.1.2.1.4.32.1.5.3.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = OID: .1.3.6.1.2.1.4.32.1.5.2.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = OID: .1.3.6.1.2.1.4.32.1.5.5.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = OID: .1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.6.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.57.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.57.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.58.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.58.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.59.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.59.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 5 +.1.3.6.1.2.1.4.34.1.7.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.10.0.2.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.57.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.58.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.59.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.8.1.4.10.0.2.15 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.10.0.2.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.57.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.57.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.58.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.58.255 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.59.126 = 0 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.59.255 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = 0 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.10.0.2.15 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.10.0.2.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.57.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.57.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.58.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.58.255 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.59.126 = 0 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.59.255 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = 0 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = 0 +.1.3.6.1.2.1.4.34.1.10.1.4.10.0.2.15 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.10.0.2.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.57.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.57.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.58.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.58.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.59.126 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.59.255 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 1 +.1.3.6.1.2.1.4.34.1.11.1.4.10.0.2.15 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.10.0.2.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.57.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.57.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.58.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.58.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.59.126 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.59.255 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.60.38.146 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.141.192.77 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.164.98.247 = INTEGER: 4 +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.10.0.39.255.254.254.142.227 = INTEGER: 4 +.1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.2.2 = Hex-STRING: 52 54 00 12 35 02 +.1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.2.3 = Hex-STRING: 52 54 00 12 35 03 +.1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.57.131 = Hex-STRING: 08 00 27 35 A3 73 +.1.3.6.1.2.1.4.35.1.5.2.1.4.10.0.2.2 = 8109 +.1.3.6.1.2.1.4.35.1.5.2.1.4.10.0.2.3 = 8109 +.1.3.6.1.2.1.4.35.1.5.3.1.4.192.168.57.131 = 8109 +.1.3.6.1.2.1.4.35.1.6.2.1.4.10.0.2.2 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.6.2.1.4.10.0.2.3 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.6.3.1.4.192.168.57.131 = INTEGER: 3 +.1.3.6.1.2.1.4.35.1.7.2.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.7.2.1.4.10.0.2.3 = INTEGER: 2 +.1.3.6.1.2.1.4.35.1.7.3.1.4.192.168.57.131 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.2.1.4.10.0.2.2 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.2.1.4.10.0.2.3 = INTEGER: 1 +.1.3.6.1.2.1.4.35.1.8.3.1.4.192.168.57.131 = INTEGER: 1 +.1.3.6.1.2.1.4.36.1.2.2 = Gauge32: 2 +.1.3.6.1.2.1.4.36.1.2.3 = Gauge32: 3 +.1.3.6.1.2.1.4.36.1.2.4 = Gauge32: 4 +.1.3.6.1.2.1.4.36.1.2.5 = Gauge32: 5 +.1.3.6.1.2.1.4.36.1.3.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.3.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.4.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.5.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.6.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.7.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.8.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.9.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.10.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.11.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.12.5 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.2 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.3 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.4 = Gauge32: 0 +.1.3.6.1.2.1.4.36.1.13.5 = Gauge32: 0 +.1.3.6.1.2.1.4.37.1.4.1.4.10.0.2.2.2 = Gauge32: 65535 +.1.3.6.1.2.1.4.37.1.5.1.4.10.0.2.2.2 = INTEGER: 0 +.1.3.6.1.2.1.5.1.0 = Counter32: 13 +.1.3.6.1.2.1.5.2.0 = Counter32: 0 +.1.3.6.1.2.1.5.3.0 = Counter32: 0 +.1.3.6.1.2.1.5.4.0 = Counter32: 0 +.1.3.6.1.2.1.5.5.0 = Counter32: 0 +.1.3.6.1.2.1.5.6.0 = Counter32: 0 +.1.3.6.1.2.1.5.7.0 = Counter32: 0 +.1.3.6.1.2.1.5.8.0 = Counter32: 13 +.1.3.6.1.2.1.5.9.0 = Counter32: 0 +.1.3.6.1.2.1.5.10.0 = Counter32: 0 +.1.3.6.1.2.1.5.11.0 = Counter32: 0 +.1.3.6.1.2.1.5.12.0 = Counter32: 0 +.1.3.6.1.2.1.5.13.0 = Counter32: 0 +.1.3.6.1.2.1.5.14.0 = Counter32: 25 +.1.3.6.1.2.1.5.15.0 = Counter32: 0 +.1.3.6.1.2.1.5.16.0 = Counter32: 12 +.1.3.6.1.2.1.5.17.0 = Counter32: 0 +.1.3.6.1.2.1.5.18.0 = Counter32: 0 +.1.3.6.1.2.1.5.19.0 = Counter32: 0 +.1.3.6.1.2.1.5.20.0 = Counter32: 0 +.1.3.6.1.2.1.5.21.0 = Counter32: 0 +.1.3.6.1.2.1.5.22.0 = Counter32: 13 +.1.3.6.1.2.1.5.23.0 = Counter32: 0 +.1.3.6.1.2.1.5.24.0 = Counter32: 0 +.1.3.6.1.2.1.5.25.0 = Counter32: 0 +.1.3.6.1.2.1.5.26.0 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.2.1 = Counter32: 13 +.1.3.6.1.2.1.5.29.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.3.1 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.4.1 = Counter32: 25 +.1.3.6.1.2.1.5.29.1.4.2 = Counter32: 72 +.1.3.6.1.2.1.5.29.1.5.1 = Counter32: 0 +.1.3.6.1.2.1.5.29.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.0 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.3 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.4 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.5 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.8 = Counter32: 13 +.1.3.6.1.2.1.5.30.1.3.1.11 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.12 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.13 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.14 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.17 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.3.1.18 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.0 = Counter32: 13 +.1.3.6.1.2.1.5.30.1.4.1.3 = Counter32: 12 +.1.3.6.1.2.1.5.30.1.4.1.4 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.5 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.8 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.11 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.12 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.13 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.14 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.17 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.1.18 = Counter32: 0 +.1.3.6.1.2.1.5.30.1.4.2.133 = Counter32: 37 +.1.3.6.1.2.1.5.30.1.4.2.135 = Counter32: 7 +.1.3.6.1.2.1.5.30.1.4.2.143 = Counter32: 28 +.1.3.6.1.2.1.6.1.0 = INTEGER: 1 +.1.3.6.1.2.1.6.2.0 = INTEGER: 200 +.1.3.6.1.2.1.6.3.0 = INTEGER: 120000 +.1.3.6.1.2.1.6.4.0 = INTEGER: -1 +.1.3.6.1.2.1.6.5.0 = Counter32: 0 +.1.3.6.1.2.1.6.6.0 = Counter32: 33 +.1.3.6.1.2.1.6.7.0 = Counter32: 0 +.1.3.6.1.2.1.6.8.0 = Counter32: 1 +.1.3.6.1.2.1.6.9.0 = Gauge32: 1 +.1.3.6.1.2.1.6.10.0 = Counter32: 1969 +.1.3.6.1.2.1.6.11.0 = Counter32: 1569 +.1.3.6.1.2.1.6.12.0 = Counter32: 0 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 2 +.1.3.6.1.2.1.6.13.1.1.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 5 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.0.0.0.0.5666.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.2.10.0.2.15.22.10.0.2.2.42298 = IpAddress: 10.0.2.15 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.3.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 5666 +.1.3.6.1.2.1.6.13.1.3.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 22 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.0.0.0.0.5666.0.0.0.0.0 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.6.13.1.4.10.0.2.15.22.10.0.2.2.42298 = IpAddress: 10.0.2.2 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.0.0.0.0.5666.0.0.0.0.0 = INTEGER: 0 +.1.3.6.1.2.1.6.13.1.5.10.0.2.15.22.10.0.2.2.42298 = INTEGER: 42298 +.1.3.6.1.2.1.6.14.0 = Counter32: 0 +.1.3.6.1.2.1.6.15.0 = Counter32: 0 +.1.3.6.1.2.1.6.19.1.7.1.4.10.0.2.15.22.1.4.10.0.2.2.42298 = INTEGER: 5 +.1.3.6.1.2.1.6.19.1.8.1.4.10.0.2.15.22.1.4.10.0.2.2.42298 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.5666 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22 = Gauge32: 0 +.1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.5666 = Gauge32: 0 +.1.3.6.1.2.1.7.1.0 = Counter32: 5871 +.1.3.6.1.2.1.7.2.0 = Counter32: 12 +.1.3.6.1.2.1.7.3.0 = Counter32: 0 +.1.3.6.1.2.1.7.4.0 = Counter32: 5870 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.68 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.0.0.0.0.161 = IpAddress: 0.0.0.0 +.1.3.6.1.2.1.7.5.1.1.127.0.0.1.323 = IpAddress: 127.0.0.1 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.68 = INTEGER: 68 +.1.3.6.1.2.1.7.5.1.2.0.0.0.0.161 = INTEGER: 161 +.1.3.6.1.2.1.7.5.1.2.127.0.0.1.323 = INTEGER: 323 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.68.1.4.0.0.0.0.0.11228 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.20596 = Gauge32: 1199 +.1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.323.1.4.0.0.0.0.0.11445 = Gauge32: 0 +.1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.323.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.11446 = Gauge32: 0 +.1.3.6.1.2.1.10.7.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.10.7.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.10.7.2.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.10.7.2.1.2.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.2.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.4.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.5.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.7.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.8.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.10.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.11.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.13.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.2 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.3 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.4 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.16.5 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.19.2 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.3 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.4 = INTEGER: 3 +.1.3.6.1.2.1.10.7.2.1.19.5 = INTEGER: 3 +.1.3.6.1.2.1.11.1.0 = Counter32: 5719 +.1.3.6.1.2.1.11.2.0 = Counter32: 5719 +.1.3.6.1.2.1.11.3.0 = Counter32: 0 +.1.3.6.1.2.1.11.4.0 = Counter32: 0 +.1.3.6.1.2.1.11.5.0 = Counter32: 0 +.1.3.6.1.2.1.11.6.0 = Counter32: 0 +.1.3.6.1.2.1.11.8.0 = Counter32: 0 +.1.3.6.1.2.1.11.9.0 = Counter32: 0 +.1.3.6.1.2.1.11.10.0 = Counter32: 0 +.1.3.6.1.2.1.11.11.0 = Counter32: 0 +.1.3.6.1.2.1.11.12.0 = Counter32: 0 +.1.3.6.1.2.1.11.13.0 = Counter32: 5729 +.1.3.6.1.2.1.11.14.0 = Counter32: 0 +.1.3.6.1.2.1.11.15.0 = Counter32: 0 +.1.3.6.1.2.1.11.16.0 = Counter32: 5733 +.1.3.6.1.2.1.11.17.0 = Counter32: 0 +.1.3.6.1.2.1.11.18.0 = Counter32: 0 +.1.3.6.1.2.1.11.19.0 = Counter32: 0 +.1.3.6.1.2.1.11.20.0 = Counter32: 0 +.1.3.6.1.2.1.11.21.0 = Counter32: 0 +.1.3.6.1.2.1.11.22.0 = Counter32: 0 +.1.3.6.1.2.1.11.24.0 = Counter32: 0 +.1.3.6.1.2.1.11.25.0 = Counter32: 0 +.1.3.6.1.2.1.11.26.0 = Counter32: 0 +.1.3.6.1.2.1.11.27.0 = Counter32: 0 +.1.3.6.1.2.1.11.28.0 = Counter32: 5743 +.1.3.6.1.2.1.11.29.0 = Counter32: 0 +.1.3.6.1.2.1.11.30.0 = INTEGER: 2 +.1.3.6.1.2.1.11.31.0 = Counter32: 0 +.1.3.6.1.2.1.11.32.0 = Counter32: 0 +.1.3.6.1.2.1.25.1.1.0 = 48160 +.1.3.6.1.2.1.25.1.2.0 = Hex-STRING: 07 E8 03 12 16 29 1E 00 2B 01 00 +.1.3.6.1.2.1.25.1.3.0 = INTEGER: 393216 +.1.3.6.1.2.1.25.1.4.0 = STRING: "BOOT_IMAGE=/boot/vmlinuz-5.10.0-28-amd64 root=UUID=c62a50a0-9eed-4d76-86ad-b53c695efb0d ro consoleblank=0 elevator=noop scsi_mod" +.1.3.6.1.2.1.25.1.5.0 = Gauge32: 1 +.1.3.6.1.2.1.25.1.6.0 = Gauge32: 76 +.1.3.6.1.2.1.25.1.7.0 = INTEGER: 0 +.1.3.6.1.2.1.25.2.2.0 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.2.3.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.2.3.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.2.3.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.2.3.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.2.3.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.2.3.1.1.35 = INTEGER: 35 +.1.3.6.1.2.1.25.2.3.1.1.36 = INTEGER: 36 +.1.3.6.1.2.1.25.2.3.1.1.38 = INTEGER: 38 +.1.3.6.1.2.1.25.2.3.1.1.39 = INTEGER: 39 +.1.3.6.1.2.1.25.2.3.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.2.3.1.2.1 = OID: .1.3.6.1.2.1.25.2.1.2 +.1.3.6.1.2.1.25.2.3.1.2.3 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.6 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.7 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.8 = OID: .1.3.6.1.2.1.25.2.1.1 +.1.3.6.1.2.1.25.2.3.1.2.10 = OID: .1.3.6.1.2.1.25.2.1.3 +.1.3.6.1.2.1.25.2.3.1.2.35 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.36 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.38 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.39 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.2.51 = OID: .1.3.6.1.2.1.25.2.1.4 +.1.3.6.1.2.1.25.2.3.1.3.1 = STRING: "Physical memory" +.1.3.6.1.2.1.25.2.3.1.3.3 = STRING: "Virtual memory" +.1.3.6.1.2.1.25.2.3.1.3.6 = STRING: "Memory buffers" +.1.3.6.1.2.1.25.2.3.1.3.7 = STRING: "Cached memory" +.1.3.6.1.2.1.25.2.3.1.3.8 = STRING: "Shared memory" +.1.3.6.1.2.1.25.2.3.1.3.10 = STRING: "Swap space" +.1.3.6.1.2.1.25.2.3.1.3.35 = STRING: "/run" +.1.3.6.1.2.1.25.2.3.1.3.36 = STRING: "/" +.1.3.6.1.2.1.25.2.3.1.3.38 = STRING: "/dev/shm" +.1.3.6.1.2.1.25.2.3.1.3.39 = STRING: "/run/lock" +.1.3.6.1.2.1.25.2.3.1.3.51 = STRING: "/run/user/1000" +.1.3.6.1.2.1.25.2.3.1.4.1 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.3 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.6 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.7 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.8 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.10 = INTEGER: 1024 +.1.3.6.1.2.1.25.2.3.1.4.35 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.36 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.38 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.39 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.4.51 = INTEGER: 4096 +.1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.3 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.6 = INTEGER: 987812 +.1.3.6.1.2.1.25.2.3.1.5.7 = INTEGER: 115756 +.1.3.6.1.2.1.25.2.3.1.5.8 = INTEGER: 456 +.1.3.6.1.2.1.25.2.3.1.5.10 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.5.35 = INTEGER: 24696 +.1.3.6.1.2.1.25.2.3.1.5.36 = INTEGER: 5116308 +.1.3.6.1.2.1.25.2.3.1.5.38 = INTEGER: 123476 +.1.3.6.1.2.1.25.2.3.1.5.39 = INTEGER: 1280 +.1.3.6.1.2.1.25.2.3.1.5.51 = INTEGER: 24695 +.1.3.6.1.2.1.25.2.3.1.6.1 = INTEGER: 203444 +.1.3.6.1.2.1.25.2.3.1.6.3 = INTEGER: 203444 +.1.3.6.1.2.1.25.2.3.1.6.6 = INTEGER: 14368 +.1.3.6.1.2.1.25.2.3.1.6.7 = INTEGER: 115756 +.1.3.6.1.2.1.25.2.3.1.6.8 = INTEGER: 456 +.1.3.6.1.2.1.25.2.3.1.6.10 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.35 = INTEGER: 114 +.1.3.6.1.2.1.25.2.3.1.6.36 = INTEGER: 390635 +.1.3.6.1.2.1.25.2.3.1.6.38 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.39 = INTEGER: 0 +.1.3.6.1.2.1.25.2.3.1.6.51 = INTEGER: 0 +.1.3.6.1.2.1.25.3.2.1.1.196608 = INTEGER: 196608 +.1.3.6.1.2.1.25.3.2.1.1.262145 = INTEGER: 262145 +.1.3.6.1.2.1.25.3.2.1.1.262146 = INTEGER: 262146 +.1.3.6.1.2.1.25.3.2.1.1.262147 = INTEGER: 262147 +.1.3.6.1.2.1.25.3.2.1.1.262148 = INTEGER: 262148 +.1.3.6.1.2.1.25.3.2.1.1.262149 = INTEGER: 262149 +.1.3.6.1.2.1.25.3.2.1.1.786432 = INTEGER: 786432 +.1.3.6.1.2.1.25.3.2.1.2.196608 = OID: .1.3.6.1.2.1.25.3.1.3 +.1.3.6.1.2.1.25.3.2.1.2.262145 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262146 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262147 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262148 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.262149 = OID: .1.3.6.1.2.1.25.3.1.4 +.1.3.6.1.2.1.25.3.2.1.2.786432 = OID: .1.3.6.1.2.1.25.3.1.12 +.1.3.6.1.2.1.25.3.2.1.3.196608 = STRING: "AuthenticAMD: AMD Ryzen 7 PRO 3700U w/ Radeon Vega Mobile Gfx" +.1.3.6.1.2.1.25.3.2.1.3.262145 = STRING: "network interface lo" +.1.3.6.1.2.1.25.3.2.1.3.262146 = STRING: "network interface eth0" +.1.3.6.1.2.1.25.3.2.1.3.262147 = STRING: "network interface eth1" +.1.3.6.1.2.1.25.3.2.1.3.262148 = STRING: "network interface eth2" +.1.3.6.1.2.1.25.3.2.1.3.262149 = STRING: "network interface eth3" +.1.3.6.1.2.1.25.3.2.1.3.786432 = STRING: "Guessing that there's a floating point co-processor" +.1.3.6.1.2.1.25.3.2.1.4.196608 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262145 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262146 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262147 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262148 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.262149 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.4.786432 = OID: .0.0 +.1.3.6.1.2.1.25.3.2.1.5.196608 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262145 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262146 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262147 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262148 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.5.262149 = INTEGER: 2 +.1.3.6.1.2.1.25.3.2.1.6.262145 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262146 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262147 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262148 = Counter32: 0 +.1.3.6.1.2.1.25.3.2.1.6.262149 = Counter32: 0 +.1.3.6.1.2.1.25.3.3.1.1.196608 = OID: .0.0 +.1.3.6.1.2.1.25.3.3.1.2.196608 = INTEGER: 2 +.1.3.6.1.2.1.25.3.4.1.1.262145 = INTEGER: 1 +.1.3.6.1.2.1.25.3.4.1.1.262146 = INTEGER: 2 +.1.3.6.1.2.1.25.3.4.1.1.262147 = INTEGER: 3 +.1.3.6.1.2.1.25.3.4.1.1.262148 = INTEGER: 4 +.1.3.6.1.2.1.25.3.4.1.1.262149 = INTEGER: 5 +.1.3.6.1.2.1.25.3.8.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.25.3.8.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.3.8.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.3.8.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.3.8.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.3.8.1.2.5 = STRING: "/run" +.1.3.6.1.2.1.25.3.8.1.2.6 = STRING: "/" +.1.3.6.1.2.1.25.3.8.1.2.8 = STRING: "/dev/shm" +.1.3.6.1.2.1.25.3.8.1.2.9 = STRING: "/run/lock" +.1.3.6.1.2.1.25.3.8.1.2.21 = STRING: "/run/user/1000" +.1.3.6.1.2.1.25.3.8.1.3.5 = "" +.1.3.6.1.2.1.25.3.8.1.3.6 = "" +.1.3.6.1.2.1.25.3.8.1.3.8 = "" +.1.3.6.1.2.1.25.3.8.1.3.9 = "" +.1.3.6.1.2.1.25.3.8.1.3.21 = "" +.1.3.6.1.2.1.25.3.8.1.4.5 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.6 = OID: .1.3.6.1.2.1.25.3.9.23 +.1.3.6.1.2.1.25.3.8.1.4.8 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.9 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.4.21 = OID: .1.3.6.1.2.1.25.3.9.1 +.1.3.6.1.2.1.25.3.8.1.5.5 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.6 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.8 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.9 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.5.21 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.5 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.6 = INTEGER: 1 +.1.3.6.1.2.1.25.3.8.1.6.8 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.9 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.6.21 = INTEGER: 2 +.1.3.6.1.2.1.25.3.8.1.7.5 = INTEGER: 35 +.1.3.6.1.2.1.25.3.8.1.7.6 = INTEGER: 36 +.1.3.6.1.2.1.25.3.8.1.7.8 = INTEGER: 38 +.1.3.6.1.2.1.25.3.8.1.7.9 = INTEGER: 39 +.1.3.6.1.2.1.25.3.8.1.7.21 = INTEGER: 51 +.1.3.6.1.2.1.25.3.8.1.8.5 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.6 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.8 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.9 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.8.21 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.5 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.6 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.8 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.9 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.3.8.1.9.21 = Hex-STRING: 00 00 01 01 00 00 00 00 +.1.3.6.1.2.1.25.4.2.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.4.2.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.4.2.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.4.2.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.4.2.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.4.2.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.4.2.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.4.2.1.1.11 = INTEGER: 11 +.1.3.6.1.2.1.25.4.2.1.1.12 = INTEGER: 12 +.1.3.6.1.2.1.25.4.2.1.1.13 = INTEGER: 13 +.1.3.6.1.2.1.25.4.2.1.1.14 = INTEGER: 14 +.1.3.6.1.2.1.25.4.2.1.1.15 = INTEGER: 15 +.1.3.6.1.2.1.25.4.2.1.1.17 = INTEGER: 17 +.1.3.6.1.2.1.25.4.2.1.1.18 = INTEGER: 18 +.1.3.6.1.2.1.25.4.2.1.1.19 = INTEGER: 19 +.1.3.6.1.2.1.25.4.2.1.1.20 = INTEGER: 20 +.1.3.6.1.2.1.25.4.2.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.4.2.1.1.22 = INTEGER: 22 +.1.3.6.1.2.1.25.4.2.1.1.23 = INTEGER: 23 +.1.3.6.1.2.1.25.4.2.1.1.24 = INTEGER: 24 +.1.3.6.1.2.1.25.4.2.1.1.25 = INTEGER: 25 +.1.3.6.1.2.1.25.4.2.1.1.43 = INTEGER: 43 +.1.3.6.1.2.1.25.4.2.1.1.44 = INTEGER: 44 +.1.3.6.1.2.1.25.4.2.1.1.45 = INTEGER: 45 +.1.3.6.1.2.1.25.4.2.1.1.46 = INTEGER: 46 +.1.3.6.1.2.1.25.4.2.1.1.47 = INTEGER: 47 +.1.3.6.1.2.1.25.4.2.1.1.48 = INTEGER: 48 +.1.3.6.1.2.1.25.4.2.1.1.49 = INTEGER: 49 +.1.3.6.1.2.1.25.4.2.1.1.50 = INTEGER: 50 +.1.3.6.1.2.1.25.4.2.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.4.2.1.1.52 = INTEGER: 52 +.1.3.6.1.2.1.25.4.2.1.1.62 = INTEGER: 62 +.1.3.6.1.2.1.25.4.2.1.1.65 = INTEGER: 65 +.1.3.6.1.2.1.25.4.2.1.1.66 = INTEGER: 66 +.1.3.6.1.2.1.25.4.2.1.1.103 = INTEGER: 103 +.1.3.6.1.2.1.25.4.2.1.1.104 = INTEGER: 104 +.1.3.6.1.2.1.25.4.2.1.1.105 = INTEGER: 105 +.1.3.6.1.2.1.25.4.2.1.1.106 = INTEGER: 106 +.1.3.6.1.2.1.25.4.2.1.1.109 = INTEGER: 109 +.1.3.6.1.2.1.25.4.2.1.1.128 = INTEGER: 128 +.1.3.6.1.2.1.25.4.2.1.1.129 = INTEGER: 129 +.1.3.6.1.2.1.25.4.2.1.1.177 = INTEGER: 177 +.1.3.6.1.2.1.25.4.2.1.1.193 = INTEGER: 193 +.1.3.6.1.2.1.25.4.2.1.1.218 = INTEGER: 218 +.1.3.6.1.2.1.25.4.2.1.1.220 = INTEGER: 220 +.1.3.6.1.2.1.25.4.2.1.1.221 = INTEGER: 221 +.1.3.6.1.2.1.25.4.2.1.1.243 = INTEGER: 243 +.1.3.6.1.2.1.25.4.2.1.1.257 = INTEGER: 257 +.1.3.6.1.2.1.25.4.2.1.1.260 = INTEGER: 260 +.1.3.6.1.2.1.25.4.2.1.1.263 = INTEGER: 263 +.1.3.6.1.2.1.25.4.2.1.1.265 = INTEGER: 265 +.1.3.6.1.2.1.25.4.2.1.1.268 = INTEGER: 268 +.1.3.6.1.2.1.25.4.2.1.1.270 = INTEGER: 270 +.1.3.6.1.2.1.25.4.2.1.1.273 = INTEGER: 273 +.1.3.6.1.2.1.25.4.2.1.1.276 = INTEGER: 276 +.1.3.6.1.2.1.25.4.2.1.1.279 = INTEGER: 279 +.1.3.6.1.2.1.25.4.2.1.1.280 = INTEGER: 280 +.1.3.6.1.2.1.25.4.2.1.1.283 = INTEGER: 283 +.1.3.6.1.2.1.25.4.2.1.1.375 = INTEGER: 375 +.1.3.6.1.2.1.25.4.2.1.1.377 = INTEGER: 377 +.1.3.6.1.2.1.25.4.2.1.1.379 = INTEGER: 379 +.1.3.6.1.2.1.25.4.2.1.1.381 = INTEGER: 381 +.1.3.6.1.2.1.25.4.2.1.1.382 = INTEGER: 382 +.1.3.6.1.2.1.25.4.2.1.1.387 = INTEGER: 387 +.1.3.6.1.2.1.25.4.2.1.1.388 = INTEGER: 388 +.1.3.6.1.2.1.25.4.2.1.1.974 = INTEGER: 974 +.1.3.6.1.2.1.25.4.2.1.1.977 = INTEGER: 977 +.1.3.6.1.2.1.25.4.2.1.1.978 = INTEGER: 978 +.1.3.6.1.2.1.25.4.2.1.1.996 = INTEGER: 996 +.1.3.6.1.2.1.25.4.2.1.1.997 = INTEGER: 997 +.1.3.6.1.2.1.25.4.2.1.1.1015 = INTEGER: 1015 +.1.3.6.1.2.1.25.4.2.1.1.1016 = INTEGER: 1016 +.1.3.6.1.2.1.25.4.2.1.1.1198 = INTEGER: 1198 +.1.3.6.1.2.1.25.4.2.1.1.1199 = INTEGER: 1199 +.1.3.6.1.2.1.25.4.2.1.2.1 = STRING: "systemd" +.1.3.6.1.2.1.25.4.2.1.2.2 = STRING: "kthreadd" +.1.3.6.1.2.1.25.4.2.1.2.3 = STRING: "rcu_gp" +.1.3.6.1.2.1.25.4.2.1.2.4 = STRING: "rcu_par_gp" +.1.3.6.1.2.1.25.4.2.1.2.6 = STRING: "kworker/0:0H-events_highpri" +.1.3.6.1.2.1.25.4.2.1.2.7 = STRING: "kworker/u2:0-flush-8:0" +.1.3.6.1.2.1.25.4.2.1.2.8 = STRING: "mm_percpu_wq" +.1.3.6.1.2.1.25.4.2.1.2.9 = STRING: "rcu_tasks_rude_" +.1.3.6.1.2.1.25.4.2.1.2.10 = STRING: "rcu_tasks_trace" +.1.3.6.1.2.1.25.4.2.1.2.11 = STRING: "ksoftirqd/0" +.1.3.6.1.2.1.25.4.2.1.2.12 = STRING: "rcu_sched" +.1.3.6.1.2.1.25.4.2.1.2.13 = STRING: "migration/0" +.1.3.6.1.2.1.25.4.2.1.2.14 = STRING: "kworker/0:1-events_power_efficient" +.1.3.6.1.2.1.25.4.2.1.2.15 = STRING: "cpuhp/0" +.1.3.6.1.2.1.25.4.2.1.2.17 = STRING: "kdevtmpfs" +.1.3.6.1.2.1.25.4.2.1.2.18 = STRING: "netns" +.1.3.6.1.2.1.25.4.2.1.2.19 = STRING: "kauditd" +.1.3.6.1.2.1.25.4.2.1.2.20 = STRING: "khungtaskd" +.1.3.6.1.2.1.25.4.2.1.2.21 = STRING: "oom_reaper" +.1.3.6.1.2.1.25.4.2.1.2.22 = STRING: "writeback" +.1.3.6.1.2.1.25.4.2.1.2.23 = STRING: "kcompactd0" +.1.3.6.1.2.1.25.4.2.1.2.24 = STRING: "ksmd" +.1.3.6.1.2.1.25.4.2.1.2.25 = STRING: "khugepaged" +.1.3.6.1.2.1.25.4.2.1.2.43 = STRING: "kintegrityd" +.1.3.6.1.2.1.25.4.2.1.2.44 = STRING: "kblockd" +.1.3.6.1.2.1.25.4.2.1.2.45 = STRING: "blkcg_punt_bio" +.1.3.6.1.2.1.25.4.2.1.2.46 = STRING: "edac-poller" +.1.3.6.1.2.1.25.4.2.1.2.47 = STRING: "devfreq_wq" +.1.3.6.1.2.1.25.4.2.1.2.48 = STRING: "kworker/0:1H-kblockd" +.1.3.6.1.2.1.25.4.2.1.2.49 = STRING: "kswapd0" +.1.3.6.1.2.1.25.4.2.1.2.50 = STRING: "kthrotld" +.1.3.6.1.2.1.25.4.2.1.2.51 = STRING: "acpi_thermal_pm" +.1.3.6.1.2.1.25.4.2.1.2.52 = STRING: "ipv6_addrconf" +.1.3.6.1.2.1.25.4.2.1.2.62 = STRING: "kstrp" +.1.3.6.1.2.1.25.4.2.1.2.65 = STRING: "zswap-shrink" +.1.3.6.1.2.1.25.4.2.1.2.66 = STRING: "kworker/u3:0" +.1.3.6.1.2.1.25.4.2.1.2.103 = STRING: "kworker/0:2-events" +.1.3.6.1.2.1.25.4.2.1.2.104 = STRING: "ata_sff" +.1.3.6.1.2.1.25.4.2.1.2.105 = STRING: "scsi_eh_0" +.1.3.6.1.2.1.25.4.2.1.2.106 = STRING: "scsi_tmf_0" +.1.3.6.1.2.1.25.4.2.1.2.109 = STRING: "kworker/u2:2-flush-8:0" +.1.3.6.1.2.1.25.4.2.1.2.128 = STRING: "jbd2/sda1-8" +.1.3.6.1.2.1.25.4.2.1.2.129 = STRING: "ext4-rsv-conver" +.1.3.6.1.2.1.25.4.2.1.2.177 = STRING: "systemd-journal" +.1.3.6.1.2.1.25.4.2.1.2.193 = STRING: "systemd-udevd" +.1.3.6.1.2.1.25.4.2.1.2.218 = STRING: "dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.2.220 = STRING: "rsyslogd" +.1.3.6.1.2.1.25.4.2.1.2.221 = STRING: "systemd-logind" +.1.3.6.1.2.1.25.4.2.1.2.243 = STRING: "cryptd" +.1.3.6.1.2.1.25.4.2.1.2.257 = STRING: "irq/18-vmwgfx" +.1.3.6.1.2.1.25.4.2.1.2.260 = STRING: "ttm_swap" +.1.3.6.1.2.1.25.4.2.1.2.263 = STRING: "card0-crtc0" +.1.3.6.1.2.1.25.4.2.1.2.265 = STRING: "card0-crtc1" +.1.3.6.1.2.1.25.4.2.1.2.268 = STRING: "card0-crtc2" +.1.3.6.1.2.1.25.4.2.1.2.270 = STRING: "card0-crtc3" +.1.3.6.1.2.1.25.4.2.1.2.273 = STRING: "card0-crtc4" +.1.3.6.1.2.1.25.4.2.1.2.276 = STRING: "card0-crtc5" +.1.3.6.1.2.1.25.4.2.1.2.279 = STRING: "card0-crtc6" +.1.3.6.1.2.1.25.4.2.1.2.280 = STRING: "card0-crtc7" +.1.3.6.1.2.1.25.4.2.1.2.283 = STRING: "dhclient" +.1.3.6.1.2.1.25.4.2.1.2.375 = STRING: "unattended-upgr" +.1.3.6.1.2.1.25.4.2.1.2.377 = STRING: "cron" +.1.3.6.1.2.1.25.4.2.1.2.379 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.381 = STRING: "chronyd" +.1.3.6.1.2.1.25.4.2.1.2.382 = STRING: "chronyd" +.1.3.6.1.2.1.25.4.2.1.2.387 = STRING: "centreon-nrpe4" +.1.3.6.1.2.1.25.4.2.1.2.388 = STRING: "agetty" +.1.3.6.1.2.1.25.4.2.1.2.974 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.977 = STRING: "systemd" +.1.3.6.1.2.1.25.4.2.1.2.978 = STRING: "(sd-pam)" +.1.3.6.1.2.1.25.4.2.1.2.996 = STRING: "sshd" +.1.3.6.1.2.1.25.4.2.1.2.997 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.1015 = STRING: "sudo" +.1.3.6.1.2.1.25.4.2.1.2.1016 = STRING: "bash" +.1.3.6.1.2.1.25.4.2.1.2.1198 = STRING: "kworker/u2:1-ext4-rsv-conversion" +.1.3.6.1.2.1.25.4.2.1.2.1199 = STRING: "snmpd" +.1.3.6.1.2.1.25.4.2.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.6 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.7 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.8 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.9 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.10 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.11 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.12 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.13 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.14 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.15 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.17 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.18 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.19 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.20 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.21 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.22 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.23 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.24 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.25 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.43 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.44 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.45 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.46 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.47 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.48 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.49 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.50 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.51 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.52 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.62 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.65 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.66 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.103 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.104 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.105 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.106 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.109 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.128 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.129 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.177 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.193 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.218 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.220 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.221 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.243 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.257 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.260 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.263 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.265 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.268 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.270 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.273 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.276 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.279 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.280 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.283 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.375 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.377 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.379 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.381 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.382 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.387 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.388 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.974 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.977 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.978 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.996 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.997 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1015 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1016 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1198 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.3.1199 = OID: .0.0 +.1.3.6.1.2.1.25.4.2.1.4.1 = STRING: "/sbin/init" +.1.3.6.1.2.1.25.4.2.1.4.2 = "" +.1.3.6.1.2.1.25.4.2.1.4.3 = "" +.1.3.6.1.2.1.25.4.2.1.4.4 = "" +.1.3.6.1.2.1.25.4.2.1.4.6 = "" +.1.3.6.1.2.1.25.4.2.1.4.7 = "" +.1.3.6.1.2.1.25.4.2.1.4.8 = "" +.1.3.6.1.2.1.25.4.2.1.4.9 = "" +.1.3.6.1.2.1.25.4.2.1.4.10 = "" +.1.3.6.1.2.1.25.4.2.1.4.11 = "" +.1.3.6.1.2.1.25.4.2.1.4.12 = "" +.1.3.6.1.2.1.25.4.2.1.4.13 = "" +.1.3.6.1.2.1.25.4.2.1.4.14 = "" +.1.3.6.1.2.1.25.4.2.1.4.15 = "" +.1.3.6.1.2.1.25.4.2.1.4.17 = "" +.1.3.6.1.2.1.25.4.2.1.4.18 = "" +.1.3.6.1.2.1.25.4.2.1.4.19 = "" +.1.3.6.1.2.1.25.4.2.1.4.20 = "" +.1.3.6.1.2.1.25.4.2.1.4.21 = "" +.1.3.6.1.2.1.25.4.2.1.4.22 = "" +.1.3.6.1.2.1.25.4.2.1.4.23 = "" +.1.3.6.1.2.1.25.4.2.1.4.24 = "" +.1.3.6.1.2.1.25.4.2.1.4.25 = "" +.1.3.6.1.2.1.25.4.2.1.4.43 = "" +.1.3.6.1.2.1.25.4.2.1.4.44 = "" +.1.3.6.1.2.1.25.4.2.1.4.45 = "" +.1.3.6.1.2.1.25.4.2.1.4.46 = "" +.1.3.6.1.2.1.25.4.2.1.4.47 = "" +.1.3.6.1.2.1.25.4.2.1.4.48 = "" +.1.3.6.1.2.1.25.4.2.1.4.49 = "" +.1.3.6.1.2.1.25.4.2.1.4.50 = "" +.1.3.6.1.2.1.25.4.2.1.4.51 = "" +.1.3.6.1.2.1.25.4.2.1.4.52 = "" +.1.3.6.1.2.1.25.4.2.1.4.62 = "" +.1.3.6.1.2.1.25.4.2.1.4.65 = "" +.1.3.6.1.2.1.25.4.2.1.4.66 = "" +.1.3.6.1.2.1.25.4.2.1.4.103 = "" +.1.3.6.1.2.1.25.4.2.1.4.104 = "" +.1.3.6.1.2.1.25.4.2.1.4.105 = "" +.1.3.6.1.2.1.25.4.2.1.4.106 = "" +.1.3.6.1.2.1.25.4.2.1.4.109 = "" +.1.3.6.1.2.1.25.4.2.1.4.128 = "" +.1.3.6.1.2.1.25.4.2.1.4.129 = "" +.1.3.6.1.2.1.25.4.2.1.4.177 = STRING: "/lib/systemd/systemd-journald" +.1.3.6.1.2.1.25.4.2.1.4.193 = STRING: "/lib/systemd/systemd-udevd" +.1.3.6.1.2.1.25.4.2.1.4.218 = STRING: "/usr/bin/dbus-daemon" +.1.3.6.1.2.1.25.4.2.1.4.220 = STRING: "/usr/sbin/rsyslogd" +.1.3.6.1.2.1.25.4.2.1.4.221 = STRING: "/lib/systemd/systemd-logind" +.1.3.6.1.2.1.25.4.2.1.4.243 = "" +.1.3.6.1.2.1.25.4.2.1.4.257 = "" +.1.3.6.1.2.1.25.4.2.1.4.260 = "" +.1.3.6.1.2.1.25.4.2.1.4.263 = "" +.1.3.6.1.2.1.25.4.2.1.4.265 = "" +.1.3.6.1.2.1.25.4.2.1.4.268 = "" +.1.3.6.1.2.1.25.4.2.1.4.270 = "" +.1.3.6.1.2.1.25.4.2.1.4.273 = "" +.1.3.6.1.2.1.25.4.2.1.4.276 = "" +.1.3.6.1.2.1.25.4.2.1.4.279 = "" +.1.3.6.1.2.1.25.4.2.1.4.280 = "" +.1.3.6.1.2.1.25.4.2.1.4.283 = STRING: "/sbin/dhclient" +.1.3.6.1.2.1.25.4.2.1.4.375 = STRING: "/usr/bin/python3" +.1.3.6.1.2.1.25.4.2.1.4.377 = STRING: "/usr/sbin/cron" +.1.3.6.1.2.1.25.4.2.1.4.379 = STRING: "sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups" +.1.3.6.1.2.1.25.4.2.1.4.381 = STRING: "/usr/sbin/chronyd" +.1.3.6.1.2.1.25.4.2.1.4.382 = STRING: "/usr/sbin/chronyd" +.1.3.6.1.2.1.25.4.2.1.4.387 = STRING: "/usr/sbin/centreon-nrpe4" +.1.3.6.1.2.1.25.4.2.1.4.388 = STRING: "/sbin/agetty" +.1.3.6.1.2.1.25.4.2.1.4.974 = STRING: "sshd: vagrant [priv]" +.1.3.6.1.2.1.25.4.2.1.4.977 = STRING: "/lib/systemd/systemd" +.1.3.6.1.2.1.25.4.2.1.4.978 = STRING: "(sd-pam)" +.1.3.6.1.2.1.25.4.2.1.4.996 = STRING: "sshd: vagrant@pts/0" +.1.3.6.1.2.1.25.4.2.1.4.997 = STRING: "-bash" +.1.3.6.1.2.1.25.4.2.1.4.1015 = STRING: "sudo" +.1.3.6.1.2.1.25.4.2.1.4.1016 = STRING: "-bash" +.1.3.6.1.2.1.25.4.2.1.4.1198 = "" +.1.3.6.1.2.1.25.4.2.1.4.1199 = STRING: "/usr/sbin/snmpd" +.1.3.6.1.2.1.25.4.2.1.5.1 = "" +.1.3.6.1.2.1.25.4.2.1.5.2 = "" +.1.3.6.1.2.1.25.4.2.1.5.3 = "" +.1.3.6.1.2.1.25.4.2.1.5.4 = "" +.1.3.6.1.2.1.25.4.2.1.5.6 = "" +.1.3.6.1.2.1.25.4.2.1.5.7 = "" +.1.3.6.1.2.1.25.4.2.1.5.8 = "" +.1.3.6.1.2.1.25.4.2.1.5.9 = "" +.1.3.6.1.2.1.25.4.2.1.5.10 = "" +.1.3.6.1.2.1.25.4.2.1.5.11 = "" +.1.3.6.1.2.1.25.4.2.1.5.12 = "" +.1.3.6.1.2.1.25.4.2.1.5.13 = "" +.1.3.6.1.2.1.25.4.2.1.5.14 = "" +.1.3.6.1.2.1.25.4.2.1.5.15 = "" +.1.3.6.1.2.1.25.4.2.1.5.17 = "" +.1.3.6.1.2.1.25.4.2.1.5.18 = "" +.1.3.6.1.2.1.25.4.2.1.5.19 = "" +.1.3.6.1.2.1.25.4.2.1.5.20 = "" +.1.3.6.1.2.1.25.4.2.1.5.21 = "" +.1.3.6.1.2.1.25.4.2.1.5.22 = "" +.1.3.6.1.2.1.25.4.2.1.5.23 = "" +.1.3.6.1.2.1.25.4.2.1.5.24 = "" +.1.3.6.1.2.1.25.4.2.1.5.25 = "" +.1.3.6.1.2.1.25.4.2.1.5.43 = "" +.1.3.6.1.2.1.25.4.2.1.5.44 = "" +.1.3.6.1.2.1.25.4.2.1.5.45 = "" +.1.3.6.1.2.1.25.4.2.1.5.46 = "" +.1.3.6.1.2.1.25.4.2.1.5.47 = "" +.1.3.6.1.2.1.25.4.2.1.5.48 = "" +.1.3.6.1.2.1.25.4.2.1.5.49 = "" +.1.3.6.1.2.1.25.4.2.1.5.50 = "" +.1.3.6.1.2.1.25.4.2.1.5.51 = "" +.1.3.6.1.2.1.25.4.2.1.5.52 = "" +.1.3.6.1.2.1.25.4.2.1.5.62 = "" +.1.3.6.1.2.1.25.4.2.1.5.65 = "" +.1.3.6.1.2.1.25.4.2.1.5.66 = "" +.1.3.6.1.2.1.25.4.2.1.5.103 = "" +.1.3.6.1.2.1.25.4.2.1.5.104 = "" +.1.3.6.1.2.1.25.4.2.1.5.105 = "" +.1.3.6.1.2.1.25.4.2.1.5.106 = "" +.1.3.6.1.2.1.25.4.2.1.5.109 = "" +.1.3.6.1.2.1.25.4.2.1.5.128 = "" +.1.3.6.1.2.1.25.4.2.1.5.129 = "" +.1.3.6.1.2.1.25.4.2.1.5.177 = "" +.1.3.6.1.2.1.25.4.2.1.5.193 = "" +.1.3.6.1.2.1.25.4.2.1.5.218 = STRING: "--system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only" +.1.3.6.1.2.1.25.4.2.1.5.220 = STRING: "-n -iNONE" +.1.3.6.1.2.1.25.4.2.1.5.221 = "" +.1.3.6.1.2.1.25.4.2.1.5.243 = "" +.1.3.6.1.2.1.25.4.2.1.5.257 = "" +.1.3.6.1.2.1.25.4.2.1.5.260 = "" +.1.3.6.1.2.1.25.4.2.1.5.263 = "" +.1.3.6.1.2.1.25.4.2.1.5.265 = "" +.1.3.6.1.2.1.25.4.2.1.5.268 = "" +.1.3.6.1.2.1.25.4.2.1.5.270 = "" +.1.3.6.1.2.1.25.4.2.1.5.273 = "" +.1.3.6.1.2.1.25.4.2.1.5.276 = "" +.1.3.6.1.2.1.25.4.2.1.5.279 = "" +.1.3.6.1.2.1.25.4.2.1.5.280 = "" +.1.3.6.1.2.1.25.4.2.1.5.283 = STRING: "-4 -v -i -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -I -df /var/lib/dhcp/dhclient6.eth0.leases eth0" +.1.3.6.1.2.1.25.4.2.1.5.375 = STRING: "/usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal" +.1.3.6.1.2.1.25.4.2.1.5.377 = STRING: "-f" +.1.3.6.1.2.1.25.4.2.1.5.379 = "" +.1.3.6.1.2.1.25.4.2.1.5.381 = STRING: "-F 1" +.1.3.6.1.2.1.25.4.2.1.5.382 = STRING: "-F 1" +.1.3.6.1.2.1.25.4.2.1.5.387 = STRING: "-c /etc/nrpe/centreon-nrpe4.cfg -d" +.1.3.6.1.2.1.25.4.2.1.5.388 = STRING: "-o -p -- \\u --noclear tty1 linux" +.1.3.6.1.2.1.25.4.2.1.5.974 = "" +.1.3.6.1.2.1.25.4.2.1.5.977 = STRING: "--user" +.1.3.6.1.2.1.25.4.2.1.5.978 = "" +.1.3.6.1.2.1.25.4.2.1.5.996 = "" +.1.3.6.1.2.1.25.4.2.1.5.997 = "" +.1.3.6.1.2.1.25.4.2.1.5.1015 = STRING: "-i" +.1.3.6.1.2.1.25.4.2.1.5.1016 = "" +.1.3.6.1.2.1.25.4.2.1.5.1198 = "" +.1.3.6.1.2.1.25.4.2.1.5.1199 = STRING: "-LOw -u Debian-snmp -g Debian-snmp -I -smux mteTrigger mteTriggerConf -f -p /run/snmpd.pid" +.1.3.6.1.2.1.25.4.2.1.6.1 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.3 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.4 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.6 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.7 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.8 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.9 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.10 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.11 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.12 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.13 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.14 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.15 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.17 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.18 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.19 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.20 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.21 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.22 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.23 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.24 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.25 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.43 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.44 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.45 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.46 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.47 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.48 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.49 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.50 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.51 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.52 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.62 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.65 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.66 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.103 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.104 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.105 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.106 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.109 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.128 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.129 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.177 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.193 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.218 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.220 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.221 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.243 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.257 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.260 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.263 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.265 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.268 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.270 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.273 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.276 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.279 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.280 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.283 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.375 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.377 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.379 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.381 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.382 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.387 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.388 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.974 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.977 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.978 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.996 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.997 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1015 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1016 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.6.1198 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.6.1199 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.1 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.2 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.3 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.4 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.6 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.7 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.8 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.9 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.10 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.11 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.12 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.13 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.14 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.15 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.17 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.18 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.19 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.20 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.21 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.22 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.23 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.24 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.25 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.43 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.44 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.45 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.46 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.47 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.48 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.49 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.50 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.51 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.52 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.62 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.65 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.66 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.103 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.104 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.105 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.106 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.109 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.128 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.129 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.177 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.193 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.218 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.220 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.221 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.243 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.257 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.260 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.263 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.265 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.268 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.270 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.273 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.276 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.279 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.280 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.283 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.375 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.377 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.379 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.381 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.382 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.387 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.388 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.974 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.977 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.978 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.996 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.997 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1015 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1016 = INTEGER: 2 +.1.3.6.1.2.1.25.4.2.1.7.1198 = INTEGER: 4 +.1.3.6.1.2.1.25.4.2.1.7.1199 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.1 = INTEGER: 201 +.1.3.6.1.2.1.25.5.1.1.1.2 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.3 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.4 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.6 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.7 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.8 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.9 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.10 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.11 = INTEGER: 8 +.1.3.6.1.2.1.25.5.1.1.1.12 = INTEGER: 15 +.1.3.6.1.2.1.25.5.1.1.1.13 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.14 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.15 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.17 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.18 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.19 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.20 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.21 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.22 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.23 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.24 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.25 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.43 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.44 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.45 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.46 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.47 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.48 = INTEGER: 6 +.1.3.6.1.2.1.25.5.1.1.1.49 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.50 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.51 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.52 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.62 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.65 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.66 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.103 = INTEGER: 85 +.1.3.6.1.2.1.25.5.1.1.1.104 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.105 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.106 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.109 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.128 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.129 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.177 = INTEGER: 17 +.1.3.6.1.2.1.25.5.1.1.1.193 = INTEGER: 10 +.1.3.6.1.2.1.25.5.1.1.1.218 = INTEGER: 9 +.1.3.6.1.2.1.25.5.1.1.1.220 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.221 = INTEGER: 9 +.1.3.6.1.2.1.25.5.1.1.1.243 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.257 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.260 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.263 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.265 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.268 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.270 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.273 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.276 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.279 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.280 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.283 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.375 = INTEGER: 16 +.1.3.6.1.2.1.25.5.1.1.1.377 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.379 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.381 = INTEGER: 1 +.1.3.6.1.2.1.25.5.1.1.1.382 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.387 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.388 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.974 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.977 = INTEGER: 3 +.1.3.6.1.2.1.25.5.1.1.1.978 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.996 = INTEGER: 5 +.1.3.6.1.2.1.25.5.1.1.1.997 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.1015 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1016 = INTEGER: 2 +.1.3.6.1.2.1.25.5.1.1.1.1198 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.1.1199 = INTEGER: 111 +.1.3.6.1.2.1.25.5.1.1.2.1 = INTEGER: 10192 +.1.3.6.1.2.1.25.5.1.1.2.2 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.3 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.4 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.6 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.7 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.8 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.9 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.10 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.11 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.12 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.13 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.14 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.15 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.17 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.18 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.19 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.20 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.21 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.22 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.23 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.24 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.25 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.43 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.44 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.45 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.46 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.47 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.48 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.49 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.50 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.51 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.52 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.62 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.65 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.66 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.103 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.104 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.105 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.106 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.109 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.128 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.129 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.177 = INTEGER: 18432 +.1.3.6.1.2.1.25.5.1.1.2.193 = INTEGER: 4968 +.1.3.6.1.2.1.25.5.1.1.2.218 = INTEGER: 4648 +.1.3.6.1.2.1.25.5.1.1.2.220 = INTEGER: 5928 +.1.3.6.1.2.1.25.5.1.1.2.221 = INTEGER: 7188 +.1.3.6.1.2.1.25.5.1.1.2.243 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.257 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.260 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.263 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.265 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.268 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.270 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.273 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.276 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.279 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.280 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.283 = INTEGER: 5888 +.1.3.6.1.2.1.25.5.1.1.2.375 = INTEGER: 17324 +.1.3.6.1.2.1.25.5.1.1.2.377 = INTEGER: 2692 +.1.3.6.1.2.1.25.5.1.1.2.379 = INTEGER: 7660 +.1.3.6.1.2.1.25.5.1.1.2.381 = INTEGER: 3536 +.1.3.6.1.2.1.25.5.1.1.2.382 = INTEGER: 2940 +.1.3.6.1.2.1.25.5.1.1.2.387 = INTEGER: 2532 +.1.3.6.1.2.1.25.5.1.1.2.388 = INTEGER: 1676 +.1.3.6.1.2.1.25.5.1.1.2.974 = INTEGER: 8628 +.1.3.6.1.2.1.25.5.1.1.2.977 = INTEGER: 7872 +.1.3.6.1.2.1.25.5.1.1.2.978 = INTEGER: 2564 +.1.3.6.1.2.1.25.5.1.1.2.996 = INTEGER: 6244 +.1.3.6.1.2.1.25.5.1.1.2.997 = INTEGER: 4156 +.1.3.6.1.2.1.25.5.1.1.2.1015 = INTEGER: 4564 +.1.3.6.1.2.1.25.5.1.1.2.1016 = INTEGER: 4640 +.1.3.6.1.2.1.25.5.1.1.2.1198 = INTEGER: 0 +.1.3.6.1.2.1.25.5.1.1.2.1199 = INTEGER: 13548 +.1.3.6.1.2.1.25.6.3.1.1.1 = INTEGER: 1 +.1.3.6.1.2.1.25.6.3.1.1.2 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.1.3 = INTEGER: 3 +.1.3.6.1.2.1.25.6.3.1.1.4 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.1.5 = INTEGER: 5 +.1.3.6.1.2.1.25.6.3.1.1.6 = INTEGER: 6 +.1.3.6.1.2.1.25.6.3.1.1.7 = INTEGER: 7 +.1.3.6.1.2.1.25.6.3.1.1.8 = INTEGER: 8 +.1.3.6.1.2.1.25.6.3.1.1.9 = INTEGER: 9 +.1.3.6.1.2.1.25.6.3.1.1.10 = INTEGER: 10 +.1.3.6.1.2.1.25.6.3.1.1.11 = INTEGER: 11 +.1.3.6.1.2.1.25.6.3.1.1.12 = INTEGER: 12 +.1.3.6.1.2.1.25.6.3.1.1.13 = INTEGER: 13 +.1.3.6.1.2.1.25.6.3.1.1.14 = INTEGER: 14 +.1.3.6.1.2.1.25.6.3.1.1.15 = INTEGER: 15 +.1.3.6.1.2.1.25.6.3.1.1.16 = INTEGER: 16 +.1.3.6.1.2.1.25.6.3.1.1.17 = INTEGER: 17 +.1.3.6.1.2.1.25.6.3.1.1.18 = INTEGER: 18 +.1.3.6.1.2.1.25.6.3.1.1.19 = INTEGER: 19 +.1.3.6.1.2.1.25.6.3.1.1.20 = INTEGER: 20 +.1.3.6.1.2.1.25.6.3.1.1.21 = INTEGER: 21 +.1.3.6.1.2.1.25.6.3.1.1.22 = INTEGER: 22 +.1.3.6.1.2.1.25.6.3.1.1.23 = INTEGER: 23 +.1.3.6.1.2.1.25.6.3.1.1.24 = INTEGER: 24 +.1.3.6.1.2.1.25.6.3.1.1.25 = INTEGER: 25 +.1.3.6.1.2.1.25.6.3.1.1.26 = INTEGER: 26 +.1.3.6.1.2.1.25.6.3.1.1.27 = INTEGER: 27 +.1.3.6.1.2.1.25.6.3.1.1.28 = INTEGER: 28 +.1.3.6.1.2.1.25.6.3.1.1.29 = INTEGER: 29 +.1.3.6.1.2.1.25.6.3.1.1.30 = INTEGER: 30 +.1.3.6.1.2.1.25.6.3.1.1.31 = INTEGER: 31 +.1.3.6.1.2.1.25.6.3.1.1.32 = INTEGER: 32 +.1.3.6.1.2.1.25.6.3.1.1.33 = INTEGER: 33 +.1.3.6.1.2.1.25.6.3.1.1.34 = INTEGER: 34 +.1.3.6.1.2.1.25.6.3.1.1.35 = INTEGER: 35 +.1.3.6.1.2.1.25.6.3.1.1.36 = INTEGER: 36 +.1.3.6.1.2.1.25.6.3.1.1.37 = INTEGER: 37 +.1.3.6.1.2.1.25.6.3.1.1.38 = INTEGER: 38 +.1.3.6.1.2.1.25.6.3.1.1.39 = INTEGER: 39 +.1.3.6.1.2.1.25.6.3.1.1.40 = INTEGER: 40 +.1.3.6.1.2.1.25.6.3.1.1.41 = INTEGER: 41 +.1.3.6.1.2.1.25.6.3.1.1.42 = INTEGER: 42 +.1.3.6.1.2.1.25.6.3.1.1.43 = INTEGER: 43 +.1.3.6.1.2.1.25.6.3.1.1.44 = INTEGER: 44 +.1.3.6.1.2.1.25.6.3.1.1.45 = INTEGER: 45 +.1.3.6.1.2.1.25.6.3.1.1.46 = INTEGER: 46 +.1.3.6.1.2.1.25.6.3.1.1.47 = INTEGER: 47 +.1.3.6.1.2.1.25.6.3.1.1.48 = INTEGER: 48 +.1.3.6.1.2.1.25.6.3.1.1.49 = INTEGER: 49 +.1.3.6.1.2.1.25.6.3.1.1.50 = INTEGER: 50 +.1.3.6.1.2.1.25.6.3.1.1.51 = INTEGER: 51 +.1.3.6.1.2.1.25.6.3.1.1.52 = INTEGER: 52 +.1.3.6.1.2.1.25.6.3.1.1.53 = INTEGER: 53 +.1.3.6.1.2.1.25.6.3.1.1.54 = INTEGER: 54 +.1.3.6.1.2.1.25.6.3.1.1.55 = INTEGER: 55 +.1.3.6.1.2.1.25.6.3.1.1.56 = INTEGER: 56 +.1.3.6.1.2.1.25.6.3.1.1.57 = INTEGER: 57 +.1.3.6.1.2.1.25.6.3.1.1.58 = INTEGER: 58 +.1.3.6.1.2.1.25.6.3.1.1.59 = INTEGER: 59 +.1.3.6.1.2.1.25.6.3.1.1.60 = INTEGER: 60 +.1.3.6.1.2.1.25.6.3.1.1.61 = INTEGER: 61 +.1.3.6.1.2.1.25.6.3.1.1.62 = INTEGER: 62 +.1.3.6.1.2.1.25.6.3.1.1.63 = INTEGER: 63 +.1.3.6.1.2.1.25.6.3.1.1.64 = INTEGER: 64 +.1.3.6.1.2.1.25.6.3.1.1.65 = INTEGER: 65 +.1.3.6.1.2.1.25.6.3.1.1.66 = INTEGER: 66 +.1.3.6.1.2.1.25.6.3.1.1.67 = INTEGER: 67 +.1.3.6.1.2.1.25.6.3.1.1.68 = INTEGER: 68 +.1.3.6.1.2.1.25.6.3.1.1.69 = INTEGER: 69 +.1.3.6.1.2.1.25.6.3.1.1.70 = INTEGER: 70 +.1.3.6.1.2.1.25.6.3.1.1.71 = INTEGER: 71 +.1.3.6.1.2.1.25.6.3.1.1.72 = INTEGER: 72 +.1.3.6.1.2.1.25.6.3.1.1.73 = INTEGER: 73 +.1.3.6.1.2.1.25.6.3.1.1.74 = INTEGER: 74 +.1.3.6.1.2.1.25.6.3.1.1.75 = INTEGER: 75 +.1.3.6.1.2.1.25.6.3.1.1.76 = INTEGER: 76 +.1.3.6.1.2.1.25.6.3.1.1.77 = INTEGER: 77 +.1.3.6.1.2.1.25.6.3.1.1.78 = INTEGER: 78 +.1.3.6.1.2.1.25.6.3.1.1.79 = INTEGER: 79 +.1.3.6.1.2.1.25.6.3.1.1.80 = INTEGER: 80 +.1.3.6.1.2.1.25.6.3.1.1.81 = INTEGER: 81 +.1.3.6.1.2.1.25.6.3.1.1.82 = INTEGER: 82 +.1.3.6.1.2.1.25.6.3.1.1.83 = INTEGER: 83 +.1.3.6.1.2.1.25.6.3.1.1.84 = INTEGER: 84 +.1.3.6.1.2.1.25.6.3.1.1.85 = INTEGER: 85 +.1.3.6.1.2.1.25.6.3.1.1.86 = INTEGER: 86 +.1.3.6.1.2.1.25.6.3.1.1.87 = INTEGER: 87 +.1.3.6.1.2.1.25.6.3.1.1.88 = INTEGER: 88 +.1.3.6.1.2.1.25.6.3.1.1.89 = INTEGER: 89 +.1.3.6.1.2.1.25.6.3.1.1.90 = INTEGER: 90 +.1.3.6.1.2.1.25.6.3.1.1.91 = INTEGER: 91 +.1.3.6.1.2.1.25.6.3.1.1.92 = INTEGER: 92 +.1.3.6.1.2.1.25.6.3.1.1.93 = INTEGER: 93 +.1.3.6.1.2.1.25.6.3.1.1.94 = INTEGER: 94 +.1.3.6.1.2.1.25.6.3.1.1.95 = INTEGER: 95 +.1.3.6.1.2.1.25.6.3.1.1.96 = INTEGER: 96 +.1.3.6.1.2.1.25.6.3.1.1.97 = INTEGER: 97 +.1.3.6.1.2.1.25.6.3.1.1.98 = INTEGER: 98 +.1.3.6.1.2.1.25.6.3.1.1.99 = INTEGER: 99 +.1.3.6.1.2.1.25.6.3.1.1.100 = INTEGER: 100 +.1.3.6.1.2.1.25.6.3.1.1.101 = INTEGER: 101 +.1.3.6.1.2.1.25.6.3.1.1.102 = INTEGER: 102 +.1.3.6.1.2.1.25.6.3.1.1.103 = INTEGER: 103 +.1.3.6.1.2.1.25.6.3.1.1.104 = INTEGER: 104 +.1.3.6.1.2.1.25.6.3.1.1.105 = INTEGER: 105 +.1.3.6.1.2.1.25.6.3.1.1.106 = INTEGER: 106 +.1.3.6.1.2.1.25.6.3.1.1.107 = INTEGER: 107 +.1.3.6.1.2.1.25.6.3.1.1.108 = INTEGER: 108 +.1.3.6.1.2.1.25.6.3.1.1.109 = INTEGER: 109 +.1.3.6.1.2.1.25.6.3.1.1.110 = INTEGER: 110 +.1.3.6.1.2.1.25.6.3.1.1.111 = INTEGER: 111 +.1.3.6.1.2.1.25.6.3.1.1.112 = INTEGER: 112 +.1.3.6.1.2.1.25.6.3.1.1.113 = INTEGER: 113 +.1.3.6.1.2.1.25.6.3.1.1.114 = INTEGER: 114 +.1.3.6.1.2.1.25.6.3.1.1.115 = INTEGER: 115 +.1.3.6.1.2.1.25.6.3.1.1.116 = INTEGER: 116 +.1.3.6.1.2.1.25.6.3.1.1.117 = INTEGER: 117 +.1.3.6.1.2.1.25.6.3.1.1.118 = INTEGER: 118 +.1.3.6.1.2.1.25.6.3.1.1.119 = INTEGER: 119 +.1.3.6.1.2.1.25.6.3.1.1.120 = INTEGER: 120 +.1.3.6.1.2.1.25.6.3.1.1.121 = INTEGER: 121 +.1.3.6.1.2.1.25.6.3.1.1.122 = INTEGER: 122 +.1.3.6.1.2.1.25.6.3.1.1.123 = INTEGER: 123 +.1.3.6.1.2.1.25.6.3.1.1.124 = INTEGER: 124 +.1.3.6.1.2.1.25.6.3.1.1.125 = INTEGER: 125 +.1.3.6.1.2.1.25.6.3.1.1.126 = INTEGER: 126 +.1.3.6.1.2.1.25.6.3.1.1.127 = INTEGER: 127 +.1.3.6.1.2.1.25.6.3.1.1.128 = INTEGER: 128 +.1.3.6.1.2.1.25.6.3.1.1.129 = INTEGER: 129 +.1.3.6.1.2.1.25.6.3.1.1.130 = INTEGER: 130 +.1.3.6.1.2.1.25.6.3.1.1.131 = INTEGER: 131 +.1.3.6.1.2.1.25.6.3.1.1.132 = INTEGER: 132 +.1.3.6.1.2.1.25.6.3.1.1.133 = INTEGER: 133 +.1.3.6.1.2.1.25.6.3.1.1.134 = INTEGER: 134 +.1.3.6.1.2.1.25.6.3.1.1.135 = INTEGER: 135 +.1.3.6.1.2.1.25.6.3.1.1.136 = INTEGER: 136 +.1.3.6.1.2.1.25.6.3.1.1.137 = INTEGER: 137 +.1.3.6.1.2.1.25.6.3.1.1.138 = INTEGER: 138 +.1.3.6.1.2.1.25.6.3.1.1.139 = INTEGER: 139 +.1.3.6.1.2.1.25.6.3.1.1.140 = INTEGER: 140 +.1.3.6.1.2.1.25.6.3.1.1.141 = INTEGER: 141 +.1.3.6.1.2.1.25.6.3.1.1.142 = INTEGER: 142 +.1.3.6.1.2.1.25.6.3.1.1.143 = INTEGER: 143 +.1.3.6.1.2.1.25.6.3.1.1.144 = INTEGER: 144 +.1.3.6.1.2.1.25.6.3.1.1.145 = INTEGER: 145 +.1.3.6.1.2.1.25.6.3.1.1.146 = INTEGER: 146 +.1.3.6.1.2.1.25.6.3.1.1.147 = INTEGER: 147 +.1.3.6.1.2.1.25.6.3.1.1.148 = INTEGER: 148 +.1.3.6.1.2.1.25.6.3.1.1.149 = INTEGER: 149 +.1.3.6.1.2.1.25.6.3.1.1.150 = INTEGER: 150 +.1.3.6.1.2.1.25.6.3.1.1.151 = INTEGER: 151 +.1.3.6.1.2.1.25.6.3.1.1.152 = INTEGER: 152 +.1.3.6.1.2.1.25.6.3.1.1.153 = INTEGER: 153 +.1.3.6.1.2.1.25.6.3.1.1.154 = INTEGER: 154 +.1.3.6.1.2.1.25.6.3.1.1.155 = INTEGER: 155 +.1.3.6.1.2.1.25.6.3.1.1.156 = INTEGER: 156 +.1.3.6.1.2.1.25.6.3.1.1.157 = INTEGER: 157 +.1.3.6.1.2.1.25.6.3.1.1.158 = INTEGER: 158 +.1.3.6.1.2.1.25.6.3.1.1.159 = INTEGER: 159 +.1.3.6.1.2.1.25.6.3.1.1.160 = INTEGER: 160 +.1.3.6.1.2.1.25.6.3.1.1.161 = INTEGER: 161 +.1.3.6.1.2.1.25.6.3.1.1.162 = INTEGER: 162 +.1.3.6.1.2.1.25.6.3.1.1.163 = INTEGER: 163 +.1.3.6.1.2.1.25.6.3.1.1.164 = INTEGER: 164 +.1.3.6.1.2.1.25.6.3.1.1.165 = INTEGER: 165 +.1.3.6.1.2.1.25.6.3.1.1.166 = INTEGER: 166 +.1.3.6.1.2.1.25.6.3.1.1.167 = INTEGER: 167 +.1.3.6.1.2.1.25.6.3.1.1.168 = INTEGER: 168 +.1.3.6.1.2.1.25.6.3.1.1.169 = INTEGER: 169 +.1.3.6.1.2.1.25.6.3.1.1.170 = INTEGER: 170 +.1.3.6.1.2.1.25.6.3.1.1.171 = INTEGER: 171 +.1.3.6.1.2.1.25.6.3.1.1.172 = INTEGER: 172 +.1.3.6.1.2.1.25.6.3.1.1.173 = INTEGER: 173 +.1.3.6.1.2.1.25.6.3.1.1.174 = INTEGER: 174 +.1.3.6.1.2.1.25.6.3.1.1.175 = INTEGER: 175 +.1.3.6.1.2.1.25.6.3.1.1.176 = INTEGER: 176 +.1.3.6.1.2.1.25.6.3.1.1.177 = INTEGER: 177 +.1.3.6.1.2.1.25.6.3.1.1.178 = INTEGER: 178 +.1.3.6.1.2.1.25.6.3.1.1.179 = INTEGER: 179 +.1.3.6.1.2.1.25.6.3.1.1.180 = INTEGER: 180 +.1.3.6.1.2.1.25.6.3.1.1.181 = INTEGER: 181 +.1.3.6.1.2.1.25.6.3.1.1.182 = INTEGER: 182 +.1.3.6.1.2.1.25.6.3.1.1.183 = INTEGER: 183 +.1.3.6.1.2.1.25.6.3.1.1.184 = INTEGER: 184 +.1.3.6.1.2.1.25.6.3.1.1.185 = INTEGER: 185 +.1.3.6.1.2.1.25.6.3.1.1.186 = INTEGER: 186 +.1.3.6.1.2.1.25.6.3.1.1.187 = INTEGER: 187 +.1.3.6.1.2.1.25.6.3.1.1.188 = INTEGER: 188 +.1.3.6.1.2.1.25.6.3.1.1.189 = INTEGER: 189 +.1.3.6.1.2.1.25.6.3.1.1.190 = INTEGER: 190 +.1.3.6.1.2.1.25.6.3.1.1.191 = INTEGER: 191 +.1.3.6.1.2.1.25.6.3.1.1.192 = INTEGER: 192 +.1.3.6.1.2.1.25.6.3.1.1.193 = INTEGER: 193 +.1.3.6.1.2.1.25.6.3.1.1.194 = INTEGER: 194 +.1.3.6.1.2.1.25.6.3.1.1.195 = INTEGER: 195 +.1.3.6.1.2.1.25.6.3.1.1.196 = INTEGER: 196 +.1.3.6.1.2.1.25.6.3.1.1.197 = INTEGER: 197 +.1.3.6.1.2.1.25.6.3.1.1.198 = INTEGER: 198 +.1.3.6.1.2.1.25.6.3.1.1.199 = INTEGER: 199 +.1.3.6.1.2.1.25.6.3.1.1.200 = INTEGER: 200 +.1.3.6.1.2.1.25.6.3.1.1.201 = INTEGER: 201 +.1.3.6.1.2.1.25.6.3.1.1.202 = INTEGER: 202 +.1.3.6.1.2.1.25.6.3.1.1.203 = INTEGER: 203 +.1.3.6.1.2.1.25.6.3.1.1.204 = INTEGER: 204 +.1.3.6.1.2.1.25.6.3.1.1.205 = INTEGER: 205 +.1.3.6.1.2.1.25.6.3.1.1.206 = INTEGER: 206 +.1.3.6.1.2.1.25.6.3.1.1.207 = INTEGER: 207 +.1.3.6.1.2.1.25.6.3.1.1.208 = INTEGER: 208 +.1.3.6.1.2.1.25.6.3.1.1.209 = INTEGER: 209 +.1.3.6.1.2.1.25.6.3.1.1.210 = INTEGER: 210 +.1.3.6.1.2.1.25.6.3.1.1.211 = INTEGER: 211 +.1.3.6.1.2.1.25.6.3.1.1.212 = INTEGER: 212 +.1.3.6.1.2.1.25.6.3.1.1.213 = INTEGER: 213 +.1.3.6.1.2.1.25.6.3.1.1.214 = INTEGER: 214 +.1.3.6.1.2.1.25.6.3.1.1.215 = INTEGER: 215 +.1.3.6.1.2.1.25.6.3.1.1.216 = INTEGER: 216 +.1.3.6.1.2.1.25.6.3.1.1.217 = INTEGER: 217 +.1.3.6.1.2.1.25.6.3.1.1.218 = INTEGER: 218 +.1.3.6.1.2.1.25.6.3.1.1.219 = INTEGER: 219 +.1.3.6.1.2.1.25.6.3.1.1.220 = INTEGER: 220 +.1.3.6.1.2.1.25.6.3.1.1.221 = INTEGER: 221 +.1.3.6.1.2.1.25.6.3.1.1.222 = INTEGER: 222 +.1.3.6.1.2.1.25.6.3.1.1.223 = INTEGER: 223 +.1.3.6.1.2.1.25.6.3.1.1.224 = INTEGER: 224 +.1.3.6.1.2.1.25.6.3.1.1.225 = INTEGER: 225 +.1.3.6.1.2.1.25.6.3.1.1.226 = INTEGER: 226 +.1.3.6.1.2.1.25.6.3.1.1.227 = INTEGER: 227 +.1.3.6.1.2.1.25.6.3.1.1.228 = INTEGER: 228 +.1.3.6.1.2.1.25.6.3.1.1.229 = INTEGER: 229 +.1.3.6.1.2.1.25.6.3.1.1.230 = INTEGER: 230 +.1.3.6.1.2.1.25.6.3.1.1.231 = INTEGER: 231 +.1.3.6.1.2.1.25.6.3.1.1.232 = INTEGER: 232 +.1.3.6.1.2.1.25.6.3.1.1.233 = INTEGER: 233 +.1.3.6.1.2.1.25.6.3.1.1.234 = INTEGER: 234 +.1.3.6.1.2.1.25.6.3.1.1.235 = INTEGER: 235 +.1.3.6.1.2.1.25.6.3.1.1.236 = INTEGER: 236 +.1.3.6.1.2.1.25.6.3.1.1.237 = INTEGER: 237 +.1.3.6.1.2.1.25.6.3.1.1.238 = INTEGER: 238 +.1.3.6.1.2.1.25.6.3.1.1.239 = INTEGER: 239 +.1.3.6.1.2.1.25.6.3.1.1.240 = INTEGER: 240 +.1.3.6.1.2.1.25.6.3.1.1.241 = INTEGER: 241 +.1.3.6.1.2.1.25.6.3.1.1.242 = INTEGER: 242 +.1.3.6.1.2.1.25.6.3.1.1.243 = INTEGER: 243 +.1.3.6.1.2.1.25.6.3.1.1.244 = INTEGER: 244 +.1.3.6.1.2.1.25.6.3.1.1.245 = INTEGER: 245 +.1.3.6.1.2.1.25.6.3.1.1.246 = INTEGER: 246 +.1.3.6.1.2.1.25.6.3.1.1.247 = INTEGER: 247 +.1.3.6.1.2.1.25.6.3.1.1.248 = INTEGER: 248 +.1.3.6.1.2.1.25.6.3.1.1.249 = INTEGER: 249 +.1.3.6.1.2.1.25.6.3.1.1.250 = INTEGER: 250 +.1.3.6.1.2.1.25.6.3.1.1.251 = INTEGER: 251 +.1.3.6.1.2.1.25.6.3.1.1.252 = INTEGER: 252 +.1.3.6.1.2.1.25.6.3.1.1.253 = INTEGER: 253 +.1.3.6.1.2.1.25.6.3.1.1.254 = INTEGER: 254 +.1.3.6.1.2.1.25.6.3.1.1.255 = INTEGER: 255 +.1.3.6.1.2.1.25.6.3.1.1.256 = INTEGER: 256 +.1.3.6.1.2.1.25.6.3.1.1.257 = INTEGER: 257 +.1.3.6.1.2.1.25.6.3.1.1.258 = INTEGER: 258 +.1.3.6.1.2.1.25.6.3.1.1.259 = INTEGER: 259 +.1.3.6.1.2.1.25.6.3.1.1.260 = INTEGER: 260 +.1.3.6.1.2.1.25.6.3.1.1.261 = INTEGER: 261 +.1.3.6.1.2.1.25.6.3.1.1.262 = INTEGER: 262 +.1.3.6.1.2.1.25.6.3.1.1.263 = INTEGER: 263 +.1.3.6.1.2.1.25.6.3.1.1.264 = INTEGER: 264 +.1.3.6.1.2.1.25.6.3.1.1.265 = INTEGER: 265 +.1.3.6.1.2.1.25.6.3.1.1.266 = INTEGER: 266 +.1.3.6.1.2.1.25.6.3.1.1.267 = INTEGER: 267 +.1.3.6.1.2.1.25.6.3.1.1.268 = INTEGER: 268 +.1.3.6.1.2.1.25.6.3.1.1.269 = INTEGER: 269 +.1.3.6.1.2.1.25.6.3.1.1.270 = INTEGER: 270 +.1.3.6.1.2.1.25.6.3.1.1.271 = INTEGER: 271 +.1.3.6.1.2.1.25.6.3.1.1.272 = INTEGER: 272 +.1.3.6.1.2.1.25.6.3.1.1.273 = INTEGER: 273 +.1.3.6.1.2.1.25.6.3.1.1.274 = INTEGER: 274 +.1.3.6.1.2.1.25.6.3.1.1.275 = INTEGER: 275 +.1.3.6.1.2.1.25.6.3.1.1.276 = INTEGER: 276 +.1.3.6.1.2.1.25.6.3.1.1.277 = INTEGER: 277 +.1.3.6.1.2.1.25.6.3.1.1.278 = INTEGER: 278 +.1.3.6.1.2.1.25.6.3.1.1.279 = INTEGER: 279 +.1.3.6.1.2.1.25.6.3.1.1.280 = INTEGER: 280 +.1.3.6.1.2.1.25.6.3.1.1.281 = INTEGER: 281 +.1.3.6.1.2.1.25.6.3.1.1.282 = INTEGER: 282 +.1.3.6.1.2.1.25.6.3.1.1.283 = INTEGER: 283 +.1.3.6.1.2.1.25.6.3.1.1.284 = INTEGER: 284 +.1.3.6.1.2.1.25.6.3.1.1.285 = INTEGER: 285 +.1.3.6.1.2.1.25.6.3.1.1.286 = INTEGER: 286 +.1.3.6.1.2.1.25.6.3.1.1.287 = INTEGER: 287 +.1.3.6.1.2.1.25.6.3.1.1.288 = INTEGER: 288 +.1.3.6.1.2.1.25.6.3.1.1.289 = INTEGER: 289 +.1.3.6.1.2.1.25.6.3.1.1.290 = INTEGER: 290 +.1.3.6.1.2.1.25.6.3.1.1.291 = INTEGER: 291 +.1.3.6.1.2.1.25.6.3.1.1.292 = INTEGER: 292 +.1.3.6.1.2.1.25.6.3.1.1.293 = INTEGER: 293 +.1.3.6.1.2.1.25.6.3.1.1.294 = INTEGER: 294 +.1.3.6.1.2.1.25.6.3.1.1.295 = INTEGER: 295 +.1.3.6.1.2.1.25.6.3.1.1.296 = INTEGER: 296 +.1.3.6.1.2.1.25.6.3.1.1.297 = INTEGER: 297 +.1.3.6.1.2.1.25.6.3.1.1.298 = INTEGER: 298 +.1.3.6.1.2.1.25.6.3.1.1.299 = INTEGER: 299 +.1.3.6.1.2.1.25.6.3.1.1.300 = INTEGER: 300 +.1.3.6.1.2.1.25.6.3.1.1.301 = INTEGER: 301 +.1.3.6.1.2.1.25.6.3.1.1.302 = INTEGER: 302 +.1.3.6.1.2.1.25.6.3.1.1.303 = INTEGER: 303 +.1.3.6.1.2.1.25.6.3.1.1.304 = INTEGER: 304 +.1.3.6.1.2.1.25.6.3.1.1.305 = INTEGER: 305 +.1.3.6.1.2.1.25.6.3.1.1.306 = INTEGER: 306 +.1.3.6.1.2.1.25.6.3.1.1.307 = INTEGER: 307 +.1.3.6.1.2.1.25.6.3.1.1.308 = INTEGER: 308 +.1.3.6.1.2.1.25.6.3.1.1.309 = INTEGER: 309 +.1.3.6.1.2.1.25.6.3.1.1.310 = INTEGER: 310 +.1.3.6.1.2.1.25.6.3.1.1.311 = INTEGER: 311 +.1.3.6.1.2.1.25.6.3.1.1.312 = INTEGER: 312 +.1.3.6.1.2.1.25.6.3.1.1.313 = INTEGER: 313 +.1.3.6.1.2.1.25.6.3.1.1.314 = INTEGER: 314 +.1.3.6.1.2.1.25.6.3.1.1.315 = INTEGER: 315 +.1.3.6.1.2.1.25.6.3.1.1.316 = INTEGER: 316 +.1.3.6.1.2.1.25.6.3.1.1.317 = INTEGER: 317 +.1.3.6.1.2.1.25.6.3.1.1.318 = INTEGER: 318 +.1.3.6.1.2.1.25.6.3.1.1.319 = INTEGER: 319 +.1.3.6.1.2.1.25.6.3.1.1.320 = INTEGER: 320 +.1.3.6.1.2.1.25.6.3.1.1.321 = INTEGER: 321 +.1.3.6.1.2.1.25.6.3.1.1.322 = INTEGER: 322 +.1.3.6.1.2.1.25.6.3.1.1.323 = INTEGER: 323 +.1.3.6.1.2.1.25.6.3.1.1.324 = INTEGER: 324 +.1.3.6.1.2.1.25.6.3.1.1.325 = INTEGER: 325 +.1.3.6.1.2.1.25.6.3.1.1.326 = INTEGER: 326 +.1.3.6.1.2.1.25.6.3.1.1.327 = INTEGER: 327 +.1.3.6.1.2.1.25.6.3.1.1.328 = INTEGER: 328 +.1.3.6.1.2.1.25.6.3.1.1.329 = INTEGER: 329 +.1.3.6.1.2.1.25.6.3.1.1.330 = INTEGER: 330 +.1.3.6.1.2.1.25.6.3.1.1.331 = INTEGER: 331 +.1.3.6.1.2.1.25.6.3.1.1.332 = INTEGER: 332 +.1.3.6.1.2.1.25.6.3.1.1.333 = INTEGER: 333 +.1.3.6.1.2.1.25.6.3.1.1.334 = INTEGER: 334 +.1.3.6.1.2.1.25.6.3.1.1.335 = INTEGER: 335 +.1.3.6.1.2.1.25.6.3.1.1.336 = INTEGER: 336 +.1.3.6.1.2.1.25.6.3.1.1.337 = INTEGER: 337 +.1.3.6.1.2.1.25.6.3.1.1.338 = INTEGER: 338 +.1.3.6.1.2.1.25.6.3.1.1.339 = INTEGER: 339 +.1.3.6.1.2.1.25.6.3.1.1.340 = INTEGER: 340 +.1.3.6.1.2.1.25.6.3.1.1.341 = INTEGER: 341 +.1.3.6.1.2.1.25.6.3.1.1.342 = INTEGER: 342 +.1.3.6.1.2.1.25.6.3.1.1.343 = INTEGER: 343 +.1.3.6.1.2.1.25.6.3.1.1.344 = INTEGER: 344 +.1.3.6.1.2.1.25.6.3.1.1.345 = INTEGER: 345 +.1.3.6.1.2.1.25.6.3.1.1.346 = INTEGER: 346 +.1.3.6.1.2.1.25.6.3.1.1.347 = INTEGER: 347 +.1.3.6.1.2.1.25.6.3.1.1.348 = INTEGER: 348 +.1.3.6.1.2.1.25.6.3.1.1.349 = INTEGER: 349 +.1.3.6.1.2.1.25.6.3.1.1.350 = INTEGER: 350 +.1.3.6.1.2.1.25.6.3.1.1.351 = INTEGER: 351 +.1.3.6.1.2.1.25.6.3.1.1.352 = INTEGER: 352 +.1.3.6.1.2.1.25.6.3.1.1.353 = INTEGER: 353 +.1.3.6.1.2.1.25.6.3.1.1.354 = INTEGER: 354 +.1.3.6.1.2.1.25.6.3.1.1.355 = INTEGER: 355 +.1.3.6.1.2.1.25.6.3.1.1.356 = INTEGER: 356 +.1.3.6.1.2.1.25.6.3.1.1.357 = INTEGER: 357 +.1.3.6.1.2.1.25.6.3.1.1.358 = INTEGER: 358 +.1.3.6.1.2.1.25.6.3.1.1.359 = INTEGER: 359 +.1.3.6.1.2.1.25.6.3.1.1.360 = INTEGER: 360 +.1.3.6.1.2.1.25.6.3.1.1.361 = INTEGER: 361 +.1.3.6.1.2.1.25.6.3.1.1.362 = INTEGER: 362 +.1.3.6.1.2.1.25.6.3.1.1.363 = INTEGER: 363 +.1.3.6.1.2.1.25.6.3.1.1.364 = INTEGER: 364 +.1.3.6.1.2.1.25.6.3.1.1.365 = INTEGER: 365 +.1.3.6.1.2.1.25.6.3.1.1.366 = INTEGER: 366 +.1.3.6.1.2.1.25.6.3.1.1.367 = INTEGER: 367 +.1.3.6.1.2.1.25.6.3.1.1.368 = INTEGER: 368 +.1.3.6.1.2.1.25.6.3.1.1.369 = INTEGER: 369 +.1.3.6.1.2.1.25.6.3.1.1.370 = INTEGER: 370 +.1.3.6.1.2.1.25.6.3.1.1.371 = INTEGER: 371 +.1.3.6.1.2.1.25.6.3.1.1.372 = INTEGER: 372 +.1.3.6.1.2.1.25.6.3.1.1.373 = INTEGER: 373 +.1.3.6.1.2.1.25.6.3.1.1.374 = INTEGER: 374 +.1.3.6.1.2.1.25.6.3.1.1.375 = INTEGER: 375 +.1.3.6.1.2.1.25.6.3.1.1.376 = INTEGER: 376 +.1.3.6.1.2.1.25.6.3.1.1.377 = INTEGER: 377 +.1.3.6.1.2.1.25.6.3.1.1.378 = INTEGER: 378 +.1.3.6.1.2.1.25.6.3.1.1.379 = INTEGER: 379 +.1.3.6.1.2.1.25.6.3.1.1.380 = INTEGER: 380 +.1.3.6.1.2.1.25.6.3.1.1.381 = INTEGER: 381 +.1.3.6.1.2.1.25.6.3.1.1.382 = INTEGER: 382 +.1.3.6.1.2.1.25.6.3.1.1.383 = INTEGER: 383 +.1.3.6.1.2.1.25.6.3.1.1.384 = INTEGER: 384 +.1.3.6.1.2.1.25.6.3.1.1.385 = INTEGER: 385 +.1.3.6.1.2.1.25.6.3.1.1.386 = INTEGER: 386 +.1.3.6.1.2.1.25.6.3.1.1.387 = INTEGER: 387 +.1.3.6.1.2.1.25.6.3.1.1.388 = INTEGER: 388 +.1.3.6.1.2.1.25.6.3.1.1.389 = INTEGER: 389 +.1.3.6.1.2.1.25.6.3.1.1.390 = INTEGER: 390 +.1.3.6.1.2.1.25.6.3.1.1.391 = INTEGER: 391 +.1.3.6.1.2.1.25.6.3.1.1.392 = INTEGER: 392 +.1.3.6.1.2.1.25.6.3.1.1.393 = INTEGER: 393 +.1.3.6.1.2.1.25.6.3.1.1.394 = INTEGER: 394 +.1.3.6.1.2.1.25.6.3.1.1.395 = INTEGER: 395 +.1.3.6.1.2.1.25.6.3.1.1.396 = INTEGER: 396 +.1.3.6.1.2.1.25.6.3.1.1.397 = INTEGER: 397 +.1.3.6.1.2.1.25.6.3.1.1.398 = INTEGER: 398 +.1.3.6.1.2.1.25.6.3.1.1.399 = INTEGER: 399 +.1.3.6.1.2.1.25.6.3.1.1.400 = INTEGER: 400 +.1.3.6.1.2.1.25.6.3.1.1.401 = INTEGER: 401 +.1.3.6.1.2.1.25.6.3.1.1.402 = INTEGER: 402 +.1.3.6.1.2.1.25.6.3.1.1.403 = INTEGER: 403 +.1.3.6.1.2.1.25.6.3.1.1.404 = INTEGER: 404 +.1.3.6.1.2.1.25.6.3.1.1.405 = INTEGER: 405 +.1.3.6.1.2.1.25.6.3.1.1.406 = INTEGER: 406 +.1.3.6.1.2.1.25.6.3.1.1.407 = INTEGER: 407 +.1.3.6.1.2.1.25.6.3.1.1.408 = INTEGER: 408 +.1.3.6.1.2.1.25.6.3.1.1.409 = INTEGER: 409 +.1.3.6.1.2.1.25.6.3.1.1.410 = INTEGER: 410 +.1.3.6.1.2.1.25.6.3.1.1.411 = INTEGER: 411 +.1.3.6.1.2.1.25.6.3.1.1.412 = INTEGER: 412 +.1.3.6.1.2.1.25.6.3.1.1.413 = INTEGER: 413 +.1.3.6.1.2.1.25.6.3.1.1.414 = INTEGER: 414 +.1.3.6.1.2.1.25.6.3.1.1.415 = INTEGER: 415 +.1.3.6.1.2.1.25.6.3.1.1.416 = INTEGER: 416 +.1.3.6.1.2.1.25.6.3.1.1.417 = INTEGER: 417 +.1.3.6.1.2.1.25.6.3.1.1.418 = INTEGER: 418 +.1.3.6.1.2.1.25.6.3.1.1.419 = INTEGER: 419 +.1.3.6.1.2.1.25.6.3.1.1.420 = INTEGER: 420 +.1.3.6.1.2.1.25.6.3.1.1.421 = INTEGER: 421 +.1.3.6.1.2.1.25.6.3.1.1.422 = INTEGER: 422 +.1.3.6.1.2.1.25.6.3.1.1.423 = INTEGER: 423 +.1.3.6.1.2.1.25.6.3.1.1.424 = INTEGER: 424 +.1.3.6.1.2.1.25.6.3.1.1.425 = INTEGER: 425 +.1.3.6.1.2.1.25.6.3.1.1.426 = INTEGER: 426 +.1.3.6.1.2.1.25.6.3.1.1.427 = INTEGER: 427 +.1.3.6.1.2.1.25.6.3.1.1.428 = INTEGER: 428 +.1.3.6.1.2.1.25.6.3.1.1.429 = INTEGER: 429 +.1.3.6.1.2.1.25.6.3.1.2.1 = STRING: "adduser_3.118+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.2 = STRING: "apparmor_2.13.6-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.3 = STRING: "apt_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.4 = STRING: "apt-listchanges_3.24_all" +.1.3.6.1.2.1.25.6.3.1.2.5 = STRING: "apt-utils_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.6 = STRING: "base-files_11.1+deb11u9_amd64" +.1.3.6.1.2.1.25.6.3.1.2.7 = STRING: "base-passwd_3.5.51_amd64" +.1.3.6.1.2.1.25.6.3.1.2.8 = STRING: "bash_5.1-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.9 = STRING: "bash-completion_1:2.11-2_all" +.1.3.6.1.2.1.25.6.3.1.2.10 = STRING: "bind9-dnsutils_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.11 = STRING: "bind9-host_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.12 = STRING: "bind9-libs_1:9.16.48-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.13 = STRING: "bsdextrautils_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.14 = STRING: "bsdutils_1:2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.15 = STRING: "bzip2_1.0.8-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.16 = STRING: "ca-certificates_20210119_all" +.1.3.6.1.2.1.25.6.3.1.2.17 = STRING: "centreon-nrpe4-daemon_4.1.0-102130~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.18 = STRING: "centreon-plugin-operatingsystems-linux-local_20240305-134421~bu" +.1.3.6.1.2.1.25.6.3.1.2.19 = STRING: "chrony_4.0-8+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.20 = STRING: "cloud-guest-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.21 = STRING: "cloud-image-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.22 = STRING: "cloud-initramfs-growroot_0.18.debian8_all" +.1.3.6.1.2.1.25.6.3.1.2.23 = STRING: "cloud-utils_0.31-2_all" +.1.3.6.1.2.1.25.6.3.1.2.24 = STRING: "coreutils_8.32-4+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.25 = STRING: "cpio_2.13+dfsg-7.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.26 = STRING: "cron_3.0pl1-137_amd64" +.1.3.6.1.2.1.25.6.3.1.2.27 = STRING: "dash_0.5.11+git20200708+dd9ef66-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.28 = STRING: "dbus_1.12.28-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.29 = STRING: "debconf_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.30 = STRING: "debconf-i18n_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.31 = STRING: "debian-archive-keyring_2021.1.1+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.32 = STRING: "debian-faq_10.1_all" +.1.3.6.1.2.1.25.6.3.1.2.33 = STRING: "debianutils_4.11.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.34 = STRING: "diffutils_1:3.7-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.35 = STRING: "dirmngr_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.36 = STRING: "distro-info-data_0.51+deb11u5_all" +.1.3.6.1.2.1.25.6.3.1.2.37 = STRING: "dmidecode_3.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.38 = STRING: "dmsetup_2:1.02.175-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.39 = STRING: "doc-debian_6.5_all" +.1.3.6.1.2.1.25.6.3.1.2.40 = STRING: "dpkg_1.20.13_amd64" +.1.3.6.1.2.1.25.6.3.1.2.41 = STRING: "e2fsprogs_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.42 = STRING: "fdisk_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.43 = STRING: "file_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.44 = STRING: "findutils_4.8.0-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.45 = STRING: "firmware-linux-free_20200122-1_all" +.1.3.6.1.2.1.25.6.3.1.2.46 = STRING: "gcc-10-base_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.47 = STRING: "gcc-9-base_9.3.0-22_amd64" +.1.3.6.1.2.1.25.6.3.1.2.48 = STRING: "genisoimage_9:1.1.11-3.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.49 = STRING: "gettext-base_0.21-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.50 = STRING: "gnupg_2.2.27-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.51 = STRING: "gnupg-l10n_2.2.27-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.52 = STRING: "gnupg-utils_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.53 = STRING: "gpg_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.54 = STRING: "gpg-agent_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.55 = STRING: "gpg-wks-client_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.56 = STRING: "gpg-wks-server_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.57 = STRING: "gpgconf_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.58 = STRING: "gpgsm_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.59 = STRING: "gpgv_2.2.27-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.60 = STRING: "grep_3.6-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.61 = STRING: "groff-base_1.22.4-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.62 = STRING: "grub-common_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.63 = STRING: "grub-pc_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.64 = STRING: "grub-pc-bin_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.65 = STRING: "grub2-common_2.06-3~deb11u6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.66 = STRING: "gzip_1.10-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.67 = STRING: "hostname_3.23_amd64" +.1.3.6.1.2.1.25.6.3.1.2.68 = STRING: "ifupdown_0.8.36_amd64" +.1.3.6.1.2.1.25.6.3.1.2.69 = STRING: "init_1.60_amd64" +.1.3.6.1.2.1.25.6.3.1.2.70 = STRING: "init-system-helpers_1.60_all" +.1.3.6.1.2.1.25.6.3.1.2.71 = STRING: "initramfs-tools_0.140_all" +.1.3.6.1.2.1.25.6.3.1.2.72 = STRING: "initramfs-tools-core_0.140_all" +.1.3.6.1.2.1.25.6.3.1.2.73 = STRING: "iproute2_5.10.0-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.74 = STRING: "iptables_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.75 = STRING: "iputils-ping_3:20210202-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.76 = STRING: "isc-dhcp-client_4.4.1-2.3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.77 = STRING: "isc-dhcp-common_4.4.1-2.3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.78 = STRING: "klibc-utils_2.0.8-6.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.79 = STRING: "kmod_28-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.80 = STRING: "krb5-locales_1.18.3-6+deb11u4_all" +.1.3.6.1.2.1.25.6.3.1.2.81 = STRING: "less_551-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.82 = STRING: "libacl1_2.2.53-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.83 = STRING: "libaio1_0.3.112-9_amd64" +.1.3.6.1.2.1.25.6.3.1.2.84 = STRING: "libalgorithm-c3-perl_0.11-1_all" +.1.3.6.1.2.1.25.6.3.1.2.85 = STRING: "libapparmor1_2.13.6-10_amd64" +.1.3.6.1.2.1.25.6.3.1.2.86 = STRING: "libapt-pkg6.0_2.2.4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.87 = STRING: "libargon2-1_0~20171227-0.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.88 = STRING: "libassuan0_2.5.3-7.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.89 = STRING: "libattr1_1:2.4.48-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.90 = STRING: "libaudit-common_1:3.0-2_all" +.1.3.6.1.2.1.25.6.3.1.2.91 = STRING: "libaudit1_1:3.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.92 = STRING: "libauthen-sasl-perl_2.1600-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.93 = STRING: "libb-hooks-endofscope-perl_0.24-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.94 = STRING: "libb-hooks-op-check-perl_0.22-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.95 = STRING: "libblkid1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.96 = STRING: "libbpf0_1:0.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.97 = STRING: "libbrotli1_1.0.9-2+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.98 = STRING: "libbsd0_0.11.3-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.99 = STRING: "libbz2-1.0_1.0.8-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.100 = STRING: "libc-bin_2.31-13+deb11u8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.101 = STRING: "libc-l10n_2.31-13+deb11u8_all" +.1.3.6.1.2.1.25.6.3.1.2.102 = STRING: "libc6_2.31-13+deb11u8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.103 = STRING: "libcap-ng0_0.7.9-2.2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.104 = STRING: "libcap2_1:2.44-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.105 = STRING: "libcap2-bin_1:2.44-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.106 = STRING: "libcarp-assert-perl_0.21-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.107 = STRING: "libcbor0_0.5.0+dfsg-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.108 = STRING: "libclass-c3-perl_0.35-1_all" +.1.3.6.1.2.1.25.6.3.1.2.109 = STRING: "libclass-c3-xs-perl_0.15-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.110 = STRING: "libclass-data-inheritable-perl_0.08-3_all" +.1.3.6.1.2.1.25.6.3.1.2.111 = STRING: "libclass-inspector-perl_1.36-1_all" +.1.3.6.1.2.1.25.6.3.1.2.112 = STRING: "libclass-method-modifiers-perl_2.13-1_all" +.1.3.6.1.2.1.25.6.3.1.2.113 = STRING: "libclass-singleton-perl_1.6-1_all" +.1.3.6.1.2.1.25.6.3.1.2.114 = STRING: "libclass-xsaccessor-perl_1.19-3+b7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.115 = STRING: "libclone-perl_0.45-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.116 = STRING: "libcom-err2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.117 = STRING: "libcommon-sense-perl_3.75-1+b4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.118 = STRING: "libcrypt-argon2-perl_0.020-1~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.119 = STRING: "libcrypt1_1:4.4.18-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.120 = STRING: "libcryptsetup12_2:2.3.7-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.121 = STRING: "libcryptx-perl_0.069-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.122 = STRING: "libcurl3-gnutls_7.74.0-1.3+deb11u11_amd64" +.1.3.6.1.2.1.25.6.3.1.2.123 = STRING: "libcurl4_7.74.0-1.3+deb11u11_amd64" +.1.3.6.1.2.1.25.6.3.1.2.124 = STRING: "libdata-dump-perl_1.23-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.125 = STRING: "libdata-optlist-perl_0.110-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.126 = STRING: "libdatetime-locale-perl_1:1.31-1_all" +.1.3.6.1.2.1.25.6.3.1.2.127 = STRING: "libdatetime-perl_2:1.54-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.128 = STRING: "libdatetime-timezone-perl_1:2.47-1+2024a_all" +.1.3.6.1.2.1.25.6.3.1.2.129 = STRING: "libdb5.3_5.3.28+dfsg1-0.8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.130 = STRING: "libdbus-1-3_1.12.28-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.131 = STRING: "libdebconfclient0_0.260_amd64" +.1.3.6.1.2.1.25.6.3.1.2.132 = STRING: "libdevel-callchecker-perl_0.008-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.133 = STRING: "libdevel-caller-perl_2.06-2+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.134 = STRING: "libdevel-lexalias-perl_0.05-2+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.135 = STRING: "libdevel-stacktrace-perl_2.0400-1_all" +.1.3.6.1.2.1.25.6.3.1.2.136 = STRING: "libdevmapper1.02.1_2:1.02.175-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.137 = STRING: "libdns-export1110_1:9.11.19+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.138 = STRING: "libdynaloader-functions-perl_0.003-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.139 = STRING: "libedit2_3.1-20191231-2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.140 = STRING: "libefiboot1_37-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.141 = STRING: "libefivar1_37-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.142 = STRING: "libelf1_0.183-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.143 = STRING: "libencode-locale-perl_1.05-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.144 = STRING: "libestr0_0.1.10-2.1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.145 = STRING: "libeval-closure-perl_0.14-1_all" +.1.3.6.1.2.1.25.6.3.1.2.146 = STRING: "libexception-class-perl_1.44-1_all" +.1.3.6.1.2.1.25.6.3.1.2.147 = STRING: "libexpat1_2.2.10-2+deb11u5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.148 = STRING: "libexporter-tiny-perl_1.002002-1_all" +.1.3.6.1.2.1.25.6.3.1.2.149 = STRING: "libext2fs2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.150 = STRING: "libfastjson4_0.99.9-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.151 = STRING: "libfdisk1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.152 = STRING: "libffi7_3.3-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.153 = STRING: "libfido2-1_1.6.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.154 = STRING: "libfile-listing-perl_6.14-1_all" +.1.3.6.1.2.1.25.6.3.1.2.155 = STRING: "libfile-sharedir-perl_1.118-1_all" +.1.3.6.1.2.1.25.6.3.1.2.156 = STRING: "libfont-afm-perl_1.20-3_all" +.1.3.6.1.2.1.25.6.3.1.2.157 = STRING: "libfreetype6_2.10.4+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.158 = STRING: "libfstrm0_0.6.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.159 = STRING: "libfuse2_2.9.9-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.160 = STRING: "libgcc-s1_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.161 = STRING: "libgcrypt20_1.8.7-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.162 = STRING: "libgdbm-compat4_1.19-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.163 = STRING: "libgdbm6_1.19-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.164 = STRING: "libglib2.0-0_2.66.8-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.165 = STRING: "libgmp10_2:6.2.1+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.166 = STRING: "libgnutls30_3.7.1-5+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.167 = STRING: "libgpg-error0_1.38-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.168 = STRING: "libgpm2_1.20.7-8_amd64" +.1.3.6.1.2.1.25.6.3.1.2.169 = STRING: "libgssapi-krb5-2_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.170 = STRING: "libhogweed6_3.7.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.171 = STRING: "libhtml-form-perl_6.07-1_all" +.1.3.6.1.2.1.25.6.3.1.2.172 = STRING: "libhtml-format-perl_2.12-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.173 = STRING: "libhtml-parser-perl_3.75-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.174 = STRING: "libhtml-tagset-perl_3.20-4_all" +.1.3.6.1.2.1.25.6.3.1.2.175 = STRING: "libhtml-tree-perl_5.07-2_all" +.1.3.6.1.2.1.25.6.3.1.2.176 = STRING: "libhttp-cookies-perl_6.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.177 = STRING: "libhttp-daemon-perl_6.16-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.178 = STRING: "libhttp-date-perl_6.05-1_all" +.1.3.6.1.2.1.25.6.3.1.2.179 = STRING: "libhttp-message-perl_6.28-1_all" +.1.3.6.1.2.1.25.6.3.1.2.180 = STRING: "libhttp-negotiate-perl_6.01-1_all" +.1.3.6.1.2.1.25.6.3.1.2.181 = STRING: "libhttp-proxypac-perl_0.31-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.182 = STRING: "libicu67_67.1-7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.183 = STRING: "libidn2-0_2.3.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.184 = STRING: "libio-html-perl_1.004-2_all" +.1.3.6.1.2.1.25.6.3.1.2.185 = STRING: "libio-socket-ssl-perl_2.069-1_all" +.1.3.6.1.2.1.25.6.3.1.2.186 = STRING: "libip4tc2_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.187 = STRING: "libip6tc2_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.188 = STRING: "libisc-export1105_1:9.11.19+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.189 = STRING: "libjansson4_2.13.1-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.190 = STRING: "libjson-c5_0.15-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.191 = STRING: "libjson-parse-perl_0.61-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.192 = STRING: "libjson-path-perl_1.0.4-3~bullseye_all" +.1.3.6.1.2.1.25.6.3.1.2.193 = STRING: "libjson-xs-perl_4.030-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.194 = STRING: "libk5crypto3_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.195 = STRING: "libkeepass-reader-perl_0.2-bullseye_all" +.1.3.6.1.2.1.25.6.3.1.2.196 = STRING: "libkeyutils1_1.6.1-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.197 = STRING: "libklibc_2.0.8-6.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.198 = STRING: "libkmod2_28-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.199 = STRING: "libkrb5-3_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.200 = STRING: "libkrb5support0_1.18.3-6+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.201 = STRING: "libksba8_1.5.0-3+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.202 = STRING: "libldap-2.4-2_2.4.57+dfsg-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.203 = STRING: "liblmdb0_0.9.24-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.204 = STRING: "liblocale-gettext-perl_1.07-4+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.205 = STRING: "liblockfile-bin_1.17-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.206 = STRING: "liblognorm5_2.0.5-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.207 = STRING: "liblv-perl_0.006-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.208 = STRING: "liblwp-mediatypes-perl_6.04-1_all" +.1.3.6.1.2.1.25.6.3.1.2.209 = STRING: "liblwp-protocol-https-perl_6.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.210 = STRING: "liblz4-1_1.9.3-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.211 = STRING: "liblzma5_5.2.5-2.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.212 = STRING: "libmagic-mgc_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.213 = STRING: "libmagic1_1:5.39-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.214 = STRING: "libmailtools-perl_2.21-1_all" +.1.3.6.1.2.1.25.6.3.1.2.215 = STRING: "libmaxminddb0_1.5.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.216 = STRING: "libmd0_1.0.3-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.217 = STRING: "libmnl0_1.0.4-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.218 = STRING: "libmodule-implementation-perl_0.09-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.219 = STRING: "libmodule-runtime-perl_0.016-1_all" +.1.3.6.1.2.1.25.6.3.1.2.220 = STRING: "libmount1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.221 = STRING: "libmpdec3_2.5.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.222 = STRING: "libmro-compat-perl_0.13-1_all" +.1.3.6.1.2.1.25.6.3.1.2.223 = STRING: "libnamespace-autoclean-perl_0.29-1_all" +.1.3.6.1.2.1.25.6.3.1.2.224 = STRING: "libnamespace-clean-perl_0.27-1_all" +.1.3.6.1.2.1.25.6.3.1.2.225 = STRING: "libncurses6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.226 = STRING: "libncursesw6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.227 = STRING: "libnet-curl-perl_0.55-1~bullseye_amd64" +.1.3.6.1.2.1.25.6.3.1.2.228 = STRING: "libnet-http-perl_6.20-1_all" +.1.3.6.1.2.1.25.6.3.1.2.229 = STRING: "libnet-smtp-ssl-perl_1.04-1_all" +.1.3.6.1.2.1.25.6.3.1.2.230 = STRING: "libnet-ssleay-perl_1.88-3+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.231 = STRING: "libnetfilter-conntrack3_1.0.8-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.232 = STRING: "libnettle8_3.7.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.233 = STRING: "libnewt0.52_0.52.21-4+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.234 = STRING: "libnfnetlink0_1.0.1-3+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.235 = STRING: "libnftables1_0.9.8-3.1+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.236 = STRING: "libnftnl11_1.1.9-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.237 = STRING: "libnghttp2-14_1.43.0-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.238 = STRING: "libnl-3-200_3.4.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.239 = STRING: "libnl-genl-3-200_3.4.0-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.240 = STRING: "libnpth0_1.6-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.241 = STRING: "libnsl2_1.3.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.242 = STRING: "libnss-systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.243 = STRING: "libp11-kit0_0.23.22-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.244 = STRING: "libpackage-stash-perl_0.39-1_all" +.1.3.6.1.2.1.25.6.3.1.2.245 = STRING: "libpackage-stash-xs-perl_0.29-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.246 = STRING: "libpadwalker-perl_2.5-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.247 = STRING: "libpam-modules_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.248 = STRING: "libpam-modules-bin_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.249 = STRING: "libpam-runtime_1.4.0-9+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.250 = STRING: "libpam-systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.251 = STRING: "libpam0g_1.4.0-9+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.252 = STRING: "libparams-classify-perl_0.015-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.253 = STRING: "libparams-util-perl_1.102-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.254 = STRING: "libparams-validationcompiler-perl_0.30-1_all" +.1.3.6.1.2.1.25.6.3.1.2.255 = STRING: "libpci3_1:3.7.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.256 = STRING: "libpcre2-8-0_10.36-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.257 = STRING: "libpcre3_2:8.39-13_amd64" +.1.3.6.1.2.1.25.6.3.1.2.258 = STRING: "libperl5.32_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.259 = STRING: "libpipeline1_1.5.3-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.260 = STRING: "libpng16-16_1.6.37-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.261 = STRING: "libpod-parser-perl_1.63-2_all" +.1.3.6.1.2.1.25.6.3.1.2.262 = STRING: "libpopt0_1.18-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.263 = STRING: "libprocps8_2:3.3.17-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.264 = STRING: "libprotobuf-c1_1.3.3-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.265 = STRING: "libpsl5_0.21.0-1.2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.266 = STRING: "libpython3-stdlib_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.267 = STRING: "libpython3.9-minimal_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.268 = STRING: "libpython3.9-stdlib_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.269 = STRING: "libreadline8_8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.270 = STRING: "libreadonly-perl_2.050-3_all" +.1.3.6.1.2.1.25.6.3.1.2.271 = STRING: "libref-util-perl_0.204-1_all" +.1.3.6.1.2.1.25.6.3.1.2.272 = STRING: "libref-util-xs-perl_0.117-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.273 = STRING: "librole-tiny-perl_2.002004-1_all" +.1.3.6.1.2.1.25.6.3.1.2.274 = STRING: "librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.275 = STRING: "libsasl2-2_2.1.27+dfsg-2.1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.276 = STRING: "libsasl2-modules-db_2.1.27+dfsg-2.1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.277 = STRING: "libseccomp2_2.5.1-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.278 = STRING: "libselinux1_3.1-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.279 = STRING: "libsemanage-common_3.1-1_all" +.1.3.6.1.2.1.25.6.3.1.2.280 = STRING: "libsemanage1_3.1-1+b2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.281 = STRING: "libsensors-config_1:3.6.0-7_all" +.1.3.6.1.2.1.25.6.3.1.2.282 = STRING: "libsensors5_1:3.6.0-7_amd64" +.1.3.6.1.2.1.25.6.3.1.2.283 = STRING: "libsepol1_3.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.284 = STRING: "libslang2_2.3.2-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.285 = STRING: "libsmartcols1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.286 = STRING: "libsnmp-base_5.9+dfsg-4+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.287 = STRING: "libsnmp40_5.9+dfsg-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.288 = STRING: "libspecio-perl_0.47-1_all" +.1.3.6.1.2.1.25.6.3.1.2.289 = STRING: "libsqlite3-0_3.34.1-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.290 = STRING: "libss2_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.291 = STRING: "libssh2-1_1.9.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.292 = STRING: "libssl1.1_1.1.1w-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.293 = STRING: "libstdc++6_10.2.1-6_amd64" +.1.3.6.1.2.1.25.6.3.1.2.294 = STRING: "libsub-exporter-perl_0.987-1_all" +.1.3.6.1.2.1.25.6.3.1.2.295 = STRING: "libsub-exporter-progressive-perl_0.001013-1_all" +.1.3.6.1.2.1.25.6.3.1.2.296 = STRING: "libsub-identify-perl_0.14-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.297 = STRING: "libsub-install-perl_0.928-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.298 = STRING: "libsub-name-perl_0.26-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.299 = STRING: "libsub-quote-perl_2.006006-1_all" +.1.3.6.1.2.1.25.6.3.1.2.300 = STRING: "libsystemd0_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.301 = STRING: "libtasn1-6_4.16.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.302 = STRING: "libtext-charwidth-perl_0.04-10+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.303 = STRING: "libtext-iconv-perl_1.7-7+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.304 = STRING: "libtext-wrapi18n-perl_0.06-9_all" +.1.3.6.1.2.1.25.6.3.1.2.305 = STRING: "libtie-ixhash-perl_1.23-2.1_all" +.1.3.6.1.2.1.25.6.3.1.2.306 = STRING: "libtimedate-perl_2.3300-2_all" +.1.3.6.1.2.1.25.6.3.1.2.307 = STRING: "libtinfo6_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.308 = STRING: "libtirpc-common_1.3.1-1+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.309 = STRING: "libtirpc3_1.3.1-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.310 = STRING: "libtry-tiny-perl_0.30-1_all" +.1.3.6.1.2.1.25.6.3.1.2.311 = STRING: "libtypes-serialiser-perl_1.01-1_all" +.1.3.6.1.2.1.25.6.3.1.2.312 = STRING: "libuchardet0_0.0.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.313 = STRING: "libudev1_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.314 = STRING: "libunistring2_0.9.10-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.315 = STRING: "liburi-encode-perl_1.1.1-bookworm-1_all" +.1.3.6.1.2.1.25.6.3.1.2.316 = STRING: "liburi-perl_5.08-1_all" +.1.3.6.1.2.1.25.6.3.1.2.317 = STRING: "liburing1_0.7-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.318 = STRING: "libuuid1_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.319 = STRING: "libuv1_1.40.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.320 = STRING: "libvariable-magic-perl_0.62-1+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.321 = STRING: "libwrap0_7.6.q-31_amd64" +.1.3.6.1.2.1.25.6.3.1.2.322 = STRING: "libwww-perl_6.52-1_all" +.1.3.6.1.2.1.25.6.3.1.2.323 = STRING: "libwww-robotrules-perl_6.02-1_all" +.1.3.6.1.2.1.25.6.3.1.2.324 = STRING: "libxml-libxml-perl_2.0134+dfsg-2+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.325 = STRING: "libxml-namespacesupport-perl_1.12-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.326 = STRING: "libxml-parser-perl_2.46-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.327 = STRING: "libxml-sax-base-perl_1.09-1.1_all" +.1.3.6.1.2.1.25.6.3.1.2.328 = STRING: "libxml-sax-expat-perl_0.51-1_all" +.1.3.6.1.2.1.25.6.3.1.2.329 = STRING: "libxml-sax-perl_1.02+dfsg-1_all" +.1.3.6.1.2.1.25.6.3.1.2.330 = STRING: "libxml2_2.9.10+dfsg-6.7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.331 = STRING: "libxstring-perl_0.005-1+b1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.332 = STRING: "libxtables12_1.8.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.333 = STRING: "libxxhash0_0.8.0-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.334 = STRING: "libzstd1_1.4.8+dfsg-2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.335 = STRING: "linux-base_4.6_all" +.1.3.6.1.2.1.25.6.3.1.2.336 = STRING: "linux-image-5.10.0-22-amd64_5.10.178-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.337 = STRING: "linux-image-5.10.0-28-amd64_5.10.209-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.338 = STRING: "linux-image-amd64_5.10.209-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.339 = STRING: "locales_2.31-13+deb11u8_all" +.1.3.6.1.2.1.25.6.3.1.2.340 = STRING: "login_1:4.8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.341 = STRING: "logrotate_3.18.0-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.342 = STRING: "logsave_1.46.2-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.343 = STRING: "lsb-base_11.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.344 = STRING: "lsb-release_11.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.345 = STRING: "lsof_4.93.2+dfsg-1.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.346 = STRING: "mailcap_3.69_all" +.1.3.6.1.2.1.25.6.3.1.2.347 = STRING: "man-db_2.9.4-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.348 = STRING: "manpages_5.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.349 = STRING: "mawk_1.3.4.20200120-2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.350 = STRING: "media-types_4.0.0_all" +.1.3.6.1.2.1.25.6.3.1.2.351 = STRING: "mime-support_3.66_all" +.1.3.6.1.2.1.25.6.3.1.2.352 = STRING: "mount_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.353 = STRING: "nano_5.4-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.354 = STRING: "ncurses-base_6.2+20201114-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.355 = STRING: "ncurses-bin_6.2+20201114-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.356 = STRING: "ncurses-term_6.2+20201114-2+deb11u2_all" +.1.3.6.1.2.1.25.6.3.1.2.357 = STRING: "net-tools_1.60+git20181103.0eebece-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.358 = STRING: "netbase_6.3_all" +.1.3.6.1.2.1.25.6.3.1.2.359 = STRING: "netcat-traditional_1.10-46_amd64" +.1.3.6.1.2.1.25.6.3.1.2.360 = STRING: "nftables_0.9.8-3.1+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.361 = STRING: "openssh-client_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.362 = STRING: "openssh-server_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.363 = STRING: "openssh-sftp-server_1:8.4p1-5+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.364 = STRING: "openssl_1.1.1w-0+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.365 = STRING: "passwd_1:4.8.1-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.366 = STRING: "pci.ids_0.0~2021.02.08-1_all" +.1.3.6.1.2.1.25.6.3.1.2.367 = STRING: "pciutils_1:3.7.0-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.368 = STRING: "perl_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.369 = STRING: "perl-base_5.32.1-4+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.370 = STRING: "perl-modules-5.32_5.32.1-4+deb11u3_all" +.1.3.6.1.2.1.25.6.3.1.2.371 = STRING: "perl-openssl-defaults_5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.372 = STRING: "pinentry-curses_1.1.0-4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.373 = STRING: "procps_2:3.3.17-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.374 = STRING: "python-apt-common_2.2.1_all" +.1.3.6.1.2.1.25.6.3.1.2.375 = STRING: "python3_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.376 = STRING: "python3-apt_2.2.1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.377 = STRING: "python3-certifi_2020.6.20-1_all" +.1.3.6.1.2.1.25.6.3.1.2.378 = STRING: "python3-chardet_4.0.0-1_all" +.1.3.6.1.2.1.25.6.3.1.2.379 = STRING: "python3-dbus_1.2.16-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.380 = STRING: "python3-debconf_1.5.77_all" +.1.3.6.1.2.1.25.6.3.1.2.381 = STRING: "python3-debian_0.1.39_all" +.1.3.6.1.2.1.25.6.3.1.2.382 = STRING: "python3-debianbts_3.1.0_all" +.1.3.6.1.2.1.25.6.3.1.2.383 = STRING: "python3-distro-info_1.0+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.384 = STRING: "python3-httplib2_0.18.1-3_all" +.1.3.6.1.2.1.25.6.3.1.2.385 = STRING: "python3-idna_2.10-1_all" +.1.3.6.1.2.1.25.6.3.1.2.386 = STRING: "python3-minimal_3.9.2-3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.387 = STRING: "python3-pkg-resources_52.0.0-4_all" +.1.3.6.1.2.1.25.6.3.1.2.388 = STRING: "python3-pycurl_7.43.0.6-5_amd64" +.1.3.6.1.2.1.25.6.3.1.2.389 = STRING: "python3-pysimplesoap_1.16.2-3_all" +.1.3.6.1.2.1.25.6.3.1.2.390 = STRING: "python3-reportbug_7.10.3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.391 = STRING: "python3-requests_2.25.1+dfsg-2_all" +.1.3.6.1.2.1.25.6.3.1.2.392 = STRING: "python3-six_1.16.0-2_all" +.1.3.6.1.2.1.25.6.3.1.2.393 = STRING: "python3-urllib3_1.26.5-1~exp1_all" +.1.3.6.1.2.1.25.6.3.1.2.394 = STRING: "python3.9_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.395 = STRING: "python3.9-minimal_3.9.2-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.396 = STRING: "qemu-utils_1:5.2+dfsg-11+deb11u3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.397 = STRING: "quota_4.06-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.398 = STRING: "readline-common_8.1-1_all" +.1.3.6.1.2.1.25.6.3.1.2.399 = STRING: "reportbug_7.10.3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.400 = STRING: "rsyslog_8.2102.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.401 = STRING: "runit-helper_2.10.3_all" +.1.3.6.1.2.1.25.6.3.1.2.402 = STRING: "sed_4.7-1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.403 = STRING: "sensible-utils_0.0.14_all" +.1.3.6.1.2.1.25.6.3.1.2.404 = STRING: "snmpd_5.9+dfsg-4+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.405 = STRING: "sudo_1.9.5p2-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.406 = STRING: "systemd_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.407 = STRING: "systemd-sysv_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.408 = STRING: "systemd-timesyncd_247.3-7+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.2.409 = STRING: "sysvinit-utils_2.96-7+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.410 = STRING: "tar_1.34+dfsg-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.411 = STRING: "tasksel_3.68+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.412 = STRING: "tasksel-data_3.68+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.413 = STRING: "telnet_0.17-42_amd64" +.1.3.6.1.2.1.25.6.3.1.2.414 = STRING: "traceroute_1:2.1.0-2+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.415 = STRING: "tzdata_2024a-0+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.416 = STRING: "ucf_3.0043_all" +.1.3.6.1.2.1.25.6.3.1.2.417 = STRING: "udev_247.3-7+deb11u4_amd64" +.1.3.6.1.2.1.25.6.3.1.2.418 = STRING: "unattended-upgrades_2.8_all" +.1.3.6.1.2.1.25.6.3.1.2.419 = STRING: "util-linux_2.36.1-8+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.420 = STRING: "vim_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.421 = STRING: "vim-common_2:8.2.2434-3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.422 = STRING: "vim-runtime_2:8.2.2434-3+deb11u1_all" +.1.3.6.1.2.1.25.6.3.1.2.423 = STRING: "vim-tiny_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.424 = STRING: "wamerican_2019.10.06-1_all" +.1.3.6.1.2.1.25.6.3.1.2.425 = STRING: "wget_1.21-1+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.426 = STRING: "whiptail_0.52.21-4+b3_amd64" +.1.3.6.1.2.1.25.6.3.1.2.427 = STRING: "xxd_2:8.2.2434-3+deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.428 = STRING: "xz-utils_5.2.5-2.1~deb11u1_amd64" +.1.3.6.1.2.1.25.6.3.1.2.429 = STRING: "zlib1g_1:1.2.11.dfsg-2+deb11u2_amd64" +.1.3.6.1.2.1.25.6.3.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.5 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.6 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.7 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.8 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.9 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.10 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.11 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.12 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.13 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.14 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.15 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.16 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.17 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.18 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.19 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.20 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.21 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.22 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.23 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.24 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.25 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.26 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.27 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.28 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.29 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.30 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.31 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.32 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.33 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.34 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.35 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.36 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.37 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.38 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.39 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.40 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.41 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.42 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.43 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.44 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.45 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.46 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.47 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.48 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.49 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.50 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.51 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.52 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.53 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.54 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.55 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.56 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.57 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.58 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.59 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.60 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.61 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.62 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.63 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.64 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.65 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.66 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.67 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.68 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.69 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.70 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.71 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.72 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.73 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.74 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.75 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.76 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.77 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.78 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.79 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.80 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.81 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.82 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.83 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.84 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.85 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.86 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.87 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.88 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.89 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.90 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.91 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.92 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.93 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.94 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.95 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.96 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.97 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.98 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.99 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.100 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.101 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.102 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.103 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.104 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.105 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.106 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.107 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.108 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.109 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.110 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.111 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.112 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.113 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.114 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.115 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.116 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.117 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.118 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.119 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.120 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.121 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.122 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.123 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.124 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.125 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.126 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.127 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.128 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.129 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.130 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.131 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.132 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.133 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.134 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.135 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.136 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.137 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.138 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.139 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.140 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.141 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.142 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.143 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.144 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.145 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.146 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.147 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.148 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.149 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.150 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.151 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.152 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.153 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.154 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.155 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.156 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.157 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.158 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.159 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.160 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.161 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.162 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.163 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.164 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.165 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.166 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.167 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.168 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.169 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.170 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.171 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.172 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.173 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.174 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.175 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.176 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.177 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.178 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.179 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.180 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.181 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.182 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.183 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.184 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.185 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.186 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.187 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.188 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.189 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.190 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.191 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.192 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.193 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.194 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.195 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.196 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.197 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.198 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.199 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.200 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.201 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.202 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.203 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.204 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.205 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.206 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.207 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.208 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.209 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.210 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.211 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.212 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.213 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.214 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.215 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.216 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.217 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.218 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.219 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.220 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.221 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.222 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.223 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.224 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.225 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.226 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.227 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.228 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.229 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.230 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.231 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.232 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.233 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.234 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.235 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.236 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.237 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.238 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.239 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.240 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.241 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.242 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.243 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.244 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.245 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.246 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.247 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.248 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.249 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.250 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.251 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.252 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.253 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.254 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.255 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.256 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.257 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.258 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.259 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.260 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.261 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.262 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.263 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.264 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.265 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.266 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.267 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.268 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.269 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.270 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.271 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.272 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.273 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.274 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.275 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.276 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.277 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.278 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.279 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.280 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.281 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.282 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.283 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.284 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.285 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.286 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.287 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.288 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.289 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.290 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.291 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.292 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.293 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.294 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.295 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.296 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.297 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.298 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.299 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.300 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.301 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.302 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.303 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.304 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.305 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.306 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.307 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.308 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.309 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.310 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.311 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.312 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.313 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.314 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.315 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.316 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.317 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.318 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.319 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.320 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.321 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.322 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.323 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.324 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.325 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.326 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.327 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.328 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.329 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.330 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.331 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.332 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.333 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.334 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.335 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.336 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.337 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.338 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.339 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.340 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.341 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.342 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.343 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.344 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.345 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.346 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.347 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.348 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.349 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.350 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.351 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.352 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.353 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.354 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.355 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.356 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.357 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.358 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.359 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.360 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.361 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.362 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.363 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.364 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.365 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.366 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.367 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.368 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.369 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.370 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.371 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.372 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.373 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.374 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.375 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.376 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.377 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.378 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.379 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.380 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.381 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.382 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.383 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.384 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.385 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.386 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.387 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.388 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.389 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.390 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.391 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.392 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.393 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.394 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.395 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.396 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.397 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.398 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.399 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.400 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.401 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.402 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.403 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.404 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.405 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.406 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.407 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.408 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.409 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.410 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.411 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.412 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.413 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.414 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.415 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.416 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.417 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.418 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.419 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.420 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.421 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.422 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.423 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.424 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.425 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.426 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.427 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.428 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.3.429 = OID: .0.0 +.1.3.6.1.2.1.25.6.3.1.4.1 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.2 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.3 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.4 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.5 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.6 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.7 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.8 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.9 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.10 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.11 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.12 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.13 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.14 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.15 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.16 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.17 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.18 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.19 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.20 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.21 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.22 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.23 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.24 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.25 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.26 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.27 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.28 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.29 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.30 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.31 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.32 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.33 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.34 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.35 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.36 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.37 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.38 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.39 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.40 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.41 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.42 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.43 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.44 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.45 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.46 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.47 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.48 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.49 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.50 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.51 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.52 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.53 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.54 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.55 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.56 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.57 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.58 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.59 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.60 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.61 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.62 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.63 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.64 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.65 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.66 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.67 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.68 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.69 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.70 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.71 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.72 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.73 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.74 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.75 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.76 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.77 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.78 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.79 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.80 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.81 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.82 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.83 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.84 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.85 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.86 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.87 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.88 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.89 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.90 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.91 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.92 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.93 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.94 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.95 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.96 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.97 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.98 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.99 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.100 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.101 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.102 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.103 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.104 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.105 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.106 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.107 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.108 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.109 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.110 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.111 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.112 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.113 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.114 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.115 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.116 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.117 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.118 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.119 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.120 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.121 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.122 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.123 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.124 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.125 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.126 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.127 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.128 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.129 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.130 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.131 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.132 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.133 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.134 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.135 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.136 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.137 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.138 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.139 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.140 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.141 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.142 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.143 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.144 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.145 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.146 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.147 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.148 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.149 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.150 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.151 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.152 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.153 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.154 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.155 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.156 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.157 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.158 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.159 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.160 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.161 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.162 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.163 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.164 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.165 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.166 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.167 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.168 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.169 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.170 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.171 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.172 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.173 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.174 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.175 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.176 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.177 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.178 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.179 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.180 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.181 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.182 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.183 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.184 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.185 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.186 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.187 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.188 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.189 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.190 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.191 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.192 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.193 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.194 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.195 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.196 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.197 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.198 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.199 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.200 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.201 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.202 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.203 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.204 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.205 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.206 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.207 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.208 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.209 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.210 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.211 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.212 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.213 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.214 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.215 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.216 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.217 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.218 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.219 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.220 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.221 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.222 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.223 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.224 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.225 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.226 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.227 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.228 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.229 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.230 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.231 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.232 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.233 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.234 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.235 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.236 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.237 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.238 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.239 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.240 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.241 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.242 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.243 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.244 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.245 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.246 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.247 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.248 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.249 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.250 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.251 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.252 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.253 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.254 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.255 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.256 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.257 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.258 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.259 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.260 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.261 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.262 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.263 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.264 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.265 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.266 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.267 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.268 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.269 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.270 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.271 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.272 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.273 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.274 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.275 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.276 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.277 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.278 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.279 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.280 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.281 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.282 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.283 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.284 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.285 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.286 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.287 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.288 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.289 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.290 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.291 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.292 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.293 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.294 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.295 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.296 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.297 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.298 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.299 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.300 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.301 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.302 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.303 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.304 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.305 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.306 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.307 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.308 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.309 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.310 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.311 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.312 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.313 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.314 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.315 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.316 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.317 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.318 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.319 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.320 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.321 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.322 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.323 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.324 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.325 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.326 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.327 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.328 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.329 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.330 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.331 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.332 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.333 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.334 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.335 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.336 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.337 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.338 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.339 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.340 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.341 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.342 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.343 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.344 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.345 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.346 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.347 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.348 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.349 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.350 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.351 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.352 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.353 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.354 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.355 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.356 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.357 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.358 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.359 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.360 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.361 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.362 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.363 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.364 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.365 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.366 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.367 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.368 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.369 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.370 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.371 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.372 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.373 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.374 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.375 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.376 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.377 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.378 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.379 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.380 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.381 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.382 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.383 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.384 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.385 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.386 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.387 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.388 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.389 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.390 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.391 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.392 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.393 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.394 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.395 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.396 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.397 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.398 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.399 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.400 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.401 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.402 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.403 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.404 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.405 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.406 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.407 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.408 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.409 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.410 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.411 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.412 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.413 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.414 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.415 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.416 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.417 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.418 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.419 = INTEGER: 2 +.1.3.6.1.2.1.25.6.3.1.4.420 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.421 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.422 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.423 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.424 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.425 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.426 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.427 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.428 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.4.429 = INTEGER: 4 +.1.3.6.1.2.1.25.6.3.1.5.1 = Hex-STRING: 07 E8 03 0F 0A 12 38 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.2 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.3 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.4 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.5 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.6 = Hex-STRING: 07 E8 03 0F 0A 12 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.7 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.8 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.9 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.10 = Hex-STRING: 07 E8 03 0F 0A 11 33 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.11 = Hex-STRING: 07 E8 03 0F 0A 12 23 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.12 = Hex-STRING: 07 E8 03 0F 0A 11 33 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.13 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.14 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.15 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.16 = Hex-STRING: 07 E7 06 0F 14 28 17 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.17 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.18 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.19 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.20 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.21 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.22 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.23 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.24 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.25 = Hex-STRING: 07 E8 03 0F 0A 12 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.26 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.27 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.28 = Hex-STRING: 07 E8 03 0F 0A 11 37 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.29 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.30 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.31 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.32 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.33 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.34 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.35 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.36 = Hex-STRING: 07 E8 03 0F 0A 12 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.37 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.38 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.39 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.40 = Hex-STRING: 07 E8 03 0F 0A 13 31 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.41 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.42 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.43 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.44 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.45 = Hex-STRING: 07 E8 03 0F 0A 13 01 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.46 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.47 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.48 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.49 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.50 = Hex-STRING: 07 E8 03 05 10 0D 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.51 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.52 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.53 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.54 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.55 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.56 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.57 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.58 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.59 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.60 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.61 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.62 = Hex-STRING: 07 E8 03 0F 0A 12 00 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.63 = Hex-STRING: 07 E8 03 0F 0A 11 3B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.64 = Hex-STRING: 07 E8 03 0F 0A 12 00 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.65 = Hex-STRING: 07 E8 03 0F 0A 11 3B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.66 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.67 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.68 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.69 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.70 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.71 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.72 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.73 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.74 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.75 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.76 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.77 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.78 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.79 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.80 = Hex-STRING: 07 E8 03 0F 0A 12 1F 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.81 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.82 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.83 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.84 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.85 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.86 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.87 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.88 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.89 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.90 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.91 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.92 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.93 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.94 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.95 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.96 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.97 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.98 = Hex-STRING: 07 E8 03 0F 0A 13 35 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.99 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.100 = Hex-STRING: 07 E8 03 0F 0A 11 35 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.101 = Hex-STRING: 07 E8 03 0F 0A 13 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.102 = Hex-STRING: 07 E8 03 0F 0A 12 27 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.103 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.104 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.105 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.106 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.107 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.108 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.109 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.110 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.111 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.112 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.113 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.114 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.115 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.116 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.117 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.118 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.119 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.120 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.121 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.122 = Hex-STRING: 07 E8 03 0F 0A 13 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.123 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.124 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.125 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.126 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.127 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.128 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.129 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.130 = Hex-STRING: 07 E8 03 0F 0A 11 37 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.131 = Hex-STRING: 07 E7 06 0F 14 28 10 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.132 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.133 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.134 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.135 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.136 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.137 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.138 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.139 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.140 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.141 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.142 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.143 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.144 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.145 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.146 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.147 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.148 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.149 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.150 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.151 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.152 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.153 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.154 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.155 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.156 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.157 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.158 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.159 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.160 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.161 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.162 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.163 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.164 = Hex-STRING: 07 E8 03 0F 0A 12 31 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.165 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.166 = Hex-STRING: 07 E8 03 0F 0A 11 1A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.167 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.168 = Hex-STRING: 07 E8 03 05 10 0D 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.169 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.170 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.171 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.172 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.173 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.174 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.175 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.176 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.177 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.178 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.179 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.180 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.181 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.182 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.183 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.184 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.185 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.186 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.187 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.188 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.189 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.190 = Hex-STRING: 07 E8 03 0F 0A 12 36 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.191 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.192 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.193 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.194 = Hex-STRING: 07 E8 03 0F 0A 11 1B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.195 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.196 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.197 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.198 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.199 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.200 = Hex-STRING: 07 E8 03 0F 0A 12 25 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.201 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.202 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.203 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.204 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.205 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.206 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.207 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.208 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.209 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.210 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.211 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.212 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.213 = Hex-STRING: 07 E8 03 0F 0A 11 30 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.214 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.215 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.216 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.217 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.218 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.219 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.220 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.221 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.222 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.223 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.224 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.225 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.226 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.227 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.228 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.229 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.230 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.231 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.232 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.233 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.234 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.235 = Hex-STRING: 07 E8 03 0F 0A 12 21 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.236 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.237 = Hex-STRING: 07 E8 03 0F 0A 11 39 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.238 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.239 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.240 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.241 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.242 = Hex-STRING: 07 E8 03 0F 0A 11 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.243 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.244 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.245 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.246 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.247 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.248 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.249 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.250 = Hex-STRING: 07 E8 03 0F 0A 11 1D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.251 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.252 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.253 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.254 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.255 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.256 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.257 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.258 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.259 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.260 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.261 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.262 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.263 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.264 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.265 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.266 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.267 = Hex-STRING: 07 E7 06 0F 14 28 22 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.268 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.269 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.270 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.271 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.272 = Hex-STRING: 07 E8 03 05 10 0F 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.273 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.274 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.275 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.276 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.277 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.278 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.279 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.280 = Hex-STRING: 07 E7 06 0F 14 28 12 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.281 = Hex-STRING: 07 E8 03 05 10 0D 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.282 = Hex-STRING: 07 E8 03 05 10 0D 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.283 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.284 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.285 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.286 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.287 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.288 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.289 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.290 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.291 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.292 = Hex-STRING: 07 E8 03 0F 0A 12 2F 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.293 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.294 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.295 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.296 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.297 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.298 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.299 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.300 = Hex-STRING: 07 E8 03 0F 0A 11 1E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.301 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.302 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.303 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.304 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.305 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.306 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.307 = Hex-STRING: 07 E8 03 0F 0A 12 04 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.308 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.309 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.310 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.311 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.312 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.313 = Hex-STRING: 07 E8 03 0F 0A 12 08 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.314 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.315 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.316 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.317 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.318 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.319 = Hex-STRING: 07 E7 06 0F 14 28 26 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.320 = Hex-STRING: 07 E8 03 05 10 0F 2B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.321 = Hex-STRING: 07 E7 06 0F 14 29 0F 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.322 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.323 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.324 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.325 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.326 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.327 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.328 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.329 = Hex-STRING: 07 E8 03 05 14 2E 24 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.330 = Hex-STRING: 07 E7 06 0F 14 28 27 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.331 = Hex-STRING: 07 E8 03 05 10 0F 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.332 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.333 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.334 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.335 = Hex-STRING: 07 E7 06 0F 14 29 0E 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.336 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.337 = Hex-STRING: 07 E8 03 0F 0A 13 09 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.338 = Hex-STRING: 07 E8 03 0F 0A 13 09 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.339 = Hex-STRING: 07 E8 03 0F 0A 12 18 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.340 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.341 = Hex-STRING: 07 E8 03 0F 0A 12 1B 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.342 = Hex-STRING: 07 E7 06 0F 14 28 11 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.343 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.344 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.345 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.346 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.347 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.348 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.349 = Hex-STRING: 07 E7 06 0F 14 28 13 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.350 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.351 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.352 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.353 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.354 = Hex-STRING: 07 E8 03 0F 0A 11 23 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.355 = Hex-STRING: 07 E8 03 0F 0A 12 3A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.356 = Hex-STRING: 07 E8 03 0F 0A 12 34 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.357 = Hex-STRING: 07 E8 03 05 10 0F 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.358 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.359 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.360 = Hex-STRING: 07 E8 03 0F 0A 12 21 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.361 = Hex-STRING: 07 E8 03 0F 0A 11 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.362 = Hex-STRING: 07 E8 03 0F 0A 11 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.363 = Hex-STRING: 07 E8 03 0F 0A 11 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.364 = Hex-STRING: 07 E8 03 0F 0A 13 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.365 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.366 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.367 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.368 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.369 = Hex-STRING: 07 E8 03 0F 0A 11 26 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.370 = Hex-STRING: 07 E8 03 0F 0A 11 28 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.371 = Hex-STRING: 07 E8 03 05 10 0F 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.372 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.373 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.374 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.375 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.376 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.377 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.378 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.379 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.380 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.381 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.382 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.383 = Hex-STRING: 07 E8 03 0F 0A 12 06 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.384 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.385 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.386 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.387 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.388 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.389 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.390 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.391 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.392 = Hex-STRING: 07 E7 06 0F 14 28 28 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.393 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.394 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.395 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.396 = Hex-STRING: 07 E8 03 0F 0A 13 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.397 = Hex-STRING: 07 E8 03 05 10 0F 29 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.398 = Hex-STRING: 07 E7 06 0F 14 28 23 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.399 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.400 = Hex-STRING: 07 E7 06 0F 14 28 21 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.401 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.402 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.403 = Hex-STRING: 07 E7 06 0F 14 28 20 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.404 = Hex-STRING: 07 E8 03 05 10 0D 2C 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.405 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.406 = Hex-STRING: 07 E8 03 0F 0A 11 1E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.407 = Hex-STRING: 07 E8 03 0F 0A 13 27 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.408 = Hex-STRING: 07 E7 06 0F 14 29 0D 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.409 = Hex-STRING: 07 E7 06 0F 14 28 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.410 = Hex-STRING: 07 E8 03 0F 0A 11 2A 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.411 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.412 = Hex-STRING: 07 E7 06 0F 14 28 24 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.413 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.414 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.415 = Hex-STRING: 07 E8 03 0F 0A 12 2D 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.416 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.417 = Hex-STRING: 07 E8 03 0F 0A 12 08 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.418 = Hex-STRING: 07 E7 06 0F 14 29 14 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.419 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.420 = Hex-STRING: 07 E8 03 05 10 0D 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.421 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.422 = Hex-STRING: 07 E8 03 05 10 0D 2E 00 2B 01 00 +.1.3.6.1.2.1.25.6.3.1.5.423 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.424 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.425 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.426 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.427 = Hex-STRING: 07 E7 06 0F 14 28 25 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.428 = Hex-STRING: 07 E7 06 0F 14 28 29 00 2B 02 00 +.1.3.6.1.2.1.25.6.3.1.5.429 = Hex-STRING: 07 E7 06 0F 14 28 15 00 2B 02 00 +.1.3.6.1.2.1.28.1.1.2.1 = Gauge32: 0 +.1.3.6.1.2.1.28.1.1.5.1 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.4.1.26 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.7.1.26 = Gauge32: 0 +.1.3.6.1.2.1.28.2.1.31.1.1 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.2 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.3 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.4 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.5 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.6 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.7 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.8 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.9 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.10 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.11 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.12 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.13 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.14 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.15 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.16 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.17 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.18 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.19 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.20 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.21 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.22 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.23 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.24 = INTEGER: -1 +.1.3.6.1.2.1.28.2.1.31.1.25 = INTEGER: -1 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: "lo" +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: "eth0" +.1.3.6.1.2.1.31.1.1.1.1.3 = STRING: "eth1" +.1.3.6.1.2.1.31.1.1.1.1.4 = STRING: "eth2" +.1.3.6.1.2.1.31.1.1.1.1.5 = STRING: "eth3" +.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.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.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.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.6.1 = Counter64: 1904 +.1.3.6.1.2.1.31.1.1.1.6.2 = Counter64: 175123 +.1.3.6.1.2.1.31.1.1.1.6.3 = Counter64: 614998 +.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.7.1 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.7.2 = Counter64: 1706 +.1.3.6.1.2.1.31.1.1.1.7.3 = Counter64: 6252 +.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.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.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.10.1 = Counter64: 1904 +.1.3.6.1.2.1.31.1.1.1.10.2 = Counter64: 192208 +.1.3.6.1.2.1.31.1.1.1.10.3 = Counter64: 647510 +.1.3.6.1.2.1.31.1.1.1.10.4 = Counter64: 1592 +.1.3.6.1.2.1.31.1.1.1.10.5 = Counter64: 1592 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.11.2 = Counter64: 1339 +.1.3.6.1.2.1.31.1.1.1.11.3 = Counter64: 5865 +.1.3.6.1.2.1.31.1.1.1.11.4 = Counter64: 20 +.1.3.6.1.2.1.31.1.1.1.11.5 = Counter64: 20 +.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.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.15.1 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.2 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.3 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.4 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.5 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.3 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.4 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.5 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.3 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.4 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.5 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.18.1 = "" +.1.3.6.1.2.1.31.1.1.1.18.2 = "" +.1.3.6.1.2.1.31.1.1.1.18.3 = "" +.1.3.6.1.2.1.31.1.1.1.18.4 = "" +.1.3.6.1.2.1.31.1.1.1.18.5 = "" +.1.3.6.1.2.1.31.1.1.1.19.1 = 0 +.1.3.6.1.2.1.31.1.1.1.19.2 = 0 +.1.3.6.1.2.1.31.1.1.1.19.3 = 0 +.1.3.6.1.2.1.31.1.1.1.19.4 = 0 +.1.3.6.1.2.1.31.1.1.1.19.5 = 0 +.1.3.6.1.2.1.31.1.5.0 = 0 +.1.3.6.1.2.1.55.1.1.0 = INTEGER: 2 +.1.3.6.1.2.1.55.1.2.0 = INTEGER: 64 +.1.3.6.1.2.1.55.1.3.0 = Gauge32: 5 +.1.3.6.1.2.1.55.1.5.1.2.1 = STRING: "lo" +.1.3.6.1.2.1.55.1.5.1.2.2 = STRING: "eth0" +.1.3.6.1.2.1.55.1.5.1.2.3 = STRING: "eth1" +.1.3.6.1.2.1.55.1.5.1.2.4 = STRING: "eth2" +.1.3.6.1.2.1.55.1.5.1.2.5 = STRING: "eth3" +.1.3.6.1.2.1.55.1.5.1.3.1 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.2 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.3 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.4 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.3.5 = OID: .0.0 +.1.3.6.1.2.1.55.1.5.1.4.1 = Gauge32: 65536 +.1.3.6.1.2.1.55.1.5.1.4.2 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.3 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.4 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.4.5 = Gauge32: 1500 +.1.3.6.1.2.1.55.1.5.1.8.1 = "" +.1.3.6.1.2.1.55.1.5.1.8.2 = Hex-STRING: 08 00 27 8D C0 4D +.1.3.6.1.2.1.55.1.5.1.8.3 = Hex-STRING: 08 00 27 3C 26 92 +.1.3.6.1.2.1.55.1.5.1.8.4 = Hex-STRING: 08 00 27 FE 8E E3 +.1.3.6.1.2.1.55.1.5.1.8.5 = Hex-STRING: 08 00 27 A4 62 F7 +.1.3.6.1.2.1.55.1.5.1.9.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.2 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.3 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.4 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.9.5 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.1 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.2 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.3 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.4 = INTEGER: 1 +.1.3.6.1.2.1.55.1.5.1.10.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.1.0 = INTEGER: 1 +.1.3.6.1.2.1.88.1.1.2.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.3.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.4.0 = Gauge32: 0 +.1.3.6.1.2.1.88.1.1.5.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = OID: .1.3.6.1.2.1.2.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = OID: .1.3.6.1.2.1.2.2.1.7 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = OID: .1.3.6.1.2.1.2.2.1.8 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = OID: .1.3.6.1.2.1.88.2.1.6 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = OID: .1.3.6.1.2.1.88.2.1.1 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = OID: .1.3.6.1.2.1.88.2.1.2 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = OID: .1.3.6.1.2.1.88.2.1.3 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = OID: .1.3.6.1.2.1.88.2.1.4 +.1.3.6.1.2.1.88.1.3.1.1.3.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = OID: .1.3.6.1.2.1.88.2.1.5 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.4.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 2 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.11.95.108.105.110.107.85.112.68.111.119.110.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.97.105.108.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.1 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.2 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.3 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.4 = INTEGER: 1 +.1.3.6.1.2.1.88.1.3.1.1.5.6.95.115.110.109.112.100.12.95.116.114.105.103.103.101.114.70.105.114.101.5 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = "" +.1.3.6.1.2.1.88.1.4.2.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = "" +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = Hex-STRING: 80 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.4.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.2.1.5.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = INTEGER: 1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = OID: .1.3.6.1.6.3.1.1.5.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = OID: .1.3.6.1.6.3.1.1.5.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = OID: .1.3.6.1.2.1.88.2.0.4 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.3 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = OID: .1.3.6.1.2.1.88.2.0.1 +.1.3.6.1.2.1.88.1.4.3.1.1.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = OID: .1.3.6.1.2.1.88.2.0.2 +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.2.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: "_snmpd" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.68.111.119.110 = STRING: "_linkUpDown" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.108.105.110.107.85.112 = STRING: "_linkUpDown" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.105.108.117.114.101 = STRING: "_triggerFail" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.97.108.108.105.110.103 = STRING: "_triggerFire" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.70.105.114.101.100 = STRING: "_triggerFire" +.1.3.6.1.2.1.88.1.4.3.1.3.6.95.115.110.109.112.100.95.109.116.101.84.114.105.103.103.101.114.82.105.115.105.110.103 = STRING: "_triggerFire" +.1.3.6.1.2.1.92.1.1.1.0 = Gauge32: 1000 +.1.3.6.1.2.1.92.1.1.2.0 = Gauge32: 1440 +.1.3.6.1.2.1.92.1.2.1.0 = Counter32: 0 +.1.3.6.1.2.1.92.1.2.2.0 = Counter32: 0 \ No newline at end of file diff --git a/tests/functional/snmp/os-linux-snmp.robot b/tests/robot/os/linux/snmp/os-linux-snmp.robot similarity index 66% rename from tests/functional/snmp/os-linux-snmp.robot rename to tests/robot/os/linux/snmp/os-linux-snmp.robot index b8e1aeb274..1000d7acb9 100644 --- a/tests/functional/snmp/os-linux-snmp.robot +++ b/tests/robot/os/linux/snmp/os-linux-snmp.robot @@ -1,26 +1,23 @@ *** Settings *** Documentation OS Linux SNMP plugin -Library OperatingSystem -Library XML +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl - -${CMD} perl ${CENTREON_PLUGINS} --plugin=os::linux::snmp::plugin +${CMD} ${CENTREON_PLUGINS} --plugin=os::linux::snmp::plugin &{list_diskio_test1} -... snmpcommunity=os_linux_snmp_plugin -... nbresults=10 +... snmpcommunity=os/linux/snmp/list-diskio +... nbresults=10 &{list_diskio_test2} -... snmpcommunity=os_linux_snmp_plugin_2 -... nbresults=4 +... snmpcommunity=os/linux/snmp/list-diskio-2 +... nbresults=4 @{list_diskio_tests} -... &{list_diskio_test1} -... &{list_diskio_test2} +... &{list_diskio_test1} +... &{list_diskio_test2} *** Test Cases *** diff --git a/tests/robot/os/windows/snmp/services-en.snmpwalk b/tests/robot/os/windows/snmp/services-en.snmpwalk new file mode 100644 index 0000000000..6fe53bac2c --- /dev/null +++ b/tests/robot/os/windows/snmp/services-en.snmpwalk @@ -0,0 +1,840 @@ +.1.3.6.1.4.1.77.1.2.3.1.1.5.80.68.70.50.52 = STRING: "PDF24" +.1.3.6.1.4.1.77.1.2.3.1.1.5.80.111.119.101.114 = STRING: "Power" +.1.3.6.1.4.1.77.1.2.3.1.1.6.80.97.110.71.80.83 = STRING: "PanGPS" +.1.3.6.1.4.1.77.1.2.3.1.1.6.83.101.114.118.101.114 = STRING: "Server" +.1.3.6.1.4.1.77.1.2.3.1.1.6.84.104.101.109.101.115 = STRING: "Themes" +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain" +.1.3.6.1.4.1.77.1.2.3.1.1.9.65.112.115.73.110.115.83.118.99 = STRING: "ApsInsSvc" +.1.3.6.1.4.1.77.1.2.3.1.1.9.73.80.32.72.101.108.112.101.114 = STRING: "IP Helper" +.1.3.6.1.4.1.77.1.2.3.1.1.9.84.101.108.101.112.104.111.110.121 = STRING: "Telephony" +.1.3.6.1.4.1.77.1.2.3.1.1.9.87.101.98.67.108.105.101.110.116 = STRING: "WebClient" +.1.3.6.1.4.1.77.1.2.3.1.1.10.68.78.83.32.67.108.105.101.110.116 = STRING: "DNS Client" +.1.3.6.1.4.1.77.1.2.3.1.1.10.68.97.116.97.32.85.115.97.103.101 = STRING: "Data Usage" +.1.3.6.1.4.1.77.1.2.3.1.1.10.83.109.97.114.116.32.67.97.114.100 = STRING: "Smart Card" +.1.3.6.1.4.1.77.1.2.3.1.1.11.68.72.67.80.32.67.108.105.101.110.116 = STRING: "DHCP Client" +.1.3.6.1.4.1.77.1.2.3.1.1.11.83.121.85.73.85.69.120.116.83.118.99 = STRING: "SyUIUExtSvc" +.1.3.6.1.4.1.77.1.2.3.1.1.11.84.105.109.101.32.66.114.111.107.101.114 = STRING: "Time Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.11.87.111.114.107.115.116.97.116.105.111.110 = STRING: "Workstation" +.1.3.6.1.4.1.77.1.2.3.1.1.12.69.108.97.110.32.83.101.114.118.105.99.101 = STRING: "Elan Service" +.1.3.6.1.4.1.77.1.2.3.1.1.12.83.78.77.80.32.83.101.114.118.105.99.101 = STRING: "SNMP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.12.85.115.101.114.32.77.97.110.97.103.101.114 = STRING: "User Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = STRING: "AVCTP service" +.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging" +.1.3.6.1.4.1.77.1.2.3.1.1.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = STRING: "Logi Options+" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = STRING: "Phone Service" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = STRING: "Plug and Play" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = STRING: "Print Spooler" +.1.3.6.1.4.1.77.1.2.3.1.1.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = STRING: "Windows Audio" +.1.3.6.1.4.1.77.1.2.3.1.1.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = STRING: "SSDP Discovery" +.1.3.6.1.4.1.77.1.2.3.1.1.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = STRING: "Task Scheduler" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = STRING: "Windows Backup" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = STRING: "Windows Search" +.1.3.6.1.4.1.77.1.2.3.1.1.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = STRING: "Security Center" +.1.3.6.1.4.1.77.1.2.3.1.1.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = STRING: "Storage Service" +.1.3.6.1.4.1.77.1.2.3.1.1.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WLAN AutoConfig" +.1.3.6.1.4.1.77.1.2.3.1.1.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = STRING: "WWAN AutoConfig" +.1.3.6.1.4.1.77.1.2.3.1.1.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = STRING: "Sync Host_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = STRING: "CNG Key Isolation" +.1.3.6.1.4.1.77.1.2.3.1.1.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = STRING: "COM+ Event System" +.1.3.6.1.4.1.77.1.2.3.1.1.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = STRING: "Lenovo PM Service" +.1.3.6.1.4.1.77.1.2.3.1.1.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Windows Event Log" +.1.3.6.1.4.1.77.1.2.3.1.1.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = STRING: "Credential Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = STRING: "IPsec Policy Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = STRING: "Microsoft Passport" +.1.3.6.1.4.1.77.1.2.3.1.1.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = STRING: "VMware NAT Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = STRING: "Contact Data_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Geolocation Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = STRING: "RPC Endpoint Mapper" +.1.3.6.1.4.1.77.1.2.3.1.1.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = STRING: "VMware DHCP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = STRING: "Web Account Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = STRING: "Application Identity" +.1.3.6.1.4.1.77.1.2.3.1.1.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Data Sharing Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = STRING: "Host Network Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = STRING: "LenovoVantageService" +.1.3.6.1.4.1.77.1.2.3.1.1.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = STRING: "Network List Service" +.1.3.6.1.4.1.77.1.2.3.1.1.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = STRING: "PrintWorkflow_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = STRING: "System Events Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = STRING: "User Profile Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = STRING: "Base Filtering Engine" +.1.3.6.1.4.1.77.1.2.3.1.1.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = STRING: "Epson Scanner Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = STRING: "FirmwareUpdateService" +.1.3.6.1.4.1.77.1.2.3.1.1.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = STRING: "FusionInventory Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Local Session Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = STRING: "Realtek Audio Service" +.1.3.6.1.4.1.77.1.2.3.1.1.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = STRING: "SQL Server VSS Writer" +.1.3.6.1.4.1.77.1.2.3.1.1.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = STRING: "TCP/IP NetBIOS Helper" +.1.3.6.1.4.1.77.1.2.3.1.1.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = STRING: "Cryptographic Services" +.1.3.6.1.4.1.77.1.2.3.1.1.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Display Policy Service" +.1.3.6.1.4.1.77.1.2.3.1.1.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = STRING: "Dolby DAX2 API Service" +.1.3.6.1.4.1.77.1.2.3.1.1.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = STRING: "Application Information" +.1.3.6.1.4.1.77.1.2.3.1.1.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = STRING: "Certificate Propagation" +.1.3.6.1.4.1.77.1.2.3.1.1.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = STRING: "Cherry Device Interface" +.1.3.6.1.4.1.77.1.2.3.1.1.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = STRING: "Diagnostic Service Host" +.1.3.6.1.4.1.77.1.2.3.1.1.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = STRING: "Remote Desktop Services" +.1.3.6.1.4.1.77.1.2.3.1.1.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = STRING: "Thunderbolt(TM) Service" +.1.3.6.1.4.1.77.1.2.3.1.1.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = STRING: "User Data Access_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Radio Management Service" +.1.3.6.1.4.1.77.1.2.3.1.1.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = STRING: "Shell Hardware Detection" +.1.3.6.1.4.1.77.1.2.3.1.1.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = STRING: "State Repository Service" +.1.3.6.1.4.1.77.1.2.3.1.1.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = STRING: "User Data Storage_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = STRING: "Windows Security Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = STRING: "Diagnostic Policy Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = STRING: "Lenovo EasyResume Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = STRING: "Network Connection Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = STRING: "Security Accounts Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = STRING: "WatchGuard SSLVPN Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = STRING: "Windows Biometric Service" +.1.3.6.1.4.1.77.1.2.3.1.1.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = STRING: "Windows Defender Firewall" +.1.3.6.1.4.1.77.1.2.3.1.1.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Device Association Service" +.1.3.6.1.4.1.77.1.2.3.1.1.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = STRING: "Network Location Awareness" +.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Windows Connection Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = STRING: "Windows Font Cache Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Display Enhancement Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = STRING: "Lenovo Hotkey Client Loader" +.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = STRING: "OpenVPN Interactive Service" +.1.3.6.1.4.1.77.1.2.3.1.1.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = STRING: "Payments and NFC/SE Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = STRING: "Remote Procedure Call (RPC)" +.1.3.6.1.4.1.77.1.2.3.1.1.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = STRING: "Update Orchestrator Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = STRING: "Adobe Acrobat Update Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = STRING: "DCOM Server Process Launcher" +.1.3.6.1.4.1.77.1.2.3.1.1.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = STRING: "Encrypting File System (EFS)" +.1.3.6.1.4.1.77.1.2.3.1.1.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = STRING: "HP Print Scan Doctor Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = STRING: "Microsoft IIS Administration" +.1.3.6.1.4.1.77.1.2.3.1.1.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = STRING: "Microsoft Passport Container" +.1.3.6.1.4.1.77.1.2.3.1.1.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = STRING: "Remote Desktop Configuration" +.1.3.6.1.4.1.77.1.2.3.1.1.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "VMware Authorization Service" +.1.3.6.1.4.1.77.1.2.3.1.1.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = Hex-STRING: 74 65 73 74 73 65 72 76 69 63 65 20 C3 BC C3 A4 C3 B6 C3 A1 C3 A0 20 28 31 32 33 29 +.1.3.6.1.4.1.77.1.2.3.1.1.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Clipboard User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = STRING: "FortiClient Service Scheduler" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = STRING: "SonicWall NetExtender Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = STRING: "Human Interface Device Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Network Virtualization Service" +.1.3.6.1.4.1.77.1.2.3.1.1.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = STRING: "Windows Audio Endpoint Builder" +.1.3.6.1.4.1.77.1.2.3.1.1.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = STRING: "Application Host Helper Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = STRING: "Microsoft Store Install Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = STRING: "Microsoft Update Health Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Network Store Interface Service" +.1.3.6.1.4.1.77.1.2.3.1.1.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = STRING: "OpenVPN Agent agent_ovpnconnect" +.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = STRING: "Windows Image Acquisition (WIA)" +.1.3.6.1.4.1.77.1.2.3.1.1.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Windows License Manager Service" +.1.3.6.1.4.1.77.1.2.3.1.1.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = STRING: "Client License Service (ClipSVC)" +.1.3.6.1.4.1.77.1.2.3.1.1.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = STRING: "Distributed Link Tracking Client" +.1.3.6.1.4.1.77.1.2.3.1.1.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = STRING: "Function Discovery Provider Host" +.1.3.6.1.4.1.77.1.2.3.1.1.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = STRING: "Remote Access Connection Manager" +.1.3.6.1.4.1.77.1.2.3.1.1.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = STRING: "AppX Deployment Service (AppXSVC)" +.1.3.6.1.4.1.77.1.2.3.1.1.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = STRING: "Capability Access Manager Service" +.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = STRING: "Internet Connection Sharing (ICS)" +.1.3.6.1.4.1.77.1.2.3.1.1.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Event Notification Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "BitLocker Drive Encryption Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = STRING: "Connected Devices Platform Service" +.1.3.6.1.4.1.77.1.2.3.1.1.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = STRING: "Intel(R) PROSet/Wireless Event Log" +.1.3.6.1.4.1.77.1.2.3.1.1.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = STRING: "Windows Management Instrumentation" +.1.3.6.1.4.1.77.1.2.3.1.1.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = STRING: "IKE and AuthIP IPsec Keying Modules" +.1.3.6.1.4.1.77.1.2.3.1.1.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = STRING: "Remote Procedure Call (RPC) Locator" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "SonicWall Client Protection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = STRING: "System Guard Runtime Monitor Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "System Interface Foundation Service" +.1.3.6.1.4.1.77.1.2.3.1.1.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = STRING: "DevQuery Background Discovery Broker" +.1.3.6.1.4.1.77.1.2.3.1.1.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = STRING: "Citrix Secure Access AlwaysOn Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = STRING: "Microsoft Intune Management Extension" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Office Click-to-Run Service" +.1.3.6.1.4.1.77.1.2.3.1.1.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = STRING: "Microsoft Windows SMS Router Service." +.1.3.6.1.4.1.77.1.2.3.1.1.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = STRING: "Background Tasks Infrastructure Service" +.1.3.6.1.4.1.77.1.2.3.1.1.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = STRING: "Function Discovery Resource Publication" +.1.3.6.1.4.1.77.1.2.3.1.1.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = STRING: "Program Compatibility Assistant Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = STRING: "Connected User Experiences and Telemetry" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HDCP Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Content Protection HECI Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Graphics Command Center Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = STRING: "Secure Socket Tunneling Protocol Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = STRING: "WinHTTP Web Proxy Auto-Discovery Service" +.1.3.6.1.4.1.77.1.2.3.1.1.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = STRING: "Windows Push Notifications System Service" +.1.3.6.1.4.1.77.1.2.3.1.1.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Intel(R) HD Graphics Control Panel Service" +.1.3.6.1.4.1.77.1.2.3.1.1.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Lenovo Intelligent Thermal Solution Service" +.1.3.6.1.4.1.77.1.2.3.1.1.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = STRING: "Touch Keyboard and Handwriting Panel Service" +.1.3.6.1.4.1.77.1.2.3.1.1.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Connected Devices Platform User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = STRING: "Windows Push Notifications User Service_17ac85" +.1.3.6.1.4.1.77.1.2.3.1.1.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = STRING: "Remote Desktop Services UserMode Port Redirector" +.1.3.6.1.4.1.77.1.2.3.1.1.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = STRING: "Windows Presentation Foundation Font Cache 3.0.0.0" +.1.3.6.1.4.1.77.1.2.3.1.1.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Windows Defender Advanced Threat Protection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = STRING: "Intel(R) Management Engine WMI Provider Registration" +.1.3.6.1.4.1.77.1.2.3.1.1.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Platform and Thermal Framework service" +.1.3.6.1.4.1.77.1.2.3.1.1.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = STRING: "Microsoft Defender Antivirus Network Inspection Service" +.1.3.6.1.4.1.77.1.2.3.1.1.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Dynamic Application Loader Host Interface Service" +.1.3.6.1.4.1.77.1.2.3.1.1.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = STRING: "Intel(R) Management and Security Application Local Management Service" +.1.3.6.1.4.1.77.1.2.3.1.1.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = STRING: "Device Management Wireless Application Protocol (WAP) Push message Routing Service" +.1.3.6.1.4.1.77.1.2.3.1.2.5.80.68.70.50.52 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.5.80.111.119.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.80.97.110.71.80.83 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.83.101.114.118.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.6.84.104.101.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.65.112.115.73.110.115.83.118.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.73.80.32.72.101.108.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.84.101.108.101.112.104.111.110.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.9.87.101.98.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.3.5.80.68.70.50.52 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.80.97.110.71.80.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.83.101.114.118.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.6.84.104.101.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.84.101.108.101.112.104.111.110.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.5.80.68.70.50.52 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.6.80.97.110.71.80.83 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.6.83.101.114.118.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.6.84.104.101.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.65.112.115.73.110.115.83.118.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.73.80.32.72.101.108.112.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.9.87.101.98.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.5.80.68.70.50.52 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.5.80.111.119.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.80.97.110.71.80.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.83.101.114.118.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.6.84.104.101.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.65.112.115.73.110.115.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.73.80.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.9.84.101.108.101.112.104.111.110.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.9.87.101.98.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.68.78.83.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.68.97.116.97.32.85.115.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.83.109.97.114.116.32.67.97.114.100 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.68.72.67.80.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.83.121.85.73.85.69.120.116.83.118.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.84.105.109.101.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.87.111.114.107.115.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.12.69.108.97.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.83.78.77.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.85.115.101.114.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.65.86.67.84.80.32.115.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.76.111.103.105.32.79.112.116.105.111.110.115.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.104.111.110.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.32.97.110.100.32.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.114.105.110.116.32.83.112.111.111.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.87.105.110.100.111.119.115.32.65.117.100.105.111 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.83.83.68.80.32.68.105.115.99.111.118.101.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.84.97.115.107.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.66.97.99.107.117.112 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.83.101.97.114.99.104 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.83.101.99.117.114.105.116.121.32.67.101.110.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.83.116.111.114.97.103.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.87.76.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.15.87.87.65.78.32.65.117.116.111.67.111.110.102.105.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.16.83.121.110.99.32.72.111.115.116.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.67.78.71.32.75.101.121.32.73.115.111.108.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.67.79.77.43.32.69.118.101.110.116.32.83.121.115.116.101.109 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.76.101.110.111.118.111.32.80.77.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.17.87.105.110.100.111.119.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.67.114.101.100.101.110.116.105.97.108.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.73.80.115.101.99.32.80.111.108.105.99.121.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.86.77.119.97.114.101.32.78.65.84.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.67.111.110.116.97.99.116.32.68.97.116.97.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.71.101.111.108.111.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.82.80.67.32.69.110.100.112.111.105.110.116.32.77.97.112.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.86.77.119.97.114.101.32.68.72.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.19.87.101.98.32.65.99.99.111.117.110.116.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.65.112.112.108.105.99.97.116.105.111.110.32.73.100.101.110.116.105.116.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.68.97.116.97.32.83.104.97.114.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.72.111.115.116.32.78.101.116.119.111.114.107.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.76.101.110.111.118.111.86.97.110.116.97.103.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.78.101.116.119.111.114.107.32.76.105.115.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.80.114.105.110.116.87.111.114.107.102.108.111.119.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.83.121.115.116.101.109.32.69.118.101.110.116.115.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.85.115.101.114.32.80.114.111.102.105.108.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.66.97.115.101.32.70.105.108.116.101.114.105.110.103.32.69.110.103.105.110.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.69.112.115.111.110.32.83.99.97.110.110.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.70.105.114.109.119.97.114.101.85.112.100.97.116.101.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.70.117.115.105.111.110.73.110.118.101.110.116.111.114.121.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.21.76.111.99.97.108.32.83.101.115.115.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.82.101.97.108.116.101.107.32.65.117.100.105.111.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.83.81.76.32.83.101.114.118.101.114.32.86.83.83.32.87.114.105.116.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.84.67.80.47.73.80.32.78.101.116.66.73.79.83.32.72.101.108.112.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.67.114.121.112.116.111.103.114.97.112.104.105.99.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.68.105.115.112.108.97.121.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.22.68.111.108.98.121.32.68.65.88.50.32.65.80.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.65.112.112.108.105.99.97.116.105.111.110.32.73.110.102.111.114.109.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.67.101.114.116.105.102.105.99.97.116.101.32.80.114.111.112.97.103.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.67.104.101.114.114.121.32.68.101.118.105.99.101.32.73.110.116.101.114.102.97.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.68.105.97.103.110.111.115.116.105.99.32.83.101.114.118.105.99.101.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.84.104.117.110.100.101.114.98.111.108.116.40.84.77.41.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.85.115.101.114.32.68.97.116.97.32.65.99.99.101.115.115.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.82.97.100.105.111.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.83.104.101.108.108.32.72.97.114.100.119.97.114.101.32.68.101.116.101.99.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.85.115.101.114.32.68.97.116.97.32.83.116.111.114.97.103.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.87.105.110.100.111.119.115.32.83.101.99.117.114.105.116.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.68.105.97.103.110.111.115.116.105.99.32.80.111.108.105.99.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.76.101.110.111.118.111.32.69.97.115.121.82.101.115.117.109.101.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.25.78.101.116.119.111.114.107.32.67.111.110.110.101.99.116.105.111.110.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.83.101.99.117.114.105.116.121.32.65.99.99.111.117.110.116.115.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.97.116.99.104.71.117.97.114.100.32.83.83.76.86.80.78.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.66.105.111.109.101.116.114.105.99.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.70.105.114.101.119.97.108.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.68.101.118.105.99.101.32.65.115.115.111.99.105.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.78.101.116.119.111.114.107.32.76.111.99.97.116.105.111.110.32.65.119.97.114.101.110.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.87.105.110.100.111.119.115.32.70.111.110.116.32.67.97.99.104.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.68.105.115.112.108.97.121.32.69.110.104.97.110.99.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.76.101.110.111.118.111.32.72.111.116.107.101.121.32.67.108.105.101.110.116.32.76.111.97.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.79.112.101.110.86.80.78.32.73.110.116.101.114.97.99.116.105.118.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.80.97.121.109.101.110.116.115.32.97.110.100.32.78.70.67.47.83.69.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.85.112.100.97.116.101.32.79.114.99.104.101.115.116.114.97.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.65.100.111.98.101.32.65.99.114.111.98.97.116.32.85.112.100.97.116.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.68.67.79.77.32.83.101.114.118.101.114.32.80.114.111.99.101.115.115.32.76.97.117.110.99.104.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.69.110.99.114.121.112.116.105.110.103.32.70.105.108.101.32.83.121.115.116.101.109.32.40.69.70.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.72.80.32.80.114.105.110.116.32.83.99.97.110.32.68.111.99.116.111.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.73.73.83.32.65.100.109.105.110.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.77.105.99.114.111.115.111.102.116.32.80.97.115.115.112.111.114.116.32.67.111.110.116.97.105.110.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.67.111.110.102.105.103.117.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.86.77.119.97.114.101.32.65.117.116.104.111.114.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.28.116.101.115.116.115.101.114.118.105.99.101.32.195.188.195.164.195.182.195.161.195.160.32.40.49.50.51.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.67.108.105.112.98.111.97.114.100.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.70.111.114.116.105.67.108.105.101.110.116.32.83.101.114.118.105.99.101.32.83.99.104.101.100.117.108.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.111.110.105.99.87.97.108.108.32.78.101.116.69.120.116.101.110.100.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.72.117.109.97.110.32.73.110.116.101.114.102.97.99.101.32.68.101.118.105.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.78.101.116.119.111.114.107.32.86.105.114.116.117.97.108.105.122.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.87.105.110.100.111.119.115.32.65.117.100.105.111.32.69.110.100.112.111.105.110.116.32.66.117.105.108.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.65.112.112.108.105.99.97.116.105.111.110.32.72.111.115.116.32.72.101.108.112.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.83.116.111.114.101.32.73.110.115.116.97.108.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.77.105.99.114.111.115.111.102.116.32.85.112.100.97.116.101.32.72.101.97.108.116.104.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.78.101.116.119.111.114.107.32.83.116.111.114.101.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.79.112.101.110.86.80.78.32.65.103.101.110.116.32.97.103.101.110.116.95.111.118.112.110.99.111.110.110.101.99.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.73.109.97.103.101.32.65.99.113.117.105.115.105.116.105.111.110.32.40.87.73.65.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.31.87.105.110.100.111.119.115.32.76.105.99.101.110.115.101.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.67.108.105.101.110.116.32.76.105.99.101.110.115.101.32.83.101.114.118.105.99.101.32.40.67.108.105.112.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.68.105.115.116.114.105.98.117.116.101.100.32.76.105.110.107.32.84.114.97.99.107.105.110.103.32.67.108.105.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.80.114.111.118.105.100.101.114.32.72.111.115.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.82.101.109.111.116.101.32.65.99.99.101.115.115.32.67.111.110.110.101.99.116.105.111.110.32.77.97.110.97.103.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.65.112.112.88.32.68.101.112.108.111.121.109.101.110.116.32.83.101.114.118.105.99.101.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.67.97.112.97.98.105.108.105.116.121.32.65.99.99.101.115.115.32.77.97.110.97.103.101.114.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.116.101.114.110.101.116.32.67.111.110.110.101.99.116.105.111.110.32.83.104.97.114.105.110.103.32.40.73.67.83.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.83.121.115.116.101.109.32.69.118.101.110.116.32.78.111.116.105.102.105.99.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.66.105.116.76.111.99.107.101.114.32.68.114.105.118.101.32.69.110.99.114.121.112.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.73.110.116.101.108.40.82.41.32.80.82.79.83.101.116.47.87.105.114.101.108.101.115.115.32.69.118.101.110.116.32.76.111.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.87.105.110.100.111.119.115.32.77.97.110.97.103.101.109.101.110.116.32.73.110.115.116.114.117.109.101.110.116.97.116.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.35.73.75.69.32.97.110.100.32.65.117.116.104.73.80.32.73.80.115.101.99.32.75.101.121.105.110.103.32.77.111.100.117.108.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.82.101.109.111.116.101.32.80.114.111.99.101.100.117.114.101.32.67.97.108.108.32.40.82.80.67.41.32.76.111.99.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.111.110.105.99.87.97.108.108.32.67.108.105.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.71.117.97.114.100.32.82.117.110.116.105.109.101.32.77.111.110.105.116.111.114.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.121.115.116.101.109.32.73.110.116.101.114.102.97.99.101.32.70.111.117.110.100.97.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.68.101.118.81.117.101.114.121.32.66.97.99.107.103.114.111.117.110.100.32.68.105.115.99.111.118.101.114.121.32.66.114.111.107.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.67.105.116.114.105.120.32.83.101.99.117.114.101.32.65.99.99.101.115.115.32.65.108.119.97.121.115.79.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.73.110.116.117.110.101.32.77.97.110.97.103.101.109.101.110.116.32.69.120.116.101.110.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.79.102.102.105.99.101.32.67.108.105.99.107.45.116.111.45.82.117.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.77.105.99.114.111.115.111.102.116.32.87.105.110.100.111.119.115.32.83.77.83.32.82.111.117.116.101.114.32.83.101.114.118.105.99.101.46 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.66.97.99.107.103.114.111.117.110.100.32.84.97.115.107.115.32.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.70.117.110.99.116.105.111.110.32.68.105.115.99.111.118.101.114.121.32.82.101.115.111.117.114.99.101.32.80.117.98.108.105.99.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.80.114.111.103.114.97.109.32.67.111.109.112.97.116.105.98.105.108.105.116.121.32.65.115.115.105.115.116.97.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.67.111.110.110.101.99.116.101.100.32.85.115.101.114.32.69.120.112.101.114.105.101.110.99.101.115.32.97.110.100.32.84.101.108.101.109.101.116.114.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.68.67.80.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.67.111.110.116.101.110.116.32.80.114.111.116.101.99.116.105.111.110.32.72.69.67.73.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.73.110.116.101.108.40.82.41.32.71.114.97.112.104.105.99.115.32.67.111.109.109.97.110.100.32.67.101.110.116.101.114.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.87.105.110.72.84.84.80.32.87.101.98.32.80.114.111.120.121.32.65.117.116.111.45.68.105.115.99.111.118.101.114.121.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.41.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.83.121.115.116.101.109.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.73.110.116.101.108.40.82.41.32.72.68.32.71.114.97.112.104.105.99.115.32.67.111.110.116.114.111.108.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.43.76.101.110.111.118.111.32.73.110.116.101.108.108.105.103.101.110.116.32.84.104.101.114.109.97.108.32.83.111.108.117.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.84.111.117.99.104.32.75.101.121.98.111.97.114.100.32.97.110.100.32.72.97.110.100.119.114.105.116.105.110.103.32.80.97.110.101.108.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.67.111.110.110.101.99.116.101.100.32.68.101.118.105.99.101.115.32.80.108.97.116.102.111.114.109.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.87.105.110.100.111.119.115.32.80.117.115.104.32.78.111.116.105.102.105.99.97.116.105.111.110.115.32.85.115.101.114.32.83.101.114.118.105.99.101.95.49.55.97.99.56.53 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.82.101.109.111.116.101.32.68.101.115.107.116.111.112.32.83.101.114.118.105.99.101.115.32.85.115.101.114.77.111.100.101.32.80.111.114.116.32.82.101.100.105.114.101.99.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.50.87.105.110.100.111.119.115.32.80.114.101.115.101.110.116.97.116.105.111.110.32.70.111.117.110.100.97.116.105.111.110.32.70.111.110.116.32.67.97.99.104.101.32.51.46.48.46.48.46.48 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.51.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114.32.65.100.118.97.110.99.101.100.32.84.104.114.101.97.116.32.80.114.111.116.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.52.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.69.110.103.105.110.101.32.87.77.73.32.80.114.111.118.105.100.101.114.32.82.101.103.105.115.116.114.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.80.108.97.116.102.111.114.109.32.97.110.100.32.84.104.101.114.109.97.108.32.70.114.97.109.101.119.111.114.107.32.115.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.55.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114.32.65.110.116.105.118.105.114.117.115.32.78.101.116.119.111.114.107.32.73.110.115.112.101.99.116.105.111.110.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.58.73.110.116.101.108.40.82.41.32.68.121.110.97.109.105.99.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.97.100.101.114.32.72.111.115.116.32.73.110.116.101.114.102.97.99.101.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.69.73.110.116.101.108.40.82.41.32.77.97.110.97.103.101.109.101.110.116.32.97.110.100.32.83.101.99.117.114.105.116.121.32.65.112.112.108.105.99.97.116.105.111.110.32.76.111.99.97.108.32.77.97.110.97.103.101.109.101.110.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.82.68.101.118.105.99.101.32.77.97.110.97.103.101.109.101.110.116.32.87.105.114.101.108.101.115.115.32.65.112.112.108.105.99.97.116.105.111.110.32.80.114.111.116.111.99.111.108.32.40.87.65.80.41.32.80.117.115.104.32.109.101.115.115.97.103.101.32.82.111.117.116.105.110.103.32.83.101.114.118.105.99.101 = INTEGER: 1 diff --git a/tests/robot/os/windows/snmp/services-fr.snmpwalk b/tests/robot/os/windows/snmp/services-fr.snmpwalk new file mode 100644 index 0000000000..668ba5ba88 --- /dev/null +++ b/tests/robot/os/windows/snmp/services-fr.snmpwalk @@ -0,0 +1,400 @@ +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.101.114.118.101.117.114 = STRING: "Serveur" +.1.3.6.1.4.1.77.1.2.3.1.1.7.83.121.115.77.97.105.110 = STRING: "SysMain" +.1.3.6.1.4.1.77.1.2.3.1.1.7.84.104.195.168.109.101.115 = Hex-STRING: 54 68 C3 A8 6D 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.10.67.108.105.101.110.116.32.68.78.83 = STRING: "Client DNS" +.1.3.6.1.4.1.77.1.2.3.1.1.11.67.108.105.101.110.116.32.68.72.67.80 = STRING: "Client DHCP" +.1.3.6.1.4.1.77.1.2.3.1.1.12.65.108.105.109.101.110.116.97.116.105.111.110 = STRING: "Alimentation" +.1.3.6.1.4.1.77.1.2.3.1.1.12.83.101.114.118.105.99.101.32.83.78.77.80 = STRING: "Service SNMP" +.1.3.6.1.4.1.77.1.2.3.1.1.12.86.77.119.97.114.101.32.84.111.111.108.115 = STRING: "VMware Tools" +.1.3.6.1.4.1.77.1.2.3.1.1.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = STRING: "Assistance IP" +.1.3.6.1.4.1.77.1.2.3.1.1.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = STRING: "CoreMessaging" +.1.3.6.1.4.1.77.1.2.3.1.1.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = STRING: "Plug-and-Play" +.1.3.6.1.4.1.77.1.2.3.1.1.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = STRING: "Temps Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = STRING: "Windows Update" +.1.3.6.1.4.1.77.1.2.3.1.1.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = STRING: "Station de travail" +.1.3.6.1.4.1.77.1.2.3.1.1.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = STRING: "Service de stockage" +.1.3.6.1.4.1.77.1.2.3.1.1.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 52 65 67 69 73 74 72 65 20 C3 A0 20 64 69 73 74 61 6E 63 65 +.1.3.6.1.4.1.77.1.2.3.1.1.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = Hex-STRING: 49 73 6F 6C 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 20 43 4E 47 +.1.3.6.1.4.1.77.1.2.3.1.1.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = STRING: "Services de chiffrement" +.1.3.6.1.4.1.77.1.2.3.1.1.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = Hex-STRING: 53 70 6F 75 6C 65 75 72 20 64 E2 80 99 69 6D 70 72 65 73 73 69 6F 6E +.1.3.6.1.4.1.77.1.2.3.1.1.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = Hex-STRING: 50 6C 61 6E 69 66 69 63 61 74 65 75 72 20 64 65 20 74 C3 A2 63 68 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = Hex-STRING: 41 70 70 6C 69 63 61 74 69 6F 6E 20 73 79 73 74 C3 A8 6D 65 20 43 4F 4D 2B +.1.3.6.1.4.1.77.1.2.3.1.1.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = STRING: "Optimisation de livraison" +.1.3.6.1.4.1.77.1.2.3.1.1.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = STRING: "Pare-feu Windows Defender" +.1.3.6.1.4.1.77.1.2.3.1.1.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = Hex-STRING: 44 C3 A9 74 65 63 74 69 6F 6E 20 6D 61 74 C3 A9 72 69 65 6C 20 6E 6F 79 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = STRING: "Moteur de filtrage de base" +.1.3.6.1.4.1.77.1.2.3.1.1.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = Hex-STRING: 53 65 72 76 69 63 65 20 4C 69 73 74 65 20 64 65 73 20 72 C3 A9 73 65 61 75 78 +.1.3.6.1.4.1.77.1.2.3.1.1.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = STRING: "Gestionnaire de comptes web" +.1.3.6.1.4.1.77.1.2.3.1.1.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = STRING: "NSClient++ Monitoring Agent" +.1.3.6.1.4.1.77.1.2.3.1.1.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = STRING: "Assistance NetBIOS sur TCP/IP" +.1.3.6.1.4.1.77.1.2.3.1.1.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = STRING: "Gestionnaire des utilisateurs" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = STRING: "Service de profil utilisateur" +.1.3.6.1.4.1.77.1.2.3.1.1.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = Hex-STRING: 53 79 73 74 C3 A8 6D 65 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 20 43 4F 4D 2B +.1.3.6.1.4.1.77.1.2.3.1.1.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 67 72 6F 75 70 65 +.1.3.6.1.4.1.77.1.2.3.1.1.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = STRING: "Gestionnaire de session locale" +.1.3.6.1.4.1.77.1.2.3.1.1.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = Hex-STRING: 4A 6F 75 72 6E 61 6C 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.1.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = STRING: "Infrastructure de gestion Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = STRING: "Lanceur de processus serveur DCOM" +.1.3.6.1.4.1.77.1.2.3.1.1.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 27 61 66 66 69 63 68 61 67 65 +.1.3.6.1.4.1.77.1.2.3.1.1.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = Hex-STRING: 41 70 70 65 6C 20 64 65 20 70 72 6F 63 C3 A9 64 75 72 65 20 64 69 73 74 61 6E 74 65 20 28 52 50 43 29 +.1.3.6.1.4.1.77.1.2.3.1.1.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = Hex-STRING: 43 6C 69 65 6E 74 20 64 65 20 73 75 69 76 69 20 64 65 20 6C 69 65 6E 20 64 69 73 74 72 69 62 75 C3 A9 +.1.3.6.1.4.1.77.1.2.3.1.1.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = STRING: "Service de cache de police Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = STRING: "Gestionnaire des connexions Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = STRING: "Mappeur de point de terminaison RPC" +.1.3.6.1.4.1.77.1.2.3.1.1.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 73 74 72 61 74 C3 A9 67 69 65 20 64 65 20 64 69 61 67 6E 6F 73 74 69 63 +.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 49 6E 74 65 72 66 61 63 65 20 64 75 20 6D 61 67 61 73 69 6E 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = STRING: "Service antivirus Microsoft Defender" +.1.3.6.1.4.1.77.1.2.3.1.1.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = Hex-STRING: 43 6F 6E 6E 61 69 73 73 61 6E 63 65 20 64 65 73 20 65 6D 70 6C 61 63 65 6D 65 6E 74 73 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 20 63 6F 6D 70 74 65 73 20 64 65 20 73 C3 A9 63 75 72 69 74 C3 A9 +.1.3.6.1.4.1.77.1.2.3.1.1.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = Hex-STRING: 4D 65 74 74 72 65 20 C3 A0 20 6A 6F 75 72 20 6C 65 20 73 65 72 76 69 63 65 20 4F 72 63 68 65 73 74 72 61 74 6F 72 +.1.3.6.1.4.1.77.1.2.3.1.1.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 70 6C 6F 69 65 6D 65 6E 74 20 41 70 70 58 20 28 41 70 70 58 53 56 43 29 +.1.3.6.1.4.1.77.1.2.3.1.1.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = STRING: "VMware Alias Manager and Ticket Service" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = STRING: "Serveur Gestionnaire de licences Windows" +.1.3.6.1.4.1.77.1.2.3.1.1.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 64 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65 +.1.3.6.1.4.1.77.1.2.3.1.1.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = Hex-STRING: 43 6F 6F 72 64 69 6E 61 74 65 75 72 20 64 65 20 74 72 61 6E 73 61 63 74 69 6F 6E 73 20 64 69 73 74 72 69 62 75 C3 A9 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 72 C3 A9 73 65 61 75 +.1.3.6.1.4.1.77.1.2.3.1.1.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = STRING: "Service State Repository (StateRepository)" +.1.3.6.1.4.1.77.1.2.3.1.1.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = STRING: "Service utilisateur du Presse-papiers_76c3f" +.1.3.6.1.4.1.77.1.2.3.1.1.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = STRING: "Assistant Connexion avec un compte Microsoft" +.1.3.6.1.4.1.77.1.2.3.1.1.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = Hex-STRING: 47 65 73 74 69 6F 6E 20 C3 A0 20 64 69 73 74 61 6E 63 65 20 64 65 20 57 69 6E 64 6F 77 73 20 28 47 65 73 74 69 6F 6E 20 57 53 4D 29 +.1.3.6.1.4.1.77.1.2.3.1.1.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 42 72 6F 6B 65 72 20 70 6F 75 72 20 6C 65 73 20 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 68 6F 72 61 69 72 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = Hex-STRING: 4D 6F 64 75 6C 65 73 20 64 65 20 67 C3 A9 6E C3 A9 72 61 74 69 6F 6E 20 64 65 20 63 6C C3 A9 73 20 49 4B 45 20 65 74 20 41 75 74 68 49 50 +.1.3.6.1.4.1.77.1.2.3.1.1.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 65 73 20 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 +.1.3.6.1.4.1.77.1.2.3.1.1.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 69 6E 73 74 61 6C 6C 61 74 69 6F 6E 20 64 65 20 70 C3 A9 72 69 70 68 C3 A9 72 69 71 75 65 +.1.3.6.1.4.1.77.1.2.3.1.1.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 48 C3 B4 74 65 20 64 75 20 66 6F 75 72 6E 69 73 73 65 75 72 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73 +.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6A 6F 75 72 6E 61 6C 69 73 61 74 69 6F 6E 20 64 65 73 20 61 63 63 C3 A8 73 20 75 74 69 6C 69 73 61 74 65 75 72 +.1.3.6.1.4.1.77.1.2.3.1.1.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = Hex-STRING: 53 65 72 76 69 63 65 C2 A0 53 53 54 50 20 28 53 65 63 75 72 65 20 53 6F 63 6B 65 74 20 54 75 6E 6E 65 6C 69 6E 67 20 50 72 6F 74 6F 63 6F 6C 29 +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 20 64 E2 80 99 C3 A9 76 C3 A9 6E 65 6D 65 6E 74 73 20 73 79 73 74 C3 A8 6D 65 +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 74 72 61 6E 73 66 65 72 74 20 69 6E 74 65 6C 6C 69 67 65 6E 74 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E +.1.3.6.1.4.1.77.1.2.3.1.1.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 73 79 73 74 C3 A8 6D 65 20 64 65 20 6E 6F 74 69 66 69 63 61 74 69 6F 6E 73 20 50 75 73 68 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.1.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = Hex-STRING: 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 65 73 20 63 6F 6E 6E 65 78 69 6F 6E 73 20 64 E2 80 99 61 63 63 C3 A8 73 20 C3 A0 20 64 69 73 74 61 6E 63 65 +.1.3.6.1.4.1.77.1.2.3.1.1.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = Hex-STRING: 53 65 72 76 69 63 65 20 47 65 73 74 69 6F 6E 6E 61 69 72 65 20 64 E2 80 99 61 63 63 C3 A8 73 20 61 75 78 20 66 6F 6E 63 74 69 6F 6E 6E 61 6C 69 74 C3 A9 73 +.1.3.6.1.4.1.77.1.2.3.1.1.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = Hex-STRING: 50 75 62 6C 69 63 61 74 69 6F 6E 20 64 65 73 20 72 65 73 73 6F 75 72 63 65 73 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 64 65 20 66 6F 6E 63 74 69 6F 6E 73 +.1.3.6.1.4.1.77.1.2.3.1.1.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 6C E2 80 99 41 73 73 69 73 74 61 6E 74 20 43 6F 6D 70 61 74 69 62 69 6C 69 74 C3 A9 20 64 65 73 20 70 72 6F 67 72 61 6D 6D 65 73 +.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 66 72 61 73 74 72 75 63 74 75 72 65 20 64 65 73 20 74 C3 A2 63 68 65 73 20 65 6E 20 61 72 72 69 C3 A8 72 65 2D 70 6C 61 6E +.1.3.6.1.4.1.77.1.2.3.1.1.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = STRING: "Service utilisateur de notifications Push Windows_76c3f" +.1.3.6.1.4.1.77.1.2.3.1.1.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = Hex-STRING: 45 78 70 C3 A9 72 69 65 6E 63 65 73 20 64 65 73 20 75 74 69 6C 69 73 61 74 65 75 72 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 20 65 74 20 74 C3 A9 6C C3 A9 6D C3 A9 74 72 69 65 +.1.3.6.1.4.1.77.1.2.3.1.1.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = Hex-STRING: 53 65 72 76 69 63 65 20 64 75 20 63 6C 61 76 69 65 72 20 74 61 63 74 69 6C 65 20 65 74 20 64 75 20 76 6F 6C 65 74 20 64 E2 80 99 C3 A9 63 72 69 74 75 72 65 20 6D 61 6E 75 73 63 72 69 74 65 +.1.3.6.1.4.1.77.1.2.3.1.1.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = Hex-STRING: 53 65 72 76 69 63 65 20 64 E2 80 99 69 6E 73 70 65 63 74 69 6F 6E 20 72 C3 A9 73 65 61 75 20 64 65 20 6C E2 80 99 61 6E 74 69 76 69 72 75 73 20 4D 69 63 72 6F 73 6F 66 74 20 44 65 66 65 6E 64 65 72 +.1.3.6.1.4.1.77.1.2.3.1.1.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = Hex-STRING: 53 65 72 76 69 63 65 20 70 6F 75 72 20 75 74 69 6C 69 73 61 74 65 75 72 20 64 65 20 70 6C 61 74 65 66 6F 72 6D 65 20 64 E2 80 99 61 70 70 61 72 65 69 6C 73 20 63 6F 6E 6E 65 63 74 C3 A9 73 5F 37 36 63 33 66 +.1.3.6.1.4.1.77.1.2.3.1.1.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = Hex-STRING: 53 65 72 76 69 63 65 20 64 65 20 64 C3 A9 63 6F 75 76 65 72 74 65 20 61 75 74 6F 6D 61 74 69 71 75 65 20 64 65 20 50 72 6F 78 79 20 57 65 62 20 70 6F 75 72 20 6C 65 73 20 73 65 72 76 69 63 65 73 20 48 54 54 50 20 57 69 6E 64 6F 77 73 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.101.114.118.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.83.121.115.77.97.105.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.7.84.104.195.168.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.2.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.2.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 4 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.101.114.118.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.7.84.104.195.168.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.3.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.101.114.118.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.83.121.115.77.97.105.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.7.84.104.195.168.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.4.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.4.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.101.114.118.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.83.121.115.77.97.105.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.7.84.104.195.168.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.10.67.108.105.101.110.116.32.68.78.83 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.11.67.108.105.101.110.116.32.68.72.67.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.65.108.105.109.101.110.116.97.116.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.83.101.114.118.105.99.101.32.83.78.77.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.12.86.77.119.97.114.101.32.84.111.111.108.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.13.65.115.115.105.115.116.97.110.99.101.32.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.67.111.114.101.77.101.115.115.97.103.105.110.103 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.80.108.117.103.45.97.110.100.45.80.108.97.121 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.13.84.101.109.112.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.14.87.105.110.100.111.119.115.32.85.112.100.97.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.18.83.116.97.116.105.111.110.32.100.101.32.116.114.97.118.97.105.108 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.19.83.101.114.118.105.99.101.32.100.101.32.115.116.111.99.107.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.20.82.101.103.105.115.116.114.101.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.21.73.115.111.108.97.116.105.111.110.32.100.101.32.99.108.195.169.32.67.78.71 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.83.101.114.118.105.99.101.115.32.100.101.32.99.104.105.102.102.114.101.109.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.23.83.112.111.117.108.101.117.114.32.100.226.128.153.105.109.112.114.101.115.115.105.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.24.80.108.97.110.105.102.105.99.97.116.101.117.114.32.100.101.32.116.195.162.99.104.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.65.112.112.108.105.99.97.116.105.111.110.32.115.121.115.116.195.168.109.101.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.79.112.116.105.109.105.115.97.116.105.111.110.32.100.101.32.108.105.118.114.97.105.115.111.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.25.80.97.114.101.45.102.101.117.32.87.105.110.100.111.119.115.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.68.195.169.116.101.99.116.105.111.110.32.109.97.116.195.169.114.105.101.108.32.110.111.121.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.77.111.116.101.117.114.32.100.101.32.102.105.108.116.114.97.103.101.32.100.101.32.98.97.115.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.26.83.101.114.118.105.99.101.32.76.105.115.116.101.32.100.101.115.32.114.195.169.115.101.97.117.120 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.119.101.98 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.27.78.83.67.108.105.101.110.116.43.43.32.77.111.110.105.116.111.114.105.110.103.32.65.103.101.110.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.65.115.115.105.115.116.97.110.99.101.32.78.101.116.66.73.79.83.32.115.117.114.32.84.67.80.47.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.101.114.118.105.99.101.32.100.101.32.112.114.111.102.105.108.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.29.83.121.115.116.195.168.109.101.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.32.67.79.77.43 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.67.108.105.101.110.116.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.103.114.111.117.112.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.30.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.115.101.115.115.105.111.110.32.108.111.99.97.108.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.32.74.111.117.114.110.97.108.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.73.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.32.103.101.115.116.105.111.110.32.87.105.110.100.111.119.115 = INTEGER: 2 +.1.3.6.1.4.1.77.1.2.3.1.5.33.76.97.110.99.101.117.114.32.100.101.32.112.114.111.99.101.115.115.117.115.32.115.101.114.118.101.117.114.32.68.67.79.77 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.33.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.39.97.102.102.105.99.104.97.103.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.65.112.112.101.108.32.100.101.32.112.114.111.99.195.169.100.117.114.101.32.100.105.115.116.97.110.116.101.32.40.82.80.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.67.108.105.101.110.116.32.100.101.32.115.117.105.118.105.32.100.101.32.108.105.101.110.32.100.105.115.116.114.105.98.117.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.34.83.101.114.118.105.99.101.32.100.101.32.99.97.99.104.101.32.100.101.32.112.111.108.105.99.101.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.77.97.112.112.101.117.114.32.100.101.32.112.111.105.110.116.32.100.101.32.116.101.114.109.105.110.97.105.115.111.110.32.82.80.67 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.35.83.101.114.118.105.99.101.32.100.101.32.115.116.114.97.116.195.169.103.105.101.32.100.101.32.100.105.97.103.110.111.115.116.105.99 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.73.110.116.101.114.102.97.99.101.32.100.117.32.109.97.103.97.115.105.110.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.36.83.101.114.118.105.99.101.32.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.67.111.110.110.97.105.115.115.97.110.99.101.32.100.101.115.32.101.109.112.108.97.99.101.109.101.110.116.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.37.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.99.111.109.112.116.101.115.32.100.101.32.115.195.169.99.117.114.105.116.195.169 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.38.77.101.116.116.114.101.32.195.160.32.106.111.117.114.32.108.101.32.115.101.114.118.105.99.101.32.79.114.99.104.101.115.116.114.97.116.111.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.38.83.101.114.118.105.99.101.32.100.101.32.100.195.169.112.108.111.105.101.109.101.110.116.32.65.112.112.88.32.40.65.112.112.88.83.86.67.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.39.86.77.119.97.114.101.32.65.108.105.97.115.32.77.97.110.97.103.101.114.32.97.110.100.32.84.105.99.107.101.116.32.83.101.114.118.105.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.101.117.114.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.32.108.105.99.101.110.99.101.115.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.40.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.100.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.41.67.111.111.114.100.105.110.97.116.101.117.114.32.100.101.32.116.114.97.110.115.97.99.116.105.111.110.115.32.100.105.115.116.114.105.98.117.195.169.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.99.111.110.110.101.120.105.111.110.115.32.114.195.169.115.101.97.117 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.42.83.101.114.118.105.99.101.32.83.116.97.116.101.32.82.101.112.111.115.105.116.111.114.121.32.40.83.116.97.116.101.82.101.112.111.115.105.116.111.114.121.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.43.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.117.32.80.114.101.115.115.101.45.112.97.112.105.101.114.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.65.115.115.105.115.116.97.110.116.32.67.111.110.110.101.120.105.111.110.32.97.118.101.99.32.117.110.32.99.111.109.112.116.101.32.77.105.99.114.111.115.111.102.116 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.44.71.101.115.116.105.111.110.32.195.160.32.100.105.115.116.97.110.99.101.32.100.101.32.87.105.110.100.111.119.115.32.40.71.101.115.116.105.111.110.32.87.83.77.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.45.83.101.114.118.105.99.101.32.66.114.111.107.101.114.32.112.111.117.114.32.108.101.115.32.195.169.118.195.169.110.101.109.101.110.116.115.32.104.111.114.97.105.114.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.77.111.100.117.108.101.115.32.100.101.32.103.195.169.110.195.169.114.97.116.105.111.110.32.100.101.32.99.108.195.169.115.32.73.75.69.32.101.116.32.65.117.116.104.73.80 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.46.83.101.114.118.105.99.101.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.101.115.32.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.47.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.105.110.115.116.97.108.108.97.116.105.111.110.32.100.101.32.112.195.169.114.105.112.104.195.169.114.105.113.117.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.72.195.180.116.101.32.100.117.32.102.111.117.114.110.105.115.115.101.117.114.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.32.100.101.32.106.111.117.114.110.97.108.105.115.97.116.105.111.110.32.100.101.115.32.97.99.99.195.168.115.32.117.116.105.108.105.115.97.116.101.117.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.48.83.101.114.118.105.99.101.194.160.83.83.84.80.32.40.83.101.99.117.114.101.32.83.111.99.107.101.116.32.84.117.110.110.101.108.105.110.103.32.80.114.111.116.111.99.111.108.41 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.32.100.226.128.153.195.169.118.195.169.110.101.109.101.110.116.115.32.115.121.115.116.195.168.109.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.101.32.116.114.97.110.115.102.101.114.116.32.105.110.116.101.108.108.105.103.101.110.116.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.49.83.101.114.118.105.99.101.32.100.117.32.115.121.115.116.195.168.109.101.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.50.71.101.115.116.105.111.110.110.97.105.114.101.32.100.101.115.32.99.111.110.110.101.120.105.111.110.115.32.100.226.128.153.97.99.99.195.168.115.32.195.160.32.100.105.115.116.97.110.99.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.52.83.101.114.118.105.99.101.32.71.101.115.116.105.111.110.110.97.105.114.101.32.100.226.128.153.97.99.99.195.168.115.32.97.117.120.32.102.111.110.99.116.105.111.110.110.97.108.105.116.195.169.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.54.80.117.98.108.105.99.97.116.105.111.110.32.100.101.115.32.114.101.115.115.111.117.114.99.101.115.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.100.101.32.102.111.110.99.116.105.111.110.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.54.83.101.114.118.105.99.101.32.100.101.32.108.226.128.153.65.115.115.105.115.116.97.110.116.32.67.111.109.112.97.116.105.98.105.108.105.116.195.169.32.100.101.115.32.112.114.111.103.114.97.109.109.101.115 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.100.226.128.153.105.110.102.114.97.115.116.114.117.99.116.117.114.101.32.100.101.115.32.116.195.162.99.104.101.115.32.101.110.32.97.114.114.105.195.168.114.101.45.112.108.97.110 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.55.83.101.114.118.105.99.101.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.110.111.116.105.102.105.99.97.116.105.111.110.115.32.80.117.115.104.32.87.105.110.100.111.119.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.57.69.120.112.195.169.114.105.101.110.99.101.115.32.100.101.115.32.117.116.105.108.105.115.97.116.101.117.114.115.32.99.111.110.110.101.99.116.195.169.115.32.101.116.32.116.195.169.108.195.169.109.195.169.116.114.105.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.63.83.101.114.118.105.99.101.32.100.117.32.99.108.97.118.105.101.114.32.116.97.99.116.105.108.101.32.101.116.32.100.117.32.118.111.108.101.116.32.100.226.128.153.195.169.99.114.105.116.117.114.101.32.109.97.110.117.115.99.114.105.116.101 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.66.83.101.114.118.105.99.101.32.100.226.128.153.105.110.115.112.101.99.116.105.111.110.32.114.195.169.115.101.97.117.32.100.101.32.108.226.128.153.97.110.116.105.118.105.114.117.115.32.77.105.99.114.111.115.111.102.116.32.68.101.102.101.110.100.101.114 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.69.83.101.114.118.105.99.101.32.112.111.117.114.32.117.116.105.108.105.115.97.116.101.117.114.32.100.101.32.112.108.97.116.101.102.111.114.109.101.32.100.226.128.153.97.112.112.97.114.101.105.108.115.32.99.111.110.110.101.99.116.195.169.115.95.55.54.99.51.102 = INTEGER: 1 +.1.3.6.1.4.1.77.1.2.3.1.5.78.83.101.114.118.105.99.101.32.100.101.32.100.195.169.99.111.117.118.101.114.116.101.32.97.117.116.111.109.97.116.105.113.117.101.32.100.101.32.80.114.111.120.121.32.87.101.98.32.112.111.117.114.32.108.101.115.32.115.101.114.118.105.99.101.115.32.72.84.84.80.32.87.105.110.100.111.119.115 = INTEGER: 1 diff --git a/tests/functional/snmp/os-windows-services.robot b/tests/robot/os/windows/snmp/services.robot similarity index 90% rename from tests/functional/snmp/os-windows-services.robot rename to tests/robot/os/windows/snmp/services.robot index 33f8103172..d00096e9d6 100644 --- a/tests/functional/snmp/os-windows-services.robot +++ b/tests/robot/os/windows/snmp/services.robot @@ -1,20 +1,18 @@ *** Settings *** Documentation Linux Local Systemd-sc-status -Library OperatingSystem -Library String -Library Examples +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl +${CMD} ${CENTREON_PLUGINS} +... --plugin=os::windows::snmp::plugin +... --mode=service +... --hostname=127.0.0.1 +... --snmp-port=2024 -${CMD} perl ${CENTREON_PLUGINS} --plugin=os::windows::snmp::plugin -... --mode=service -... --hostname=127.0.0.1 -... --snmp-port=2024 *** Test Cases *** Windows Services EN ${tc}/x @@ -22,7 +20,7 @@ Windows Services EN ${tc}/x [Tags] os linux local ${command} Catenate ... ${CMD} - ... --snmp-community=os_windows_services_en + ... --snmp-community=os/windows/snmp/services-en ... --filter-name='${filter}' ... ${extra_option} @@ -40,13 +38,12 @@ Windows Services EN ${tc}/x ... 4 ${EMPTY} --critical-active=1: OK: All services are ok | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; ... 5 ${EMPTY} --critical-active=1:1 CRITICAL: Number of services active: 168 | 'services.total.count'=168;;;0; 'services.active.count'=168;;1:1;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; - Windows Services FR ${tc}/x [Documentation] Systemd version < 248 [Tags] os linux local ${command} Catenate ... ${CMD} - ... --snmp-community=os_windows_services_fr + ... --snmp-community=os/windows/snmp/services-fr ... --filter-name='${filter}' ... ${extra_option} @@ -66,5 +63,3 @@ Windows Services FR ${tc}/x ... 6 .v.nement --critical-active=1: OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;1:;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; ... 7 \xe9v\xe9nement ${EMPTY} OK: All services are ok | 'services.total.count'=5;;;0; 'services.active.count'=5;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; ... 8 SNMP ${EMPTY} OK: Service 'Service SNMP' state is 'active' [installed state: 'installed'] | 'services.total.count'=1;;;0; 'services.active.count'=1;;;0; 'services.continue.pending.count'=0;;;0; 'services.pause.pending.count'=0;;;0; 'services.paused.count'=0;;;0; - - diff --git a/tests/resources/mockoon/storage-datacore-api.json b/tests/robot/storage/datacore/restapi/storage-datacore-api.json similarity index 100% rename from tests/resources/mockoon/storage-datacore-api.json rename to tests/robot/storage/datacore/restapi/storage-datacore-api.json diff --git a/tests/functional/api/storage-datacore-restapi.robot b/tests/robot/storage/datacore/restapi/storage-datacore-restapi.robot similarity index 80% rename from tests/functional/api/storage-datacore-restapi.robot rename to tests/robot/storage/datacore/restapi/storage-datacore-restapi.robot index c1b95d661c..00bbb67a93 100644 --- a/tests/functional/api/storage-datacore-restapi.robot +++ b/tests/robot/storage/datacore/restapi/storage-datacore-restapi.robot @@ -1,20 +1,17 @@ *** Settings *** Documentation datacore rest api plugin -Library Examples -Library OperatingSystem -Library Process -Library String +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource -Suite Setup Start Mockoon +Suite Setup Start Mockoon ${MOCKOON_JSON} Suite Teardown Stop Mockoon Test Timeout 120s + *** Variables *** -${CENTREON_PLUGINS} ${CURDIR}${/}..${/}..${/}..${/}src${/}centreon_plugins.pl -${MOCKOON_JSON} ${CURDIR}${/}..${/}..${/}resources${/}mockoon${/}storage-datacore-restapi.json +${MOCKOON_JSON} ${CURDIR}${/}storage-datacore-api.json -${CMD} perl ${CENTREON_PLUGINS} --plugin=storage::datacore::restapi::plugin --password=pass --username=user --port=3000 --hostname=127.0.0.1 --proto=http +${CMD} ${CENTREON_PLUGINS} --plugin=storage::datacore::restapi::plugin --password=pass --username=user --port=3000 --hostname=127.0.0.1 --proto=http *** Test Cases *** @@ -61,17 +58,3 @@ Datacore check status monitor Examples: result -- ... CRITICAL: 'State of HostVM2' status : 'Critical', message is 'Connected' - -*** Keywords *** -Start Mockoon - ${process} Start Process - ... mockoon-cli - ... start - ... --data - ... ${MOCKOON_JSON} - ... --port - ... 3000 - Sleep 5s - -Stop Mockoon - Terminate All Processes \ No newline at end of file diff --git a/tests/robot/storage/synology/snmp/storage-synology-snmp.robot b/tests/robot/storage/synology/snmp/storage-synology-snmp.robot new file mode 100644 index 0000000000..be230e3bb0 --- /dev/null +++ b/tests/robot/storage/synology/snmp/storage-synology-snmp.robot @@ -0,0 +1,96 @@ +*** Settings *** +Documentation Storage Synology SNMP + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=storage::synology::snmp::plugin + +&{check_components_test1} +... description=Checking disk components when all disks are ok +... snmpcommunity=storage/synology/snmp/synology-disk-ok +... expected_output=OK: All 8 components are ok [2/2 disk, 2/2 fan, 1/1 psu, 2/2 raid, 1/1 system]. | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; +&{check_components_test2} +... description=Checking disk components when one disks is warning +... snmpcommunity=storage/synology/snmp/synology-disk-warning +... expected_output=WARNING: Disk 'Disk 2' health is warning | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; +&{check_components_test3} +... description=Checking disk components when one disks is critical +... snmpcommunity=storage/synology/snmp/synology-disk-critical +... expected_output=CRITICAL: Disk 'Disk 2' health is critical | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; +&{check_components_test4} +... description=Checking disk components when one disks is failing +... snmpcommunity=storage/synology/snmp/synology-disk-failing +... expected_output=CRITICAL: Disk 'Disk 2' health is failing | 'Disk 1#hardware.disk.bad_sectors.count'=0;;;0; 'Disk 2#hardware.disk.bad_sectors.count'=0;;;0; 'hardware.disk.count'=2;;;; 'hardware.fan.count'=2;;;; 'hardware.psu.count'=1;;;; 'hardware.raid.count'=2;;;; 'hardware.system.count'=1;;;; +@{check_components_tests} +... &{check_components_test1} +... &{check_components_test2} +... &{check_components_test3} +... &{check_components_test4} + +&{uptime_t1} +... description=Uptime check expected to be OK +... snmpcommunity=storage/synology/snmp/synology-disk-ok +... warning= +... critical= +... expected_output=OK: System uptime is: 46m 5s | 'uptime'=2765.00s;;;0; +&{uptime_t2} +... description=Uptime check expected to be warning +... snmpcommunity=storage/synology/snmp/synology-disk-ok +... warning=10 +... critical= +... expected_output=WARNING: System uptime is: 46m 5s | 'uptime'=2765.00s;0:10;;0; +&{uptime_t3} +... description=Uptime check expected to be critical +... snmpcommunity=storage/synology/snmp/synology-disk-ok +... warning= +... critical=10 +... expected_output=CRITICAL: System uptime is: 46m 5s | 'uptime'=2765.00s;;0:10;0; + +@{uptime_tests} +... &{uptime_t1} +... &{uptime_t2} +... &{uptime_t3} + + +*** Test Cases *** +Components + [Tags] storage synology snmp + FOR ${check_components_test} IN @{check_components_tests} + ${command} Catenate + ... ${CMD} + ... --mode=components + ... --hostname=127.0.0.1 + ... --snmp-version=2 + ... --snmp-port=2024 + ... --snmp-community=${check_components_test.snmpcommunity} + + ${output} Run ${command} + Should Be Equal As Strings + ... ${check_components_test.expected_output} + ... ${output} + ... ${check_components_test.description} failed. Wrong output for components mode: ${check_components_test}.{\n}Command output:{\n}${output} + END + +Uptime + [Tags] storage synology snmp + FOR ${test_item} IN @{uptime_tests} + ${command} Catenate + ... ${CMD} + ... --mode=uptime + ... --hostname=127.0.0.1 + ... --snmp-version=2 + ... --snmp-port=2024 + ... --snmp-community=${test_item.snmpcommunity} + ... --warning-uptime=${test_item.warning} + ... --critical-uptime=${test_item.critical} + + ${output} Run ${command} + Should Be Equal As Strings + ... ${test_item.expected_output} + ... ${output} + ... ${test_item.description} failed. Wrong output for components mode: ${test_item}.{\n}Command output:{\n}${output} + END diff --git a/tests/resources/snmp/synology_component_disk_critical.snmpwalk b/tests/robot/storage/synology/snmp/synology-disk-critical.snmpwalk similarity index 100% rename from tests/resources/snmp/synology_component_disk_critical.snmpwalk rename to tests/robot/storage/synology/snmp/synology-disk-critical.snmpwalk diff --git a/tests/resources/snmp/synology_component_disk_failing.snmpwalk b/tests/robot/storage/synology/snmp/synology-disk-failing.snmpwalk similarity index 100% rename from tests/resources/snmp/synology_component_disk_failing.snmpwalk rename to tests/robot/storage/synology/snmp/synology-disk-failing.snmpwalk diff --git a/tests/resources/snmp/synology_component_disk_ok.snmpwalk b/tests/robot/storage/synology/snmp/synology-disk-ok.snmpwalk similarity index 100% rename from tests/resources/snmp/synology_component_disk_ok.snmpwalk rename to tests/robot/storage/synology/snmp/synology-disk-ok.snmpwalk diff --git a/tests/resources/snmp/synology_component_disk_warning.snmpwalk b/tests/robot/storage/synology/snmp/synology-disk-warning.snmpwalk similarity index 100% rename from tests/resources/snmp/synology_component_disk_warning.snmpwalk rename to tests/robot/storage/synology/snmp/synology-disk-warning.snmpwalk From c6d16301ed97fccf6671c30abcb216f179f699fb Mon Sep 17 00:00:00 2001 From: THEPAUT Date: Mon, 8 Apr 2024 02:55:55 -0400 Subject: [PATCH 33/63] Update alert.pm (#4982) Co-authored-by: omercier <32134301+omercier@users.noreply.github.com> --- src/notification/email/mode/alert.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notification/email/mode/alert.pm b/src/notification/email/mode/alert.pm index 374104814f..fb78cf1d35 100644 --- a/src/notification/email/mode/alert.pm +++ b/src/notification/email/mode/alert.pm @@ -382,7 +382,7 @@ sub service_message { ' . $self->{option_results}->{service_output} . ' ' . $self->{option_results}->{service_longoutput}; - $self->{option_results}->{service_longoutput} =~ s/\\n/
/g; + $self->{option_results}->{service_longoutput} =~ s/\n/
/g; my $output = $self->{option_results}->{service_output} . $line_break . $self->{option_results}->{service_longoutput}; my $background_color= 'white'; @@ -829,7 +829,7 @@ Use this option to disable SSL. =item B<--smtp-debug> -Enable smtp-debug mode. +Enable debugging of SMTP. =item B<--to-address> From 1b135f9a82b6d2a88002a6ad11abd2bc428aaffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Duret?= Date: Mon, 8 Apr 2024 14:54:10 +0200 Subject: [PATCH 34/63] take into account reserved space (#4978) Co-authored-by: omercier <32134301+omercier@users.noreply.github.com> --- src/os/linux/local/mode/storage.pm | 6 +++--- tests/resources/spellcheck/stopwords.t | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/os/linux/local/mode/storage.pm b/src/os/linux/local/mode/storage.pm index 12b52903b8..9baca846cd 100644 --- a/src/os/linux/local/mode/storage.pm +++ b/src/os/linux/local/mode/storage.pm @@ -153,7 +153,7 @@ sub manage_selection { my @lines = split /\n/, $stdout; foreach my $line (@lines) { next if ($line !~ /^(\S+)\s+(\S+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\S+)\s+(.*)/); - my ($fs, $type, $size, $used, $available, $percent, $mount) = ($1, $2, $3, $4, $5, $6, $7); + my ($fs, $type, $used, $available, $percent, $mount) = ($1, $2, $4, $5, $6, $7); next if (defined($self->{option_results}->{filter_fs}) && $self->{option_results}->{filter_fs} ne '' && $fs !~ /$self->{option_results}->{filter_fs}/); @@ -170,9 +170,9 @@ sub manage_selection { display => $mount, fs => $fs, type => $type, - total => $size * 1024, used => $used * 1024, - free => $available * 1024 + free => $available * 1024, + total => ($used + $available) * 1024 }; } diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index a3644d8cfb..c8971c6853 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -1,5 +1,7 @@ --display-transform-dst --display-transform-src +--exclude-fs +--filter-fs --filter-vdom --force-counters32 --force-counters64 @@ -13,6 +15,7 @@ ADSL Centreon Datacore deltaps +df eth Fortigate Fortinet From 4582a0019d20be821258c0dd75ce06da79546779 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Tue, 9 Apr 2024 17:22:28 +0200 Subject: [PATCH 35/63] enh: Information grid restapi (#4961) REFS: CTOR-438 --- .../deb.json | 3 + .../pkg.json | 9 + .../rpm.json | 3 + src/apps/infor/ion/grid/custom/restapi.pm | 217 ++++++++++++++++ src/apps/infor/ion/grid/mode/application.pm | 181 +++++++++++++ .../infor/ion/grid/mode/listapplications.pm | 117 +++++++++ src/apps/infor/ion/grid/mode/listnodes.pm | 117 +++++++++ src/apps/infor/ion/grid/mode/node.pm | 243 ++++++++++++++++++ src/apps/infor/ion/grid/plugin.pm | 49 ++++ src/centreon/plugins/backend/http/curl.pm | 1 + src/centreon/plugins/templates/counter.pm | 2 +- 11 files changed, 941 insertions(+), 1 deletion(-) create mode 100644 packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/deb.json create mode 100644 packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/pkg.json create mode 100644 packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/rpm.json create mode 100644 src/apps/infor/ion/grid/custom/restapi.pm create mode 100644 src/apps/infor/ion/grid/mode/application.pm create mode 100644 src/apps/infor/ion/grid/mode/listapplications.pm create mode 100644 src/apps/infor/ion/grid/mode/listnodes.pm create mode 100644 src/apps/infor/ion/grid/mode/node.pm create mode 100644 src/apps/infor/ion/grid/plugin.pm diff --git a/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/deb.json b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/deb.json new file mode 100644 index 0000000000..f55ce3f14b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/deb.json @@ -0,0 +1,3 @@ +{ + "dependencies": [] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/pkg.json new file mode 100644 index 0000000000..cd88982050 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Infor-Ion-Grid-Restapi", + "pkg_summary": "Centreon Plugin to monitor ION Grid using RestAPI", + "plugin_name": "centreon_infor_ion_grid_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/infor/ion/grid" + ] +} diff --git a/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/rpm.json new file mode 100644 index 0000000000..f55ce3f14b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Infor-Ion-Grid-Restapi/rpm.json @@ -0,0 +1,3 @@ +{ + "dependencies": [] +} \ No newline at end of file diff --git a/src/apps/infor/ion/grid/custom/restapi.pm b/src/apps/infor/ion/grid/custom/restapi.pm new file mode 100644 index 0000000000..b9bb3cd6c3 --- /dev/null +++ b/src/apps/infor/ion/grid/custom/restapi.pm @@ -0,0 +1,217 @@ +# +# 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 apps::infor::ion::grid::custom::restapi; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; +use centreon::plugins::http; +use JSON::XS; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + + if (!defined($options{noptions})) { + $options{options}->add_options(arguments => { + 'hostname:s' => { name => 'hostname' }, + 'port:s' => { name => 'port' }, + 'proto:s' => { name => 'proto' }, + 'api-username:s' => { name => 'api_username' }, + 'api-password:s' => { name => 'api_password' }, + 'timeout:s' => { name => 'timeout' }, + 'unknown-http-status:s' => { name => 'unknown_http_status' }, + 'warning-http-status:s' => { name => 'warning_http_status' }, + 'critical-http-status:s' => { name => 'critical_http_status' }, + 'cookies-file:s' => { name => 'cookies_file' } + }); + } + + $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); + + $self->{output} = $options{output}; + $self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl'); + + return $self; +} + +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} + +sub set_defaults {} + +sub check_options { + my ($self, %options) = @_; + + $self->{hostname} = (defined($self->{option_results}->{hostname})) + ? $self->{option_results}->{hostname} + : ''; + $self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443; + $self->{proto} = (defined($self->{option_results}->{proto})) + ? $self->{option_results}->{proto} + : 'https'; + $self->{timeout} = (defined($self->{option_results}->{timeout})) + ? $self->{option_results}->{timeout} + : 20; + $self->{api_username} = (defined($self->{option_results}->{api_username})) + ? $self->{option_results}->{api_username} + : ''; + $self->{api_password} = (defined($self->{option_results}->{api_password})) + ? $self->{option_results}->{api_password} + : ''; + $self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) + ? $self->{option_results}->{unknown_http_status} + : '%{http_code} < 200 or %{http_code} >= 300'; + $self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) + ? $self->{option_results}->{warning_http_status} + : ''; + $self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status})) + ? $self->{option_results}->{critical_http_status} + : ''; + $self->{cookies_file} = (defined($self->{option_results}->{cookies_file})) + ? $self->{option_results}->{cookies_file} + : ''; + + if ($self->{hostname} eq '') { + $self->{output}->add_option_msg(short_msg => "Need to specify --hostname option."); + $self->{output}->option_exit(); + } + if ($self->{api_username} ne '' && $self->{api_password} eq '') { + $self->{output}->add_option_msg(short_msg => "Need to specify --api-password option."); + $self->{output}->option_exit(); + } + + return 0; +} + +sub build_options_for_httplib { + my ($self, %options) = @_; + + $self->{option_results}->{hostname} = $self->{hostname}; + $self->{option_results}->{port} = $self->{port}; + $self->{option_results}->{proto} = $self->{proto}; + $self->{option_results}->{timeout} = $self->{timeout}; + if ($self->{api_username} ne '') { + $self->{option_results}->{credentials} = 1; + $self->{option_results}->{basic} = 1; + $self->{option_results}->{username} = $self->{api_username}; + $self->{option_results}->{password} = $self->{api_password}; + } + $self->{option_results}->{cookies_file} = $self->{cookies_file}; +} + +sub settings { + my ($self, %options) = @_; + + return if (defined($self->{settings_done})); + $self->build_options_for_httplib(); + $self->{http}->add_header(key => 'Accept', value => 'application/json'); + $self->{http}->set_options(%{$self->{option_results}}); + $self->{settings_done} = 1; +} + +sub request_api { + my ($self, %options) = @_; + + $self->settings(); + + my $content = $self->{http}->request( + %options, + unknown_status => $self->{unknown_http_status}, + warning_status => $self->{warning_http_status}, + critical_status => $self->{critical_http_status} + ); + + if (!defined($content) || $content eq '') { + $self->{output}->add_option_msg(short_msg => "API returns empty content [code: '" + . $self->{http}->get_code() + . "'] [message: '" + . $self->{http}->get_message() + . "']"); + $self->{output}->option_exit(); + } + + my $decoded; + eval { + $decoded = JSON::XS->new->utf8->decode($content); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => + "Cannot decode response (add --debug option to display returned content)"); + $self->{output}->option_exit(); + } + + return $decoded; +} + +1; + +__END__ + +=head1 NAME + +ION Grid Rest API + +=head1 REST API OPTIONS + +=over 8 + +=item B<--hostname> + +Define the name or the address of the host. + +=item B<--port> + +Define the port to connect to (default: '443'). + +=item B<--proto> + +Select the right protocol between 'http' and 'https' (default: 'https'). + +=item B<--api-username> + +Username to access the API. + +=item B<--api-password> + +Password to access the API. + +=item B<--timeout> + +Maximum time to wait (in seconds) for a response to HTTP requests before timeout (default: '20'). + +=back + +=cut \ No newline at end of file diff --git a/src/apps/infor/ion/grid/mode/application.pm b/src/apps/infor/ion/grid/mode/application.pm new file mode 100644 index 0000000000..68219705f0 --- /dev/null +++ b/src/apps/infor/ion/grid/mode/application.pm @@ -0,0 +1,181 @@ +# +# 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 apps::infor::ion::grid::mode::application; + +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) = @_; + + return sprintf( + "state is '%s' [online: %s] [started: %s]", + $self->{result_values}->{state}, + $self->{result_values}->{online}, + $self->{result_values}->{started} + ); +} + +sub prefix_application_output { + my ($self, %options) = @_; + + return sprintf( + "Application '%s' [description: %s] ", + $options{instance_value}->{name}, + $options{instance_value}->{description} + ); +} + +sub prefix_global_output { + my ($self, %options) = @_; + + return "Total applications "; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', + type => 0, + cb_prefix_output => 'prefix_global_output' }, + { name => 'applications', + type => 1, + cb_prefix_output => 'prefix_application_output', + message_multiple => 'All applications are ok' }, + ]; + + $self->{maps_counters}->{global} = [ + { label => 'total', + nlabel => 'ion.grid.applications.total.count', + set => { + key_values => [{ name => 'total' }], + output_template => "Total : %s", + perfdatas => [{ template => '%d', min => 0 }] } + } + ]; + + $self->{maps_counters}->{applications} = [ + { + label => 'status', + type => 2, + critical_default => '%{online} =~ /true/ && %{state} !~ /^(OK)/i', + set => { + key_values => [ + { name => 'state' }, { name => 'online' }, { name => 'name' }, + { name => 'description' }, { name => 'started' } + ], + 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, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $result = $options{custom}->request_api( + method => 'GET', + url_path => '/grid/rest/applications' + ); + + foreach my $entry (@{$result}) { + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' + && $entry->{name} !~ /$self->{option_results}->{filter_name}/); + $self->{applications}->{$entry->{name}} = { + name => $entry->{name}, + description => $entry->{description}, + online => ($entry->{online}) ? "true" : "false", + started => ($entry->{started}) ? "true" : "false", + state => $entry->{globalState}->{stateText} + } + } + + if (scalar(keys %{$self->{applications}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No applications found"); + $self->{output}->option_exit(); + } + + $self->{global}->{total} = scalar(keys %{$self->{applications}}); +} + +1; + +__END__ + +=head1 MODE + +Monitor the status of the application. + +=over 8 + +=item B<--filter-name> + +Define which applications should be monitored based on their names. This option will be treated as a regular expression. +Example: --filter-name='^application1$' + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING (default: ''). +The condition can be written using special variables like %{state}, %{online}, %{started}, +%{name} or %{description}. Regular expressions are supported. +Typical syntax: --warning-status='%{state} ne "OK"' + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (default: '%{online} =~ /true/ && %{state} !~ /^(OK)/i'). +The condition can be written using special variables like %{state}, %{online}, %{started}, +%{name} or %{description}. Regular expressions are supported. +Typical syntax: --critical-status='%{started} ne "true"' + +=item B<--warning-total> + +Define the warning threshold for the total number of applications. + +=item B<--critical-total> + +Define the critical threshold for the total number of applications. + +=back + +=cut \ No newline at end of file diff --git a/src/apps/infor/ion/grid/mode/listapplications.pm b/src/apps/infor/ion/grid/mode/listapplications.pm new file mode 100644 index 0000000000..282901ab4d --- /dev/null +++ b/src/apps/infor/ion/grid/mode/listapplications.pm @@ -0,0 +1,117 @@ +# +# Copyright 2023 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 apps::infor::ion::grid::mode::listapplications; + +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 => {}); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $result = $options{custom}->request_api( + method => 'GET', + url_path => '/grid/rest/applications' + ); + + my @applications; + foreach my $entry (@{$result}) { + push @applications, { + name => $entry->{name}, + description => $entry->{description}, + online => ($entry->{online}) ? "true" : "false", + started => ($entry->{started}) ? "true" : "false", + state => $entry->{globalState}->{stateText} + } + } + + return \@applications; +} + +sub run { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->output_add( + long_msg => sprintf( + '[name: %s][description: %s][online: %s][started: %s][state: %s]', + $_->{name}, + $_->{description}, + $_->{online}, + $_->{started}, + $_->{state} + ) + ); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List applications:' + ); + + $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', 'description', 'online', 'started', 'state']); +} + +sub disco_show { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->add_disco_entry(%$_); + } +} + +1; + + +=head1 MODE + +List applications. + +=over 8 + +=back + +=cut \ No newline at end of file diff --git a/src/apps/infor/ion/grid/mode/listnodes.pm b/src/apps/infor/ion/grid/mode/listnodes.pm new file mode 100644 index 0000000000..3aaccfda88 --- /dev/null +++ b/src/apps/infor/ion/grid/mode/listnodes.pm @@ -0,0 +1,117 @@ +# +# Copyright 2023 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 apps::infor::ion::grid::mode::listnodes; + +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 => {}); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $result = $options{custom}->request_api( + method => 'GET', + url_path => '/grid/rest/nodes' + ); + + my @nodes; + foreach my $entry (@{$result}) { + push @nodes, { + type => ucfirst(lc($entry->{entityType})), + name => $entry->{name}, + application_name => $entry->{applicationName}, + host_name => $entry->{hostName}, + state => ($entry->{online}) ? "online" : "offline" + } + } + + return \@nodes; +} + +sub run { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->output_add( + long_msg => sprintf( + '[type: %s][name: %s][application_name: %s][host_name: %s][state: %s]', + $_->{type}, + $_->{name}, + $_->{application_name}, + $_->{host_name}, + $_->{state} + ) + ); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List nodes:' + ); + + $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 => ['type', 'name', 'application_name', 'host_name', 'state']); +} + +sub disco_show { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->add_disco_entry(%$_); + } +} + +1; + + +=head1 MODE + +List nodes. + +=over 8 + +=back + +=cut \ No newline at end of file diff --git a/src/apps/infor/ion/grid/mode/node.pm b/src/apps/infor/ion/grid/mode/node.pm new file mode 100644 index 0000000000..09a891ba89 --- /dev/null +++ b/src/apps/infor/ion/grid/mode/node.pm @@ -0,0 +1,243 @@ +# +# 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 apps::infor::ion::grid::mode::node; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::misc; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_heap_output { + my ($self, %options) = @_; + + return sprintf( + 'Heap usage: %s%s/%s%s (%.2f%%)', + $self->{perfdata}->change_bytes(value => $self->{result_values}->{heap_used}), + $self->{perfdata}->change_bytes(value => $self->{result_values}->{heap_max}), + $self->{result_values}->{heap_percent} + ); +} + +sub custom_status_output { + my ($self, %options) = @_; + + return sprintf( + "state is '%s'", + $self->{result_values}->{state} + ); +} + +sub prefix_node_output { + my ($self, %options) = @_; + + return sprintf( + "Node '%s' with PID '%s' from application '%s' on host '%s' ", + $options{instance_value}->{name}, + $options{instance_value}->{pid}, + $options{instance_value}->{application_name}, + $options{instance_value}->{host_name} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'nodes', + type => 1, + cb_prefix_output => 'prefix_node_output', + message_multiple => 'All nodes are ok' }, + ]; + + $self->{maps_counters}->{nodes} = [ + { + label => 'status', + type => 2, + warning_default => '%{state} !~ /online/', + set => { + key_values => [ + { name => 'state' }, { name => 'name' }, { name => 'host_name' }, + { name => 'application_name' }, { name => 'type' }, { name => 'pid' } + ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { label => 'log-error', nlabel => 'node.log.error.count', set => { + key_values => [{ name => 'logger_error' }, { name => 'pid' }], + output_template => 'Log error: %d', + perfdatas => [ + { template => '%d', min => 0, + label_extra_instance => 1, instance_use => 'pid' } + ] + } + }, + { label => 'log-warning', nlabel => 'node.log.warning.count', set => { + key_values => [{ name => 'logger_warning' }, { name => 'pid' }], + output_template => 'Log warning: %d', + perfdatas => [ + { template => '%d', min => 0, + label_extra_instance => 1, instance_use => 'pid' } + ] + } + }, + { label => 'uptime', nlabel => 'node.uptime.seconds', set => { + key_values => [{ name => 'uptime' }, { name => 'uptime_human' }], + output_template => 'Uptime: %s', + output_use => 'uptime_human', + closure_custom_perfdata => sub { return 0; }, + } + }, + { label => 'cpu-usage', nlabel => 'node.cpu.usage.percentage', set => { + key_values => [{ name => 'cpu_percent' }, { name => 'pid' }], + output_template => 'CPU usage: %.2f%%', + perfdatas => [ + { template => '%.2f', min => 0, max => 100, unit => '%', + label_extra_instance => 1, instance_use => 'pid' } + ] + } + }, + { label => 'heap-usage', nlabel => 'node.heap.usage.percentage', set => { + key_values => [{ name => 'heap_percent' }, { name => 'heap_used' }, + { name => 'heap_max' }, { name => 'pid' }], + closure_custom_output => $self->can('custom_heap_output'), + perfdatas => [ + { template => '%.2f', min => 0, max => 100, unit => '%', + label_extra_instance => 1, instance_use => 'pid' } + ] + } + } + ]; +} + +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-type:s' => { name => 'filter_type' }, + 'filter-name:s' => { name => 'filter_name' }, + 'filter-application-name:s' => { name => 'filter_application_name' }, + 'filter-host-name:s' => { name => 'filter_host_name' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $result = $options{custom}->request_api( + method => 'GET', + url_path => '/grid/rest/nodes' + ); + + foreach my $entry (@{$result}) { + next if (defined($self->{option_results}->{filter_type}) + && $self->{option_results}->{filter_type} ne '' + && $entry->{entityType} !~ /$self->{option_results}->{filter_type}/i); + next if (defined($self->{option_results}->{filter_name}) + && $self->{option_results}->{filter_name} ne '' + && $entry->{name} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{filter_host_name}) + && $self->{option_results}->{filter_host_name} ne '' + && $entry->{hostName} !~ /$self->{option_results}->{filter_host_name}/); + next if (defined($self->{option_results}->{filter_application_name}) + && $self->{option_results}->{filter_application_name} ne '' + && $entry->{applicationName} !~ /$self->{option_results}->{filter_application_name}/); + $self->{nodes}->{$entry->{jvmId}} = { + type => ucfirst(lc($entry->{entityType})), + name => $entry->{name}, + application_name => $entry->{applicationName}, + host_name => $entry->{hostName}, + uptime => ($entry->{upTime} > 0) ? $entry->{upTime} / 1000 : 0, + uptime_human => ($entry->{upTime} > 0) ? centreon::plugins::misc::change_seconds(value => $entry->{upTime} / 1000) : 0, + logger_error => $entry->{loggerErrorCount}, + logger_warning => $entry->{loggerWarningCount}, + heap_used => $entry->{memoryUsed}, + heap_max => $entry->{memoryMax}, + heap_percent => $entry->{memoryUsed} / $entry->{memoryMax} * 100, + cpu_percent => $entry->{cpuPercent}, + state => ($entry->{online}) ? "online" : "offline" + }; + $self->{nodes}->{$entry->{jvmId}}->{pid} = $1 if ($entry->{jvmId} =~ /-(\d+)$/); # 10.1.2.3:50156-5152 + } + + if (scalar(keys %{$self->{nodes}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No nodes found"); + $self->{output}->option_exit(); + } +} + +1; + +__END__ + +=head1 MODE + +Monitor the status and the statistics of the nodes. + +=over 8 + +=item B<--filter-type> + +Define which nodes should be monitored based on the their type. This option will be treated as a regular expression. + +=item B<--filter-name> + +Define which nodes should be monitored based on the their name. This option will be treated as a regular expression. + +=item B<--filter-application-name> + +Define which applications should be monitored based on the their name. This option will be treated as a regular expression. + +=item B<--filter-host-name> + +Define which hosts should be monitored based on the their name. This option will be treated as a regular expression. + +=item B<--warning-status> + +Define the conditions to match to return a warning status (default: "%{state} !~ /online/"). +The condition can be written using the following macros: %{state}, %{name}, %{host_name}, +%{application_name}, %{type}. + +=item B<--critical-status> + +Define the conditions to match to return a critical status. +The condition can be written using the following macros: %{state}, %{name}, %{host_name}, +%{application_name}, %{type}. + +=item B<--warning-*> B<--critical-*> + +Thresholds for 'log-error', 'log-warning', 'uptime' (s), 'cpu-usage', 'heap-usage' (%). + +=back + +=cut \ No newline at end of file diff --git a/src/apps/infor/ion/grid/plugin.pm b/src/apps/infor/ion/grid/plugin.pm new file mode 100644 index 0000000000..aaf501a3ef --- /dev/null +++ b/src/apps/infor/ion/grid/plugin.pm @@ -0,0 +1,49 @@ +# +# Copyright 2020 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 apps::infor::ion::grid::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_custom); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'application' => 'apps::infor::ion::grid::mode::application', + 'list-applications' => 'apps::infor::ion::grid::mode::listapplications', + 'list-nodes' => 'apps::infor::ion::grid::mode::listnodes', + 'node' => 'apps::infor::ion::grid::mode::node' + }; + + $self->{custom_modes}->{restapi} = 'apps::infor::ion::grid::custom::restapi'; + return $self; +} + +1; + +=head1 PLUGIN DESCRIPTION + +Check Infor ION Grid using API. + +=cut \ No newline at end of file diff --git a/src/centreon/plugins/backend/http/curl.pm b/src/centreon/plugins/backend/http/curl.pm index 6c464cc8f2..5a314429f7 100644 --- a/src/centreon/plugins/backend/http/curl.pm +++ b/src/centreon/plugins/backend/http/curl.pm @@ -330,6 +330,7 @@ sub request { } if (defined($options{request}->{cookies_file})) { $self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_COOKIEFILE'), parameter => $options{request}->{cookies_file}); + $self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_COOKIEJAR'), parameter => $options{request}->{cookies_file}); } $self->curl_setopt(option => $self->{constant_cb}->(name => 'CURLOPT_FOLLOWLOCATION'), parameter => 1); diff --git a/src/centreon/plugins/templates/counter.pm b/src/centreon/plugins/templates/counter.pm index a0b079779e..8aa4c14af1 100644 --- a/src/centreon/plugins/templates/counter.pm +++ b/src/centreon/plugins/templates/counter.pm @@ -211,7 +211,7 @@ sub check_options { my $label = $_->{label}; $label =~ s/-//g; $list_counter .= $_->{label}." "; - $th_counter .= "--warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'"; + $th_counter .= " --warning-$_->{label}='\$_SERVICEWARNING" . uc($label) . "\$' --critical-$_->{label}='\$_SERVICECRITICAL" . uc($label) . "\$'"; } } From 6a4836ae7045e1dbc9993df5a50e5eddbf66887a Mon Sep 17 00:00:00 2001 From: itoussies <65223458+itoussies@users.noreply.github.com> Date: Fri, 12 Apr 2024 17:52:21 +0200 Subject: [PATCH 36/63] fix(azure-cloud-eventgrid): fix help threshold (#4992) --- src/cloud/azure/integration/eventgrid/mode/events.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/azure/integration/eventgrid/mode/events.pm b/src/cloud/azure/integration/eventgrid/mode/events.pm index 1c0ba09a16..600da7968f 100644 --- a/src/cloud/azure/integration/eventgrid/mode/events.pm +++ b/src/cloud/azure/integration/eventgrid/mode/events.pm @@ -193,7 +193,7 @@ Warning threshold where '*' can be: 'matched-events', 'deadlettered-events', 'unmatched-events', 'dropped-events'. -=item B<--critical-vault-capacity-percentage> +=item B<--critical-*> Critical threshold where '*' can be: 'matched-events', 'deadlettered-events', 'unmatched-events', From f6fc292c96e763c3c5cfef9287373c2178ff5253 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:52:15 +0200 Subject: [PATCH 37/63] [CTOR-38][Plugin] New pack Avigilon camera snmp (#4994) --- .../deb.json | 5 + .../pkg.json | 10 + .../rpm.json | 5 + .../camera/avigilon/snmp/mode/interfaces.pm | 180 ++++++++++++++++++ .../camera/avigilon/snmp/mode/memory.pm | 105 ++++++++++ .../camera/avigilon/snmp/mode/storage.pm | 128 +++++++++++++ .../camera/avigilon/snmp/mode/temperature.pm | 144 ++++++++++++++ .../devices/camera/avigilon/snmp/plugin.pm | 51 +++++ tests/resources/spellcheck/stopwords.t | 4 + .../snmp/hardware-camera-avigilon.snmpwalk | 14 ++ .../devices/camera/avigilon/snmp/memory.robot | 38 ++++ .../camera/avigilon/snmp/storage.robot | 39 ++++ .../camera/avigilon/snmp/temperature.robot | 42 ++++ 13 files changed, 765 insertions(+) create mode 100644 packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/deb.json create mode 100644 packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json create mode 100644 packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/rpm.json create mode 100644 src/hardware/devices/camera/avigilon/snmp/mode/interfaces.pm create mode 100644 src/hardware/devices/camera/avigilon/snmp/mode/memory.pm create mode 100644 src/hardware/devices/camera/avigilon/snmp/mode/storage.pm create mode 100644 src/hardware/devices/camera/avigilon/snmp/mode/temperature.pm create mode 100644 src/hardware/devices/camera/avigilon/snmp/plugin.pm create mode 100644 tests/robot/hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon.snmpwalk create mode 100644 tests/robot/hardware/devices/camera/avigilon/snmp/memory.robot create mode 100644 tests/robot/hardware/devices/camera/avigilon/snmp/storage.robot create mode 100644 tests/robot/hardware/devices/camera/avigilon/snmp/temperature.robot diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/deb.json new file mode 100644 index 0000000000..5d24d64c45 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json new file mode 100644 index 0000000000..5ff32779e1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp", + "pkg_summary": "Centreon Plugin to monitor Avigilon camera using SNMP", + "plugin_name": "centreon_camera_avigilon_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/camera/avigilon/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/rpm.json new file mode 100644 index 0000000000..14e9663069 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/src/hardware/devices/camera/avigilon/snmp/mode/interfaces.pm b/src/hardware/devices/camera/avigilon/snmp/mode/interfaces.pm new file mode 100644 index 0000000000..5c30d61aa5 --- /dev/null +++ b/src/hardware/devices/camera/avigilon/snmp/mode/interfaces.pm @@ -0,0 +1,180 @@ +# +# 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 hardware::devices::camera::avigilon::snmp::mode::interfaces; + +use base qw(snmp_standard::mode::interfaces); + +use strict; +use warnings; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + return $self; +} + +1; + +__END__ + +=head1 MODE + +Check interfaces. + +=over 8 + +=item B<--add-global> + +Check global port statistics (by default if no --add-* option is set). + +=item B<--add-status> + +Check interface status. + +=item B<--add-duplex-status> + +Check duplex status (with --warning-status and --critical-status). + +=item B<--add-traffic> + +Check interface traffic. + +=item B<--add-errors> + +Check interface errors. + +=item B<--add-cast> + +Check interface cast. + +=item B<--add-speed> + +Check interface speed. + +=item B<--add-volume> + +Check interface data volume between two checks (not supposed to be graphed, useful for BI reporting). + +=item B<--check-metrics> + +If the expression is true, metrics are checked (default: '%{opstatus} eq "up"'). + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING. +You can use the following variables: %{admstatus}, %{opstatus}, %{duplexstatus}, %{display} + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (default: '%{admstatus} eq "up" and %{opstatus} ne "up"'). +You can use the following variables: %{admstatus}, %{opstatus}, %{duplexstatus}, %{display} + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'total-port', 'total-admin-up', 'total-admin-down', 'total-oper-up', 'total-oper-down', +'in-traffic', 'out-traffic', 'in-error', 'in-discard', 'out-error', 'out-discard', +'in-ucast', 'in-bcast', 'in-mcast', 'out-ucast', 'out-bcast', 'out-mcast', +'speed' (b/s). + +=item B<--units-traffic> + +Units of thresholds for the traffic (default: 'percent_delta') ('percent_delta', 'bps', 'counter'). + +=item B<--units-errors> + +Units of thresholds for errors/discards (default: 'percent_delta') ('percent_delta', 'percent', 'delta', 'deltaps', 'counter'). + +=item B<--units-cast> + +Units of thresholds for communication types (default: 'percent_delta') ('percent_delta', 'percent', 'delta', 'deltaps', 'counter'). + +=item B<--nagvis-perfdata> + +Display traffic perfdata to be compatible with NagVis widget. + +=item B<--interface> + +Set the interface (number expected) example: 1,2,... (empty means 'check all interfaces'). + +=item B<--name> + +Allows you to define the interface (in option --interface) by name instead of OID index. The name matching mode supports regular expressions. + +=item B<--speed> + +Set interface speed for incoming/outgoing traffic (in Mb). + +=item B<--speed-in> + +Set interface speed for incoming traffic (in Mb). + +=item B<--speed-out> + +Set interface speed for outgoing traffic (in Mb). + +=item B<--map-speed-dsl> + +Get interface speed configuration for interface type 'ADSL' and 'VDSL2'. + +Syntax: --map-speed-dsl=interface-src-name,interface-dsl-name + +E.g: --map-speed-dsl=Et0.835,Et0-vdsl2 + +=item B<--force-counters64> + +Force to use 64 bits counters only. Can be used to improve performance. + +=item B<--force-counters32> + +Force to use 32 bits counters (even in SNMP version 2c and version 3). Should be used when 64 bits counters are buggy. + +=item B<--reload-cache-time> + +Time in minutes before reloading cache file (default: 180). + +=item B<--oid-filter> + +Define the OID to be used to filter interfaces (default: ifName) (values: ifDesc, ifAlias, ifName, IpAddr). + +=item B<--oid-display> + +Define the OID that will be used to name the interfaces (default: ifName) (values: ifDesc, ifAlias, ifName, IpAddr). + +=item B<--oid-extra-display> + +Add an OID to display. + +=item B<--display-transform-src> B<--display-transform-dst> + +Modify the interface name displayed by using a regular expression. + +Example: adding --display-transform-src='eth' --display-transform-dst='ens' will replace all occurrences of 'eth' with 'ens' + +=item B<--show-cache> + +Display cache interface data. + +=back + +=cut diff --git a/src/hardware/devices/camera/avigilon/snmp/mode/memory.pm b/src/hardware/devices/camera/avigilon/snmp/mode/memory.pm new file mode 100644 index 0000000000..5b1d7c64b8 --- /dev/null +++ b/src/hardware/devices/camera/avigilon/snmp/mode/memory.pm @@ -0,0 +1,105 @@ +# +# 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 hardware::devices::camera::avigilon::snmp::mode::memory; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; + +sub custom_memory_output { + my ($self, %options) = @_; + + my ($total_value, $total_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{total}); + + return sprintf( + 'total system memory available: %s', + $total_value . " " . $total_unit + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'memory', type => 0 } + ]; + + $self->{maps_counters}->{memory} = [ + { label => 'available', nlabel => 'memory.available', set => { + key_values => [{ name => 'total' }], + closure_custom_output => $self->can('custom_memory_output'), + perfdatas => [ + { value => 'total', template => '%d', min => 0, + unit => 'B', cast_int => 1, label_extra_instance => 1, instance_use => 'name' } + ], + } + } + ]; +} + +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 => { + }); + + return $self; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $oid_total = '.1.3.6.1.4.1.46202.1.1.1.6.0'; #memAvailable + my $snmp_result = $options{snmp}->get_leef( + oids => [$oid_total], + nothing_quit => 1 + ); + + $self->{memory} = { + total => $snmp_result->{$oid_total} + }; + +} + +1; + +__END__ + +=head1 MODE + +Check system memory available. + +=over 8 + +=item B<--warning-available*> + +Warning threshold for total memory available (B). + +=item B<--critical-available*> + +Critical threshold for total memory available (B). + +=back + +=cut diff --git a/src/hardware/devices/camera/avigilon/snmp/mode/storage.pm b/src/hardware/devices/camera/avigilon/snmp/mode/storage.pm new file mode 100644 index 0000000000..c78037ccb8 --- /dev/null +++ b/src/hardware/devices/camera/avigilon/snmp/mode/storage.pm @@ -0,0 +1,128 @@ +# +# 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 hardware::devices::camera::avigilon::snmp::mode::storage; + +use base qw(centreon::plugins::templates::counter); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc qw(is_empty); + +use strict; +use warnings; + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'storage', type => 0 } + ]; + + $self->{maps_counters}->{storage} = [ + { label => 'status', + type => 2, + unknown_default => '%{storage_state} =~ /Unknown/i', + warning_default => '%{storage_state} =~ /insufficientMediaCapacity/i || %{storage_state} =~ /insufficientMediaSpeed/i', + critical_default => '%{storage_state} =~ /mediaNotPresent/i || %{storage_state} =~ /error/i', + set => { + key_values => [{ name => 'storage_state' }], + output_template => 'state of the SD card: %s', + 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, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + }); + + return $self; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $storage_state_mapping = { + 1 => 'mediaNotPresent', + 2 => 'mediaDetected', + 3 => 'existingDataOnMediaDetected', + 4 => 'mediaFormatting', + 5 => 'scanningForRecordings', + 6 => 'readOnly', + 7 => 'readyToRecord', + 8 => 'recording', + 9 => 'errorFormatting', + 10 => 'errorWriting', + 11 => 'insufficientMediaCapacity', + 12 => 'insufficientMediaSpeed', + 13 => 'error' + }; + + my $oid_storage_state = '.1.3.6.1.4.1.46202.1.1.1.5.0'; #storageState + my $snmp_result = $options{snmp}->get_leef( + oids => [$oid_storage_state], + nothing_quit => 1 + ); + + if(centreon::plugins::misc::is_empty($storage_state_mapping->{$snmp_result->{$oid_storage_state}})==0){ + $self->{storage} = { + storage_state => $storage_state_mapping->{$snmp_result->{$oid_storage_state}} + }; + # If state is not in the mapping, return unkown + }else{ + $self->{storage} = { + storage_state => "Unknown" + }; + } +} + +1; + +__END__ + +=head1 MODE + +Check storage state of the SD card. + +=over 8 + +=item B<--unknown-status> + +Define the conditions to match to return a unknown status (default: "%{storage_state} =~ /Unknown/i"). +The condition can be written using the following macros: %{storage_state}. + +=item B<--warning-status> + +Define the conditions to match to return a warning status (default: "%{storage_state} =~ /insufficientMediaCapacity/i || %{storage_state} =~ /insufficientMediaSpeed/i"). +The condition can be written using the following macros: %{storage_state}. + +=item B<--critical-status> + +Define the conditions to match to return a critical status (default: "%{storage_state} =~ /mediaNotPresent/i || %{storage_state} =~ /error/i"). +The condition can be written using the following macros: %{storage_state}. + +=back + +=cut diff --git a/src/hardware/devices/camera/avigilon/snmp/mode/temperature.pm b/src/hardware/devices/camera/avigilon/snmp/mode/temperature.pm new file mode 100644 index 0000000000..13c5ef7904 --- /dev/null +++ b/src/hardware/devices/camera/avigilon/snmp/mode/temperature.pm @@ -0,0 +1,144 @@ +# +# 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 hardware::devices::camera::avigilon::snmp::mode::temperature; + +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) = @_; + + return sprintf( + "sensor %s [type:%s] status: %s", + $self->{result_values}->{id}, + $self->{result_values}->{type}, + $self->{result_values}->{status} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'sensors', type => 0 } + ]; + + $self->{maps_counters}->{sensors} = [ + { label => 'temperature', + nlabel => 'sensor.temperature.celsius', + set => { + key_values => [{ name => 'temperature' }], + output_template => 'temperature: %.2f C', + perfdatas => [ + { template => '%s', min => 0, unit => 'C', label_extra_instance => 1, instance_use => 'id' } + ] + } + }, + { label => 'status', + type => 2, + critical_default => '%{status} ne "ok"', + set => { + key_values => [{ name => 'status' }, { name => 'id' }, { name => 'type' }], + 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, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-sensor-id:s' => { name => 'filter_id' } + }); + + return $self; +} + +my $state_mapping = { + 1 => 'ok', + 2 => 'failure', + 3 => 'outOfBoundary' +}; + +my $type_mapping = { + 1 => 'mainSensor', +}; + +sub manage_selection { + my ($self, %options) = @_; + + my $oid_type = '.1.3.6.1.4.1.46202.1.1.1.1.1.1'; # tempSensorType: The type of a temperature sensor, i.e. where it is mounted + my $oid_id = '.1.3.6.1.4.1.46202.1.1.1.1.1.2'; # tempSensorId: The unique identifier for a temperature sensor. + my $oid_status = '.1.3.6.1.4.1.46202.1.1.1.1.1.3'; # tempSensorStatus: The status of a temperature sensor. + my $oid_temperature = '.1.3.6.1.4.1.46202.1.1.1.1.1.4'; # tempSensorValue: The temperature as measured in degrees Celsius. + + my $snmp_result = $options{snmp}->get_leef( + oids => [$oid_type, $oid_id, $oid_status, $oid_temperature], + nothing_quit => 1 + ); + + $self->{sensors} = { + id => $snmp_result->{$oid_id}, + type => $type_mapping->{$snmp_result->{$oid_type}}, + status => $state_mapping->{$snmp_result->{$oid_status}}, + temperature => $snmp_result->{$oid_temperature} + }; +} + +1; + +__END__ + +=head1 MODE + +Check temperature sensor state and value. + +=over 8 + +=item B<--warning-status> + +Define the conditions to match to return a warning status. +The condition can be written using the following macros: %{status}. + +=item B<--critical-status> + +Define the conditions to match to return a critical status (default: '%{status} ne "ok"'). +The condition can be written using the following macros: %{status}. + +=item B<--warning-temperature*> + +Warning threshold for temperature (Celsius). + +=item B<--critical-temperature*> + +Critical threshold for temperature (Celsius). + +=back + +=cut diff --git a/src/hardware/devices/camera/avigilon/snmp/plugin.pm b/src/hardware/devices/camera/avigilon/snmp/plugin.pm new file mode 100644 index 0000000000..cbeb03bf49 --- /dev/null +++ b/src/hardware/devices/camera/avigilon/snmp/plugin.pm @@ -0,0 +1,51 @@ +# +# 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 hardware::devices::camera::avigilon::snmp::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_snmp); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + %{$self->{modes}} = ( + 'interfaces' => 'hardware::devices::camera::avigilon::snmp::mode::interfaces', + 'memory' => 'hardware::devices::camera::avigilon::snmp::mode::memory', + 'storage' => 'hardware::devices::camera::avigilon::snmp::mode::storage', + 'temperature' => 'hardware::devices::camera::avigilon::snmp::mode::temperature', + 'uptime' => 'snmp_standard::mode::uptime', + ); + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check Avigilon camera in SNMP. + +=cut diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index c8971c6853..58342508ab 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -1,3 +1,4 @@ +--add-sysdesc --display-transform-dst --display-transform-src --exclude-fs @@ -5,6 +6,7 @@ --filter-vdom --force-counters32 --force-counters64 +--force-oid --map-speed-dsl --nagvis-perfdata --oid-display @@ -12,6 +14,7 @@ --oid-filter 2c ADSL +Avigilon Centreon Datacore deltaps @@ -47,6 +50,7 @@ SureBackup topic-messages-inflighted total-oper-down total-oper-up +uptime VDSL2 Veeam WSMAN diff --git a/tests/robot/hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon.snmpwalk b/tests/robot/hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon.snmpwalk new file mode 100644 index 0000000000..7991b71ffa --- /dev/null +++ b/tests/robot/hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon.snmpwalk @@ -0,0 +1,14 @@ +.1.3.6.1.4.1.46202.1.1.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.46202.1.1.1.1.1.2 = Gauge32: 1 +.1.3.6.1.4.1.46202.1.1.1.1.1.3 = INTEGER: 1 +.1.3.6.1.4.1.46202.1.1.1.1.1.4 = INTEGER: 23 +.1.3.6.1.4.1.46202.1.1.1.2.0 = Gauge32: 163 +.1.3.6.1.4.1.46202.1.1.1.3.0 = Timeticks: (80599046) 9 days, 7:53:10.46 +.1.3.6.1.4.1.46202.1.1.1.4.1.0 = Counter64: 3145223708 +.1.3.6.1.4.1.46202.1.1.1.4.2.0 = Counter64: 1976056200 +.1.3.6.1.4.1.46202.1.1.1.4.3.0 = Gauge32: 11000 +.1.3.6.1.4.1.46202.1.1.1.4.4.0 = Gauge32: 2786000 +.1.3.6.1.4.1.46202.1.1.1.4.5.0 = Gauge32: 2 +.1.3.6.1.4.1.46202.1.1.1.4.6.0 = Gauge32: 100000000 +.1.3.6.1.4.1.46202.1.1.1.5.0 = INTEGER: 1 +.1.3.6.1.4.1.46202.1.1.1.6.0 = Gauge32: 476004 diff --git a/tests/robot/hardware/devices/camera/avigilon/snmp/memory.robot b/tests/robot/hardware/devices/camera/avigilon/snmp/memory.robot new file mode 100644 index 0000000000..5456ec47c8 --- /dev/null +++ b/tests/robot/hardware/devices/camera/avigilon/snmp/memory.robot @@ -0,0 +1,38 @@ +*** Settings *** +Documentation Hardware Camera Avigilon memory + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} +... --plugin=hardware::devices::camera::avigilon::snmp::plugin +... --mode=memory +... --hostname=127.0.0.1 +... --snmp-port=2024 + + +*** Test Cases *** +Avigilon camera Memory ${tc}/3 + [Documentation] Hardware Camera Avigilon Memory + [Tags] hardware avigilon memory + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon + ... --warning-available='${warning_available}' + ... --critical-available='${critical_available}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc warning_available critical_available expected_result -- + ... 1 ${EMPTY} ${EMPTY} OK: total system memory available: 464.85 KB | 'memory.available'=476004B;;;0; + ... 2 5000 ${EMPTY} WARNING: total system memory available: 464.85 KB | 'memory.available'=476004B;0:5000;;0; + ... 3 ${EMPTY} 5000 CRITICAL: total system memory available: 464.85 KB | 'memory.available'=476004B;;0:5000;0; + diff --git a/tests/robot/hardware/devices/camera/avigilon/snmp/storage.robot b/tests/robot/hardware/devices/camera/avigilon/snmp/storage.robot new file mode 100644 index 0000000000..cf19e15975 --- /dev/null +++ b/tests/robot/hardware/devices/camera/avigilon/snmp/storage.robot @@ -0,0 +1,39 @@ +*** Settings *** +Documentation Hardware Camera Avigilon storage + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} +... --plugin=hardware::devices::camera::avigilon::snmp::plugin +... --mode=storage +... --hostname=127.0.0.1 +... --snmp-port=2024 + + +*** Test Cases *** +Avigilon camera Storage ${tc}/3 + [Documentation] Hardware Camera Avigilon Storage + [Tags] hardware avigilon storage + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon + ... --warning-status='${warning_status}' + ... --critical-status='${critical_status}' + ... --unknown-status='${unknown_status}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc warning_status critical_status unknown_status expected_result -- + ... 1 ${EMPTY} ${EMPTY} ${EMPTY} OK: state of the SD card: mediaNotPresent + ... 2 \\%\{storage_state\} =~ /mediaNotPresent/ ${EMPTY} ${EMPTY} WARNING: state of the SD card: mediaNotPresent + ... 3 ${EMPTY} \\%\{storage_state\} =~ /mediaNotPresent/ ${EMPTY} CRITICAL: state of the SD card: mediaNotPresent + ... 4 ${EMPTY} ${EMPTY} \\%\{storage_state\} =~ /mediaNotPresent/ UNKNOWN: state of the SD card: mediaNotPresent diff --git a/tests/robot/hardware/devices/camera/avigilon/snmp/temperature.robot b/tests/robot/hardware/devices/camera/avigilon/snmp/temperature.robot new file mode 100644 index 0000000000..d4ca5c318f --- /dev/null +++ b/tests/robot/hardware/devices/camera/avigilon/snmp/temperature.robot @@ -0,0 +1,42 @@ +*** Settings *** +Documentation Hardware Camera Avigilon temperature + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} +... --plugin=hardware::devices::camera::avigilon::snmp::plugin +... --mode=temperature +... --hostname=127.0.0.1 +... --snmp-port=2024 + + +*** Test Cases *** +Avigilon camera Temperature ${tc}/5 + [Documentation] Hardware Camera Avigilon Temperature + [Tags] hardware avigilon temperature + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/devices/camera/avigilon/snmp/hardware-camera-avigilon + ... --warning-temperature='${warning_temperature}' + ... --critical-temperature='${critical_temperature}' + ... --warning-status='${warning_status}' + ... --critical-status='${critical_status}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n\n + + Examples: tc warning_temperature critical_temperature warning_status critical_status expected_result -- + ... 1 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} OK: temperature: 23.00 C, sensor 1 [type:mainSensor] status: ok | 'sensor.temperature.celsius'=23C;;;0; + ... 2 20 ${EMPTY} ${EMPTY} ${EMPTY} WARNING: temperature: 23.00 C | 'sensor.temperature.celsius'=23C;0:20;;0; + ... 3 ${EMPTY} 20 ${EMPTY} ${EMPTY} CRITICAL: temperature: 23.00 C | 'sensor.temperature.celsius'=23C;;0:20;0; + ... 4 ${EMPTY} ${EMPTY} \\%\{status\} =~ /ok/ ${EMPTY} WARNING: sensor 1 [type:mainSensor] status: ok | 'sensor.temperature.celsius'=23C;;;0; + ... 5 ${EMPTY} ${EMPTY} ${EMPTY} \\%\{status\} =~ /ok/ CRITICAL: sensor 1 [type:mainSensor] status: ok | 'sensor.temperature.celsius'=23C;;;0; + From 1ae209e947e70875118f86cd697a336b4b381666 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Fri, 26 Apr 2024 10:39:37 +0200 Subject: [PATCH 38/63] [CTOR-38][Plugin] Fix Packaging- New pack Avigilon camera snmp (#4997) --- .../pkg.json | 3 +++ src/hardware/devices/camera/avigilon/snmp/plugin.pm | 11 ++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json index 5ff32779e1..177b2c3f1c 100644 --- a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json @@ -5,6 +5,9 @@ "files": [ "centreon/plugins/script_snmp.pm", "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/uptime.pm", "hardware/devices/camera/avigilon/snmp/" ] } diff --git a/src/hardware/devices/camera/avigilon/snmp/plugin.pm b/src/hardware/devices/camera/avigilon/snmp/plugin.pm index cbeb03bf49..5d54719f1c 100644 --- a/src/hardware/devices/camera/avigilon/snmp/plugin.pm +++ b/src/hardware/devices/camera/avigilon/snmp/plugin.pm @@ -30,11 +30,12 @@ sub new { bless $self, $class; %{$self->{modes}} = ( - 'interfaces' => 'hardware::devices::camera::avigilon::snmp::mode::interfaces', - 'memory' => 'hardware::devices::camera::avigilon::snmp::mode::memory', - 'storage' => 'hardware::devices::camera::avigilon::snmp::mode::storage', - 'temperature' => 'hardware::devices::camera::avigilon::snmp::mode::temperature', - 'uptime' => 'snmp_standard::mode::uptime', + 'interfaces' => 'hardware::devices::camera::avigilon::snmp::mode::interfaces', + 'list-interfaces' => 'snmp_standard::mode::listinterfaces', + 'memory' => 'hardware::devices::camera::avigilon::snmp::mode::memory', + 'storage' => 'hardware::devices::camera::avigilon::snmp::mode::storage', + 'temperature' => 'hardware::devices::camera::avigilon::snmp::mode::temperature', + 'uptime' => 'snmp_standard::mode::uptime', ); return $self; From 623344f694661fd0405b1ad415af97652408f968 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Fri, 26 Apr 2024 15:51:16 +0200 Subject: [PATCH 39/63] [CTOR-38][Plugin] Fix Packaging again - New pack Avigilon camera snmp (#4998) --- .../pkg.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json index 177b2c3f1c..f60cc73775 100644 --- a/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Avigilon-Snmp/pkg.json @@ -7,6 +7,7 @@ "centreon/plugins/snmp.pm", "snmp_standard/mode/interfaces.pm", "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", "snmp_standard/mode/uptime.pm", "hardware/devices/camera/avigilon/snmp/" ] From 51984250f8498cabede5bed843fc7b286d5e91ae Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:02:19 +0200 Subject: [PATCH 40/63] [CTOR-26][Plugin] New Pack : oVirt (#4999) --- .../centreon-plugin-Virtualization-Ovirt-Api/deb.json | 4 ++++ .../centreon-plugin-Virtualization-Ovirt-Api/pkg.json | 9 +++++++++ .../centreon-plugin-Virtualization-Ovirt-Api/rpm.json | 4 ++++ 3 files changed, 17 insertions(+) create mode 100644 packaging/centreon-plugin-Virtualization-Ovirt-Api/deb.json create mode 100644 packaging/centreon-plugin-Virtualization-Ovirt-Api/pkg.json create mode 100644 packaging/centreon-plugin-Virtualization-Ovirt-Api/rpm.json diff --git a/packaging/centreon-plugin-Virtualization-Ovirt-Api/deb.json b/packaging/centreon-plugin-Virtualization-Ovirt-Api/deb.json new file mode 100644 index 0000000000..9757fe1126 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Ovirt-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Ovirt-Api/pkg.json b/packaging/centreon-plugin-Virtualization-Ovirt-Api/pkg.json new file mode 100644 index 0000000000..b71c80afd3 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Ovirt-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Ovirt-Api", + "pkg_summary": "Centreon Plugin to monitor oVirt using API", + "plugin_name": "centreon_ovirt_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/virtualization/ovirt/" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Ovirt-Api/rpm.json b/packaging/centreon-plugin-Virtualization-Ovirt-Api/rpm.json new file mode 100644 index 0000000000..9757fe1126 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Ovirt-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} From cf22129f2566e74479b90b71fb3bd623cd6ae832 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 30 Apr 2024 10:20:46 +0200 Subject: [PATCH 41/63] enh(promote): handle debian package promotion for multiple distributions (#5004) Co-authored-by: May <110405507+paul-oureib@users.noreply.github.com> --- .github/actions/promote-to-stable/action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 9cb76256a7..59bfa01d54 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -62,10 +62,13 @@ runs: - name: Promote DEB package to stable if: ${{ contains(fromJSON('["bullseye", "bookworm"]'), inputs.distrib) }} run: | + set -eux + echo "[DEBUG] - Distrib: ${{ inputs.distrib }}" + echo "[DEBUG] - Distrib: ${{ inputs.module }}" echo "[DEBUG] - Get path of testing DEB packages to promote to stable." - SRC_PATHS=$(jf rt s --include-dirs apt-plugins-testing/pool/${{ inputs.module }}/*.deb | jq -r '.[].path') + SRC_PATHS=$(jf rt search --include-dirs apt-plugins-testing/pool/${{ inputs.module }}/*${{ inputs.distrib }}*.deb | jq -r '.[].path') if [[ ${SRC_PATHS[@]} ]]; then for SRC_PATH in ${SRC_PATHS[@]}; do @@ -88,6 +91,11 @@ runs: for ARTIFACT_DL in $(dir|grep -E "*.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) + DISTRIB=$(echo $ARTIFACT_DL | cut -d '_' -f2 | cut -d '-' -f2) + if [[ "${{ inputs.distrib }}" != "$DISTRIB" ]]; then + echo "::error::Distrib [$DISTRIB] from package does not match distrib [${{ inputs.distrib }}] from input, aborting promotion." + exit 1 + fi echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" done From d6211ad5a8b3ba0323b8ebb7ed705ae521a7afb6 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Tue, 30 Apr 2024 10:52:38 +0200 Subject: [PATCH 42/63] [CTOR-514] [Plugin] New Pack RRDCached (#5003) --- .../centreon-plugin-Applications-RRDCached/deb.json | 5 +++++ .../centreon-plugin-Applications-RRDCached/pkg.json | 9 +++++++++ .../centreon-plugin-Applications-RRDCached/rpm.json | 5 +++++ 3 files changed, 19 insertions(+) create mode 100644 packaging/centreon-plugin-Applications-RRDCached/deb.json create mode 100644 packaging/centreon-plugin-Applications-RRDCached/pkg.json create mode 100644 packaging/centreon-plugin-Applications-RRDCached/rpm.json diff --git a/packaging/centreon-plugin-Applications-RRDCached/deb.json b/packaging/centreon-plugin-Applications-RRDCached/deb.json new file mode 100644 index 0000000000..7eddca63e9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-RRDCached/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsocket-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-RRDCached/pkg.json b/packaging/centreon-plugin-Applications-RRDCached/pkg.json new file mode 100644 index 0000000000..e475161074 --- /dev/null +++ b/packaging/centreon-plugin-Applications-RRDCached/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-RRDCached", + "pkg_summary": "Centreon Plugin to check RRDCached related informations", + "plugin_name": "centreon_rrdcached.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/rrdcached/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-RRDCached/rpm.json b/packaging/centreon-plugin-Applications-RRDCached/rpm.json new file mode 100644 index 0000000000..c843a634d8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-RRDCached/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(IO::Socket)" + ] +} \ No newline at end of file From bf265f8068fa973fc28dc466f5b05fda9f3017e5 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 30 Apr 2024 11:55:59 +0200 Subject: [PATCH 43/63] fix(promote): fix pattern used for promote upload (#5006) --- .github/actions/promote-to-stable/action.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 59bfa01d54..105085cba8 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -89,13 +89,8 @@ runs: jf rt download $ARTIFACT --flat done - for ARTIFACT_DL in $(dir|grep -E "*.deb"); do + for ARTIFACT_DL in $(dir -1|grep -E "*${{ inputs.distrib }}*.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) - DISTRIB=$(echo $ARTIFACT_DL | cut -d '_' -f2 | cut -d '-' -f2) - if [[ "${{ inputs.distrib }}" != "$DISTRIB" ]]; then - echo "::error::Distrib [$DISTRIB] from package does not match distrib [${{ inputs.distrib }}] from input, aborting promotion." - exit 1 - fi echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" done From 1f58c223d23548434dee3e2a76beb9e55f1901ff Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Thu, 2 May 2024 11:11:03 +0200 Subject: [PATCH 44/63] ci(plugins-tests) Use docker to install and test each plugins Co-authored-by: May <110405507+paul-oureib@users.noreply.github.com> REF:CTOR-474 --- .github/actions/test-plugins/action.yml | 28 ++++ .../Dockerfile.packaging-plugins-alma8 | 0 .../Dockerfile.packaging-plugins-alma9 | 0 .../Dockerfile.packaging-plugins-bookworm | 0 .../Dockerfile.packaging-plugins-bullseye | 0 .../Dockerfile.packaging-plugins-centos7 | 0 .../Dockerfile.packaging-plugins-jammy | 0 .../testing/Dockerfile.testing-plugins-alma8 | 68 +++++++++ .../testing/Dockerfile.testing-plugins-alma9 | 67 +++++++++ .../Dockerfile.testing-plugins-bookworm | 48 +++++++ .../Dockerfile.testing-plugins-bullseye | 47 +++++++ .../testing/Dockerfile.testing-plugins-jammy | 45 ++++++ .github/scripts/process-plugins.py | 2 +- .github/scripts/test-all-plugins.py | 133 ++++++++++++++++++ .../docker-builder-packaging-plugins.yml | 6 +- .../docker-builder-testing-plugins.yml | 73 ++++++++++ .github/workflows/plugins.yml | 51 ++++++- .github/workflows/tests-functional.yml | 76 ---------- .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 .../deb.json | 0 .../pkg.json | 0 .../rpm.json | 0 69 files changed, 562 insertions(+), 82 deletions(-) create mode 100644 .github/actions/test-plugins/action.yml rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-alma8 (100%) rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-alma9 (100%) rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-bookworm (100%) rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-bullseye (100%) rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-centos7 (100%) rename .github/docker/{ => packaging}/Dockerfile.packaging-plugins-jammy (100%) create mode 100644 .github/docker/testing/Dockerfile.testing-plugins-alma8 create mode 100644 .github/docker/testing/Dockerfile.testing-plugins-alma9 create mode 100644 .github/docker/testing/Dockerfile.testing-plugins-bookworm create mode 100644 .github/docker/testing/Dockerfile.testing-plugins-bullseye create mode 100644 .github/docker/testing/Dockerfile.testing-plugins-jammy create mode 100644 .github/scripts/test-all-plugins.py create mode 100644 .github/workflows/docker-builder-testing-plugins.yml delete mode 100644 .github/workflows/tests-functional.yml rename packaging/{centreon-plugin-Applications-Antivirus-Clamav-Ssh => centreon-plugin-Applications-Clamav-Ssh}/deb.json (100%) rename packaging/{centreon-plugin-Applications-Antivirus-Clamav-Ssh => centreon-plugin-Applications-Clamav-Ssh}/pkg.json (100%) rename packaging/{centreon-plugin-Applications-Antivirus-Clamav-Ssh => centreon-plugin-Applications-Clamav-Ssh}/rpm.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Cassandra-Jmx => centreon-plugin-Applications-Database-Cassandra-Jmx}/deb.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Cassandra-Jmx => centreon-plugin-Applications-Database-Cassandra-Jmx}/pkg.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Cassandra-Jmx => centreon-plugin-Applications-Database-Cassandra-Jmx}/rpm.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Couchdb-Restapi => centreon-plugin-Applications-Database-Couchdb-Restapi}/deb.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Couchdb-Restapi => centreon-plugin-Applications-Database-Couchdb-Restapi}/pkg.json (100%) rename packaging/{centreon-plugin-Applications-Databases-Couchdb-Restapi => centreon-plugin-Applications-Database-Couchdb-Restapi}/rpm.json (100%) rename packaging/{centreon-plugin-Applications-Netbackup-SSH => centreon-plugin-Applications-Netbackup-Ssh}/deb.json (100%) rename packaging/{centreon-plugin-Applications-Netbackup-SSH => centreon-plugin-Applications-Netbackup-Ssh}/pkg.json (100%) rename packaging/{centreon-plugin-Applications-Netbackup-SSH => centreon-plugin-Applications-Netbackup-Ssh}/rpm.json (100%) rename packaging/{centreon-plugin-Applications-Pacemaker-SSH => centreon-plugin-Applications-Pacemaker-Ssh}/deb.json (100%) rename packaging/{centreon-plugin-Applications-Pacemaker-SSH => centreon-plugin-Applications-Pacemaker-Ssh}/pkg.json (100%) rename packaging/{centreon-plugin-Applications-Pacemaker-SSH => centreon-plugin-Applications-Pacemaker-Ssh}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-DataFactory-Factory-Api => centreon-plugin-Cloud-Azure-DataFactory-Factories-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-DataFactory-Factory-Api => centreon-plugin-Cloud-Azure-DataFactory-Factories-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-DataFactory-Factory-Api => centreon-plugin-Cloud-Azure-DataFactory-Factories-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mariadb-Api => centreon-plugin-Cloud-Azure-Database-MariaDB-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mariadb-Api => centreon-plugin-Cloud-Azure-Database-MariaDB-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mariadb-Api => centreon-plugin-Cloud-Azure-Database-MariaDB-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mysql-Api => centreon-plugin-Cloud-Azure-Database-MySQL-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mysql-Api => centreon-plugin-Cloud-Azure-Database-MySQL-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-Mysql-Api => centreon-plugin-Cloud-Azure-Database-MySQL-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-SqlManagedInstance => centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-SqlManagedInstance => centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Database-SqlManagedInstance => centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Devtools-Appconfiguration => centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Devtools-Appconfiguration => centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Devtools-Appconfiguration => centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api => centreon-plugin-Cloud-Azure-Integration-EventGrid-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api => centreon-plugin-Cloud-Azure-Integration-EventGrid-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api => centreon-plugin-Cloud-Azure-Integration-EventGrid-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Network-TrafficManager => centreon-plugin-Cloud-Azure-Network-TrafficManager-Api}/deb.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Network-TrafficManager => centreon-plugin-Cloud-Azure-Network-TrafficManager-Api}/pkg.json (100%) rename packaging/{centreon-plugin-Cloud-Azure-Network-TrafficManager => centreon-plugin-Cloud-Azure-Network-TrafficManager-Api}/rpm.json (100%) rename packaging/{centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp => centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp}/deb.json (100%) rename packaging/{centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp => centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp}/pkg.json (100%) rename packaging/{centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp => centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp}/rpm.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Os10-Snmp => centreon-plugin-Network-Dell-Os10-Snmp}/deb.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Os10-Snmp => centreon-plugin-Network-Dell-Os10-Snmp}/pkg.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Os10-Snmp => centreon-plugin-Network-Dell-Os10-Snmp}/rpm.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Xseries-Snmp => centreon-plugin-Network-Dell-Xseries-Snmp}/deb.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Xseries-Snmp => centreon-plugin-Network-Dell-Xseries-Snmp}/pkg.json (100%) rename packaging/{centreon-plugin-Network-Switchs-Dell-Xseries-Snmp => centreon-plugin-Network-Dell-Xseries-Snmp}/rpm.json (100%) rename packaging/{centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp => centreon-plugin-Network-Juniper-Mag-Snmp}/deb.json (100%) rename packaging/{centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp => centreon-plugin-Network-Juniper-Mag-Snmp}/pkg.json (100%) rename packaging/{centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp => centreon-plugin-Network-Juniper-Mag-Snmp}/rpm.json (100%) rename packaging/{centreon-plugin-Network-Sonus-Sbc-Snmp => centreon-plugin-Network-Sonus-SBC-Snmp}/deb.json (100%) rename packaging/{centreon-plugin-Network-Sonus-Sbc-Snmp => centreon-plugin-Network-Sonus-SBC-Snmp}/pkg.json (100%) rename packaging/{centreon-plugin-Network-Sonus-Sbc-Snmp => centreon-plugin-Network-Sonus-SBC-Snmp}/rpm.json (100%) diff --git a/.github/actions/test-plugins/action.yml b/.github/actions/test-plugins/action.yml new file mode 100644 index 0000000000..84aab55c97 --- /dev/null +++ b/.github/actions/test-plugins/action.yml @@ -0,0 +1,28 @@ +name: "test-plugins" +description: "Test plugin that are passed as parameters" +inputs: + cache-key: + description: "The packaged plugin's cache key" + required: true + plugin-list: + description: "List of plugins to install from the cache" + required: true + package-extension: + description: "Either 'rpm' or 'deb'. Needed to determine the package manager command (dnf or apt-get)." + required: true + +runs: + using: "composite" + steps: + + - name: get the cached plugin + uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + with: + path: ./*.${{ inputs.package-extension }} + key: ${{ inputs.cache-key }} + fail-on-cache-miss: true + + - name: Install, test and remove plugin + shell: bash + run: | + python3 .github/scripts/test-all-plugins.py ${{ inputs.package-extension }} ${{ inputs.plugin-list }} diff --git a/.github/docker/Dockerfile.packaging-plugins-alma8 b/.github/docker/packaging/Dockerfile.packaging-plugins-alma8 similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-alma8 rename to .github/docker/packaging/Dockerfile.packaging-plugins-alma8 diff --git a/.github/docker/Dockerfile.packaging-plugins-alma9 b/.github/docker/packaging/Dockerfile.packaging-plugins-alma9 similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-alma9 rename to .github/docker/packaging/Dockerfile.packaging-plugins-alma9 diff --git a/.github/docker/Dockerfile.packaging-plugins-bookworm b/.github/docker/packaging/Dockerfile.packaging-plugins-bookworm similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-bookworm rename to .github/docker/packaging/Dockerfile.packaging-plugins-bookworm diff --git a/.github/docker/Dockerfile.packaging-plugins-bullseye b/.github/docker/packaging/Dockerfile.packaging-plugins-bullseye similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-bullseye rename to .github/docker/packaging/Dockerfile.packaging-plugins-bullseye diff --git a/.github/docker/Dockerfile.packaging-plugins-centos7 b/.github/docker/packaging/Dockerfile.packaging-plugins-centos7 similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-centos7 rename to .github/docker/packaging/Dockerfile.packaging-plugins-centos7 diff --git a/.github/docker/Dockerfile.packaging-plugins-jammy b/.github/docker/packaging/Dockerfile.packaging-plugins-jammy similarity index 100% rename from .github/docker/Dockerfile.packaging-plugins-jammy rename to .github/docker/packaging/Dockerfile.packaging-plugins-jammy diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma8 b/.github/docker/testing/Dockerfile.testing-plugins-alma8 new file mode 100644 index 0000000000..47c2ffdba0 --- /dev/null +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma8 @@ -0,0 +1,68 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/almalinux:8 + +RUN bash -e <> /etc/yum.repos.d/centreon-plugins.repo + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +dnf clean all + +EOF diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma9 b/.github/docker/testing/Dockerfile.testing-plugins-alma9 new file mode 100644 index 0000000000..6761366c85 --- /dev/null +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma9 @@ -0,0 +1,67 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/almalinux:9 + +RUN bash -e <> /etc/yum.repos.d/centreon-plugins.repo + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +dnf clean all + +EOF diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bookworm b/.github/docker/testing/Dockerfile.testing-plugins-bookworm new file mode 100644 index 0000000000..2ff56f473d --- /dev/null +++ b/.github/docker/testing/Dockerfile.testing-plugins-bookworm @@ -0,0 +1,48 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/debian:bookworm + +ENV DEBIAN_FRONTEND noninteractive + +# fix locale +RUN bash -e < /dev/null 2>&1 +apt-get update + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +apt-get clean + +EOF diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bullseye b/.github/docker/testing/Dockerfile.testing-plugins-bullseye new file mode 100644 index 0000000000..72c2b2ec6a --- /dev/null +++ b/.github/docker/testing/Dockerfile.testing-plugins-bullseye @@ -0,0 +1,47 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/debian:bullseye + +ENV DEBIAN_FRONTEND noninteractive + +# fix locale +RUN bash -e < /dev/null 2>&1 +apt-get update + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +apt-get clean + + +EOF diff --git a/.github/docker/testing/Dockerfile.testing-plugins-jammy b/.github/docker/testing/Dockerfile.testing-plugins-jammy new file mode 100644 index 0000000000..9df67d9d98 --- /dev/null +++ b/.github/docker/testing/Dockerfile.testing-plugins-jammy @@ -0,0 +1,45 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/ubuntu:jammy + +ENV DEBIAN_FRONTEND noninteractive + +# fix locale +RUN bash -e < /dev/null 2>&1 +apt-get update + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +apt-get clean + +EOF diff --git a/.github/scripts/process-plugins.py b/.github/scripts/process-plugins.py index f4c80badbd..336ccd4353 100644 --- a/.github/scripts/process-plugins.py +++ b/.github/scripts/process-plugins.py @@ -43,7 +43,7 @@ packaging_path = re.search('.*\/(centreon-plugin-.*)\/pkg.json', filepath).group(1) if not packaging_path == packaging["pkg_name"]: - packaging_path = packaging_path + "=>" + packaging["pkg_name"] + packaging_path = packaging["pkg_name"] directory_path = re.search('^(.+)\/pkg.json', filepath).group(1) diff --git a/.github/scripts/test-all-plugins.py b/.github/scripts/test-all-plugins.py new file mode 100644 index 0000000000..176e7eaba0 --- /dev/null +++ b/.github/scripts/test-all-plugins.py @@ -0,0 +1,133 @@ +#!/usr/bin/env python3 +import subprocess +import sys +import os +import json + + +def get_tests_folders(plugin_name): + folder_list = [] + pkg_file = open("./packaging/" + plugin_name + "/pkg.json") + packaging = json.load(pkg_file) + for file in packaging["files"]: # loop on "files" array in pkg.json file. + if file.endswith("/") and os.path.exists("tests/robot/" + file): # if this is a directory and there is test for it. + folder_list.append("tests/robot/" + file) + return folder_list + + +def get_plugin_full_path(plugin_name): + pkg_file = open("./packaging/" + plugin_name + "/pkg.json") + packaging = json.load(pkg_file) + return "/usr/lib/centreon/plugins/" + packaging["plugin_name"] + + +def test_plugin(plugin_name): + folders_list = get_tests_folders(plugin_name) + print(f"{plugin_name} folders_list : {folders_list}") + if len(folders_list) == 0: + return 0 # no tests present at the moment, but we still have tested the plugin can be installed. + robot_results = subprocess.run("robot -v ''CENTREON_PLUGINS:" + get_plugin_full_path(plugin_name) + " " + " ".join(folders_list), + shell=True, check=False) + return robot_results.returncode + + +def try_command(cmd, error): + return_obj = subprocess.run(cmd, shell=True, check=False) + print(return_obj) + if return_obj.returncode != 0: + print(error) + sys.exit(1) + + +def launch_snmp_sim(): + subprocess.run("useradd snmp", shell=True, check=False) + # we don't want to quit if this fail because it often means the user already exist. + + # this folder seem needed to launch snmp plugins. I didn't reproduce in my env, but without it, + # the first snmp plugin launched by robot prepend the message "Created directory: /var/lib/snmp/cert_indexes". + try_command(cmd="mkdir -p /var/lib/snmp/cert_indexes/", error="can't create /var/lib/snmp/cert_indexes/ dir") + try_command(cmd="chown snmp:snmp -R /var/lib/snmp/cert_indexes/", error="can't set cert_indexes folder permissions") + + snmpsim_cmd = "snmpsim-command-responder --logging-method=null --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp --data-dir='./tests/robot' &" + try_command(cmd=snmpsim_cmd, error="can't launch snmp sim daemon.") + + +def install_plugin(plugin, archi): + with open('/var/log/robot-plugins-installation-tests.log', "a") as outfile: + if archi == "deb": + outfile.write("apt install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb\n") + output_status = (subprocess.run( + "apt install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb", + shell=True, check=False, stderr=subprocess.STDOUT, stdout=outfile)).returncode + elif archi == "rpm": + outfile.write("dnf install -y ./" + plugin + "*.rpm\n") + output_status = (subprocess.run("dnf install -y ./" + plugin + "*.rpm", shell=True, check=False, + stderr=subprocess.STDOUT, stdout=outfile)).returncode + else: + print(f"Unknown architecture, expected deb or rpm, got {archi}. Exiting.") + exit(1) + return output_status + + +def remove_plugin(plugin, archi): + with open('/var/log/robot-plugins-installation-tests.log', "a") as outfile: + if archi == "deb": + outfile.write("apt -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower() + "\n") + output_status = (subprocess.run( + "apt -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower(), + shell=True, check=False, stderr=subprocess.STDOUT, stdout=outfile)).returncode + # -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' is an option to force apt to keep the package in + # /var/cache/apt/archives, so it do not re download them for every installation. + # 'autoremove', contrary to 'remove' all dependancy while removing the original package. + + elif archi == "rpm": + outfile.write("dnf remove -y " + plugin + "\n") + output_status = (subprocess.run("dnf remove -y " + plugin, shell=True, check=False, + stderr=subprocess.STDOUT, stdout=outfile)).returncode + else: + print(f"Unknown architecture, expected deb or rpm, got {archi}. Exiting.") + exit(1) + return output_status + + +if __name__ == '__main__': + print("starting program") + if len(sys.argv) < 2: + print("please provide architecture (deb or rpm) and list of plugin to test as arguments (one plugin name per " + "argument, separated by space)") + sys.exit(1) + + launch_snmp_sim() + archi = sys.argv.pop(1) # expected either deb or rpm. + script_name = sys.argv.pop(0) + + error_install = 0 + error_tests = 0 + error_purge = 0 + nb_plugins = 0 + list_plugin_error = [] + for plugin in sys.argv: + print("plugin : ", plugin) + nb_plugins += 1 + tmp = install_plugin(plugin, archi) + if tmp > 0: + list_plugin_error.append(plugin) + error_install += tmp + tmp = test_plugin(plugin) + if tmp > 0: + list_plugin_error.append(plugin) + error_tests += tmp + tmp = remove_plugin(plugin, archi) + if tmp > 0: + list_plugin_error.append(plugin) + error_purge += tmp + + print(f"{nb_plugins} plugins tested.\n there was {error_install} installation error, {error_tests} test " + f"errors, and {error_purge} removal error list of error : {list_plugin_error}",) + + if error_install != 0 or error_tests != 0 or error_purge != 0: + exit(1) + exit(0) + # the snmpsim daemon is still runing when we exit, as this script is mainly run in a docker on CI, it will be + # cleared up eventually. + # to clear it up manually, use ps -ax | grep snmpsim-command-respond | cut -dp -f1 | sudo xargs kill diff --git a/.github/workflows/docker-builder-packaging-plugins.yml b/.github/workflows/docker-builder-packaging-plugins.yml index f55989d4b5..99cdb0da5e 100644 --- a/.github/workflows/docker-builder-packaging-plugins.yml +++ b/.github/workflows/docker-builder-packaging-plugins.yml @@ -11,11 +11,11 @@ on: - develop paths: - ".github/workflows/docker-builder-packaging-plugins.yml" - - ".github/docker/*" + - ".github/docker/packaging/*" pull_request: paths: - ".github/workflows/docker-builder-packaging-plugins.yml" - - ".github/docker/*" + - ".github/docker/packaging/*" jobs: create-and-push-docker: @@ -68,7 +68,7 @@ jobs: - uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 with: - file: .github/docker/Dockerfile.${{ matrix.dockerfile }} + file: .github/docker/packaging/Dockerfile.${{ matrix.dockerfile }} context: . build-args: "REGISTRY_URL=${{ vars.DOCKER_PROXY_REGISTRY_URL }}" pull: true diff --git a/.github/workflows/docker-builder-testing-plugins.yml b/.github/workflows/docker-builder-testing-plugins.yml new file mode 100644 index 0000000000..9ffc0aaf87 --- /dev/null +++ b/.github/workflows/docker-builder-testing-plugins.yml @@ -0,0 +1,73 @@ +name: docker-builder-testing-plugins + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +on: + workflow_dispatch: + push: + branches: + - develop + paths: + - ".github/workflows/docker-builder-testing-plugins.yml" + - ".github/docker/testing/*" + pull_request: + paths: + - ".github/workflows/docker-builder-testing-plugins.yml" + - ".github/docker/testing/*" + +jobs: + create-and-push-docker: + strategy: + matrix: + include: + - runner: ubuntu-22.04 + dockerfile: alma8 + image: alma8 + - runner: ubuntu-22.04 + dockerfile: alma9 + image: alma9 + - runner: ubuntu-22.04 + dockerfile: bullseye + image: bullseye + - runner: ["self-hosted", "collect-arm64"] + dockerfile: bullseye + image: bullseye-arm64 + - runner: ubuntu-22.04 + dockerfile: bookworm + image: bookworm + - runner: ubuntu-22.04 + dockerfile: jammy + image: jammy + + runs-on: ${{ matrix.runner }} + + steps: + - name: Checkout sources + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - name: Login to Registry + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }} + username: ${{ secrets.DOCKER_REGISTRY_ID }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} + + - name: Login to proxy registry + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ vars.DOCKER_PROXY_REGISTRY_URL }} + username: ${{ secrets.DOCKER_REGISTRY_ID }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} + + - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + - uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 + with: + file: .github/docker/testing/Dockerfile.testing-plugins-${{ matrix.dockerfile }} + context: . + build-args: "REGISTRY_URL=${{ vars.DOCKER_PROXY_REGISTRY_URL }}" + pull: true + push: true + tags: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/testing-plugins-${{ matrix.image }}:latest diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index c5d579dfd6..9a788e960b 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -76,10 +76,10 @@ jobs: PLUGINS="$(python3 .github/scripts/process-plugins.py '${{ steps.filter.outputs.common == 'true' }}')" echo "plugins=$(echo $PLUGINS)" >> $GITHUB_OUTPUT - if [ "$PLUGINS" == '' ]; then echo "::notice::There are no modifications to the plugins packages" fi + shell: bash fatpacker: @@ -243,8 +243,55 @@ jobs: rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} stability: ${{ needs.get-environment.outputs.stability }} + test-plugins: + needs: [get-environment, get-plugins, package] + strategy: + fail-fast: false + matrix: + distrib: [el8, el9, jammy, bullseye, bookworm] + include: + - package_extension: rpm + image: testing-plugins-alma8 + distrib: el8 + - package_extension: rpm + image: testing-plugins-alma9 + distrib: el9 + - package_extension: deb + image: testing-plugins-bullseye + distrib: bullseye + - package_extension: deb + image: testing-plugins-bookworm + distrib: bookworm + - package_extension: deb + image: testing-plugins-jammy + distrib: jammy + + runs-on: ubuntu-22.04 + container: + image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} + credentials: + username: ${{ secrets.DOCKER_REGISTRY_ID }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} + steps: + - name: Checkout sources + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + - uses: ./.github/actions/test-plugins + with: + cache-key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} + package-extension: ${{ matrix.package_extension }} + plugin-list: ${{ needs.get-plugins.outputs.plugins }} + + - name: Upload apt/dnf logs as artifacts if tests failed + if: failure() + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + with: + name: plugin-installation-${{ matrix.distrib }} + path: /var/log/robot-plugins-installation-tests.log + retention-days: 1 + deliver: - needs: [get-environment, package] + needs: [get-environment, package, test-plugins] if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} uses: ./.github/workflows/plugin-delivery.yml with: diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml deleted file mode 100644 index b604dc57c0..0000000000 --- a/.github/workflows/tests-functional.yml +++ /dev/null @@ -1,76 +0,0 @@ -name: functional-tests - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -on: - workflow_dispatch: - pull_request: - paths: - - '.github/workflows/tests-functional.yml' - - 'src/**' - - 'tests/functional/**' - - 'tests/resources/mockoon/**' - - 'tests/resources/snmp/**' - -jobs: - functional-tests-with-robot: - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - - name: Install libs - run: | - sudo apt update - sudo apt-get install -y libcurl4-openssl-dev - sudo apt-get install -qqy snmpsim - - - name: Install Node.js - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - with: - node-version: 21 - - - name: Install Mockoon CLI - run: npm install -g -D @mockoon/cli@7.0.0 - - - name: Install perl dependencies - uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 - with: - perl-version: '5.34' - install-modules-with: cpm - install-modules: | - Alien::SNMP - DateTime - Net::Curl::Easy - Paws - Net::SNMP - URI::Encode - XML::LibXML - DBI - DBD::mysql - POSIX - Time::HiRes - JSON::XS - - - name: Install Python - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 - with: - python-version: '3.11' - - - name: Install Robot Framework - run: | - pip3.11 install robotframework - pip3.11 install RobotFramework-Examples - shell: bash - - - name: Run Robot Framework tests - run: | - sudo mkdir -p /var/lib/centreon/centplugins/ - sudo chmod 777 /var/lib/centreon/centplugins/ - sudo useradd snmp - sudo mkdir -p /usr/snmpsim/data - sudo cp -r tests/robot/* /usr/snmpsim/data/ - snmpsimd --logging-method=null --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp & - robot tests/robot diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/deb.json b/packaging/centreon-plugin-Applications-Clamav-Ssh/deb.json similarity index 100% rename from packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/deb.json rename to packaging/centreon-plugin-Applications-Clamav-Ssh/deb.json diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Clamav-Ssh/pkg.json similarity index 100% rename from packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/pkg.json rename to packaging/centreon-plugin-Applications-Clamav-Ssh/pkg.json diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Clamav-Ssh/rpm.json similarity index 100% rename from packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/rpm.json rename to packaging/centreon-plugin-Applications-Clamav-Ssh/rpm.json diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/deb.json b/packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/deb.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/deb.json rename to packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/deb.json diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/pkg.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/pkg.json rename to packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/pkg.json diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/rpm.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/rpm.json rename to packaging/centreon-plugin-Applications-Database-Cassandra-Jmx/rpm.json diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/deb.json b/packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/deb.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/deb.json rename to packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/deb.json diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/pkg.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/pkg.json rename to packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/pkg.json diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/rpm.json similarity index 100% rename from packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/rpm.json rename to packaging/centreon-plugin-Applications-Database-Couchdb-Restapi/rpm.json diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/deb.json b/packaging/centreon-plugin-Applications-Netbackup-Ssh/deb.json similarity index 100% rename from packaging/centreon-plugin-Applications-Netbackup-SSH/deb.json rename to packaging/centreon-plugin-Applications-Netbackup-Ssh/deb.json diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/pkg.json b/packaging/centreon-plugin-Applications-Netbackup-Ssh/pkg.json similarity index 100% rename from packaging/centreon-plugin-Applications-Netbackup-SSH/pkg.json rename to packaging/centreon-plugin-Applications-Netbackup-Ssh/pkg.json diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/rpm.json b/packaging/centreon-plugin-Applications-Netbackup-Ssh/rpm.json similarity index 100% rename from packaging/centreon-plugin-Applications-Netbackup-SSH/rpm.json rename to packaging/centreon-plugin-Applications-Netbackup-Ssh/rpm.json diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/deb.json b/packaging/centreon-plugin-Applications-Pacemaker-Ssh/deb.json similarity index 100% rename from packaging/centreon-plugin-Applications-Pacemaker-SSH/deb.json rename to packaging/centreon-plugin-Applications-Pacemaker-Ssh/deb.json diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/pkg.json b/packaging/centreon-plugin-Applications-Pacemaker-Ssh/pkg.json similarity index 100% rename from packaging/centreon-plugin-Applications-Pacemaker-SSH/pkg.json rename to packaging/centreon-plugin-Applications-Pacemaker-Ssh/pkg.json diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/rpm.json b/packaging/centreon-plugin-Applications-Pacemaker-Ssh/rpm.json similarity index 100% rename from packaging/centreon-plugin-Applications-Pacemaker-SSH/rpm.json rename to packaging/centreon-plugin-Applications-Pacemaker-Ssh/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/deb.json rename to packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-DataFactory-Factories-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/deb.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MariaDB-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/deb.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-Database-MySQL-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/deb.json rename to packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/deb.json b/packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/deb.json rename to packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/pkg.json b/packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/rpm.json b/packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/deb.json rename to packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-Integration-EventGrid-Api/rpm.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/deb.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/deb.json rename to packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/deb.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/pkg.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/pkg.json rename to packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/pkg.json diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/rpm.json similarity index 100% rename from packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/rpm.json rename to packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager-Api/rpm.json diff --git a/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/deb.json similarity index 100% rename from packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/deb.json rename to packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/deb.json diff --git a/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/pkg.json similarity index 100% rename from packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/pkg.json rename to packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/pkg.json diff --git a/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/rpm.json similarity index 100% rename from packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc3-Snmp/rpm.json rename to packaging/centreon-plugin-Hardware-Sensors-Rittal-Cmc-Snmp/rpm.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/deb.json b/packaging/centreon-plugin-Network-Dell-Os10-Snmp/deb.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/deb.json rename to packaging/centreon-plugin-Network-Dell-Os10-Snmp/deb.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dell-Os10-Snmp/pkg.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/pkg.json rename to packaging/centreon-plugin-Network-Dell-Os10-Snmp/pkg.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dell-Os10-Snmp/rpm.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/rpm.json rename to packaging/centreon-plugin-Network-Dell-Os10-Snmp/rpm.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Dell-Xseries-Snmp/deb.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/deb.json rename to packaging/centreon-plugin-Network-Dell-Xseries-Snmp/deb.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dell-Xseries-Snmp/pkg.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/pkg.json rename to packaging/centreon-plugin-Network-Dell-Xseries-Snmp/pkg.json diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dell-Xseries-Snmp/rpm.json similarity index 100% rename from packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/rpm.json rename to packaging/centreon-plugin-Network-Dell-Xseries-Snmp/rpm.json diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/deb.json b/packaging/centreon-plugin-Network-Juniper-Mag-Snmp/deb.json similarity index 100% rename from packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/deb.json rename to packaging/centreon-plugin-Network-Juniper-Mag-Snmp/deb.json diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/pkg.json b/packaging/centreon-plugin-Network-Juniper-Mag-Snmp/pkg.json similarity index 100% rename from packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/pkg.json rename to packaging/centreon-plugin-Network-Juniper-Mag-Snmp/pkg.json diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/rpm.json b/packaging/centreon-plugin-Network-Juniper-Mag-Snmp/rpm.json similarity index 100% rename from packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/rpm.json rename to packaging/centreon-plugin-Network-Juniper-Mag-Snmp/rpm.json diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/deb.json b/packaging/centreon-plugin-Network-Sonus-SBC-Snmp/deb.json similarity index 100% rename from packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/deb.json rename to packaging/centreon-plugin-Network-Sonus-SBC-Snmp/deb.json diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Sonus-SBC-Snmp/pkg.json similarity index 100% rename from packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/pkg.json rename to packaging/centreon-plugin-Network-Sonus-SBC-Snmp/pkg.json diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Sonus-SBC-Snmp/rpm.json similarity index 100% rename from packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/rpm.json rename to packaging/centreon-plugin-Network-Sonus-SBC-Snmp/rpm.json From 484990fa681f9368110870b2c71cab20468a0d90 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Tue, 7 May 2024 10:41:44 +0200 Subject: [PATCH 45/63] [CTOR-566][Plugin] New pack Quanta Restapi (#5019) --- .../deb.json | 5 +++++ .../pkg.json | 9 +++++++++ .../rpm.json | 5 +++++ .../quanta/restapi/mode/webscenariosavailability.pm | 2 +- tests/resources/spellcheck/stopwords.t | 1 + 5 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/deb.json create mode 100644 packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/pkg.json create mode 100644 packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/rpm.json diff --git a/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/deb.json new file mode 100644 index 0000000000..e8ca247c85 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/pkg.json new file mode 100644 index 0000000000..fbc781ff08 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Quanta-Restapi", + "pkg_summary": "Centreon Plugin to check Quanta.io application probes results.", + "plugin_name": "centreon_monitoring_quanta_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/quanta/restapi" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/rpm.json new file mode 100644 index 0000000000..45de583855 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Quanta-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm index f94932bcd5..2f0919e7ca 100644 --- a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm +++ b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm @@ -131,7 +131,7 @@ Check web scenario availability metrics. =item B<--scenario-id> -Set ID of the scenario. +Set ID of the scenario (mandatory option). =item B<--timeframe> diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index 58342508ab..af9d793991 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -47,6 +47,7 @@ SNMP space-usage-prct SSH SureBackup +timeframe topic-messages-inflighted total-oper-down total-oper-up From a6674d223399e44690ece9c3c2b28a1af80a187c Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Tue, 7 May 2024 17:53:47 +0200 Subject: [PATCH 46/63] [CTOR-566][Plugin] New pack Quanta Restapi (Fix) (#5021) --- .../monitoring/quanta/restapi/mode/webscenariosavailability.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm index 2f0919e7ca..04ea400fc1 100644 --- a/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm +++ b/src/apps/monitoring/quanta/restapi/mode/webscenariosavailability.pm @@ -135,7 +135,7 @@ Set ID of the scenario (mandatory option). =item B<--timeframe> -Set timeframe in seconds (default: 14400). +Set timeframe in seconds (default: 900). =item B<--warning-*> B<--critical-*> From 67041577969e62ec41e514ee7343dae2a21f6526 Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Tue, 14 May 2024 10:37:40 +0200 Subject: [PATCH 47/63] fix(plugin) cifs,sftp,ftp plugin now check recursively folders (#5015) REF:CTOR-258 --- src/apps/protocols/cifs/mode/filescount.pm | 23 +++++++------ src/apps/protocols/ftp/mode/filescount.pm | 39 ++++++++++++---------- src/apps/protocols/sftp/mode/filescount.pm | 37 ++++++++++---------- 3 files changed, 52 insertions(+), 47 deletions(-) diff --git a/src/apps/protocols/cifs/mode/filescount.pm b/src/apps/protocols/cifs/mode/filescount.pm index 28ae338f7c..88cbf1fc66 100644 --- a/src/apps/protocols/cifs/mode/filescount.pm +++ b/src/apps/protocols/cifs/mode/filescount.pm @@ -106,27 +106,28 @@ sub countFiles { # Cannot list we skip next; } - + # this loop is recursive, when we find a directory we add it to the list used by the for loop. + # max_depth is used to limit the depth we search. + # same behaviour as ftp and sftp protocol. foreach my $file (@$files) { - next if ($file->[0] != SMBC_FILE && $file->[0] != SMBC_DIR); + next if ($file->[0] != SMBC_FILE && $file->[0] != SMBC_DIR); next if ($file->[1] eq '.' || $file->[1] eq '..'); my $name = $dir . '/' . $file->[1]; - - if (defined($self->{option_results}->{filter_file}) && $self->{option_results}->{filter_file} ne '' && - $name !~ /$self->{option_results}->{filter_file}/) { - $self->{output}->output_add(long_msg => sprintf("skipping '%s'", $name), debug => 1); - next; - } if ($file->[0] == SMBC_DIR) { if (defined($self->{option_results}->{max_depth}) && $level + 1 <= $self->{option_results}->{max_depth}) { push @$list, { name => $name, level => $level + 1 }; } - } else { - $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); - $self->{global}->{detected}++; + next; + } elsif (!centreon::plugins::misc::is_empty($self->{option_results}->{filter_file}) + # if this is a file check the filter_file regex + && $name !~ /$self->{option_results}->{filter_file}/) { + $self->{output}->output_add(long_msg => sprintf("skipping '%s'", $name), debug => 1); + next; } + $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); + $self->{global}->{detected}++; } } } diff --git a/src/apps/protocols/ftp/mode/filescount.pm b/src/apps/protocols/ftp/mode/filescount.pm index 3345814fb5..8c186f9aa2 100644 --- a/src/apps/protocols/ftp/mode/filescount.pm +++ b/src/apps/protocols/ftp/mode/filescount.pm @@ -89,7 +89,7 @@ sub run { my $exit_code = $self->{perfdata}->threshold_check(value => $count, threshold => [ { label => 'critical', exit_litteral => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); - + $self->{output}->output_add(severity => $exit_code, short_msg => sprintf("Number of files : %s", $count)); $self->{output}->perfdata_add(label => 'files', @@ -105,7 +105,7 @@ sub countFiles { my ($self) = @_; my @listings; my $count = 0; - + if (!defined($self->{option_results}->{directory}) || scalar(@{$self->{option_results}->{directory}}) == 0) { push @listings, [ { name => '.', level => 0 } ]; } else { @@ -121,36 +121,39 @@ sub countFiles { my $hash = pop @$list; my $dir = $hash->{name}; my $level = $hash->{level}; - + if (!(@files = apps::protocols::ftp::lib::ftp::execute($self, command => $map_commands{ls}->{$self->{ssl_or_not}}->{name}, command_args => [$dir]))) { # Cannot list we skip next; } - + # this loop is recursive, when we find a directory we add it to the list used by the for loop. + # max_depth is used to limit the depth we search. + # same behaviour as cifs(samba) and sftp protocol. foreach my $line (@files) { # IIS: 05-13-15 10:59AM 1184403 test.jpg next if ($line !~ /(\S+)\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+(.*)/ && - $line !~ /^\s*\S+\s*\S+\s*(\S+)\s+(.*)/); + $line !~ /^\s*\S+\s*\S+\s*(\S+)\s+(.*)/); my ($rights, $filename) = ($1, $2); my $bname = basename($filename); next if ($bname eq '.' || $bname eq '..'); my $name = $dir . '/' . $bname; - - if (defined($self->{option_results}->{filter_file}) && $self->{option_results}->{filter_file} ne '' && - $name !~ /$self->{option_results}->{filter_file}/) { - $self->{output}->output_add(long_msg => sprintf("Skipping '%s'", $name)); - next; - } - + if ($rights =~ /^(d|)/i) { - if (defined($self->{option_results}->{max_depth}) && $level + 1 <= $self->{option_results}->{max_depth}) { - push @$list, { name => $name, level => $level + 1}; + # in the case of a directory and the max level is not reached yet, we add it to the recursive browsing + if (defined($self->{option_results}->{max_depth}) + && $level + 1 <= $self->{option_results}->{max_depth}) { + push @$list, { name => $name, level => $level + 1 }; } - } else { - $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); - $count++; + next; + } elsif (!centreon::plugins::misc::is_empty($self->{option_results}->{filter_file}) + && $name !~ /$self->{option_results}->{filter_file}/) { + $self->{output}->output_add(long_msg => sprintf("Skipping '%s'", $name)); + # in the case of a file that does not match the filter, we skip + next; } - } + $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); + $count++; + } } } return $count; diff --git a/src/apps/protocols/sftp/mode/filescount.pm b/src/apps/protocols/sftp/mode/filescount.pm index 6d74c35679..11e6c38534 100644 --- a/src/apps/protocols/sftp/mode/filescount.pm +++ b/src/apps/protocols/sftp/mode/filescount.pm @@ -34,12 +34,12 @@ sub set_counters { $self->{maps_counters}->{global} = [ { label => 'files-detected', nlabel => 'files.detected.count', set => { - key_values => [ { name => 'detected' } ], - output_template => 'number of files: %s', - perfdatas => [ - { template => '%s', min => 0 } - ] - } + key_values => [ { name => 'detected' } ], + output_template => 'number of files: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } } ]; } @@ -93,7 +93,7 @@ sub manage_selection { sub countFiles { my ($self, %options) = @_; my @listings; - + foreach my $dir (@{$self->{option_results}->{directory}}) { push @listings, [ { name => $dir, level => 0 } ]; } @@ -111,26 +111,27 @@ sub countFiles { # Cannot list we skip next; } - + # this loop is recursive, when we find a directory we add it to the list used by the for loop. + # max_depth is used to limit the depth we search. + # same behaviour as cifs(samba) and ftp protocol. foreach my $file (@{$rv->{files}}) { next if ($file->{name} eq '.' || $file->{name} eq '..'); my $name = $dir . '/' . $file->{name}; - - if (defined($self->{option_results}->{filter_file}) && $self->{option_results}->{filter_file} ne '' && - $name !~ /$self->{option_results}->{filter_file}/) { - $self->{output}->output_add(long_msg => sprintf("skipping '%s'", $name), debug => 1); - next; - } if ($file->{type} == 2) { + # case of a directory if (defined($self->{option_results}->{max_depth}) && $level + 1 <= $self->{option_results}->{max_depth}) { push @$list, { name => $name, level => $level + 1 }; } - } else { - $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); - $self->{global}->{detected}++; + next; + } elsif (!centreon::plugins::misc::is_empty($self->{option_results}->{filter_file}) + && $name !~ /$self->{option_results}->{filter_file}/) { + $self->{output}->output_add(long_msg => sprintf("skipping '%s'", $name), debug => 1); + next; } - } + $self->{output}->output_add(long_msg => sprintf("Match '%s'", $name)); + $self->{global}->{detected}++; + } } } } From e5a3cf80ed44be49e53c9916781286a086026b14 Mon Sep 17 00:00:00 2001 From: omercier <32134301+omercier@users.noreply.github.com> Date: Tue, 14 May 2024 17:00:24 +0200 Subject: [PATCH 48/63] enh(plugin): refactored the RRDcached plugin (#5025) --- .../pkg.json | 4 +- src/apps/rrdcached/custom/tcp.pm | 118 +++++++++ src/apps/rrdcached/custom/unix.pm | 111 ++++++++ src/apps/rrdcached/mode/ping.pm | 118 +++++++++ src/apps/rrdcached/mode/stats.pm | 248 ++++++++---------- src/apps/rrdcached/plugin.pm | 12 +- tests/resources/spellcheck/stopwords.t | 1 + 7 files changed, 471 insertions(+), 141 deletions(-) create mode 100644 src/apps/rrdcached/custom/tcp.pm create mode 100644 src/apps/rrdcached/custom/unix.pm create mode 100644 src/apps/rrdcached/mode/ping.pm diff --git a/packaging/centreon-plugin-Applications-RRDCached/pkg.json b/packaging/centreon-plugin-Applications-RRDCached/pkg.json index e475161074..eac5a9a45e 100644 --- a/packaging/centreon-plugin-Applications-RRDCached/pkg.json +++ b/packaging/centreon-plugin-Applications-RRDCached/pkg.json @@ -3,7 +3,7 @@ "pkg_summary": "Centreon Plugin to check RRDCached related informations", "plugin_name": "centreon_rrdcached.pl", "files": [ - "centreon/plugins/script_simple.pm", + "centreon/plugins/script_custom.pm", "apps/rrdcached/" ] -} \ No newline at end of file +} diff --git a/src/apps/rrdcached/custom/tcp.pm b/src/apps/rrdcached/custom/tcp.pm new file mode 100644 index 0000000000..533f70f105 --- /dev/null +++ b/src/apps/rrdcached/custom/tcp.pm @@ -0,0 +1,118 @@ +# 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 apps::rrdcached::custom::tcp; +use strict; +use warnings; +use IO::Socket; + +sub new { + my ($class, %options) = @_; + my $self = {}; + bless $self, $class; + + # Check if an output option is available + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + # Check if options are available + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + + if (!defined($options{noptions})) { + # Adding options legacy from appsmetrics.pm in single mode + $options{options}->add_options(arguments => { + 'hostname:s' => { name => 'hostname', default => '127.0.0.1' }, + 'port:s' => { name => 'port', default => 42217 }, + 'timeout:s' => { name => 'timeout', default => 5 } + }); + } + # Adding Help structure to the object + $options{options}->add_help(package => __PACKAGE__, sections => 'RRDCACHED TCP OPTIONS', once => 1); + # Adding output structure to the object + $self->{output} = $options{output}; + + return $self; +} + +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} + +sub set_defaults {} + +sub check_options { + my ($self, %options) = @_; + + return 0; +} + +sub connect { + my ($self, %options) = @_; + + my $socket = IO::Socket::INET->new( + PeerHost => $self->{option_results}->{hostname}, + PeerPort => $self->{option_results}->{port}, + Timeout => $self->{option_results}->{timeout}, + Proto => 'tcp', + ); + + return $socket; +} + +1; + +__END__ + +=head1 NAME + +TCP socket custom mode. + +=head1 SYNOPSIS + +RRDcached access via TCP socket. + +=head1 RRDCACHED TCP OPTIONS + +=over 8 + +=item B<--hostname> + +Hostname to connect to. + +=item B<--port> + +TCP port (default: 42217) + +=item B<--timeout> + +Connection timeout. + +=back + +=head1 DESCRIPTION + +B. + +=cut diff --git a/src/apps/rrdcached/custom/unix.pm b/src/apps/rrdcached/custom/unix.pm new file mode 100644 index 0000000000..1aa341e9bd --- /dev/null +++ b/src/apps/rrdcached/custom/unix.pm @@ -0,0 +1,111 @@ +# 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 apps::rrdcached::custom::unix; +use strict; +use warnings; +use IO::Socket; + +sub new { + my ($class, %options) = @_; + my $self = {}; + bless $self, $class; + + # Check if an output option is available + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + # Check if options are available + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + + if (!defined($options{noptions})) { + $options{options}->add_options(arguments => { + 'socket-path:s' => { name => 'socket_path', default => '/var/rrdtool/rrdcached/rrdcached.sock' }, + 'timeout:s' => { name => 'timeout', default => 5 } + }); + } + # Adding the custom mode's help to the object + $options{options}->add_help(package => __PACKAGE__, sections => 'RRDCACHED UNIX SOCKET OPTIONS', once => 1); + # Adding output structure to the object + $self->{output} = $options{output}; + + return $self; +} + +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} + +sub set_defaults {} + +sub check_options { + my ($self, %options) = @_; + + return 0; +} + +sub connect { + my ($self, %options) = @_; + + my $socket = IO::Socket::UNIX->new( + Type => SOCK_STREAM(), + Peer => $self->{option_results}->{socket_path}, + Timeout => $self->{option_results}->{timeout}, + ); + + return $socket; +} + +1; + +__END__ + +=head1 NAME + +UNIX socket custom mode. + +=head1 SYNOPSIS + +RRDcached access via UNIX socket. + +=head1 RRDCACHED UNIX SOCKET OPTIONS + +=over 8 + +=item B<--socket-path> + +Path to the UNIX socket (default is /var/rrdtool/rrdcached/rrdcached.sock). + +=item B<--timeout> + +Connection timeout. + +=back + +=head1 DESCRIPTION + +B. + +=cut diff --git a/src/apps/rrdcached/mode/ping.pm b/src/apps/rrdcached/mode/ping.pm new file mode 100644 index 0000000000..7facb69cd6 --- /dev/null +++ b/src/apps/rrdcached/mode/ping.pm @@ -0,0 +1,118 @@ +# +# 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 apps::rrdcached::mode::ping; + +use strict; +use warnings; +use IO::Socket; + +use base qw(centreon::plugins::templates::counter); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +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 => {}); + + return $self; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { + name => 'global', + type => 0 + } + ]; + + $self->{maps_counters}->{global} = [ + { + label => 'response', + type => 2, + critical_default => '%{response} !~ /PONG/', + set => { + key_values => [ { name => 'response' } ], + output_template => 'response: %s', + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $ping_answered = 'no response'; + + # open the socket of either type TCP/UNIX + my $socket = $options{custom}->connect(); + # exit if we cannot connect/open it + if (!defined($socket) or !$socket->connected()) { + $self->{output}->output_add(severity => 'CRITICAL', short_msg => "Can't connect to socket, is rrdcached running ? is your socket path/address:port correct ?"); + $self->{output}->display(); + $self->{output}->exit(); + } + + # send the PING command and receive the response + $socket->send("PING\n"); + SOCKETREAD: + while (my $data = <$socket>) { + chomp $data; + # store the response + $ping_answered = $data; + $self->{output}->output_add(long_msg => sprintf("Received response - %s", $data)); + # only one line is expected so we can quit immediately + $socket->send("QUIT\n"); + close($socket); + # exit the while loop + last SOCKETREAD; + } + + $self->{global} = { + response => $ping_answered + }; +} + +1; + +__END__ + +=head1 MODE + +Check if the RRDcached daemon is answering to the basic PING command. + +=item B<--warning-response> + +Define the conditions to match for the status to be WARNING. You can use the variable '%{response}'. + +=item B<--critical-response> + +Define the conditions to match for the status to be CRITICAL. You can use the variable '%{response}'. +Default: '%{response} !~ /PONG/'. + +=over 8 + +=back diff --git a/src/apps/rrdcached/mode/stats.pm b/src/apps/rrdcached/mode/stats.pm index 10d56baa3b..327594076f 100644 --- a/src/apps/rrdcached/mode/stats.pm +++ b/src/apps/rrdcached/mode/stats.pm @@ -20,131 +20,130 @@ package apps::rrdcached::mode::stats; -use base qw(centreon::plugins::mode); - use strict; use warnings; use IO::Socket; +use base qw(centreon::plugins::templates::counter); + sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; - - $options{options}->add_options(arguments => - { - "host:s" => { name => 'host', default => '127.0.0.1' }, - "port:s" => { name => 'port', default => '42217' }, - "unix-socket-path:s" => { name => 'unix_socket_path', default => '/var/rrdtool/rrdcached/rrdcached.sock' }, - "warning-update:s" => { name => 'warning_update', default => '3000' }, - "critical-update:s" => { name => 'critical_update', default => '5000' }, - "warning-queue:s" => { name => 'warning_queue', default => '70' }, - "critical-queue:s" => { name => 'critical_queue', default => '100' }, - "socket-type:s" => { name => 'socket_type', default => 'unix' }, - }); + + $options{options}->add_options(arguments => {}); + return $self; } -sub check_options { +sub set_counters { my ($self, %options) = @_; - $self->SUPER::init(%options); - - if (($self->{perfdata}->threshold_validate(label => 'warning-update', value => $self->{option_results}->{warning_update})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong warning-update threshold '" . $self->{warning} . "'."); - $self->{output}->option_exit(); - } - if (($self->{perfdata}->threshold_validate(label => 'critical-update', value => $self->{option_results}->{critical_update})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{critical} . "'."); - $self->{output}->option_exit(); - } - if (($self->{perfdata}->threshold_validate(label => 'warning-queue', value => $self->{option_results}->{warning_queue})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong warning-queue threshold '" . $self->{warning} . "'."); - $self->{output}->option_exit(); - } - if (($self->{perfdata}->threshold_validate(label => 'critical-queue', value => $self->{option_results}->{critical_queue})) == 0) { - $self->{output}->add_option_msg(short_msg => "Wrong critical-queue threshold '" . $self->{critical} . "'."); - $self->{output}->option_exit(); - } + + $self->{maps_counters_type} = [ + { + name => 'global', + type => 0 + } + ]; + + $self->{maps_counters}->{global} = [ + { + label => 'queue-length', + nlabel => 'rrdcached.queue-length', + set => { + key_values => [ { name => 'queue_length' } ], + output_template => 'queue length: %s', + perfdatas => [ + { + template => '%d', + min => 0 + } + ] + } + }, + { + label => 'waiting-updates', + nlabel => 'rrdcached.waiting-updates', + set => { + key_values => [ { name => 'waiting_updates' } ], + output_template => 'waiting updates: %s', + perfdatas => [ + { + template => '%d', + min => 0 + } + ] + } + } + ]; } -sub run { +sub manage_selection { my ($self, %options) = @_; + my $data; - my @stat; - my @tab; - my $queueLenght; - my $socket; - - if ($self->{option_results}->{socket_type} eq 'tcp') { - $socket = IO::Socket::INET->new( - PeerHost => $self->{option_results}->{host}, - PeerPort => $self->{option_results}->{port}, - Proto => 'tcp', - ); - } else { - my $SOCK_PATH = $self->{option_results}->{unix_socket_path}; - $socket = IO::Socket::UNIX->new( - Type => SOCK_STREAM(), - Peer => $SOCK_PATH, - ); - } - - if (!defined($socket)) { - $self->{output}->output_add(severity => 'CRITICAL', - short_msg => "Can't connect to socket, is rrdcached running ? is your socket path/address:port correct ?"); + my %raw_data; + + # open the socket of either type TCP/UNIX + my $socket = $options{custom}->connect(); + + # exit if we cannot connect/open it + if (!defined($socket) or !$socket->connected()) { + $self->{output}->output_add(severity => 'CRITICAL', short_msg => "Can't connect to socket, is RRDcached running + ? Is your socket path or address:port correct ?"); $self->{output}->display(); $self->{output}->exit(); - } else { - $socket->send("STATS\n"); - while ($data = <$socket>) { - if ($data =~ /(\d+) Statistics follow/) { - my $stats_number = $1; - if ($stats_number < 9) { - $self->{output}->output_add(severity => 'UNKNOWN', - short_msg => "Stats available are incomplete, check rrdcached daemon (try again if few moments)"); - $self->{output}->display(); - $self->{output}->exit(); - } - } - next if $data !~ m/(^UpdatesR|Data|Queue)/; - push @tab,$data; + } + + # send the STATS command and receive the response + $socket->send("STATS\n"); + SOCKETREAD: + while ($data = <$socket>) { + chomp $data; + # there should be at least 9 statistics in the response + if ($data =~ /(\d+) Statistics follow/) { + my $stats_number = $1; + if ($stats_number < 9) { + $self->{output}->output_add( + severity => 'UNKNOWN', + short_msg => "The returned statistics are incomplete. Try again later or check that the service is up."); + $self->{output}->display(); + $self->{output}->exit(); + } + next SOCKETREAD; + } + + # parse the stats as "Key: value" lines + if (my ($key, $value) = $data =~ m/^([^:]+):\s*([\d]+)$/) { + $raw_data{$key} = $value; + $self->{output}->output_add(long_msg => "Received data - $key: $value"); + } else { + $self->{output}->output_add(long_msg => "Skipping data - $data"); + next SOCKETREAD; + } + # once all the expected data has been received, we can quit the command and close the socket + if (defined($raw_data{QueueLength}) and defined($raw_data{UpdatesReceived}) and defined($raw_data{DataSetsWritten})) { $socket->send("QUIT\n"); - - } - - close($socket); - - foreach my $line (@tab) { - my ($key, $value) = split (/:\s*/, $line,2); - push @stat, $value; - $self->{output}->output_add(long_msg => sprintf("%s = %i", $key, $value)); + close($socket); + last SOCKETREAD; } - chomp($stat[0]); - my $updatesNotWritten = $stat[1] - $stat[2]; - - my $exit1 = $self->{perfdata}->threshold_check(value => $updatesNotWritten, threshold => [ { label => 'critical-update', 'exit_litteral' => 'critical' }, { label => 'warning-update', exit_litteral => 'warning' } ]); - my $exit2 = $self->{perfdata}->threshold_check(value => $stat[0], threshold => [ { label => 'critical-queue', 'exit_litteral' => 'critical' }, { label => 'warning-queue', exit_litteral => 'warning' } ]); - - my $exit = $self->{output}->get_most_critical(status => [ $exit1, $exit2 ]); - - $self->{output}->output_add(severity => $exit, - short_msg => sprintf("RRDCached has %i updates waiting and %i node(s) in queue", $updatesNotWritten, $stat[0])); - - $self->{output}->perfdata_add(label => 'QueueLenght', unit => 'nodes', - value => $stat[0], - warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning'), - critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical'), - min => 0); - - $self->{output}->perfdata_add(label => 'UpdatesWaiting', unit => 'updates', - value => $updatesNotWritten, - warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning'), - critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical'), - min => 0); - + } + + # just in case... + if (!defined($raw_data{QueueLength}) or !defined($raw_data{UpdatesReceived}) or !defined($raw_data{DataSetsWritten})) { + # all the data have not been gathered despite the socket's answer is finished + close($socket) if $socket->connected(); + # exit with unknown status + $self->{output}->output_add(severity => 'UNKNOWN', short_msg => "The returned statistics are incomplete. Try again later."); $self->{output}->display(); $self->{output}->exit(); - } + } + # at this point, we should have the needed data, let's store it to our counter + $self->{global} = { + queue_length => $raw_data{QueueLength}, + waiting_updates => $raw_data{UpdatesReceived} - $raw_data{DataSetsWritten} + }; } 1; @@ -153,46 +152,25 @@ __END__ =head1 MODE -Check Updates cache of rrdcached daemon (compute delta between UpdatesReceived and DataSetsWritten from the rrdcached socket STATS command) +Check if the cache of RRDcached daemon's queue is too long or if it has too many updates waiting (difference between +UpdatesReceived and DataSetsWritten from the rrdcached socket STATS command). =over 8 -=item B<--tcp> - -Specify this option if TCP socket is used - -=item B<--host> - -Host where the socket is (should be set if --tcp is used) (default: 127.0.0.1) +=item B<--warning-rrdcached-waiting-updates> -=item B<--port> +Warning threshold for cached RRD updates (one update can include several values). -Port where the socket is listening (default: 42217) +=item B<--critical-rrdcached-waiting-updates> -=item B<--unix> +Critical threshold for cached RRD updates (one update can include several values). -Specify this option if UNIX socket is used +=item B<--warning-rrdcached-queue-length> -=item B<--socket-path> +Warning threshold for the number of nodes currently enqueued in the update queue. -Path to the socket (should be set if --unix is used) (default is /var/rrdtool/rrdcached/rrdcached.sock) +=item B<--critical-rrdcached-queue-length> -=item B<--warning-update> - -Warning number of cached RRD updates (One update can include several values) - -=item B<--critical-update> - -Critical number of cached RRD updates (One update can include several values) - -=item B<--warning-queue> - -Warning number of nodes in rrdcached queue - -=item B<--critical-queue> - -Critical number of nodes in rrdcached queue +Critical threshold for the number of nodes currently enqueued in the update queue. =back - -=cut diff --git a/src/apps/rrdcached/plugin.pm b/src/apps/rrdcached/plugin.pm index 3f3765bb0c..a59d49d90d 100644 --- a/src/apps/rrdcached/plugin.pm +++ b/src/apps/rrdcached/plugin.pm @@ -22,7 +22,7 @@ package apps::rrdcached::plugin; use strict; use warnings; -use base qw(centreon::plugins::script_simple); +use base qw(centreon::plugins::script_custom); sub new { my ($class, %options) = @_; @@ -30,9 +30,13 @@ sub new { bless $self, $class; $self->{version} = '0.1'; - %{$self->{modes}} = ( + $self->{modes} = { 'stats' => 'apps::rrdcached::mode::stats', - ); + 'ping' => 'apps::rrdcached::mode::ping' + }; + + $self->{custom_modes}->{tcp} = 'apps::rrdcached::custom::tcp'; + $self->{custom_modes}->{unix} = 'apps::rrdcached::custom::unix'; return $self; } @@ -43,6 +47,6 @@ __END__ =head1 PLUGIN DESCRIPTION -Check RRDCached related informations +Check RRDCached status and statistics. =cut diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index af9d793991..3f61349847 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -42,6 +42,7 @@ perfdata powershell proto queue-messages-inflighted +RRDCached Sansymphony SNMP space-usage-prct From b407c445be121baf14b2d01e4dbe9160123ed8e8 Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Wed, 15 May 2024 15:30:30 +0200 Subject: [PATCH 49/63] ci(plugin) update JSON::Path dep on alma8 to same version as other OS Alma8 don't provide Exporter::shiny in a recent enough version (provide 1.000000 instead of 1.002002) so we must build this dep. REF:CTOR-525 --- .../docker/packaging/Dockerfile.packaging-plugins-alma8 | 2 +- .../docker/packaging/Dockerfile.packaging-plugins-alma9 | 2 +- .../packaging/Dockerfile.packaging-plugins-bookworm | 2 +- .../packaging/Dockerfile.packaging-plugins-bullseye | 2 +- .../docker/packaging/Dockerfile.packaging-plugins-centos7 | 2 +- .../docker/packaging/Dockerfile.packaging-plugins-jammy | 2 +- .github/docker/testing/Dockerfile.testing-plugins-alma8 | 2 +- .github/docker/testing/Dockerfile.testing-plugins-alma9 | 2 +- .../docker/testing/Dockerfile.testing-plugins-bookworm | 2 +- .../docker/testing/Dockerfile.testing-plugins-bullseye | 2 +- .github/docker/testing/Dockerfile.testing-plugins-jammy | 2 +- .github/workflows/perl-cpan-libraries.yml | 4 ++++ .github/workflows/perl-json-path.yml | 8 ++------ 13 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-alma8 b/.github/docker/packaging/Dockerfile.packaging-plugins-alma8 index 11c2ec593b..c8f2f43e77 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-alma8 +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-alma8 @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/almalinux:8 diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-alma9 b/.github/docker/packaging/Dockerfile.packaging-plugins-alma9 index bdd7f8d725..bb4edb2293 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-alma9 +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-alma9 @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/almalinux:9 diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-bookworm b/.github/docker/packaging/Dockerfile.packaging-plugins-bookworm index caf7d402a9..476a9875cc 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-bookworm +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-bookworm @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/debian:bookworm diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-bullseye b/.github/docker/packaging/Dockerfile.packaging-plugins-bullseye index a8cef0424f..413aff6151 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-bullseye +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-bullseye @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/debian:bullseye diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-centos7 b/.github/docker/packaging/Dockerfile.packaging-plugins-centos7 index 78561500f4..3fd80dd488 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-centos7 +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-centos7 @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/centos:7 diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-jammy b/.github/docker/packaging/Dockerfile.packaging-plugins-jammy index 234348e1fc..26579efcdb 100644 --- a/.github/docker/packaging/Dockerfile.packaging-plugins-jammy +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-jammy @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/ubuntu:jammy diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma8 b/.github/docker/testing/Dockerfile.testing-plugins-alma8 index 47c2ffdba0..22d2d9c07a 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-alma8 +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma8 @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/almalinux:8 diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma9 b/.github/docker/testing/Dockerfile.testing-plugins-alma9 index 6761366c85..d5cead3a20 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-alma9 +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma9 @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/almalinux:9 diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bookworm b/.github/docker/testing/Dockerfile.testing-plugins-bookworm index 2ff56f473d..95ae97a301 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-bookworm +++ b/.github/docker/testing/Dockerfile.testing-plugins-bookworm @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/debian:bookworm diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bullseye b/.github/docker/testing/Dockerfile.testing-plugins-bullseye index 72c2b2ec6a..982506b7d5 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-bullseye +++ b/.github/docker/testing/Dockerfile.testing-plugins-bullseye @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/debian:bullseye diff --git a/.github/docker/testing/Dockerfile.testing-plugins-jammy b/.github/docker/testing/Dockerfile.testing-plugins-jammy index 9df67d9d98..eb2a5920dc 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-jammy +++ b/.github/docker/testing/Dockerfile.testing-plugins-jammy @@ -1,4 +1,4 @@ -ARG REGISTRY_URL +ARG REGISTRY_URL=docker.io FROM ${REGISTRY_URL}/ubuntu:jammy diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 16ba4b17c8..396a5f57ac 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -53,6 +53,7 @@ jobs: "Digest::MD5::File", "Digest::SHA1", "Email::Send::SMTP::Gmail", + "Exporter::Shiny", "EV", "FFI::CheckLib", "FFI::Platypus", @@ -121,6 +122,8 @@ jobs: version: "0.022" - name: "Device::Modbus::TCP::Client" version: "0.026" + - name: "Exporter::Shiny" + build_distribs: el8 - name: "EV" - name: "FFI::CheckLib" - name: "FFI::Platypus" @@ -140,6 +143,7 @@ jobs: use_dh_make_perl: "false" version: "0.01" rpm_dependencies: "zeromq" + name: package ${{ matrix.distrib }} ${{ matrix.name }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest diff --git a/.github/workflows/perl-json-path.yml b/.github/workflows/perl-json-path.yml index f3206b70b1..d128646f97 100644 --- a/.github/workflows/perl-json-path.yml +++ b/.github/workflows/perl-json-path.yml @@ -69,11 +69,8 @@ jobs: dnf install -y cpanminus gcc fi - if [ "${{ matrix.distrib }}" = "el8" ]; then - cpanm -v -l /tmp JSON::Path@0.5 - else - cpanm -v -l /tmp JSON::Path@1.0.4 - fi + cpanm -v -l /tmp JSON::Path@1.0.4 + shell: bash - name: Set package name and paths according to distrib @@ -90,7 +87,6 @@ jobs: else NAME="perl-JSON-Path" if [ "${{ matrix.distrib }}" = "el8" ]; then - VERSION="0.5" # https://github.com/centreon/centreon-plugins/issues/4540 PERL_VENDORLIB="/usr/local/share/perl5" else PERL_VENDORLIB="/usr/local/share/perl5/$PERL_VERSION" From 9d63de693bae868b9a4e7b33656789d57599988b Mon Sep 17 00:00:00 2001 From: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> Date: Wed, 15 May 2024 16:25:24 +0200 Subject: [PATCH 50/63] CTOR-320-community-pr-fix-status-mapping-on-citrix-psu (#5022) Co-authored-by: omercier <32134301+omercier@users.noreply.github.com> --- .../netscaler/snmp/mode/components/psu.pm | 31 ++++-- .../citrix/netscaler/snmp/mode/health.pm | 12 +- tests/resources/spellcheck/stopwords.t | 3 + .../mode/components/netscaler-health.robot | 36 ++++++ .../mode/components/psu-citrix-v13.snmpwalk | 104 ++++++++++++++++++ 5 files changed, 175 insertions(+), 11 deletions(-) create mode 100644 tests/robot/network/citrix/netscaler/snmp/mode/components/netscaler-health.robot create mode 100644 tests/robot/network/citrix/netscaler/snmp/mode/components/psu-citrix-v13.snmpwalk diff --git a/src/network/citrix/netscaler/snmp/mode/components/psu.pm b/src/network/citrix/netscaler/snmp/mode/components/psu.pm index 6d5f3ff009..f9d79f630b 100644 --- a/src/network/citrix/netscaler/snmp/mode/components/psu.pm +++ b/src/network/citrix/netscaler/snmp/mode/components/psu.pm @@ -23,23 +23,34 @@ package network::citrix::netscaler::snmp::mode::components::psu; use strict; use warnings; -my %map_psu_status = ( - 0 => 'not supported', - 1 => 'not present', - 2 => 'failed', - 3 => 'normal', -); -my $mapping = { - sysHealthCounterName => { oid => '.1.3.6.1.4.1.5951.4.1.1.41.7.1.1' }, - sysHealthCounterValue => { oid => '.1.3.6.1.4.1.5951.4.1.1.41.7.1.2', map => \%map_psu_status }, -}; my $oid_nsSysHealthEntry = '.1.3.6.1.4.1.5951.4.1.1.41.7.1'; sub load {} sub check { my ($self) = @_; + my %map_psu_status; + + if (!$self->{option_results}->{alternative_status_mapping}) { + %map_psu_status = ( + 0 => 'not supported', + 1 => 'not present', + 2 => 'failed', + 3 => 'normal', + ); + } else { + %map_psu_status = ( + 0 => 'normal', + 1 => 'not present', + 2 => 'failed', + 3 => 'not supported', + ); + } + my $mapping = { + sysHealthCounterName => { oid => '.1.3.6.1.4.1.5951.4.1.1.41.7.1.1' }, + sysHealthCounterValue => { oid => '.1.3.6.1.4.1.5951.4.1.1.41.7.1.2', map => \%map_psu_status }, + }; $self->{output}->output_add(long_msg => "Checking power supplies"); $self->{components}->{psu} = {name => 'psus', total => 0, skip => 0}; diff --git a/src/network/citrix/netscaler/snmp/mode/health.pm b/src/network/citrix/netscaler/snmp/mode/health.pm index 62cf1cb42b..42a86f0033 100644 --- a/src/network/citrix/netscaler/snmp/mode/health.pm +++ b/src/network/citrix/netscaler/snmp/mode/health.pm @@ -69,7 +69,7 @@ sub new { my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; - $options{options}->add_options(arguments => {}); + $options{options}->add_options(arguments => { "alternative-status-mapping:s" => { name => 'alternative_status_mapping', default => '' }}); return $self; } @@ -119,6 +119,16 @@ Example: --warning='temperature,.,30' Set critical threshold for 'temperature', 'fanspeed', 'voltage'(syntax: type,regexp,threshold) Example: --critical='temperature,.*,40' +=item B<--alternative-status-mapping> + +Depending on the Netscaler product, the translation of OID .1.3.6.1.4.1.5951.4.1.1.41.7.1.2 may diverge. The default interpretation of this OID is: + +0 => not supported, 1 => not present, 2 => failed, 3 => normal. + +With this option set to '1', the OID will be interpreted otherwise: + +0 => normal, 1 => not present, 2 => failed, 3 => not supported. + =back =cut diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index 3f61349847..6b95c44b2e 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -20,6 +20,7 @@ Datacore deltaps df eth +fanspeed Fortigate Fortinet ifAlias @@ -33,6 +34,7 @@ IpAddr license-instances-usage-prct MBean NagVis +Netscaler OID oneaccess-sys-mib out-bcast @@ -41,6 +43,7 @@ out-ucast perfdata powershell proto +psu queue-messages-inflighted RRDCached Sansymphony diff --git a/tests/robot/network/citrix/netscaler/snmp/mode/components/netscaler-health.robot b/tests/robot/network/citrix/netscaler/snmp/mode/components/netscaler-health.robot new file mode 100644 index 0000000000..06e56300b0 --- /dev/null +++ b/tests/robot/network/citrix/netscaler/snmp/mode/components/netscaler-health.robot @@ -0,0 +1,36 @@ +*** Settings *** +Documentation Network citrix netscaler health + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::citrix::netscaler::snmp::plugin + +*** Test Cases *** +check psu components ${tc}/2 + [Documentation] mib don't seem set on the meaning of .1.3.6.1.4.1.5951.4.1.1.41.7.1.2, some client report 0 = normal and other 0 = not supported. + [Tags] network citrix snmp + ${command} Catenate + ... ${CMD} + ... --mode=health + ... --hostname='127.0.0.1' + ... --snmp-port='2024' + ... --snmp-community='network/citrix/netscaler/snmp/mode/components/${community}' + ... --component=psu + ... --alternative-status-mapping='${alternative_status_mapping}' + + ${output} Run ${command} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected_result} + ... \nWrong output result for command:\n${command}\n\nExpected:\n${expected_result}\nCommand output:\n${output}\n + + Examples: tc alternative_status_mapping community expected_result -- + ... 1 true psu-citrix-v13 OK: All 4 components are ok [4/4 psus]. | 'count_psu'=4;;;; + ... 2 ${EMPTY} psu-citrix-v13 UNKNOWN: Power supply '1' status is 'not supported' - Power supply '2' status is 'not supported' - Power supply '3' status is 'not supported' - Power supply '4' status is 'not supported' | 'count_psu'=4;;;; + + diff --git a/tests/robot/network/citrix/netscaler/snmp/mode/components/psu-citrix-v13.snmpwalk b/tests/robot/network/citrix/netscaler/snmp/mode/components/psu-citrix-v13.snmpwalk new file mode 100644 index 0000000000..f71bd4a90f --- /dev/null +++ b/tests/robot/network/citrix/netscaler/snmp/mode/components/psu-citrix-v13.snmpwalk @@ -0,0 +1,104 @@ +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.9.68.105.115.107.48.83.105.122.101 = STRING: "Disk0Size" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.9.68.105.115.107.48.85.115.101.100 = STRING: "Disk0Used" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.9.68.105.115.107.49.83.105.122.101 = STRING: "Disk1Size" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.9.68.105.115.107.49.85.115.101.100 = STRING: "Disk1Used" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.10.68.105.115.107.48.65.118.97.105.108 = STRING: "Disk0Avail" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.10.68.105.115.107.49.65.118.97.105.108 = STRING: "Disk1Avail" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.11.68.105.115.107.48.69.114.114.111.114.115 = STRING: "Disk0Errors" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.11.68.105.115.107.48.80.117.115.97.103.101 = STRING: "Disk0Pusage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.11.68.105.115.107.49.69.114.114.111.114.115 = STRING: "Disk1Errors" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.11.68.105.115.107.49.80.117.115.97.103.101 = STRING: "Disk1Pusage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.12.67.80.85.70.97.110.48.83.112.101.101.100 = STRING: "CPUFan0Speed" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.12.67.80.85.70.97.110.49.83.112.101.101.100 = STRING: "CPUFan1Speed" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.13.65.117.120.105.108.105.97.114.121.70.97.110.48 = STRING: "AuxiliaryFan0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.13.65.117.120.105.108.105.97.114.121.70.97.110.49 = STRING: "AuxiliaryFan1" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.13.65.117.120.105.108.105.97.114.121.70.97.110.50 = STRING: "AuxiliaryFan2" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.13.65.117.120.105.108.105.97.114.121.70.97.110.51 = STRING: "AuxiliaryFan3" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.14.65.117.120.105.108.105.97.114.121.77.105.115.99.48 = STRING: "AuxiliaryMisc0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.14.65.117.120.105.108.105.97.114.121.77.105.115.99.49 = STRING: "AuxiliaryMisc1" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.14.66.97.116.116.101.114.121.86.111.108.116.97.103.101 = STRING: "BatteryVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.14.83.121.115.116.101.109.70.97.110.83.112.101.101.100 = STRING: "SystemFanSpeed" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.14.86.111.108.116.97.103.101.83.101.110.115.111.114.50 = STRING: "VoltageSensor2" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.67.80.85.48.67.111.114.101.86.111.108.116.97.103.101 = STRING: "CPU0CoreVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.67.80.85.48.84.101.109.112.101.114.97.116.117.114.101 = STRING: "CPU0Temperature" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.67.80.85.49.67.111.114.101.86.111.108.116.97.103.101 = STRING: "CPU1CoreVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.67.80.85.49.84.101.109.112.101.114.97.116.117.114.101 = STRING: "CPU1Temperature" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.83.121.115.116.101.109.70.97.110.49.83.112.101.101.100 = STRING: "SystemFan1Speed" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.15.83.121.115.116.101.109.70.97.110.50.83.112.101.101.100 = STRING: "SystemFan2Speed" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.16.73.110.116.101.108.67.80.85.86.116.116.80.111.119.101.114 = STRING: "IntelCPUVttPower" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.48 = STRING: "AuxiliaryVoltage0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.49 = STRING: "AuxiliaryVoltage1" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.50 = STRING: "AuxiliaryVoltage2" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.51 = STRING: "AuxiliaryVoltage3" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.52 = STRING: "AuxiliaryVoltage4" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.53 = STRING: "AuxiliaryVoltage5" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.54 = STRING: "AuxiliaryVoltage6" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.55 = STRING: "AuxiliaryVoltage7" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.43.53.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "+5.0VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.45.53.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "-5.0VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.80.111.119.101.114.83.117.112.112.108.121.49.83.116.97.116.117.115 = STRING: "PowerSupply1Status" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.80.111.119.101.114.83.117.112.112.108.121.50.83.116.97.116.117.115 = STRING: "PowerSupply2Status" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.80.111.119.101.114.83.117.112.112.108.121.51.83.116.97.116.117.115 = STRING: "PowerSupply3Status" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.18.80.111.119.101.114.83.117.112.112.108.121.52.83.116.97.116.117.115 = STRING: "PowerSupply4Status" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.19.43.49.50.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "+12.0VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.19.45.49.50.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "-12.0VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.19.73.110.116.101.114.110.97.108.84.101.109.112.101.114.97.116.117.114.101 = STRING: "InternalTemperature" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.48 = STRING: "AuxiliaryTemperature0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.49 = STRING: "AuxiliaryTemperature1" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.50 = STRING: "AuxiliaryTemperature2" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.51 = STRING: "AuxiliaryTemperature3" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.21.77.97.105.110.51.46.51.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "Main3.3VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.24.83.116.97.110.100.98.121.51.46.51.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "Standby3.3VSupplyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.1.27.80.111.119.101.114.83.117.112.112.108.121.53.118.83.116.97.110.100.98.121.86.111.108.116.97.103.101 = STRING: "PowerSupply5vStandbyVoltage" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.9.68.105.115.107.48.83.105.122.101 = STRING: "1585" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.9.68.105.115.107.48.85.115.101.100 = STRING: "697" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.9.68.105.115.107.49.83.105.122.101 = STRING: "14179" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.9.68.105.115.107.49.85.115.101.100 = STRING: "6658" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.10.68.105.115.107.48.65.118.97.105.108 = STRING: "761" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.10.68.105.115.107.49.65.118.97.105.108 = STRING: "6386" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.11.68.105.115.107.48.69.114.114.111.114.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.11.68.105.115.107.48.80.117.115.97.103.101 = STRING: "47" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.11.68.105.115.107.49.69.114.114.111.114.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.11.68.105.115.107.49.80.117.115.97.103.101 = STRING: "51" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.12.67.80.85.70.97.110.48.83.112.101.101.100 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.12.67.80.85.70.97.110.49.83.112.101.101.100 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.13.65.117.120.105.108.105.97.114.121.70.97.110.48 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.13.65.117.120.105.108.105.97.114.121.70.97.110.49 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.13.65.117.120.105.108.105.97.114.121.70.97.110.50 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.13.65.117.120.105.108.105.97.114.121.70.97.110.51 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.14.65.117.120.105.108.105.97.114.121.77.105.115.99.48 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.14.65.117.120.105.108.105.97.114.121.77.105.115.99.49 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.14.66.97.116.116.101.114.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.14.83.121.115.116.101.109.70.97.110.83.112.101.101.100 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.14.86.111.108.116.97.103.101.83.101.110.115.111.114.50 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.67.80.85.48.67.111.114.101.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.67.80.85.48.84.101.109.112.101.114.97.116.117.114.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.67.80.85.49.67.111.114.101.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.67.80.85.49.84.101.109.112.101.114.97.116.117.114.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.83.121.115.116.101.109.70.97.110.49.83.112.101.101.100 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.15.83.121.115.116.101.109.70.97.110.50.83.112.101.101.100 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.16.73.110.116.101.108.67.80.85.86.116.116.80.111.119.101.114 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.48 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.49 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.50 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.51 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.52 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.53 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.54 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.17.65.117.120.105.108.105.97.114.121.86.111.108.116.97.103.101.55 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.43.53.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.45.53.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.80.111.119.101.114.83.117.112.112.108.121.49.83.116.97.116.117.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.80.111.119.101.114.83.117.112.112.108.121.50.83.116.97.116.117.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.80.111.119.101.114.83.117.112.112.108.121.51.83.116.97.116.117.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.18.80.111.119.101.114.83.117.112.112.108.121.52.83.116.97.116.117.115 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.19.43.49.50.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.19.45.49.50.46.48.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.19.73.110.116.101.114.110.97.108.84.101.109.112.101.114.97.116.117.114.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.48 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.49 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.50 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.21.65.117.120.105.108.105.97.114.121.84.101.109.112.101.114.97.116.117.114.101.51 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.21.77.97.105.110.51.46.51.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.24.83.116.97.110.100.98.121.51.46.51.86.83.117.112.112.108.121.86.111.108.116.97.103.101 = STRING: "0" +.1.3.6.1.4.1.5951.4.1.1.41.7.1.2.27.80.111.119.101.114.83.117.112.112.108.121.53.118.83.116.97.110.100.98.121.86.111.108.116.97.103.101 = STRING: "0" \ No newline at end of file From 3dc745a03c13728ff906c03820ada12dc8a09aec Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Thu, 16 May 2024 10:24:19 +0200 Subject: [PATCH 51/63] fix(plugin) Json PATH lib - CTOR-525 (#5027) --- src/apps/protocols/http/plugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/protocols/http/plugin.pm b/src/apps/protocols/http/plugin.pm index cb2e328c7a..05039da294 100644 --- a/src/apps/protocols/http/plugin.pm +++ b/src/apps/protocols/http/plugin.pm @@ -26,7 +26,7 @@ use base qw(centreon::plugins::script_simple); sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{modes} = { From 2c74e5bec968bedd9bfc455444115359ff93f25d Mon Sep 17 00:00:00 2001 From: pkippes Date: Thu, 16 May 2024 14:46:55 +0200 Subject: [PATCH 52/63] Empty-Commit From 82bc373bd4febdde67ac5a0b415585be82c8d3b9 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 30 Apr 2024 10:36:19 +0200 Subject: [PATCH 53/63] =?UTF-8?q?enh(promote):=20handle=20debian=20package?= =?UTF-8?q?=20promotion=20for=20multiple=20distributi=E2=80=A6=20(#5005)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: May <110405507+paul-oureib@users.noreply.github.com> --- .github/actions/promote-to-stable/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 105085cba8..85902cb7fa 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -91,6 +91,11 @@ runs: for ARTIFACT_DL in $(dir -1|grep -E "*${{ inputs.distrib }}*.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) + DISTRIB=$(echo $ARTIFACT_DL | cut -d '_' -f2 | cut -d '-' -f2) + if [[ "${{ inputs.distrib }}" != "$DISTRIB" ]]; then + echo "::error::Distrib [$DISTRIB] from package does not match distrib [${{ inputs.distrib }}] from input, aborting promotion." + exit 1 + fi echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" done From 547352535eb7a29b609d54ab86d197c87897d21a Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 30 Apr 2024 11:56:21 +0200 Subject: [PATCH 54/63] fix(promote): fix pattern used for promote upload (#5007) --- .github/actions/promote-to-stable/action.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 85902cb7fa..105085cba8 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -91,11 +91,6 @@ runs: for ARTIFACT_DL in $(dir -1|grep -E "*${{ inputs.distrib }}*.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) - DISTRIB=$(echo $ARTIFACT_DL | cut -d '_' -f2 | cut -d '-' -f2) - if [[ "${{ inputs.distrib }}" != "$DISTRIB" ]]; then - echo "::error::Distrib [$DISTRIB] from package does not match distrib [${{ inputs.distrib }}] from input, aborting promotion." - exit 1 - fi echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" done From c8039a37f8faededdfe1f1383a94856a156dea42 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 30 Apr 2024 16:42:06 +0200 Subject: [PATCH 55/63] fix(promote): fix pattern for debian promote (#5010) --- .github/actions/promote-to-stable/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 105085cba8..0309e7677f 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -89,7 +89,7 @@ runs: jf rt download $ARTIFACT --flat done - for ARTIFACT_DL in $(dir -1|grep -E "*${{ inputs.distrib }}*.deb"); do + for ARTIFACT_DL in $(dir -1|grep -E ".+${{ inputs.distrib }}.+\.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" From 35bdfc0d8ad5030b3be75ca88bce14f74208aa78 Mon Sep 17 00:00:00 2001 From: tuntoja Date: Thu, 16 May 2024 16:37:43 +0200 Subject: [PATCH 56/63] fix(docker): add ruby-devel as required by npfm for perl-cpan builds --- .github/workflows/perl-cpan-libraries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 396a5f57ac..94ea3fa2ce 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -164,7 +164,7 @@ jobs: dnf module reset -y ruby dnf module enable -y ruby:3.1 - dnf install -y ruby + dnf install -y ruby ruby-devel shell: bash - if: ${{ contains(matrix.build_distribs, matrix.distrib) && matrix.spec_file == '' }} From c4c39bc9e0964a3e09739ac89a65b01bf3f716f8 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Mon, 20 May 2024 17:04:22 +0200 Subject: [PATCH 57/63] =?UTF-8?q?enh(tests):=20make=20install=5Fplugins=20?= =?UTF-8?q?function=20more=20robust=20for=20debian=20inst=E2=80=A6=20(#503?= =?UTF-8?q?1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: omercier --- .github/scripts/test-all-plugins.py | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/.github/scripts/test-all-plugins.py b/.github/scripts/test-all-plugins.py index 176e7eaba0..8479575cb9 100644 --- a/.github/scripts/test-all-plugins.py +++ b/.github/scripts/test-all-plugins.py @@ -51,13 +51,26 @@ def launch_snmp_sim(): snmpsim_cmd = "snmpsim-command-responder --logging-method=null --agent-udpv4-endpoint=127.0.0.1:2024 --process-user=snmp --process-group=snmp --data-dir='./tests/robot' &" try_command(cmd=snmpsim_cmd, error="can't launch snmp sim daemon.") +def refresh_packet_manager(archi): + with open('/var/log/robot-plugins-installation-tests.log', "a") as outfile: + if archi == "deb": + outfile.write("apt-get update\n") + output_status = (subprocess.run( + "apt-get update", + shell=True, check=False, stderr=subprocess.STDOUT, stdout=outfile)).returncode + elif archi == "rpm": + return 0 + else: + print(f"Unknown architecture, expected deb or rpm, got {archi}. Exiting.") + exit(1) + return output_status def install_plugin(plugin, archi): with open('/var/log/robot-plugins-installation-tests.log', "a") as outfile: if archi == "deb": - outfile.write("apt install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb\n") + outfile.write("apt-get install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb\n") output_status = (subprocess.run( - "apt install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb", + "apt-get install -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' -y ./" + plugin.lower() + "*.deb", shell=True, check=False, stderr=subprocess.STDOUT, stdout=outfile)).returncode elif archi == "rpm": outfile.write("dnf install -y ./" + plugin + "*.rpm\n") @@ -72,9 +85,9 @@ def install_plugin(plugin, archi): def remove_plugin(plugin, archi): with open('/var/log/robot-plugins-installation-tests.log', "a") as outfile: if archi == "deb": - outfile.write("apt -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower() + "\n") + outfile.write("apt-get -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower() + "\n") output_status = (subprocess.run( - "apt -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower(), + "apt-get -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' autoremove -y " + plugin.lower(), shell=True, check=False, stderr=subprocess.STDOUT, stdout=outfile)).returncode # -o 'Binary::apt::APT::Keep-Downloaded-Packages=1;' is an option to force apt to keep the package in # /var/cache/apt/archives, so it do not re download them for every installation. @@ -106,6 +119,10 @@ def remove_plugin(plugin, archi): error_purge = 0 nb_plugins = 0 list_plugin_error = [] + + # call apt update (or maybe dnf clean all if needed) + refresh_packet_manager(archi) + for plugin in sys.argv: print("plugin : ", plugin) nb_plugins += 1 From 073256814d085df7e2adfd9090cdd3269adf8424 Mon Sep 17 00:00:00 2001 From: May <110405507+mushroomempires@users.noreply.github.com> Date: Mon, 20 May 2024 18:01:50 +0200 Subject: [PATCH 58/63] chore(deps): absorb May-24 dependabot dependencies (#5034) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker-builder-packaging-plugins.yml | 8 ++++---- .github/workflows/docker-builder-testing-plugins.yml | 2 +- .github/workflows/perl-cpan-libraries.yml | 8 ++++---- .github/workflows/perl-filesys-smbclient.yml | 8 ++++---- .github/workflows/perl-vmware-vsphere.yml | 4 ++-- .github/workflows/plink.yml | 6 +++--- .github/workflows/plugin-delivery.yml | 2 +- .github/workflows/plugins.yml | 8 ++++---- .github/workflows/spellchecker.yml | 2 +- 9 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/docker-builder-packaging-plugins.yml b/.github/workflows/docker-builder-packaging-plugins.yml index 99cdb0da5e..948c983602 100644 --- a/.github/workflows/docker-builder-packaging-plugins.yml +++ b/.github/workflows/docker-builder-packaging-plugins.yml @@ -51,22 +51,22 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Login to Registry - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 with: registry: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }} username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - name: Login to proxy registry - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 with: registry: ${{ vars.DOCKER_PROXY_REGISTRY_URL }} username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 - - uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 + - uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 with: file: .github/docker/packaging/Dockerfile.${{ matrix.dockerfile }} context: . diff --git a/.github/workflows/docker-builder-testing-plugins.yml b/.github/workflows/docker-builder-testing-plugins.yml index 9ffc0aaf87..b3aa9f149a 100644 --- a/.github/workflows/docker-builder-testing-plugins.yml +++ b/.github/workflows/docker-builder-testing-plugins.yml @@ -61,7 +61,7 @@ jobs: username: ${{ secrets.DOCKER_REGISTRY_ID }} password: ${{ secrets.DOCKER_REGISTRY_PASSWD }} - - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 - uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0 with: diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 94ea3fa2ce..e64f1cbb30 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -414,7 +414,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 + - uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 with: name: packages-rpm-${{ matrix.distrib }} path: ./ @@ -425,7 +425,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -437,12 +437,12 @@ jobs: matrix: distrib: [bullseye, bookworm, jammy] steps: - - uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3 + - uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 with: name: packages-deb-${{ matrix.distrib }} path: ./ - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} diff --git a/.github/workflows/perl-filesys-smbclient.yml b/.github/workflows/perl-filesys-smbclient.yml index 197541af04..62875563fe 100644 --- a/.github/workflows/perl-filesys-smbclient.yml +++ b/.github/workflows/perl-filesys-smbclient.yml @@ -61,7 +61,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -92,7 +92,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -103,7 +103,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -142,7 +142,7 @@ jobs: DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make --dist ${{ matrix.distrib }} --verbose --build --version 4.0-${{ matrix.distrib }} perl-filesys-smbclient/ shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} diff --git a/.github/workflows/perl-vmware-vsphere.yml b/.github/workflows/perl-vmware-vsphere.yml index 7c284e42ec..65af62e753 100644 --- a/.github/workflows/perl-vmware-vsphere.yml +++ b/.github/workflows/perl-vmware-vsphere.yml @@ -41,7 +41,7 @@ jobs: shell: bash - name: Cache vsphere cli sources - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Import source files - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere diff --git a/.github/workflows/plink.yml b/.github/workflows/plink.yml index 1b1f64c235..6feea0c67b 100644 --- a/.github/workflows/plink.yml +++ b/.github/workflows/plink.yml @@ -55,7 +55,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -86,7 +86,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -97,7 +97,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} diff --git a/.github/workflows/plugin-delivery.yml b/.github/workflows/plugin-delivery.yml index 6966f69b86..9f80aaaf4f 100644 --- a/.github/workflows/plugin-delivery.yml +++ b/.github/workflows/plugin-delivery.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout sources uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 9a788e960b..036bddac9f 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -33,11 +33,11 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 + - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with: python-version: '3.9' - - uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1 + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 id: filter with: base: ${{ github.ref }} @@ -104,7 +104,7 @@ jobs: COMMIT=$(git log -1 HEAD --pretty=format:%h) perl .github/scripts/plugins-source.container.pl "${{ needs.get-plugins.outputs.plugins }}" "${{ needs.get-environment.outputs.version }} ($COMMIT)" - - uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -163,7 +163,7 @@ jobs: fail-on-cache-miss: true - if: ${{ matrix.distrib != 'el7' }} - uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml index 1ccb28fbff..a526a450c7 100644 --- a/.github/workflows/spellchecker.yml +++ b/.github/workflows/spellchecker.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1 + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 id: filter with: base: ${{ github.ref }} From 750f0accb99a40221214501044ec315d359f72a6 Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Fri, 24 May 2024 15:12:24 +0200 Subject: [PATCH 59/63] fix(packaging) CTOR-591 TrendMicro - Iwsva: List-mode inaccurate (#5039) --- .../pkg.json | 8 +- .../trendmicro/iwsva/snmp/mode/interfaces.pm | 180 ++++++++++++++++++ src/apps/trendmicro/iwsva/snmp/plugin.pm | 55 ++++++ tests/resources/spellcheck/stopwords.t | 2 + 4 files changed, 241 insertions(+), 4 deletions(-) create mode 100644 src/apps/trendmicro/iwsva/snmp/mode/interfaces.pm create mode 100644 src/apps/trendmicro/iwsva/snmp/plugin.pm diff --git a/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json index 6d4f3c736c..fd18e5498e 100644 --- a/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json +++ b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json @@ -1,20 +1,20 @@ { "pkg_name": "centreon-plugin-Applications-TrendMicro-Iwsva", - "pkg_summary": "Centreon Plugin", + "pkg_summary": "Centreon Plugin to monitor TrendMicro Iwsva throught SNMP", "plugin_name": "centreon_trendmicro_iwsva.pl", "files": [ "centreon/plugins/script_snmp.pm", "centreon/plugins/snmp.pm", "snmp_standard/mode/cpu.pm", "snmp_standard/mode/interfaces.pm", - "snmp_standard/mode/loadaverage.pm", "snmp_standard/mode/listinterfaces.pm", - "snmp_standard/mode/resources/", "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/loadaverage.pm", "snmp_standard/mode/memory.pm", + "snmp_standard/mode/resources/", "snmp_standard/mode/storage.pm", "snmp_standard/mode/swap.pm", "snmp_standard/mode/tcpcon.pm", - "os/linux/snmp/" + "apps/trendmicro/iwsva/snmp/" ] } diff --git a/src/apps/trendmicro/iwsva/snmp/mode/interfaces.pm b/src/apps/trendmicro/iwsva/snmp/mode/interfaces.pm new file mode 100644 index 0000000000..a49dfca059 --- /dev/null +++ b/src/apps/trendmicro/iwsva/snmp/mode/interfaces.pm @@ -0,0 +1,180 @@ +# +# 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 apps::trendmicro::iwsva::snmp::mode::interfaces; + +use base qw(snmp_standard::mode::interfaces); + +use strict; +use warnings; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + return $self; +} + +1; + +__END__ + +=head1 MODE + +Check interfaces. + +=over 8 + +=item B<--add-global> + +Check global port statistics (by default if no --add-* option is set). + +=item B<--add-status> + +Check interface status. + +=item B<--add-duplex-status> + +Check duplex status (with --warning-status and --critical-status). + +=item B<--add-traffic> + +Check interface traffic. + +=item B<--add-errors> + +Check interface errors. + +=item B<--add-cast> + +Check interface cast. + +=item B<--add-speed> + +Check interface speed. + +=item B<--add-volume> + +Check interface data volume between two checks (not supposed to be graphed, useful for BI reporting). + +=item B<--check-metrics> + +If the expression is true, metrics are checked (default: '%{opstatus} eq "up"'). + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING. +You can use the following variables: %{admstatus}, %{opstatus}, %{duplexstatus}, %{display} + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (default: '%{admstatus} eq "up" and %{opstatus} ne "up"'). +You can use the following variables: %{admstatus}, %{opstatus}, %{duplexstatus}, %{display} + +=item B<--warning-*> B<--critical-*> + +Thresholds. +Can be: 'total-port', 'total-admin-up', 'total-admin-down', 'total-oper-up', 'total-oper-down', +'in-traffic', 'out-traffic', 'in-error', 'in-discard', 'out-error', 'out-discard', +'in-ucast', 'in-bcast', 'in-mcast', 'out-ucast', 'out-bcast', 'out-mcast', +'speed' (b/s). + +=item B<--units-traffic> + +Units of thresholds for the traffic (default: 'percent_delta') ('percent_delta', 'bps', 'counter'). + +=item B<--units-errors> + +Units of thresholds for errors/discards (default: 'percent_delta') ('percent_delta', 'percent', 'delta', 'deltaps', 'counter'). + +=item B<--units-cast> + +Units of thresholds for communication types (default: 'percent_delta') ('percent_delta', 'percent', 'delta', 'deltaps', 'counter'). + +=item B<--nagvis-perfdata> + +Display traffic perfdata to be compatible with NagVis widget. + +=item B<--interface> + +Set the interface (number expected) example: 1,2,... (empty means 'check all interfaces'). + +=item B<--name> + +Allows you to define the interface (in option --interface) by name instead of OID index. The name matching mode supports regular expressions. + +=item B<--speed> + +Set interface speed for incoming/outgoing traffic (in Mb). + +=item B<--speed-in> + +Set interface speed for incoming traffic (in Mb). + +=item B<--speed-out> + +Set interface speed for outgoing traffic (in Mb). + +=item B<--map-speed-dsl> + +Get interface speed configuration for interface type 'ADSL' and 'VDSL2'. + +Syntax: --map-speed-dsl=interface-src-name,interface-dsl-name + +E.g: --map-speed-dsl=Et0.835,Et0-vdsl2 + +=item B<--force-counters64> + +Force to use 64 bits counters only. Can be used to improve performance. + +=item B<--force-counters32> + +Force to use 32 bits counters (even in SNMP version 2c and version 3). Should be used when 64 bits counters are buggy. + +=item B<--reload-cache-time> + +Time in minutes before reloading cache file (default: 180). + +=item B<--oid-filter> + +Define the OID to be used to filter interfaces (default: ifName) (values: ifDesc, ifAlias, ifName, IpAddr). + +=item B<--oid-display> + +Define the OID that will be used to name the interfaces (default: ifName) (values: ifDesc, ifAlias, ifName, IpAddr). + +=item B<--oid-extra-display> + +Add an OID to display. + +=item B<--display-transform-src> B<--display-transform-dst> + +Modify the interface name displayed by using a regular expression. + +Example: adding --display-transform-src='eth' --display-transform-dst='ens' will replace all occurrences of 'eth' with 'ens' + +=item B<--show-cache> + +Display cache interface data. + +=back + +=cut diff --git a/src/apps/trendmicro/iwsva/snmp/plugin.pm b/src/apps/trendmicro/iwsva/snmp/plugin.pm new file mode 100644 index 0000000000..929073e564 --- /dev/null +++ b/src/apps/trendmicro/iwsva/snmp/plugin.pm @@ -0,0 +1,55 @@ +# +# 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 apps::trendmicro::iwsva::snmp::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_snmp); + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'cpu' => 'snmp_standard::mode::cpu', + 'interfaces' => 'apps::trendmicro::iwsva::snmp::mode::interfaces', + 'list-interfaces' => 'snmp_standard::mode::listinterfaces', + 'list-storage' => 'snmp_standard::mode::liststorages', + 'load' => 'snmp_standard::mode::loadaverage', + 'memory' => 'snmp_standard::mode::memory', + 'storage' => 'snmp_standard::mode::storage', + 'swap' => 'snmp_standard::mode::swap', + 'tcpcon' => 'snmp_standard::mode::tcpcon' + }; + + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check TendMicro Iwsva equipments in SNMP. + +=cut diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index 6b95c44b2e..5734fa26ac 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -31,6 +31,7 @@ in-mcast in-ucast interface-dsl-name IpAddr +Iwsva license-instances-usage-prct MBean NagVis @@ -55,6 +56,7 @@ timeframe topic-messages-inflighted total-oper-down total-oper-up +TendMicro uptime VDSL2 Veeam From 9bf10812d6c17534e8da1d70831a196f0145ba60 Mon Sep 17 00:00:00 2001 From: sdepassio <114986849+sdepassio@users.noreply.github.com> Date: Fri, 24 May 2024 15:38:13 +0200 Subject: [PATCH 60/63] enh(library) Package Paws CPAN library in our repository (#5036) --- .github/workflows/perl-cpan-libraries.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index e64f1cbb30..6c560a09cf 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -77,6 +77,7 @@ jobs: "Net::SMTP_auth", "Net::Subnet", "Net::TFTP", + "Paws", "PBKDF2::Tiny", "Schedule::Cron", "Statistics::Descriptive", @@ -103,7 +104,6 @@ jobs: - rpm_dependencies: "" - rpm_provides: "" - version: "" - - use_dh_make_perl: "true" - spec_file: "" - distrib: el8 package_extension: rpm @@ -113,19 +113,14 @@ jobs: image: packaging-plugins-alma9 - name: "BSON" rpm_provides: "perl(BSON::Bytes) perl(BSON::Code) perl(BSON::DBRef) perl(BSON::OID) perl(BSON::Raw) perl(BSON::Regex) perl(BSON::Time) perl(BSON::Timestamp) perl(BSON::Types) perl(BSON)" - - name: "BSON::XS" - - name: "Convert::Binary::C" - name: "DateTime::Format::Duration::ISO8601" rpm_provides: "perl(DateTime-Format-Duration-ISO8601)" - - name: "DBD::Sybase" - name: "Device::Modbus::RTU::Client" version: "0.022" - name: "Device::Modbus::TCP::Client" version: "0.026" - name: "Exporter::Shiny" build_distribs: el8 - - name: "EV" - - name: "FFI::CheckLib" - name: "FFI::Platypus" rpm_provides: "perl(FFI::Platypus::Buffer) perl(FFI::Platypus::Memory)" - name: "Net::DHCP" @@ -133,14 +128,12 @@ jobs: - name: "Statistics::Regression" version: "0.53" - name: "UUID" - use_dh_make_perl: "false" version: "0.31" - name: "ZMQ::Constants" build_distribs: "el9" - name: "ZMQ::FFI" rpm_dependencies: "zeromq" - name: "ZMQ::LibZMQ4" - use_dh_make_perl: "false" version: "0.01" rpm_dependencies: "zeromq" @@ -250,6 +243,7 @@ jobs: "Net::FTPSSL", "Net::HTTPTunnel", "Net::SMTP_auth", + "Paws", "Statistics::Regression", "WWW::Selenium", "ZMQ::Constants", @@ -271,6 +265,8 @@ jobs: - distrib: jammy package_extension: deb image: packaging-plugins-jammy + - name: "Paws" + use_dh_make_perl: "false" - name: "Statistics::Regression" build_distribs: "bullseye" version: "0.53" From 1ebbdc524680914de01033ba32f3b8517fe53e1b Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Fri, 24 May 2024 16:23:01 +0200 Subject: [PATCH 61/63] style(plugin): adjust indentation - CTOR-586 (#5033) --- .../monitoring/loggly/restapi/custom/api.pm | 60 +++++++++---------- .../monitoring/loggly/restapi/mode/events.pm | 22 +++---- .../monitoring/loggly/restapi/mode/fields.pm | 54 ++++++++--------- src/apps/monitoring/loggly/restapi/plugin.pm | 4 +- tests/resources/spellcheck/stopwords.t | 2 + 5 files changed, 72 insertions(+), 70 deletions(-) diff --git a/src/apps/monitoring/loggly/restapi/custom/api.pm b/src/apps/monitoring/loggly/restapi/custom/api.pm index 9cd2e704c5..937ae1f675 100644 --- a/src/apps/monitoring/loggly/restapi/custom/api.pm +++ b/src/apps/monitoring/loggly/restapi/custom/api.pm @@ -29,7 +29,7 @@ use JSON::XS; sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; if (!defined($options{output})) { @@ -42,12 +42,12 @@ sub new { } if (!defined($options{noptions})) { - $options{options}->add_options(arguments => { + $options{options}->add_options(arguments => { 'hostname:s' => { name => 'hostname' }, - 'port:s' => { name => 'port'}, + 'port:s' => { name => 'port' }, 'proto:s' => { name => 'proto' }, 'api-password:s' => { name => 'api_password' }, - 'timeout:s' => { name => 'timeout', default => 30 }, + 'timeout:s' => { name => 'timeout'}, 'unknown-http-status:s' => { name => 'unknown_http_status' }, 'warning-http-status:s' => { name => 'warning_http_status' }, 'critical-http-status:s' => { name => 'critical_http_status' } @@ -57,7 +57,7 @@ sub new { $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); $self->{output} = $options{output}; - $self->{http} = centreon::plugins::http->new(%options); + $self->{http} = centreon::plugins::http->new(%options); return $self; } @@ -73,14 +73,14 @@ sub set_defaults {} sub check_options { my ($self, %options) = @_; - $self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : ''; - $self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443; - $self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https'; - $self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 30; - $self->{ssl_opt} = (defined($self->{option_results}->{ssl_opt})) ? $self->{option_results}->{ssl_opt} : undef; - $self->{api_password} = (defined($self->{option_results}->{api_password})) ? $self->{option_results}->{api_password} : ''; - $self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) ? $self->{option_results}->{unknown_http_status} : '%{http_code} < 200 or %{http_code} >= 300'; - $self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) ? $self->{option_results}->{warning_http_status} : ''; + $self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : ''; + $self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443; + $self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https'; + $self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 30; + $self->{ssl_opt} = (defined($self->{option_results}->{ssl_opt})) ? $self->{option_results}->{ssl_opt} : undef; + $self->{api_password} = (defined($self->{option_results}->{api_password})) ? $self->{option_results}->{api_password} : ''; + $self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) ? $self->{option_results}->{unknown_http_status} : '%{http_code} < 200 or %{http_code} >= 300'; + $self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) ? $self->{option_results}->{warning_http_status} : ''; $self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status})) ? $self->{option_results}->{critical_http_status} : ''; if ($self->{hostname} eq '') { @@ -99,10 +99,10 @@ sub build_options_for_httplib { my ($self, %options) = @_; $self->{option_results}->{hostname} = $self->{hostname}; - $self->{option_results}->{port} = $self->{port}; - $self->{option_results}->{proto} = $self->{proto}; - $self->{option_results}->{ssl_opt} = $self->{ssl_opt}; - $self->{option_results}->{timeout} = $self->{timeout}; + $self->{option_results}->{port} = $self->{port}; + $self->{option_results}->{proto} = $self->{proto}; + $self->{option_results}->{ssl_opt} = $self->{ssl_opt}; + $self->{option_results}->{timeout} = $self->{timeout}; } sub settings { @@ -119,9 +119,9 @@ sub request_api { $self->settings(); my $content = $self->{http}->request( - %options, - unknown_status => $self->{unknown_http_status}, - warning_status => $self->{warning_http_status}, + %options, + unknown_status => $self->{unknown_http_status}, + warning_status => $self->{warning_http_status}, critical_status => $self->{critical_http_status} ); @@ -145,8 +145,8 @@ sub internal_search { my ($self, %options) = @_; my $status = $self->request_api( - method => 'GET', - url_path => '/apiv2/search', + method => 'GET', + url_path => '/apiv2/search', get_param => [ 'size=1', 'from=-' . $options{time_period} . 'm', @@ -160,8 +160,8 @@ sub internal_events { my ($self, %options) = @_; my $status = $self->request_api( - method => 'GET', - url_path => '/apiv2/events', + method => 'GET', + url_path => '/apiv2/events', get_param => ['rsid=' . $options{id}] ); return $status; @@ -172,7 +172,7 @@ sub api_events { my $id = $self->internal_search( time_period => $options{time_period}, - query => $options{query} + query => $options{query} ); my $status = $self->internal_events(id => $id); @@ -207,8 +207,8 @@ sub internal_fields { # 300 limitation comes from the API : https://documentation.solarwinds.com/en/Success_Center/loggly/Content/admin/api-retrieving-data.htm my $status = $self->request_api( - method => 'GET', - url_path => '/apiv2/fields/' . $options{field} . '/', + method => 'GET', + url_path => '/apiv2/fields/' . $options{field} . '/', get_param => [ 'facet_size=300', 'from=-' . $options{time_period} . 'm', @@ -223,12 +223,12 @@ sub api_fields { my $status = $self->internal_fields( time_period => $options{time_period}, - field => $options{field}, - query => $options{query} + field => $options{field}, + query => $options{query} ); # Fields may be messed-up with wrongly encoded characters, let's force some cleanup - for (my $i = 0; $i < scalar(@{$status->{ $options{field} }}); $i++) { + for (my $i = 0 ; $i < scalar(@{$status->{ $options{field} }}) ; $i++) { $status->{ $options{field} }->[$i]->{term} =~ s/[\r\n]//g; $status->{ $options{field} }->[$i]->{term} =~ s/^\s+|\s+$//g; } diff --git a/src/apps/monitoring/loggly/restapi/mode/events.pm b/src/apps/monitoring/loggly/restapi/mode/events.pm index c492a87f76..beba9bdf14 100644 --- a/src/apps/monitoring/loggly/restapi/mode/events.pm +++ b/src/apps/monitoring/loggly/restapi/mode/events.pm @@ -34,19 +34,19 @@ sub set_counters { $self->{maps_counters}->{global} = [ { label => 'events', nlabel => 'events.count', set => { - key_values => [ { name => 'events' } ], - output_template => 'Matching events: %s', - perfdatas => [ - { template => '%s', value => 'events', min => 0 } - ] - } + key_values => [{ name => 'events' }], + output_template => 'Matching events: %s', + perfdatas => [ + { template => '%s', value => 'events', min => 0 } + ] + } } ]; } sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; $self->{version} = '1.0'; @@ -77,8 +77,8 @@ sub manage_selection { my ($self, %options) = @_; my $results = $options{custom}->api_events( - time_period => $self->{option_results}->{time_period}, - query => $self->{option_results}->{query}, + time_period => $self->{option_results}->{time_period}, + query => $self->{option_results}->{query}, output_field => $self->{option_results}->{output_field} ); $self->{global} = { events => $results->{total_events} }; @@ -99,11 +99,11 @@ Count events matching the query. =item B<--time-period> -Set request period, in minutes. +Set request period, in minutes (mandatory option). =item B<--query> -Set the query. +Set the query (mandatory option). =item B<--output-field> diff --git a/src/apps/monitoring/loggly/restapi/mode/fields.pm b/src/apps/monitoring/loggly/restapi/mode/fields.pm index 5e32da01dd..8cb7f84f1b 100644 --- a/src/apps/monitoring/loggly/restapi/mode/fields.pm +++ b/src/apps/monitoring/loggly/restapi/mode/fields.pm @@ -35,31 +35,31 @@ sub set_counters { $self->{maps_counters}->{global} = [ { label => 'events', nlabel => 'events.count', display_ok => 1, set => { - key_values => [ { name => 'events' } ], - output_template => 'Matching events: %s', - perfdatas => [ - { template => '%s', min => 0 } - ] - } + key_values => [{ name => 'events' }], + output_template => 'Matching events: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } }, { label => 'fields', nlabel => 'fields.count', display_ok => 1, set => { - key_values => [ { name => 'fields' } ], - output_template => 'Matching fields: %s', - perfdatas => [ - { template => '%s', min => 0 } - ] - } + key_values => [{ name => 'fields' }], + output_template => 'Matching fields: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } }, ]; $self->{maps_counters}->{field} = [ { label => 'field-events', nlabel => 'field.events.count', set => { - key_values => [ { name => 'count' }, { name => 'display' } ], - output_template => 'matching events: %s', - perfdatas => [ - { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } - ] - } + key_values => [{ name => 'count' }, { name => 'display' }], + output_template => 'matching events: %s', + perfdatas => [ + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } + ] + } } ]; } @@ -72,7 +72,7 @@ sub prefix_field_output { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; $self->{version} = '1.0'; @@ -118,8 +118,8 @@ sub manage_selection { my $results = $options{custom}->api_fields( time_period => $self->{option_results}->{time_period}, - query => $self->{option_results}->{query}, - field => $self->{option_results}->{field} + query => $self->{option_results}->{query}, + field => $self->{option_results}->{field} ); my ($events, $fields) = (0, 0); @@ -128,10 +128,10 @@ sub manage_selection { foreach (@{$results->{$self->{option_results}->{field}}}) { if (!defined($self->{option_results}->{filter_field}) || ($_->{term} =~ /$self->{option_results}->{filter_field}/i)) { $fields++; - $events += $_->{count}; + $events+= $_->{count}; $self->{field}->{$fields} = { display => $_->{term}, - count => $_->{count} + count => $_->{count} }; } } @@ -151,19 +151,19 @@ Count unique field-values from events matching the query. =item B<--time-period> -Set request period, in minutes. +Set request period, in minutes (mandatory option). =item B<--query> -Set the query. +Set the query (mandatory option). =item B<--field> -Set the field to count unique values for (example: json.host). +Set the field to count unique values for example: json.host (mandatory option). =item B<--filter-field> -Set the a field filter. +Define which fields should be counted. This option will be treated as a regular expression. If this option is empty, all fields will be counted. =item B<--warning-*> B<--critical-*> diff --git a/src/apps/monitoring/loggly/restapi/plugin.pm b/src/apps/monitoring/loggly/restapi/plugin.pm index a09a8e48cb..df7ef7ca0c 100644 --- a/src/apps/monitoring/loggly/restapi/plugin.pm +++ b/src/apps/monitoring/loggly/restapi/plugin.pm @@ -26,11 +26,11 @@ use base qw(centreon::plugins::script_custom); sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $self->{version} = '1.0'; - $self->{modes} = { + $self->{modes} = { 'events' => 'apps::monitoring::loggly::restapi::mode::events', 'fields' => 'apps::monitoring::loggly::restapi::mode::fields' }; diff --git a/tests/resources/spellcheck/stopwords.t b/tests/resources/spellcheck/stopwords.t index 5734fa26ac..a87a95d6b1 100644 --- a/tests/resources/spellcheck/stopwords.t +++ b/tests/resources/spellcheck/stopwords.t @@ -1,4 +1,5 @@ --add-sysdesc +--api-password --display-transform-dst --display-transform-src --exclude-fs @@ -33,6 +34,7 @@ interface-dsl-name IpAddr Iwsva license-instances-usage-prct +Loggly MBean NagVis Netscaler From 43bb542d267ff7d212b5e971b8c9a40a739ad47f Mon Sep 17 00:00:00 2001 From: Lucie Dubrunfaut <123162035+lucie-dubrunfaut@users.noreply.github.com> Date: Mon, 27 May 2024 16:27:23 +0200 Subject: [PATCH 62/63] fix(packaging) CTOR-591 Trendmicro IWSVA packaging (#5042) --- src/apps/trendmicro/iwsva/snmp/plugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/trendmicro/iwsva/snmp/plugin.pm b/src/apps/trendmicro/iwsva/snmp/plugin.pm index 929073e564..2e46ac9a7e 100644 --- a/src/apps/trendmicro/iwsva/snmp/plugin.pm +++ b/src/apps/trendmicro/iwsva/snmp/plugin.pm @@ -33,7 +33,7 @@ sub new { 'cpu' => 'snmp_standard::mode::cpu', 'interfaces' => 'apps::trendmicro::iwsva::snmp::mode::interfaces', 'list-interfaces' => 'snmp_standard::mode::listinterfaces', - 'list-storage' => 'snmp_standard::mode::liststorages', + 'list-storages' => 'snmp_standard::mode::liststorages', 'load' => 'snmp_standard::mode::loadaverage', 'memory' => 'snmp_standard::mode::memory', 'storage' => 'snmp_standard::mode::storage', From daa3171e2f8ea5dbf7637630073d6a34f7e6cd5a Mon Sep 17 00:00:00 2001 From: omercier Date: Tue, 28 May 2024 14:45:40 +0200 Subject: [PATCH 63/63] wip: first commit with collection test --- ...on-centreon-web-check-auth.collection.json | 61 +++++ ...protocol-http-collection-centreon-web.json | 210 ++++++++++++++++++ ...rotocol-http-collection-centreon-web.robot | 31 +++ 3 files changed, 302 insertions(+) create mode 100644 tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web-check-auth.collection.json create mode 100644 tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.json create mode 100644 tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.robot diff --git a/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web-check-auth.collection.json b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web-check-auth.collection.json new file mode 100644 index 0000000000..bb80be606d --- /dev/null +++ b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web-check-auth.collection.json @@ -0,0 +1,61 @@ +{ + "constants": { + "protocol": "https", + "port": "443", + "customPath": "centreon" + }, + "http": { + "requests": [ + { + "name": "authenticationRequest", + "hostname": "%(constants.hostname)", + "proto": "%(constants.protocol)", + "port": "%(constants.port)", + "endpoint": "/%(constants.customPath)/api/latest/login", + "method": "POST", + "headers": [ + "Accept:application/json", + "Content-Type:application/json" + ], + "timeout": 30, + "payload": { + "type": "json", + "value": { + "security": { + "credentials": { + "login": "%(constants.username)", + "password": "%(constants.password)" + } + } + } + }, + "backend": "curl", + "rtype": "json", + "parse": [ + { + "name": "token", + "path": "$.security.token", + "entries": [ + { + "id": "value" + } + ] + } + ] + } + ] + }, + "selection": [ + { + "name": "authenticationSelection", + "critical": "defined(%(builtin.httpCode.authenticationRequest)) and %(builtin.httpCode.authenticationRequest) != 200", + "formatting": { + "printf_msg": "Authentication resulted in %s HTTP code", + "printf_var": [ + "%(builtin.httpCode.authenticationRequest)" + ], + "display_ok": true + } + } + ] +} diff --git a/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.json b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.json new file mode 100644 index 0000000000..fd61090810 --- /dev/null +++ b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.json @@ -0,0 +1,210 @@ +{ + "uuid": "919382d8-0f30-447f-abcd-45c98e84d7fe", + "lastMigration": 32, + "name": "Centreon web mock for tests of HTTP Collections", + "endpointPrefix": "", + "latency": 0, + "port": 3001, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "82abcb5a-0a65-409f-badd-5e881b6786df", + "type": "http", + "documentation": "Authentication request", + "method": "post", + "endpoint": "centreon/api/latest/login", + "responses": [ + { + "uuid": "b4229c90-76b3-4f8c-be0f-aceeb5566051", + "body": "{}", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "content-type", + "value": "application/json; charset=utf-8" + }, + { + "key": "content-length", + "value": "2" + } + ], + "bodyType": "DATABUCKET", + "filePath": "", + "databucketID": "0ibb", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "d67aa94e-09c5-434d-b00a-e9e147e90220", + "type": "http", + "documentation": "Monitoring of hosts, used to look for down hosts", + "method": "get", + "endpoint": "centreon/api/latest/monitoring/hosts", + "responses": [ + { + "uuid": "c98ea5bd-143b-414e-ae28-d094e7059682", + "body": "", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "content-security-policy", + "value": "default-src 'none'" + }, + { + "key": "content-type", + "value": "text/html; charset=utf-8" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ], + "bodyType": "DATABUCKET", + "filePath": "", + "databucketID": "fdau", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "9622753c-4c89-4f37-aa27-6088a4c5557a", + "type": "http", + "documentation": "Monitoring of resources, used to look for broken commands", + "method": "get", + "endpoint": "centreon/api/latest/monitoring/resources", + "responses": [ + { + "uuid": "1d5391f0-9edc-4b84-b9ed-b78524ae1782", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "content-security-policy", + "value": "default-src 'none'" + }, + { + "key": "content-type", + "value": "text/html; charset=utf-8" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ], + "bodyType": "DATABUCKET", + "filePath": "", + "databucketID": "tpm8", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [], + "body": "{}" + } + ], + "responseMode": null + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "82abcb5a-0a65-409f-badd-5e881b6786df" + }, + { + "type": "route", + "uuid": "d67aa94e-09c5-434d-b00a-e9e147e90220" + }, + { + "type": "route", + "uuid": "9622753c-4c89-4f37-aa27-6088a4c5557a" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [ + { + "uuid": "497b64fa-7c29-4741-8c57-c818aafc9482", + "id": "fdcz", + "name": "Authentication payload", + "documentation": "Authentication payload", + "value": "{\"security\":{\"credentials\":{\"password\":\"***\",\"login\":\"admin\"}}}" + }, + { + "uuid": "e9b76766-90a5-496e-8102-3941d22feb32", + "id": "0ibb", + "name": "Authentication response", + "documentation": "Authentication response", + "value": "{\n \"security\" : {\n \"token\" : \"Vj77k9p53L+FTXon1UDvaYBZU8P3MnUK2siU7mst3HJ1QcnjTDWVW6TX3RlccjpV\"\n },\n \"contact\" : {\n \"name\" : \"Administrateur_Centreon\",\n \"is_admin\" : true,\n \"email\" : \"null@localhost.local\",\n \"alias\" : \"admin\",\n \"id\" : 1\n }\n}" + }, + { + "uuid": "18e9cb4a-d822-44cd-b6a3-83dbead20130", + "id": "fdau", + "name": "Monitoring/hosts response", + "documentation": "Monitoring/hosts response to count down hosts", + "value": "{\n \"meta\": {\n \"search\": {},\n \"total\": 1,\n \"limit\": 1000,\n \"sort_by\": {},\n \"page\": 1\n },\n \"result\": [\n {\n \"passive_checks\": false,\n \"timezone\": \"\",\n \"last_check\": \"2023-11-21T21:21:14+01:00\",\n \"checked\": true,\n \"state\": 0,\n \"last_time_up\": \"2023-11-21T21:21:18+01:00\",\n \"icon_image\": \"ppm/applications-monitoring-centreon-central-centreon-128-2.png\",\n \"icon_image_alt\": \"\",\n \"state_type\": 1,\n \"address_ip\": \"127.0.0.1\",\n \"criticality\": null,\n \"last_time_down\": null,\n \"scheduled_downtime_depth\": 0,\n \"name\": \"CENTREON\",\n \"last_time_unreachable\": null,\n \"alias\": \"Centreon Central Server\",\n \"poller_id\": 1,\n \"last_hard_state_change\": \"2023-09-07T20:03:53+02:00\",\n \"execution_time\": 0.112673,\n \"last_state_change\": \"2023-09-07T20:03:53+02:00\",\n \"output\": \"OK - 127.0.0.1 rta 0.079ms lost 0%\\n\",\n \"id\": 13,\n \"max_check_attempts\": 3,\n \"last_update\": \"2023-11-21T08:57:13+01:00\",\n \"acknowledged\": false,\n \"display_name\": \"CENTREON\",\n \"check_attempt\": 1\n }\n ]\n}" + }, + { + "uuid": "0fcda655-3209-4726-8ab2-18f93666b57c", + "id": "tpm8", + "name": "Monitoring/resources response", + "documentation": "Monitoring/resources response to check errors in commands", + "value": "{\n \"meta\" : {\n \"page\" : 1,\n \"sort_by\" : {},\n \"search\" : {\n \"$and\" : {\n \"information\" : {\n \"$eq\" : \"(Execute command failed)\"\n }\n }\n },\n \"limit\" : 1000,\n \"total\" : 1\n },\n \"result\" : [\n {\n \"uuid\" : \"h254-s1616\",\n \"host_id\" : 254,\n \"monitoring_server_name\" : \"Central\",\n \"status\" : {\n \"name\" : \"UNKNOWN\",\n \"code\" : 3,\n \"severity_code\" : 3\n },\n \"icon\" : null,\n \"alias\" : null,\n \"last_status_change\" : \"2023-11-22T11:55:30+01:00\",\n \"short_type\" : \"s\",\n \"name\" : \"Svc-BadCommand\",\n \"last_check\" : \"1m 2s\",\n \"duration\" : \"4h 28m\",\n \"acknowledged\" : false,\n \"in_downtime\" : false,\n \"chart_url\" : null,\n \"tries\" : \"1/3 (H)\",\n \"information\" : \"(Execute command failed)\",\n \"performance_data\" : null,\n \"parent\" : {\n \"status\" : {\n \"severity_code\" : 1,\n \"name\" : \"DOWN\",\n \"code\" : 1\n },\n \"host_id\" : null,\n \"uuid\" : \"h254\",\n \"alias\" : \"Down\",\n \"icon\" : null,\n \"links\" : {\n \"externals\" : {\n \"action_url\" : null,\n \"notes\" : null\n },\n \"uris\" : {\n \"configuration\" : null,\n \"reporting\" : null,\n \"logs\" : null\n },\n \"endpoints\" : {}\n },\n \"id\" : 254,\n \"fqdn\" : \"1.2.3.4\",\n \"name\" : \"FakeHostThatIsDown\",\n \"type\" : \"host\",\n \"short_type\" : \"h\",\n \"service_id\" : null\n },\n \"links\" : {\n \"externals\" : {\n \"action_url\" : \"\",\n \"notes\" : {\n \"url\" : \"\",\n \"label\" : \"\"\n }\n },\n \"uris\" : {\n \"logs\" : \"/centreon/main.php?p=20301&svc=254_1616\",\n \"configuration\" : \"/centreon/main.php?p=60201&o=c&service_id=1616\",\n \"reporting\" : \"/centreon/main.php?p=30702&period=yesterday&start=&end=&host_id=254&item=1616\"\n },\n \"endpoints\" : {\n \"check\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/check\",\n \"acknowledgement\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/acknowledgements?limit=1\",\n \"timeline\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/timeline\",\n \"performance_graph\" : null,\n \"downtime\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/downtimes?search=%7B%22%24and%22:%5B%7B%22start_time%22:%7B%22%24lt%22:1700666614%7D,%22end_time%22:%7B%22%24gt%22:1700666614%7D,%220%22:%7B%22%24or%22:%7B%22is_cancelled%22:%7B%22%24neq%22:1%7D,%22deletion_time%22:%7B%22%24gt%22:1700666614%7D%7D%7D%7D%5D%7D\",\n \"forced_check\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/check\",\n \"status_graph\" : \"/centreon/api/latest/monitoring/hosts/254/services/1616/metrics/status\",\n \"details\" : \"/centreon/api/latest/monitoring/resources/hosts/254/services/1616\"\n }\n },\n \"passive_checks\" : false,\n \"notification_enabled\" : false,\n \"service_id\" : 1616,\n \"type\" : \"service\",\n \"severity\" : null,\n \"fqdn\" : null,\n \"active_checks\" : true,\n \"id\" : 1616\n }\n ]\n}" + } + ], + "callbacks": [] +} \ No newline at end of file diff --git a/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.robot b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.robot new file mode 100644 index 0000000000..e1b7559db5 --- /dev/null +++ b/tests/robot/apps/protocols/http/apps-protocol-http-collection-centreon-web.robot @@ -0,0 +1,31 @@ +*** Settings *** +Documentation datacore rest api plugin + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}apps-protocol-http-collection-centreon-web.mockoon.json + +${CMD} ${CENTREON_PLUGINS} --plugin apps::protocols::http::plugin --mode collection +... --constant='hostname=127.0.0.1' --constant='protocol=http' --constant='port=3001' +... --constant='username=admin' --constant='password=myPassword' + + +*** Test Cases *** +Test if ${test_desc} + [Tags] Centreon Collections HTTP + ${output} Run + ... ${CMD} --config=${CURDIR}/${collection} + ${output} Strip String ${output} + Should Be Equal As Strings + ... ${output} + ... ${expected} + ... Wrong output result:\n\n ${output}\nInstead of:\n ${expected}\n\n + + Examples: test_desc collection expected -- + ... authentication succeeds check_auth.json OK: Authentication resulted in 200 HTTP code