Closed kengu closed 9 months ago
Problem Vendor information is always null, even for known mac-address ranges.
Analysis Keys in mac-vendors-export.csv are semicolon-separated in upper case.
On line 20 in VendorTable the first three mac address parts is joined without upper case.
Resolution Add .toUpperCase()to arpData.macAddress.split(pattern).sublist(0, 3).join()on line 20
.toUpperCase()
arpData.macAddress.split(pattern).sublist(0, 3).join()
Nice catch
Closing, will be merged in the new version.
Thanks
Problem Vendor information is always null, even for known mac-address ranges.
Analysis Keys in mac-vendors-export.csv are semicolon-separated in upper case.
On line 20 in VendorTable the first three mac address parts is joined without upper case.
Resolution Add
.toUpperCase()
toarpData.macAddress.split(pattern).sublist(0, 3).join()
on line 20