Configuration d'un VLAN sur un switch Cisco suivant deux configurations : port en ACCESS ou en TRUNK.
Attention, suivant la marque, le terme TRUNK peut signifier deux choses :
- Chez Cisco : un port est affecté à plusieurs VLAN
- Chez HP : Un Trunk est une agrégation de PORT
VLAN en mode : PORT ACCESS
Exemple : Port 10 en ACCESS sur le VLAN 3
switch>enable switch>configure terminal switch(config)#interface GigabitEthernet1/0/10 switch(config-if)#switchport mode access switch(config-if)#switchport access vlan 3 switch(config-if)#exit switch(config)#
VLAN en mode : TRUNK
Exemple : Port 10 en mode TRUNK VLAN 1 untagged - 10 tagged - 20 tagged
switch>enable switch>configure terminal switch(config)#interface GigabitEthernet1/0/10 switch(config-if)#switchport trunk encapsulation dot1q switch(config-if)#switchport mode trunk switch(config-if)#switchport trunk allowed vlan add 1,10,20 switch(config-if)#exit switch(config)#