mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-14 07:48:24 +00:00
Fix IP reassociation alert with broadcast MAC
This commit is contained in:
parent
249f07105b
commit
26fabc78f9
1 changed files with 1 additions and 1 deletions
|
|
@ -6529,7 +6529,7 @@ void NetworkInterface::checkMacIPAssociation(bool triggerEvent, u_char *_mac, u_
|
|||
|
||||
u_int64_t mac = Utils::mac2int(_mac);
|
||||
|
||||
if((ipv4 != 0) && (mac != 0)) {
|
||||
if((ipv4 != 0) && (mac != 0) && (mac != 0xFFFFFFFFFFFF)) {
|
||||
std::map<u_int32_t, u_int64_t>::iterator it;
|
||||
|
||||
if(!triggerEvent)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue