Description | This article describes that if the WAN connection is metered (charged per GB), disabling it after business hours can avoid unnecessary data consumption. |
Scope | FortiGate. |
Solution |
To reduce data usage, The FortiGate can be configured to disable the interface automatically after business hours using an automation stitch.
Use an Automation Script to Disable the Interface.
Create an Automation Stitch:
Add an Action to Disable the Interface:
config system automation-stitch edit "Disable_Interface" set trigger "After_Hour" config actions edit 1 set action "Disable Interface" set required enable next end next end
config system automation-action edit "Disable Interface" set action-type cli-script set script "config system interface edit wan set status down next end" set accprofile "super_admin" next end
config system automation-trigger edit "After_Hour" set trigger-type scheduled set trigger-hour 5 next end
Related article: Technical Tip: Automation Stitch to shutdown wan interface if SLA fails
|