master
Harald Wolff 2019-03-29 08:55:13 +01:00
parent 8d81cf2322
commit b8d1ef49b4
3 changed files with 5347 additions and 1 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -36,7 +36,7 @@ namespace ln.snmp.rfc1213
Interface intf = new Interface();
intf.Name = (row[0].Items[1] as OctetString).StringValue;
intf.HWAddr = BitConverter.ToString((row[1].Items[1] as OctetString).Bytes);
intf.HWAddr = BitConverter.ToString((row[1].Items[1] as OctetString).Bytes); // ToDo: Identify NULL Ref Exception thrown by this line!
interfaces.Add(index.OIDValue[0],intf);
}