Creating Trunk and Access Ports in Transparent Mode
All,
I'd like to share my quick guide on creating trunk and access ports in transparent mode using a single virtual domain (VDOM). I'm a FortiOS newbie but I think this is a working solution for those that are interested.
Some key pointers:
[ul]Here is an example of this on an FG-140D, with ports 1-20 on VLAN 10, ports 21-34 on VLAN 20, and ports 35-36 as a port-channel trunk:
## Configure Transparent Mode config system settings set opmode transparent end ## Configure access ports for VLAN 10 config system interface edit "port1" set vdom "root" set type physical set forward-domain 10 next ... (mirror the above config for the other ports, up to port20) ## Configure access ports for VLAN 20 edit "port21" set vdom "root" set type physical set forward-domain 20 ... (mirror the above config for the other ports, up to port34) ## Configure a LAG interface edit "port35" set vdom "root" set type physical next edit "port36" set vdom "root" set type physical next edit "po1" set vdom "root" set type aggregate set member "port35" "port36" set lacp-mode active next ## Configure trunked VLANs on LAG interface edit "vlan10_po1" set vdom "root" set forward-domain 10 set interface "po1" set vlanid 10 next edit "vlan20_po1" set vdom "root" set forward-domain 20 set interface "po1" set vlanid 20 end
[style="color: #222222;"] [/style]
