Switch erreur err-disabled
Sur le socle
|
# ip a | grep eno2 && ip a | grep eno3 |
|
3: eno2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP group default qlen 1000 4: eno3: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq master ovs-system state DOWN group default qlen 1000 |
Sur le switch
|
Port Name Status Vlan Duplex Speed Type Gi1/0/42 description_machine err-disabled 1 auto auto 10/100/1000BaseTX |
|
Port Name Status Vlan Duplex Speed Type Gi2/0/42 description_machine connected trunk a-full a-1000 10/100/1000BaseTX |
Vérification de la conf des ports
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#sh run int gi2/0/42 Building configuration... Current configuration : 253 bytes ! interface GigabitEthernet2/0/42 description description_machine:eth2 switchport trunk encapsulation dot1q switchport mode trunk spanning-tree portfast trunk spanning-tree bpduguard enable channel-protocol lacp channel-group 41 mode passive end #sh run int gi1/0/42 Building configuration... Current configuration : 253 bytes ! interface GigabitEthernet1/0/42 description description_machine:eth1 switchport trunk encapsulation dot1q switchport mode trunk spanning-tree portfast trunk spanning-tree bpduguard enable channel-protocol lacp channel-group 41 mode passive end |
Verifier les interfaces
|
GigabitEthernet1/0/42 is down, line protocol is down (err-disabled) ... |
|
GigabitEthernet2/0/42 is up, line protocol is up (connected) ... |
Comme c’est un port channel, on shut l’interface qui pose probleme et on la relane pour voir si elle remonte
Puis verifier l’etat du port, non resolue, etat suspendue
|
GigabitEthernet1/0/42 is up, line protocol is down (suspended) |
Enfin on verifie le port channel, on remarque que les interfaces ne vont pas a la meme vitesse
|
#show etherchannel 41 detail |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Group state = L2 Ports: 2 Maxports = 16 Port-channels: 1 Max Port-channels = 16 Protocol: LACP Minimum Links: 0 Ports in the group: ------------------- Port: Gi1/0/42 ------------ Port state = Up Cnt-bndl Suspend Not-in-Bndl Channel group = 41 Mode = Passive Gcchange = - Port-channel = null GC = - Pseudo port-channel = Po41 Port index = 0 Load = 0x00 Protocol = LACP Flags: S - Device is sending Slow LACPDUs F - Device is sending fast LACPDUs. A - Device is in active mode. P - Device is in passive mode. Local information: LACP port Admin Oper Port Port Port Flags State Priority Key Key Number State Gi1/0/42 SP susp 32768 0x29 0x29 0x12B 0x4 Partner's information: LACP port Admin Oper Port Port Port Flags Priority Dev ID Age key Key Number State Gi1/0/42 SP 65535 d4be.d9fb.9eb3 3s 0x0 0x1 0x1 0x34 Age of the port in the current state: 0d:00h:01m:17s Probable reason: speed of Gi1/0/42 is 100M, Gi2/0/42 is 1000M Port: Gi2/0/42 |
Revenir sur le socle et reset le port reseau avec la commande
On reverifie les interfaces reseaux sur le socle
|
# ip a | grep eno2 && ip a | grep eno3 |
|
3: eno2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP group default qlen 1000 4: eno3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP group default qlen 1000 |
Sur le switch
|
GigabitEthernet1/0/42 is up, line protocol is up (connected) |
Sur le port channel
|
Port Name Status Vlan Duplex Speed Type Gi1/0/42 description_machine connected trunk a-full a-1000 10/100/1000BaseTX |
|
Port Name Status Vlan Duplex Speed Type Gi2/0/42 description_machine connected trunk a-full a-1000 10/100/1000BaseTX |
|