check_nwc_health icon indicating copy to clipboard operation
check_nwc_health copied to clipboard

Cisco WLC 6500 Wism PowerSupply skip

Open dcec opened this issue 4 years ago • 0 comments

Hi Teams,

I have encountered a problem with the PowerSupply on Cisco WLC on 6500 Wism module, if i add the blacklist before PowerSupply all working fine. Is correct this change?

Thanks

#skip PowerSupply for wism models my $model = $self->get_snmp_object('ENTITY-MIB', 'entPhysicalModelName', 1); if ($model && $model =~ /WISM/i) { $self->blacklist(); }

end skip

if ($self->{ps1_present} eq "true") { if ($self->{ps1_operational} ne "true") { $self->add_warning("Powersupply 1 is not operational"); } } if ($self->{ps2_present} eq "true") { if ($self->{ps2_operational} ne "true") { $self->add_warning("Powersupply 2 is not operational"); }

dcec avatar Apr 06 '20 15:04 dcec