diff options
-rwxr-xr-x | plugins-scripts/check_ifstatus.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_ifstatus.pl b/plugins-scripts/check_ifstatus.pl index 9aa2515..6ec71d1 100755 --- a/plugins-scripts/check_ifstatus.pl +++ b/plugins-scripts/check_ifstatus.pl | |||
@@ -176,7 +176,7 @@ foreach $key (keys %ifStatus) { | |||
176 | # skip unused interfaces | 176 | # skip unused interfaces |
177 | my $ifName = $ifStatus{$key}{$snmpIfDescr}; | 177 | my $ifName = $ifStatus{$key}{$snmpIfDescr}; |
178 | 178 | ||
179 | if (!defined($ifStatus{$key}{'notInUse'}) || !grep(/^${ifName}/, @unused_ports )) { | 179 | if (!defined($ifStatus{$key}{'notInUse'}) && !grep(/^${ifName}/, @unused_ports )) { |
180 | # check only if interface is administratively up | 180 | # check only if interface is administratively up |
181 | if ($ifStatus{$key}{$snmpIfAdminStatus} == 1 ) { | 181 | if ($ifStatus{$key}{$snmpIfAdminStatus} == 1 ) { |
182 | #check only if interface is not excluded | 182 | #check only if interface is not excluded |