Mute MAC Address changed on VENET interface

Started by name29, December 13, 2015, 03:45:15 PM

Previous topic - Next topic

name29

Dear All,

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



tomaskir

#1
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.

name29

Thank you.

I have selected event INVALID_NETMASK and not SYS_MAC_ADDR_CHANGED.... i don't know why lol

name29

Also with correct configuration problem is showed in alarm log and try tooltip =(

tomaskir

Sorry, error in script.

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