提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、首先根据第一部分将基础设备及连线框架搭建好,并且备注交换机名称和端口号,方便整理思路
  • 二、使用步骤
    • SWA
    • SWB
    • SWA
    • SWC
    • 最后,看一下是否配置成功
    • 如果出错可以通过no channel-group 命令关闭以太通道,再进行trunk
  • 效果

前言

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 and PAgP 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.

Port Channel

Devices

Port Connections

Type

1

SWA to SWB

G0/1 to G0/1

PAgP

1

SWA to SWB

G0/2 to G0/2

2

SWA to SWC

F0/21 to F0/21

LACP

2

SWA to SWC

F0/22 to F0/22

3

SWB to SWC

F0/23 to F0/23

LACP

3

SWB to SWC

F0/24 to F0/24

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.
Follow the procedure that was used in previous activities to configure Port Channel 1 as a PAgP EtherChannel between SWA and SWB. Both sides should negotiate the EtherChannel.

Step 2: Configure a LACP EtherChannel.
Configure Port Channel 2 as an LACP channel between SWA and SWC. Both sides should negotiate the EtherChannel.

Step 3: Configure a Backup LACP EtherChannel
Configure Port Channel 3 channel as an LACP channel between SWB and SWC. In this case, SWC initiates negotiation with SWB. SWB does not initiate negotiation of the channel.


根据第二部分简介可知,需要将所有已使用的接口转化为trunk

第一步,将SWA和SWB连接端口通道需要配置为Cisco私有的端口聚合协议(Port Aggregation Protocol,PAgP),并且双方都进行协商,那么SWA和SWB的g0/1和g0/2端口都需要设置为Desirable(期望)模式.

第二步,给SWA和SWC配置常规使用的链路聚合控制协议(Link Aggregation Control Protocol,LACP),并且端口双方都需要协商,那么SWA和SWC的f0/21和f0/22端口都需要设置为Active(主动)模式.

第三步,将端口通道3通道配置为SWB和SWC之间的LACP通道。在这种情况下,SWC启动与SWB的协商。SWB不会启动通道的协商。所以SWC的f0/23和f0/24端口设置为Active(主动)模式,而SWB的f0/23和f0/24端口设置为Passive(被动)模式

一、首先根据第一部分将基础设备及连线框架搭建好,并且备注交换机名称和端口号,方便整理思路

二、使用步骤

第一步、配置SWA和SWB的链路聚合,对SWA和SWB进行重命名,进入g0/1-2端口,设置trunk,将接口加入以太通道并配置模式

SWA

SWA>enable
SWA#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.
SWA(config)#interface range g0/1-2
SWA(config-if-range)#switchport mode trunk
SWA(config-if-range)#channel-group 1 mode desirable

SWB

Switch>enable
Switch#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z
Switch(config)#hostname SWB
SWB(config)#interface range g0/1-2
SWB(config-if-range)#switchport mode trunk
SWB(config-if-range)#channel-group 3 mode active
SWB(config-if-range)#channel-group 3 mode passive

第二步、配置SWA和SWC,不同之处在于端口和以太通道名称及模式

SWA

SWA(config)#interface range f0/21-22
SWA(config-if-range)#switchport mode trunk
SWA(config-if-range)#channel-group 2 mode active

SWC

Switch>enable
Switch#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z
Switch(config)#hostname SWC
SWC(config)#interface range f0/23-24
SWC(config-if-range)#switchport mode trunk
SWC(config-if-range)#channel-group 3 mode passive
SWC(config-if-range)#channel-group 3 mode active

最后,看一下是否配置成功


如果出错可以通过no channel-group 命令关闭以太通道,再进行trunk

这是我一段配置错误修改

SWB(config)#interface range f0/21-22
SWB(config-if-range)#no channel-group

效果

