LAB 9. Etherchannel

Pada kesempatan kali ini, kita kan ngelab tentang Etherchannel. Apa itu toh etherchannel???
metode membundle interface link  seolah - olah hanya ada 1 link saja yang digunakan. Kita buat mekanisme Etherchannel karena apa ? contoh pada spanning tree, Pada switch bila kita koneksikan beberapa kabel, tidak semua link kabel yang digunakan untuk mengirimkan data dikarenakan salah satu portnya blocking. maka inilah kenapa mekanisme etherchannel diterapakan

Etherchannel ada 3 :
- L2 Etherchannel LACP (open standart)
- L2 Etherchannel PAGP (Cisco Propetary)
- L3

Untuk konfigurasi Active & Passive dalam Etherchannel perhatikan Tabel Berikut:




A. Untuk konfig kali ini, kita konfig dahulu konfigurasi Etherchannel LACP:
Konfigurasi Switch0:
Switch(config)#hostname SW1
SW1(config)#int range f0/1 - 3
SW1(config-if-range)#channel-group 1 mode active
SW1(config-if-range)#no shutdown
SW1(config-if-range)#int port-channel 1
SW1(config-if)#switchport mode trunk

Mode yang digunakan dalam LaCP boleh active-active atau active-passive namun tidak boleh passive-passive.

Konfigurasi Switch1:
Switch(config)#hostname SW2
SW2(config)#int range f0/1 - 3
SW2(config-if-range)#channel-group 1 mode passive
SW2(config-if-range)#no shutdown
SW2(config-if-range)#int port-channel 1
SW2(config-if)#switchport mode trunk

Untuk verifikasi etherchannel gunakan perintah berikut:
SW1#show etherchannel summary


Pastikan semua portnya menjadi forwaded

B. Konfigurasi Etherchannel PaGP
Sama Seperti dengan topologi diatas, hapus dahulu konfigurasi lacpnya

Konfigurasi Switch0:
Switch(config)#hostname SW1
SW1(config)#int range f0/1 - 3
SW1(config-if-range)#channel-group 1 mode desirable
SW1(config-if-range)#no shutdown
SW1(config-if-range)#int port-channel 1

SW1(config-if)#switchport mode trunk

Konfigurasi Switch1:
Switch(config)#hostname SW2
SW2(config)#int range f0/1 - 3
SW2(config-if-range)#channel-group 1 mode passive
SW2(config-if-range)#no shutdown
SW2(config-if-range)#int port-channel 1

SW2(config-if)#switchport mode trunk

Untuk verifikasi etherchannel gunakan perintah berikut:

SW1#sh etherchannel summary
Flags: D - down P - in port-channel
I - stand-alone s - suspended
H - Hot-standby (LACP only)
R - Layer3 S - Layer2
U - in use f - failed to allocate aggregator
u - unsuitable for bundling
w - waiting to be aggregated
d - default port

Number of channel-groups in use: 1
Number of aggregators: 1

Group Port-channel Protocol Ports
------+-------------+-----------+----------------------------------------------


1 Po1(SU) PAgP Fa0/1(P) Fa0/2(P) Fa0/3(P)

Previous
Next Post »