NetXMS Support Forum

English Support => General Support => Topic started by: name29 on December 13, 2015, 03:45:15 PM

Title: Mute MAC Address changed on VENET interface
Post by: name29 on December 13, 2015, 03:45:15 PM
Dear All,

It's possibile to mute the mac address changed event over venet interface?


Title: Re: Mute MAC Address changed on VENET interface
Post by: tomaskir on December 13, 2015, 08:36:32 PM
You can create an EPP (Event processing policy) rule to do this.

Simply create a new EPP all the way at the top.
Set "Source Objects" to appropriate node, and set "Event" to "SYS_MAC_ADDR_CHANGED".

You can then specify the interface with the following script:

if ($event->parameters[3] ~= "interface_name_reg_ex")
  return true;

return false;


In action, do "Stop event processing".

And done, these events will not generate alarms from now on.
Title: Re: Mute MAC Address changed on VENET interface
Post by: name29 on December 13, 2015, 10:06:47 PM
Thank you.

I have selected event INVALID_NETMASK and not SYS_MAC_ADDR_CHANGED.... i don't know why lol
Title: Re: Mute MAC Address changed on VENET interface
Post by: name29 on December 15, 2015, 05:25:41 PM
Also with correct configuration problem is showed in alarm log and try tooltip =(
Title: Re: Mute MAC Address changed on VENET interface
Post by: tomaskir on December 16, 2015, 11:50:12 PM
Sorry, error in script.

I edited the original script, please try with the updated one :)