Level: Fortgeschrittene
Hier das Setup aus einem Interoperabilitäts- bzw. Kompatibilitätstest für die Kombination von Cisco und 3Com Switches:
Diese Grafik kann hier als PDF heruntergeladen werden.
Ziel ist es die in einem Netzwerk vorhandenen, älteren Cisco 2950 Access Swiches redundant mit einem Layer 3 Core Switchstack zu verbinden. Dazu werden hier 3Com 5500G Switches verwendet, die auch das inter-Vlan Routing übernehmen.
Das Setup ist auf beiden Seiten ähnlich. Der Cisco 2950 bekommt eine hier als „Port-Channel 5“ definiertes Interface mit LACP. Eine explizite Spezifikation des 802.1q Protokolls (dot1q) war in der verwendeten IOS Version nicht notwendig.
Cisco Config:
!
!
!
!
interface Port-channel5
switchport trunk allowed vlan 1-3
switchport mode trunk
flowcontrol send off
!
interface FastEthernet0/1
description Backbone Link A
switchport trunk allowed vlan 1-3
switchport mode trunk
channel-group 5 mode active
!
interface FastEthernet0/2
description Backbone Link B
switchport trunk allowed vlan 1-3
switchport mode trunk
channel-group 5 mode active
!
!
!
interface Vlan1
ip address 192.168.1.2 255.255.255.0
no ip route-cache
!
In der Vlan Database müssen die Vlans 1-3 manuell definiert werden.
Auf der 3com Seite müssen ebenfalls die VLANs angelegt werden. Dann die Routing Interfaces für jedes der VLANs. Die LACP Gruppe wird hier ebenfalls „5“ genannt und die physikalischen Interfaces zudefiniert.
3Com Configuration
.
#
link-aggregation group 5 mode static
#
.
#
vlan 1
description vlan1
#
vlan 2
description Vlan2
#
vlan 3
description vlan3
#
interface Vlan-interface1
ip address 192.168.1.1 255.255.255.0
#
interface Vlan-interface2
ip address 192.168.2.1 255.255.255.0
#
interface Vlan-interface3
ip address 192.168.3.1 255.255.255.0
#
.
#
interface GigabitEthernet1/0/1
port link-type trunk
port trunk permit vlan 1 to 3
broadcast-suppression pps 3000
undo jumboframe enable
lacp enable
port link-aggregation group 5
apply qos-profile default
#
.
#
interface GigabitEthernet2/0/1
port link-type trunk
port trunk permit vlan 1 to 3
broadcast-suppression pps 3000
undo jumboframe enable
lacp enable
port link-aggregation group 5
apply qos-profile default
#
Funktioniert die Verbindung, stellt sich das auf der 3Com Seite so dar:
[550G-Test]disp link-aggregation verbose
Loadsharing Type: Shar -- Loadsharing, NonS -- Non-Loadsharing
Flags: A -- LACP_Activity, B -- LACP_timeout, C -- Aggregation,
D -- Synchronization, E -- Collecting, F -- Distributing,
G -- Defaulted, H -- Expired
Aggregation ID: 5, AggregationType: Static, Loadsharing Type: Shar
Aggregation Description:
System ID: 0x8000, 0016-e011-1200
Port Status: S -- Selected, U -- Unselected
Local:
Port Status Priority Key Flag
--------------------------------------------------------------------------------
GigabitEthernet1/0/1 S 32768 1 {ACDEF}
GigabitEthernet2/0/1 S 32768 1 {ACDEF}
Remote:
Actor Partner Priority Key SystemID Flag
--------------------------------------------------------------------------------
GigabitEthernet1/0/1 1 32768 5 0x8000,000a-bcde-a060 {ACDEF}
GigabitEthernet2/0/1 0 32768 5 0x8000,000a-bcde-a060 {ACDEF}
[5500G-Test]
und auf der Cisco Seite:
2950-HN#sh lacp neigh
Flags: S - Device is requesting Slow LACPDUs
F - Device is requesting Fast LACPDUs
A - Device is in Active mode P - Device is in Passive mode
Channel group 5 neighbors
Partner's information:
LACP port Oper Port Port
Port Flags State Priority Key Number State
Fa0/1 SA bndl 32768 0x1 0x3B 0x3D
Fa0/2 SA bndl 32768 0x1 0x1 0x3D
2950-HN#
Sollte einer der Links ausfallen, sieht das so aus:
2950-HN#sh lacp 5 neighbor
Flags: S - Device is requesting Slow LACPDUs
F - Device is requesting Fast LACPDUs
A - Device is in Active mode P - Device is in Passive mode
Channel group 5 neighbors
Partner's information:
LACP port Oper Port Port
Port Flags State Priority Key Number State
Fa0/1 SA bndl 32768 0x1 0x3B 0x3D
Fa0/2 SA down 32768 0x1 0x1 0x35
2950-HN#
Mit einer älteren Firmware auf den Switches gab es es beim Neustart eines Geräts im Stack gelegentlich den Fall, daß ein Link einen kein LACP erkannte:
Partner's information:
LACP port Oper Port Port
Port Flags State Priority Key Number State
Fa0/1 SA down 32768 0x1 0x3B 0x35
Fa0/2 SA indep 32768 0x1 0x1 0xD
2950-HN>
Im Test mit aktueller (Stand Oct 2008) Firmware/IOS waren in allen getesteten Szenarien akzptable Umschaltzeiten zu erreichen.
Das wird in vergleichbarer Form auch mit 3Com als Access Switch und Cisco im Core funktionieren. Die Konfiguration der Cisco Layer 3 Core Switches unterscheidet sich nur geringfügig von der hier gezeigten.
Last revised: 24 Oct 2008