10. Etherchannel

Etherchannel

Overview

Sederhananya Etherchannel atau bisa disebut juga link aggregation adalah penggabungan beberapa link switch menjadi satu. Sehingga secara kapasitas link pada switch akan lebih besar. Jika 8 port ethernet digabungkan menjadi satu, maka dapat dikatakan satu link memiliki kapasitas bandwidth 800 Mbps. Biasanya cara ini digunakan untuk menghubungkan switch antar core switch.

Protokol Etherchannel

Ada 2 protokol yang digunakan pada Etherchannel, yaitu:

  1. PAGP = Port Aggregation Protocol
    Maksimal port yang dapat digunakan adalah 8 port atau link.
  2. LACP (IEEE 802.1AD) = Link Aggregation Control Protocol.
    Maksimal port yang dapat digunakan adalah 16 port atau link, tetapi yang aktif secara simultan hanya 8 port.

Mode pada Etherchannel

  1. PAGP = auto & desireable
  2. LACP = active & passive
  3. Tanpa Protokol = on & on

Konfigurasi Etherchannel

Etherchannel

1. PAGP

S1(config)# int range fa0/1-4
S1(config-if-range)# channel-protocol pagp
S1(config-if-range)# channel-group 1 mode auto

S1(config)# int port-channel 1
S1(config-if)# switchport mode trunk
S1(config-if)# switchport trunk allowed vlan all

S2(config)# int range fa0/1-4
S2(config-if-range)# channel-protocol pagp
S2(config-if-range)# channel-group 1 mode desireable

S2(config)# int port-channel 1
S2(config-if)# switchport mode trunk
S2(config-if)# switchport trunk allowed vlan all

2. LACP

S1(config)# int range fa0/1-4
S1(config-if-range)# channel-protocol lacp
S1(config-if-range)# channel-group 1 mode active

S1(config)# int port-channel 1
S1(config-if)# switchport mode trunk
S1(config-if)# switchport trunk allowed vlan all

S2(config)# int range fa0/1-4
S2(config-if-range)# channel-protocol lacp
S2(config-if-range)# channel-group 1 mode passive

S2(config)# int port-channel 1
S2(config-if)# switchport mode trunk
S2(config-if)# switchport trunk allowed vlan all

3. Tanpa Protokol (Bukan PAGP atau LACP)

S1(config)# int range fa0/1-4
S1(config-if-range)# channel-group 1 mode on

S2(config)# int range fa0/1-4
S2(config-if-range)# channel-group 1 mode on

Perintah-Perintah Pendukung

$ sh etherchannel summary

$ show interfaces port-channel 1
$ show etherchannel summary
$ show etherchannel port-channel
$ show interfaces fa0/1 etherchannel

$ sh run | begin interface Port-channel
Mode pada protokol PAgP
Mode pada protokol PAgP
Mode pada protokol LACP
Mode pada protokol LACP

LANJUTKAN BACA MATERI LENGKAP


2 thoughts on “10. Etherchannel

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.