Created on
08-25-2009
03:06 AM
Edited on
12-27-2024
07:19 AM
By
Anthony_E
Description
Solution
A VLAN interface is attached to a physical interface.
Below is an example structure with a FortiGate with VLAN id 1 attached to port1:
Notes:
- Once created, this interface is subject to the same rules as physical interfaces. Firewall Policies must be defined to allow/deny traffic to/from this interface, and other common objects like Firewall Address can be assigned to it.
- The physical interface on which a VLAN is attached does not require any IP address settings.
-
The physical interface on which the VLAN is attached will share the bandwidth with all the VLANs attached in the physical interface.
-
The VLAN ID range is from 1 to 4094. VLAN ID of 0 is reserved for high-priority frames, and 4095 is reserved.
- Go to System -> Network and select 'Create New' -> 'Interface'.
- Give a Name to the VLAN interface.
- Choose the physical interface on which to attach the VLAN.
- Give the desired VLAN ID. All other fields depend on individual requirements, such as IP address and ping server.
- After completing the above steps, select 'Ok' to save the new VLAN interface.
To verify, check the interface in System -> Network -> Interfaces, by expanding the physical port. There, the new VLAN should be displayed:
Configuration steps in the CLI for the above VLAN:
config system interface
edit "My_VLAN_100"
set vdom root
set ip 192.168.100.1/24
set interface internal1
set vlanid 100
next
end
Related articles:
Troubleshooting Tip: Using the FortiGate sniffer on VLAN interfaces
Technical Tip: rules about VLAN configuration and VDOM interface assignment
Related video:
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
Thanks for documenting.