Issues with automation triggers running both interface down and up at the same time
Has anyone ever had issues with the automation triggers being duplicated? For example I have two triggers, interface down, and interface up, connected to two different stitches. Whenever I down an interface to test, it runs both the interface down, and the interface up automations. I contacted support about this previously and they just had me shut off the automation then start it again, it didn't do it again immediately so they considered it solved.
config system automation-trigger
edit "Network Down"
set description "Default automation trigger configuration for when a network connection goes down."
set event-type event-log
set logid 20099
config fields
edit 1
set name "status"
set value "DOWN"
next
edit "Network Up"
set event-type event-log
set logid 20099
config fields
edit 1
set name "status"
set value "UP"
next
end
edit "ALARM - Interface Down"
set trigger "Network Down"
config actions
edit 2
set action "Default Email"
set required enable
next
edit 3
set action "Send INTF Alarm Test"
set delay 15
set required enable
next
end
next
edit "ALARM - Interface Up"
set trigger "Network Up"
config actions
edit 2
set action "Default Email"
set required enable
next
edit 3
set action "CLEAR INTF Alarm"
set delay 15
set required enable
next
end
next
