diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-07-28 17:17:46 (GMT) |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-07-28 17:17:46 (GMT) |
commit | 67088216abd866cc28dc438af1e89ca9de60c48d (patch) | |
tree | 17705ecdbf22cc15d7c7b03a9e4ae1e896396b83 /plugins-scripts/check_ifoperstatus.pl | |
parent | de5503063e4ea455a7a0a57afcc467a2041c859f (diff) | |
parent | 5a2400cc2a9e76787320632ea402f6d8378d5124 (diff) | |
download | monitoring-plugins-67088216abd866cc28dc438af1e89ca9de60c48d.tar.gz |
Merge branch 'master' into feature_check_curlrefs/pull/1700/head
Diffstat (limited to 'plugins-scripts/check_ifoperstatus.pl')
-rwxr-xr-x | plugins-scripts/check_ifoperstatus.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_ifoperstatus.pl b/plugins-scripts/check_ifoperstatus.pl index 9ede163..c190ce9 100755 --- a/plugins-scripts/check_ifoperstatus.pl +++ b/plugins-scripts/check_ifoperstatus.pl | |||
@@ -124,10 +124,10 @@ if (!defined($session)) { | |||
124 | ## map ifdescr to ifindex - should look at being able to cache this value | 124 | ## map ifdescr to ifindex - should look at being able to cache this value |
125 | 125 | ||
126 | if (defined $ifdescr || defined $iftype) { | 126 | if (defined $ifdescr || defined $iftype) { |
127 | # escape "/" in ifdescr - very common in the Cisco world | ||
128 | if (defined $iftype) { | 127 | if (defined $iftype) { |
129 | $status=fetch_ifindex($snmpIfType, $iftype); | 128 | $status=fetch_ifindex($snmpIfType, $iftype); |
130 | } else { | 129 | } else { |
130 | # escape "/" in ifdescr - very common in the Cisco world | ||
131 | $ifdescr =~ s/\//\\\//g; | 131 | $ifdescr =~ s/\//\\\//g; |
132 | $status=fetch_ifindex($snmpIfDescr, $ifdescr); # if using on device with large number of interfaces | 132 | $status=fetch_ifindex($snmpIfDescr, $ifdescr); # if using on device with large number of interfaces |
133 | # recommend use of SNMP v2 (get-bulk) | 133 | # recommend use of SNMP v2 (get-bulk) |