LAB 4.4: (1) Cấu hình EtherChannel sử dụng Mode On trên Cisco Switch

By , 0 View

Mục tiêu thực hành:
- Cấu hình EtherChannel trên CoreSwitch DS1.
- Cấu hình EtherChannel trên AccessSwitch AS1.
- Gỡ bỏ cấu hình EtherChannel trên CoreSwitch DS1.
- Gỡ bỏ cấu hình EtherChannel trên AccessSwitch AS1.

Các bước thực hiện:
Cấu hình EtherChannel trên CoreSwitch DS1.
- Tiến hành "shutdown" các Port trước khi cấu hình EtherChannel.
interface range f5/0/3-4
  shutdown
  switchport trunk encapsulation dot1q
  switchport mode trunk
  channel-group 1 mode on
  exit

Cấu hình EtherChannel trên AccessSwitch AS1.
- Tiến hành "shutdown" các Port trước khi cấu hình EtherChannel.
interface range g0/1-2
  shutdown
  switchport mode trunk
  channel-group 1 mode on
  exit
interface range g0/1-2
  no shutdown
  exit

- Tiến hành "no shutdown" trên các interface tham gia vào EtherChannel tại CoreSwitch DS1.
interface range f5/0/3-4
  no shutdown
  exit

- Kiểm tra kết nối EtherChannel trên DS1.
DS1# show etherchannel summary 
Flags:  D - down        P - bundled 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

        M - not in use, minimum links not met
        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)          -        Fa5/0/3(P)  Fa5/0/4(P)  

DS1#

DS1# show etherchannel 
                Channel-group listing: 
                ----------------------

Group: 1 
----------
Group state = L2 
Ports: 2   Maxports = 8
Port-channels: 1 Max Port-channels = 1
Protocol:    -
Minimum Links: 0

DS1#

Gỡ bỏ cấu hình EtherChannel trên CoreSwitch DS1.
default interface range f5/0/3-4
no interface port-channel 1

interface range f5/0/3-4
  shutdown
  no shutdown
  switchport trunk encapsulation dot1q
  switchport mode trunk
  exit

Gỡ bỏ cấu hình EtherChannel trên AccessSwitch AS1.
default interface range g0/1-2
no interface port-channel 1

interface range g0/1-2
  shutdown
  no shutdown
  switchport mode trunk
  exit

Tham khảo các videos lý thuyết Hướng dẫn thực hành CCNA R&S để biết thêm thông tin chi tiết. 

You Might Also Like

0 comments