#401 add DLink layers always 2+3

This commit is contained in:
Oliver Gorwits
2021-10-07 12:01:02 +01:00
parent bce84023ca
commit 0e75c44cb8
2 changed files with 25 additions and 1 deletions

View File

@@ -74,6 +74,16 @@ $VERSION = '3.80';
%MUNGE = ( %SNMP::Info::Layer3::MUNGE, );
sub layers {
my $dlink = shift;
my $layers = $dlink->SUPER::layers();
substr $layers, 5, 1, "1";
substr $layers, 6, 1, "1";
return $layers;
}
sub model {
my $dlink=shift;
my $id = $dlink->id();
@@ -233,6 +243,10 @@ These are methods that return scalar value from SNMP
=over
=item $dlink->layers()
Makes sure to always report layer 2 and 3.
=item $dlink->model()
Returns the ID or else description.