6.4.1 Packet Tracer - Implement Etherchannel - A184699 PDF

Title 6.4.1 Packet Tracer - Implement Etherchannel - A184699
Course Wireless And Lan Switching
Institution Universiti Kebangsaan Malaysia
Pages 6
File Size 396.9 KB
File Type PDF
Total Downloads 4
Total Views 155

Summary

TTTN3123 - CCNA 2...


Description

Packet Tracer - Implement EtherChannel Objectives Part 1: Build the network Part 2: Configure EtherChannel

Background You have been assigned the task of designing an EtherChannel implementation for a company that wants to improve the performance of their switch trunk links. You will try several different ways of implementing the EtherChannel links in order to evaluate which is the best for the company. You will build the topology, configure trunk ports, and implement LACP, PAgP and static EtherChannels.

Instructions Part 1: Build the network. Use the table below to build the switch topology.

Step 1: Obtain the devices that are required. a. Click the Network Devices icon in the bottom tool bar. b. Click the Switches entry in the submenu. c.

Locate the 2960 switch icon. Click and drag the icon for the 2960 switch into the topology area.

d. Repeat the step above so that there are three 2960 switches in the topology area. e. Arrange the devices into a layout that you can work with by clicking and dragging.

Step 2: Name the devices. The devices have default names that you will need to change. You will name the devices SWA, SWB, and SWC. You are changing the display names of the devices. This is the text label that appears below each device. It is not the host name. Your display names must match the names that are given in this step exactly. If a display name does not match, you will not be scored for your device configuration. a. Click the device display name that is below the device icon. A text field should appear with a flashing insertion point. If the configuration window for the device appears, close it and try again by clicking a little further away from the device icon. b. Replace the current display name with the appropriate display name. c.

Repeat until all devices are named.

Step 3: Connect the devices. a. Click the orange lightning bolt Connections icon in the bottom toolbar. b. Locate the Ethernet straight-through cable icon. It looks like a solid black diagonal line. c.

To connect the device, click the Ethernet straight-through cable icon and then click the first device that you want to connect. Select the correct port and then click the second device. Select the correct port and the devices will be connected.

d. Connect the devices as specified in the table below.

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 1 of 6

www.netacad.com

Packet Tracer - Implement EtherChannel

Port Channel

Devices

1

SWA to SWB

1

SWA to SWB

Type

Port Connections G0/1 to G0/1

PAgP

G0/2 to G0/2 2

SWA to SWC

2

SWA to SWC

F0/21 to F0/21

LACP

F0/22 to F0/22 3

SWB to SWC

3

SWB to SWC

F0/23 to F0/23

Static

F0/24 to F0/24 Blank Line - no additional information

Topology -

Allow your network to converge, then copy and paste a snapshot/printscreen of your resulting network topology here

-

Explain what you understand from the observed link indicators.

From the topology above, we can see that there are three switches with each switches have two links to and from other switches. Unfortunately, the links aggregation are not configured to all the links and there are inconsistency throughout the links. The inconsistency will result in network loss or degraded.

Part 2: Configure EtherChannel Open configuration window

On each switch, configure the ports that will be used in the Port Channels as static trunk ports.

Step 1: Configure a PAgP EtherChannel. Configure Port Channel 1 as a PAgP EtherChannel between SWA and SWB. Both sides should negotiate the EtherChannel.

a. On SWA and SWB, add ports G0/1 and G0/2 to Port Channel 1 with the channel-group 1 mode desirable command. The mode desirable option enables the switch to actively negotiate to form a PAgP link. Note: Interfaces must be shutdown before adding them to the channel group. SWA(config)# interface range g0/1 – 2 SWA(config-if-range)# shutdown SWA(config-if-range)# channel-group 1 mode desirable SWA(config-if-range)# no shutdown

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 2 of 6

www.netacad.com

Packet Tracer - Implement EtherChannel

SWB(config)# interface range g0/1 - 2 SWB(config-if-range)# shutdown SWB(config-if-range)# channel-group 1 mode desirable SWB(config-if-range)# no shutdown SWA # show etherchannel summary The message “Creating a port-channel interface Port-channel 1” should appear on both switches when the channel-group is configured. This interface designation will appear as Po1 in command output. b. Configure the logical interface (Port Channel 1) to become a trunk by first entering the interface portchannel number command and then the switchport mode trunk command. Add this configuration to both switches SWA and SWB. SWA(config)# interface port-channel 1 SWA(config-if)# switchport mode trunk SWB(config)# interface port-channel 1 SWB(config-if)# switchport mode trunk #show interface trunk

