Merge branch 'ent-6468-fallo-plantillas-automaticas-discovery' into 'develop'

OID naming compatibility when starts with "." or not

See merge request artica/pandorafms!3522
This commit is contained in:
Daniel Rodriguez 2020-10-13 15:48:59 +02:00
commit 1134113cf3
1 changed files with 2 additions and 2 deletions

View File

@ -2144,7 +2144,7 @@ sub snmp_get_value($$$) {
foreach my $line (@output) {
$line =~ s/[\r\n]//g;
return $1 if ($line =~ /^$effective_oid\s+=\s+\S+:\s+(.*)/);
return $1 if ($line =~ /^\.{0,1}$effective_oid\s+=\s+\S+:\s+(.*)/);
}
return undef;
@ -2160,7 +2160,7 @@ sub snmp_get_value_array($$$) {
my @output = $self->snmp_get($device, $oid);
foreach my $line (@output) {
chomp($line);
push(@values, $1) if ($line =~ /^$oid\S*\s+=\s+\S+:\s+(.*)$/);
push(@values, $1) if ($line =~ /^\.{0,1}$oid\S*\s+=\s+\S+:\s+(.*)$/);
}
return @values;