1
21.1 Legacy Series / Re: list_arp.py json high cpu usage
« on: February 12, 2021, 04:33:54 pm »
I've taken a look in the list_arp.py file and found the following area being the cause of the high cpu usage:
try:
record['manufacturer'] = manufacturer_mac.oui.registration().org
except netaddr.NotRegisteredError:
pass
Specifically the call to .registration()
What I don't know is why this is now appearing as a problem or how it should be solved. I've commented those lines out for the time being and it prevents the periodic high CPU usage.
try:
record['manufacturer'] = manufacturer_mac.oui.registration().org
except netaddr.NotRegisteredError:
pass
Specifically the call to .registration()
What I don't know is why this is now appearing as a problem or how it should be solved. I've commented those lines out for the time being and it prevents the periodic high CPU usage.