Juniper EX Switchlerde 802.3ad LACP Konfigürasyonu
802.3ad Nedir:
LACP (Link Aggregation Control Protocol) IEEE (Institute of Electrical and Electronics Engineers) tarafından bandwith i artırmak ve link yedekliliğini sağlamak amacı ile belirlenmiş bir protokoldür. Switch üreticileri LACP nin IEEE tarafından standart hale getirilmesinden önce de kendilerine özgün link aggration özellikleri geliştirip kullanıma sunuyormuş ancak her biri kendine has bir çözüm sunduğu için IEEE bunu bir protokol adı altında standarta bağlamış.
Juniper Switchlerde genelde bir LACP grubu içerisine 8 adete kadar port dahil edilebiliyor.
Bazı modellerde bu rakam 16.
Juniper EX 2200 Switch Üzerinde LACP Konfigürasyonu:
45 46 ve 47. interfaceler LACP ile gruplanacaktır.
Karşı taraftaki cihazda LACP bulunup bulunmasına bakılmaksızın LACP hemen aktif olacak çünkü ikinci komutta görüleceği üzere active modda kurulum yapılmaktadır.
Son olarak, oluşturulan aggregated ethernet (ae0) in trunk modda olması ve yapımız gereği tüm vlanlarda member olması gerekiyor.
Switch de konfigürasyon (#) modunda aşağıdaki komutları çalıştırıyoruz.
set chassis aggregated-devices ethernet device-count 1
set interfaces ae0 aggregated-ether-options lacp active
set interfaces ae0 unit 0 family ethernet-switching port-mode trunk
set interfaces ae0 unit 0 family ethernet-switching vlan members all
set interfaces ge-0/0/45 ether-options 802.3ad ae0
set interfaces ge-0/0/46 ether-options 802.3ad ae0
set interfaces ge-0/0/47 ether-options 802.3ad ae0
commit
Troubleshoot:
Yukarıdaki konfigürasyonu yapıp “commit” ettiğinizde aşağıdaki hatayı alabilirsiniz.
root# commit
[edit interfaces ge-0/0/45]
‘unit 0’
logical unit is not allowed on aggregated links
error: configuration check-out failed
Bu durumda:
1. Yaptığımız konfigürasyonu “rollback 0” komutu ile discard ediyoruz.
2. Hata veren interfaceleri logical unit 0 logical interface i altından aşağıdaki komut ile silip commit ediyoruz. Çünkü Link Aggregation yapacağımız interfacelerin konfig sırasında unit 0 altında bulunmaması gerekiyor.
delete interfaces ge-0/0/45 unit 0
delete interfaces ge-0/0/46 unit 0
delete interfaces ge-0/0/47 unit 0
commit
3. İlk adımda bulunan komutları çalıştırarak konfigürasyonu gerçekleştiriyoruz.
root@Switch> show lacp statistics interfaces
Aggregated interface: ae0
LACP Statistics: LACP Rx LACP Tx Unknown Rx Illegal Rx
ge-0/0/45 757381 27850 0 0
ge-0/0/46 757378 27845 0 0
ge-0/0/47 757383 27850 0 0
—————————————————-
root@Switch> show lacp interfaces ge-0/0/45
Aggregated interface: ae0
LACP state: Role Exp Def Dist Col Syn Aggr Timeout Activity
ge-0/0/45 Actor No No Yes Yes Yes Yes Fast Active
ge-0/0/45 Partner No No Yes Yes Yes Yes Slow Active
LACP protocol: Receive State Transmit State Mux State
ge-0/0/45 Current Slow periodic Collecting distributing
—————————————————-
root@Switch> show lacp statistics interfaces ge-0/0/46
Aggregated interface: ae0
LACP Statistics: LACP Rx LACP Tx Unknown Rx Illegal Rx
ge-0/0/46 757704 27857 0 0
GUI üzerinden Konfigürasyon
Emre BAŞTUĞ