Cisco

De wiki.nexiat.fr
Aller à la navigation Aller à la recherche
Fiche express
Domaine SAN / réseau — Cisco
Commande IOS CLI (channel-group, interface range…)
Contexte Exemple ci-dessous : EtherChannel Ethernet (Catalyst), pas la CLI SAN-OS/NX-OS des switches FC dédiés (MDS)
Voir aussi Brocade · Zoning

Cisco est, avec Brocade, l'un des deux grands acteurs de la commutation Fibre Channel (gamme MDS) dans les SAN d'entreprise. L'exemple conservé ici, hérité de la documentation d'origine, porte cependant sur la configuration d'un EtherChannel Ethernet (Catalyst 3750) — utile dans un contexte réseau/stockage (agrégation de liens NAS/iSCSI par exemple) mais ne couvre pas la CLI SAN-OS/NX-OS des switches MDS proprement dits.

Configuration d'un EtherChannel (Catalyst)

Trois variantes reprises du guide de configuration Cisco Catalyst 3750 :

PAgP, mode desirable

Switch# configure terminal
Switch(config)# interface range gigabitethernet2/0/1 -2
Switch(config-if-range)# switchport mode access
Switch(config-if-range)# switchport access vlan 10
Switch(config-if-range)# channel-group 5 mode desirable non-silent
Switch(config-if-range)# end

LACP, mode active

Switch# configure terminal
Switch(config)# interface range gigabitethernet2/0/1 -2
Switch(config-if-range)# switchport mode access
Switch(config-if-range)# switchport access vlan 10
Switch(config-if-range)# channel-group 5 mode active
Switch(config-if-range)# end

EtherChannel cross-stack, mode on (PAgP/LACP désactivés)

Switch# configure terminal
Switch(config)# interface range gigabitethernet2/0/3 -4
Switch(config-if-range)# switchport mode access
Switch(config-if-range)# switchport access vlan 10
Switch(config-if-range)# channel-group 5 mode on
Switch(config-if-range)# exit
Switch(config)# interface gigabitethernet3/0/3
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan 10
Switch(config-if)# channel-group 5 mode on
Switch(config-if)# exit

Ici, deux ports du membre de pile 2 et un port du membre 3 sont agrégés en un seul canal (channel 5) en VLAN 10.

Voir aussi

  • Brocade — écosystème concurrent de commutation Fibre Channel
  • Zoning