Ajout chapitre STP sous Nexus pour port type edge

This commit is contained in:
jdubois 2021-08-19 14:45:29 +02:00
parent fbc2fb71c1
commit 775166bfd1

View file

@ -1631,6 +1631,26 @@ Switch(config-schedule)# job name backupConfig
Switch(config-schedule)# time daily 01:15
~~~
### STP : Spanning Tree Protocol
* Synchro immédiate : Spanning Tree Portfast => Spanning Tree Port Type Edge
Le nom "portfast" n'existe pas sous Nexus, c'est une notion de "port type" qui est utilisé. Lorsque le port est connecté à une machine finale, c'est un port de type `edge` (de bord, d'extrémité).
Activer le Port Type Edge :
~~~
Switch(config)# interface GigabitEthernet0/28
Switch(config-if)# spanning-tree port type edge
~~~
Désactiver le Port Type Edge :
~~~
Switch(config)# interface GigabitEthernet0/28
Switch(config-if)# no spanning-tree port type edge
~~~
### VPC : Virtual Port-Channel
Ressources : <https://www.packetcoders.io/what-is-cisco-vpc-virtual-port-channel/>, <https://www.networklife.net/images/sheets/Nexus-VPC.pdf>