Skip to main content
Slavko_Zamuda_FTNT
Staff
Staff
May 15, 2015

Technical Note: Configuring LACP on FortiCache

  • May 15, 2015
  • 0 replies
  • 1977 views

Description

This article describes how LACP should be configured on FortiCache.


Scope

All FortiCache devices.


Solution

When configuring LACP, it is mandatory to first put physical interfaces that will be part of Aggregate interface manually  administratively down.

After that create the Aggregate interface.

Physical interfaces need to stay administratively down.

config system interface
    edit "port1"
        set status down
    next
    edit "port2"
        set status down
    next
end
config system interface
    edit "test_LACP"
        set ip 192.168.1.1 255.255.255.0
        set allowaccess ping https ssh http
        set type aggregate
        set member "port1" "port2"
    next
end