6.4.1-packet-tracer---implement-etherchannel相关推荐

  1. 服务器增加链路带宽,Cisco Packet Tracer 之 EtherChannel 增加链路带宽和冗余性

    Cisco Packet Tracer 之 EtherChannel 增加链路带宽和冗余性 发布时间:2020-05-24 02:50:39 来源:51CTO 阅读:1311 作者:周铭康 实验环境: ...

  2. 思科2.7.6 Packet Tracer - Implement Basic Connectivity(作业)

    Packet Tracer - 实施基本连接 地址分配表 目标 第 1 部分:对 S1 和 S2 执行基本配置 第 2 部分:配置 PC 第 3 部分:配置交换机管理界面 背景信息 在这个练习中,您会 ...

  3. Packet Tracer - 配置 EtherChannel

    目标 第 1 部分:配置基本交换机设置 第 2 部分:通过思科 PAgP 配置 EtherChannel 第 3 部分:配置 802.3ad LACP EtherChannel 第 4 部分:配置冗余 ...

  4. 网络设备模拟器Packet Tracer教程

    第一章 认识Packet Tracer软件- 1 第二章 交换机的基本配置与管理- 2 第三章 交换机的端口配置与管理- 3 第四章 交换机的Telnet远程登陆配置- 5 第五章 交换机的端口聚合配 ...

  5. 中小型企业网络建设-Cisco Packet Tracer v7.2.2思科网络模拟器实验练习

    注:详细文档在我的下载资源中,拓扑图如不清晰则可查看pkt文件 已将本文中的拓扑图进行了替换,改善了清晰度.若还有疑问,可下载pkt文件进行查看. 用高版本打开,本实验PKT格式文件用7.2.2版本可 ...

  6. CCNA模拟器《Packet Tracer 4.11》

    成都互联神州思科培训CCNA CCNP CCSP CCIE 咨询QQ:520291551 TEL:13666101411                                         ...

  7. Packet Tracer 5.0配置cisco路由器详细说明

      花费了几天的时间写了这篇博文,关于配置cisco路由器的命令在教程上都写的比较清楚,可是好多命令记住了未必能够得心应手的运用于企业的实际网络中,我在这篇博文了介绍了运用终端设备如何登录到cisco ...

  8. 交换机模拟配置软件_网络设备模拟器Packet Tracer实验

    实验一 网络连接线的制作 首先,我们将学习如何制作直通线和交叉线,并用做线连通性测试仪测试线路是否可以正常工作.然后,再学习如何利用做好的缆线将两台工作站连接起来. 工具 / 准备: (1) Cat5 ...

  9. 单臂路由实验(cisco packet tracer 5.2)

    下图是本次实验的拓扑图,所用的模拟器为CISCO PACKET TRACER 5.2版本. 按照如果图所示的拓扑搭建好网络.PC1的IP地址为:192.168.1.2 PC2的IP地址为:192.16 ...

  10. ensp中ap获取不到ip_对比网络模拟器软件,Cisco Packet Tracer、华为eNSP、H3C Cloud Lab...

    1.软件介绍 ①Cisco Packet Tracer Cisco Packet Tracer(以下简称PT)是一款由思科公司开发的,为网络课程的初学者提供辅助教学的实验模拟器.使用者可以在该模拟器中 ...

最新文章

  1. 如何成为一名优秀的软件架构师?
  2. node process.env
  3. centos 7 mysql tar安装_linux centos7 下源码 tar 安装 mysql5.7.24 图文详解
  4. 首个金融领域的开源中文预训练语言模型FinBERT了解下
  5. SQLServer数据库文件组相关知识笔记
  6. angular,vue,react的基本语法—双向数据绑定、条件渲染、列表渲染、angular小案例...
  7. 运行可用:使用FreeType输出中文汉字点阵图形的源码
  8. 毕设:基于Spring Boot的旅游攻略网的设计与实现
  9. PHP操控Excel视频教程
  10. 离线数仓项目, 数仓理论(概要, 建模方法, 数仓分层, 模型介绍,元数据), 数仓设计(需求分析, 数据埋点, 指标体系, 架构设计(方案选型,逻辑架构, 物理环境, 命名规范))
  11. 2022年ps应该选择哪个版本
  12. Mac Wireshark 设置中文
  13. mocha + chai
  14. win10 便签显示设置
  15. 分布式环境搭建之Redis安装及使用
  16. 5-2 学习打卡(11.7)
  17. Jmeter录制脚本(二)-----使用代理录制web脚本
  18. (笔记)罗辑思维-学习的真相
  19. 报考PMP的条件和费用都有哪些?培训费和报考费是分开的吗?过来人教你如何避免被 pian!
  20. 机器人 郑佳佳_浙大毕业生娶了亲手造的机器人当老婆婚礼都办了!

热门文章

  1. 业务连续性方案概述【9】
  2. 综测仪 之 IQxel使用方法介绍
  3. 计算机课 - 计算机科学导论
  4. 负责任的回应:开发Greenbelt网站
  5. 高校或企业开源软件镜像站【汇总】2022.5.8
  6. 分享一个600块钱的Python私活单,金融Excel数据清洗
  7. python百度地图标注,Python+百度地图实现地址多点标注--用上BMap了
  8. 2020最新各大网站软件提交入口,软件发布入口汇总
  9. Google谷歌拼音自动升级小秘密(解迷谷歌拼音输入法自动升级)
  10. XenServer部署系列——网络配置