FortiGate
FortiGate Next Generation Firewall utilizes purpose-built security processors and threat intelligence security services from FortiGuard labs to deliver top-rated protection and high performance, including encrypted traffic.
jhelder
Staff
Staff
Article Id 264188
Description This article describes how to create an automation stitch to be notified via email when a new Fortios is available for download.
Scope FortiGate v7.0.x, v7.2.x and v7.4.x.
Solution

To set up automated notifications for new firmware availability in FortiOS 7.2.x (or any other FortiOS version), follow these steps:

 

  1. Navigate to Security Fabric, then select Automation. From there, select 'Create a New' to begin configuring the automation stitch.
  2. Define a name for the automation stitch and select 'Add Trigger'.
  3. In the 'Add Trigger' window, choose 'FortiOS Event Log' and give it a name. Select the event 'New firmware available on FortiGuard'.

 

new-fortios1.PNG

 

  1. Next, select the desired action. For this example, choose 'Email' and define the message that will be sent. Do not forget to input the email address.

new-fortios2.PNG

 

  1. After completing the above steps, the automation stitch should be fully configured and ready to go.

 

new-fortios3.PNG

 

CLI:

 

config system automation-trigger

    edit "New Fortios Available"

        set event-type event-log

        set logid 32103

    next

end

 

config system automation-action

    edit "Email_Notification"

        set action-type email

        set email-to "my_company_email@gmail.com"

        set email-subject "%%log.logdesc%%"

    next

end

 

config system automation-stitch

    edit "Fortios"

        set trigger "New Fortios Available"

        config actions

            edit 1

                set action "Email_Notification"

                set required enable

            next

        end

    next

end