Petite note pour activer ou désactiver une interface d'un switch CISCO. Ces commandes peuvent être utilisées lorsqu'une interface est en erreur et qu'il est nécessaire de la réinitialiser.
Prérequis
Vous devez disposer d'un accès console au switch CISCO (SSH, Telnet, série).
Afficher le statut de toutes les interfaces
Switch> enable Password: ********** Switch# show interfaces status
Afficher le statut d'une interface spécifique
Switch> enable Password: ********** Switch# show interfaces Gi1/0/24 status
Désactiver une interface
Switch> enable Password: ********** Switch# configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)# interface gi1/0/23 Switch(config-if)# shutdown Switch(config-if)# end Switch#
Activer une interface
Switch> enable Password: ********** Switch# configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)# interface gi1/0/23 Switch(config-if)# no shutdown Switch(config-if)# end Switch#