FortiPAM
FortiPAM allows you to protect, isolate and secure privileged account credentials, manage and control privileged user access, and monitor and record privileged account activity.
kcheng
Staff & Editor
Staff & Editor
Article Id 385886
Description This article describes the steps to create an email notification when FortiPAM fails to back up the video session to the remote SFTP Server.
Scope FortiPAM.
Solution

To receive an email notification when FortiPAM fails to backup video session to a remote SFTP server, the following needs to be issued in the CLI:

 

config system automation-action
    edit "action-failed-backup-to-remote"
        set action-type email
        set email-to "abc@gmail.com" <----- Replace this with the email address that should receive the email.
        set email-subject "Failed to backup videos to remote server"
    next
end
 
config system automation-trigger
    edit "trigger-failed-backup-to-remote"
        set event-type event-log
        set category 1
        set logid 20251
    next
end
 
config system automation-stitch
    edit "Failed-backup-videos-to-remote"
        set trigger "trigger-failed-backup-to-remote"
        config actions
            edit 1
                set action "action-failed-backup-to-remote"
                set required enable
            next
        end
    next
end

 

When FortiGate fails to back up the video session to the remote SFTP server, an event with log ID '010002025' will be generated.

Contributors