Step 2: Configure a LACP EtherChannel. Configure Port Channel 2 as an LACP channel between SWA and SWC. In this case, SWA initiates negotiation with SWC. – swa mode channel is active SWC does not initiate negotiation of the channel. – swc mode channel is passive You can refer to the procedure shown in Step 1 using the appropriate modes. SWA (config)#interface range fa 0/21-22 SWA (config-if-range)#switchport mode trunk SWA (config-if-range)#shutdown SWA SWA SWA SWA SWA

(config-if-range)#channel-group 2 mode active (config-if-range)#no shutdown (config-if-range)#exit (config)#interface port-channel 2 (config-if)#switchport mode trunk

SWC(config)#interface range fa0/21-22 SWC (config-if-range)#switchport mode trunk SWC (config-if-range)#shutdown SWC (config-if-range)#channel-group 2 mode passive SWC (config-if-range)#no shutdown SWC (config-if-range)#exit SWC (config)#interface port-channel 2 SWC (config-if)#switchport mode trunk

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 3 of 6

www.netacad.com

Packet Tracer - Implement EtherChannel

Step 3: Configure a Static EtherChannel Configure Port Channel 3 channel as a static EtherChannel between SWB and SWC. In this case, EtherChannel is formed without any negotiation. (mode channel is on) You can refer to the procedure shown in Step 1 using the appropriate modes. SWC(config)#interface range fa0/23-24 SWC (config-if-range)#switchport mode trunk SWC (config-if-range)#shutdown SWC (config-if-range)#channel-group 3 mode on SWC (config-if-range)#no shutdown SWC (config-if-range)#exit SWC (config)#interface port-channel 3 SWC (config-if)#switchport mode trunk SWC (config-if)#end SWC# #show etherchannel summary SWC# #show interfaces trunk

SWB(config)#interface range fa0/23-24 SWB (config-if-range)#switchport mode trunk SWB (config-if-range)#shutdown SWB (config-if-range)#channel-group 3 mode on SWB (config-if-range)#no shutdown SWB (config-if-range)#exit SWB (config)#interface port-channel 3 SWB (config-if)#switchport mode trunk SWB (config-if)#end SWB # #show etherchannel summary SWB # #show interfaces trunk

### no interface port-channel 3 ---- to delete

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 4 of 6

www.netacad.com

Packet Tracer - Implement EtherChannel

Reflection a. Explain how you verify your configured EtherChannels. To verify configured Etherchannels, we use command as per below:-

1.

#show etherchannel summary. Below are the example of the output:-

From the output above, we can see channel group 1 is configure as type PAgP with mode desirable while group channel 2 configured as type LACP with mode active.

2.

#show interfaces trunk. Below are the example of the output:-

From the output above, we can see that both port-channel are configured trunking.

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 5 of 6

www.netacad.com

Packet Tracer - Implement EtherChannel

b. Compare the network topology before and after EtherChannels have been implemented. -

Again, allow your network to converge, then copy and paste a snapshot/printscreen of your resulting network topology (after EtherChannels have been implemented) here. Compare to the above snapshot.

-

Explain what you understand from the observed link indicators.

From the topology above, we can concluded once etherchannel has been implemented, both links for all three switches are consistent. This will avoid network inconsistency thus making the network run faster and low the chances of network failure.

1.

Links from SWA to SWB are configured with PAgP DESIRABLE mode. This enables both switches to actively negotiate to form PAgP type.

2.

Links from SWA to SWC are configured with LACP channel mode ACTIVE. This means only SWA actively ask for negotiation with SWC while SWC only respond to initiate for negotiation if SWA initiate the negotiation first. This is because SWC is configured using channel mode LACP PASSIVE.

3.

Link SWB to SWC and SWC to SWB are configured with STATIC channel mode ON. This means etherchannel on SWC will on be created only when SWB is also in mode ON. It will forced to form etherchannel without any negotiation. This will make it difficult to troubleshoot for links between SWB and SWC in case of links failure.

Close configuration window End of document

 2019 - 2021 Cisco and/or its affiliates. All rights reserved. Cisco Public

Page 6 of 6

www.netacad.com...


Similar Free PDFs