#325 lazy load legacy RFC1213-MIB only if needed
This commit is contained in:
@@ -3367,7 +3367,7 @@ $info->init() will throw an exception if a MIB does not load.
|
|||||||
# been overridden during the compliation of the local Net-SNMP library.
|
# been overridden during the compliation of the local Net-SNMP library.
|
||||||
# These cover the globals and funcs defined in this file.
|
# These cover the globals and funcs defined in this file.
|
||||||
'SNMPv2-MIB' => 'sysObjectID',
|
'SNMPv2-MIB' => 'sysObjectID',
|
||||||
'RFC1213-MIB' => 'ipRouteIfIndex',
|
# (#325) 'RFC1213-MIB' => 'ipRouteIfIndex',
|
||||||
'IP-MIB' => 'ipAdEntAddr',
|
'IP-MIB' => 'ipAdEntAddr',
|
||||||
'IF-MIB' => 'ifIndex',
|
'IF-MIB' => 'ifIndex',
|
||||||
);
|
);
|
||||||
@@ -4835,6 +4835,11 @@ sub _validate_autoload_method {
|
|||||||
return [1,(exists $self->{store}->{$method} ? 1: 0)];
|
return [1,(exists $self->{store}->{$method} ? 1: 0)];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# (#325) lazy load legacy RFC1213-MIB only if needed
|
||||||
|
SNMP::loadModules('RFC1213-MIB')
|
||||||
|
if $leaf_name =~ m/^(?:RFC1213-MIB::|ipr_|ipRoute)/
|
||||||
|
and not SNMP::translateObj($leaf_name);
|
||||||
|
|
||||||
# Translate MIB leaf node name to OID
|
# Translate MIB leaf node name to OID
|
||||||
my $oid = SNMP::translateObj($leaf_name);
|
my $oid = SNMP::translateObj($leaf_name);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user