# # Copyright 2019 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 snmp_standard::mode::listspanningtrees; use base qw(centreon::plugins::mode); use strict; use warnings; sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $options{options}->add_options(arguments => { "filter-port:s" => { name => 'filter_port' }, }); $self->{spanningtrees} = {}; return $self; } sub check_options { my ($self, %options) = @_; $self->SUPER::init(%options); } my %mapping_state = ( 1 => 'disabled', 2 => 'blocking', 3 => 'listening', 4 => 'learning', 5 => 'forwarding', 6 => 'broken', 10 => 'not defined', ); my %mapping_status = ( 1 => 'enabled', 2 => 'disabled', ); my $mapping = { dot1dStpPortState => { oid => '.1.3.6.1.2.1.17.2.15.1.3', map => \%mapping_state }, dot1dStpPortEnable => { oid => '.1.3.6.1.2.1.17.2.15.1.4', map => \%mapping_status }, }; my $oid_dot1dStpPortEntry = '.1.3.6.1.2.1.17.2.15.1'; my $oid_dot1dBasePortIfIndex = '.1.3.6.1.2.1.17.1.4.1.2'; my %mapping_if_status = ( 1 => 'up', 2 => 'down', 3 => 'testing', 4 => 'unknown', 5 => 'dormant', 6 => 'notPresent', 7 => 'lowerLayerDown', ); my $oid_ifDesc = '.1.3.6.1.2.1.2.2.1.2'; my $oid_ifAdminStatus = '.1.3.6.1.2.1.2.2.1.7'; my $oid_ifOpStatus = '.1.3.6.1.2.1.2.2.1.8'; sub manage_selection { my ($self, %options) = @_; my $results = $options{snmp}->get_table(oid => $oid_dot1dStpPortEntry, start => $mapping->{dot1dStpPortState}->{oid}, end => $mapping->{dot1dStpPortEnable}->{oid}, nothing_quit => 1); my @instances = (); foreach my $oid (keys %{$results}) { next if ($oid !~ /^$mapping->{dot1dStpPortState}->{oid}\.(.*)/); my $instance = $1; my $map_result = $options{snmp}->map_instance(mapping => $mapping, results => $results, instance => $instance); if ($map_result->{dot1dStpPortEnable} =~ /disabled/) { $self->{output}->output_add(long_msg => sprintf("Skipping interface '%d': Stp port disabled", $instance), debug => 1); next; } push @instances, $instance; } $options{snmp}->load(oids => [ $oid_dot1dBasePortIfIndex ], instances => [ @instances ]); my $result = $options{snmp}->get_leef(nothing_quit => 1); foreach my $oid (keys %{$result}) { next if ($oid !~ /^$oid_dot1dBasePortIfIndex\./ || !defined($result->{$oid})); $options{snmp}->load(oids => [ $oid_ifDesc . "." . $result->{$oid}, $oid_ifAdminStatus . "." . $result->{$oid}, $oid_ifOpStatus . "." . $result->{$oid} ]); } my $result_if = $options{snmp}->get_leef(); foreach my $instance (@instances) { my $map_result = $options{snmp}->map_instance(mapping => $mapping, results => $results, instance => $instance); my $state = (defined($map_result->{dot1dStpPortState})) ? $map_result->{dot1dStpPortState} : 'not defined'; my $description = (defined($result->{$oid_dot1dBasePortIfIndex . '.' . $instance}) && defined($result_if->{$oid_ifDesc . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}})) ? $result_if->{$oid_ifDesc . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}} : 'unknown'; my $admin_status = (defined($result->{$oid_dot1dBasePortIfIndex . '.' . $instance}) && defined($result_if->{$oid_ifAdminStatus . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}})) ? $result_if->{$oid_ifAdminStatus . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}} : 'unknown'; my $op_status = (defined($result->{$oid_dot1dBasePortIfIndex . '.' . $instance}) && defined($result_if->{$oid_ifOpStatus . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}})) ? $result_if->{$oid_ifOpStatus . '.' . $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}} : 'unknown'; if (defined($self->{option_results}->{filter_port}) && $self->{option_results}->{filter_port} ne '' && $description !~ /$self->{option_results}->{filter_port}/) { $self->{output}->output_add(long_msg => sprintf("Skipping interface '%s': filtered with options", $description), debug => 1); next; } $self->{spanningtrees}->{$result->{$oid_dot1dBasePortIfIndex . '.' . $instance}} = { state => $state, admin_status => $mapping_if_status{$admin_status}, op_status => $mapping_if_status{$op_status}, index => $result->{$oid_dot1dBasePortIfIndex . '.' . $instance}, description => $description }; } } sub run { my ($self, %options) = @_; $self->manage_selection(%options); foreach my $instance (sort keys %{$self->{spanningtrees}}) { $self->{output}->output_add(long_msg => sprintf("[port = %s] [state = %s] [op_status = %s] [admin_status = %s] [index = %s]", $self->{spanningtrees}->{$instance}->{description}, $self->{spanningtrees}->{$instance}->{state}, $self->{spanningtrees}->{$instance}->{op_status}, $self->{spanningtrees}->{$instance}->{admin_status}, $self->{spanningtrees}->{$instance}->{index})); } $self->{output}->output_add(severity => 'OK', short_msg => 'List ports with Spanning Tree Protocol:'); $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 => ['port', 'state', 'op_status', 'admin_status', 'index']); } sub disco_show { my ($self, %options) = @_; $self->manage_selection(%options); foreach my $instance (sort keys %{$self->{spanningtrees}}) { $self->{output}->add_disco_entry( port => $self->{spanningtrees}->{$instance}->{description}, state => $self->{spanningtrees}->{$instance}->{state}, op_status => $self->{spanningtrees}->{$instance}->{op_status}, admin_status => $self->{spanningtrees}->{$instance}->{admin_status}, index => $self->{spanningtrees}->{$instance}->{index} ); } } 1; __END__ =head1 MODE List ports using Spanning Tree Protocol. =over 8 =item B<--filter-port> Filter by port description (can be a regexp). =back =cut