本文讲述了思科CISCO交换机间链路聚合端口聚合实现方法。分享给大家供大家参考,具体如下:

[CISCO] 交换机间链路聚合端口聚合

端口通道( port channel ) 是一种聚合多个物理接口 ( that ) 创建一个逻辑接口。你可以捆扎( bundle ) 八个单独的活动链接到一个信道端口,以提供更高的带宽和冗余。端口通道也负载平衡这些物理接口上的通信量。只要端口通道中的至少一个物理接口可操作,端口通道就可以保持运行。——摘自: Configuring a Port Channel

CISCO PACKET Tracer Student 6.2

三、Configure channel-group

interface FastEthernet0/7

channel-group 1 mode desirable

switchport mode trunk

!

interface FastEthernet0/8

channel-group 1 mode desirable

switchport mode trunk

Info:上述内容是使用 show running-config 查询到的结果。下文将 Step By Step 讲解。

First:Enter Into Interfaces

Switch#enable

Switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#interface faste

Switch(config)#interface fastethernet 0/7-8

^

% Invalid input detected at '^' marker.

Switch(config)#interface range fastethernet 0/7-8

Notice:注意进入接口时,需要使用 range 选项配合 num-num 写法。

Second:Setting VLAN Trunk

Switch(config-if-range)#switchport mode trunk

Info:Trunk 的概念可以简单理解为一个平台,方便俩岸的商人们进行交易。——推荐:VLAN、TRUNK 和 VTP 简介

Third:Setting channel-group Mode

Switch(config-if-range)#channel-group 1 mode desirable

Notice:以上指令需要在俩台交换机间都完整执行指令,而并非单台完整(这不是服务!)。

四、channel-group Model

Port Aggregation Protocol (PAgP)

PAgP 是 Cisco 專有,只能在 Cisco Switch 上設定,PAgP 有兩個模式,分別是 Desirable 與 Auto,兩隻使用 PAgP 的 Switch 就像一對等待對方表白的男女,只要有其中一方開口表白就可以走在一起。願意開口表白的一方叫 Desirable,等待對方表白的一方叫 Auto,所以兩隻 Switch 只要最少有一方是 Desirable 就可成 EtherChannel。因為 Desirable 一方會主動傳送出 PAgP Message,並要求對方回應。但如果雙方也設成 Auto,則雙方都是被動,就不可能成 EtherChannel 了。當 PAgP 成功建立 EtherChannel 後,PAgP Message 會繼續定時傳送去維持 EtherChannel。

Desirable

Auto

Desirable

Auto

設定方法亦不難,只要用 channel-group 1 mode desirable 來設 Desirable Mode 和用 channel-group 1 mode auto 來設 Auto Mode 即可。

SW1(config)#interface range ethernet 0/0 - 1

SW1(config-if-range)#channel-group 1 mode desirable

Creating a port-channel interface Port-channel 1

SW1(config-if-range)#

SW2(config)#interface range ethernet 0/0 - 1

SW2(config-if-range)#channel-group 1 mode auto

Creating a port-channel interface Port-channel 1

SW2(config-if-range)#

Link Aggregation Control Protocol (LACP)

至於 LACP 是 IEEE Standard,玩法與 PAgP 大致相同,只不過把兩個 Mode 的名稱由 Desirable 改成 Active 以及由 Auto 改成 Passive。所以,只要最少有一邊是 Active,EtherChannel 就成立。

Active

Passive

Active

Passive

SW1(config)#interface range ethernet 0/0 - 1

SW1(config-if-range)#channel-group 1 mode active

Creating a port-channel interface Port-channel 1

SW1(config-if-range)#

SW2(config)#interface range ethernet 0/0 - 1

SW2(config-if-range)#channel-group 1 mode passive

Creating a port-channel interface Port-channel 1

SW2(config-if-range)#

不過 LACP 多了一個叫 Hot Standby 的功能,就是除了 8 個 Port 設成 EtherChannel 之外,還可以最多把 8 個 Port 加進去做 Hot Standby Port。Hot Standby Port 的意思是當有 Active Port 因為某些原因 Down 時,Hot Standby Port 可以即時補上,所以,LACP 最多可以容納 16 port (8 個 Active + 8 個 Hot Standby) 在一個 EtherChannel 之中。至於那個 Port 會被選擇成為 Active 則會按 Port Priority 決定,LACP 會先選 Port Priority 較小的做 Active,如 Port Priority 相同則選 Port ID 較小的。請看以下例子:

假設現時有 16 個 Port 在同一個 EtherChannel,由於所有 Port Priority 預設都是 32768,因此系統選擇 Port ID 最小的 8 個 Port 成為 Active Port,其他則成為 Hot Standby。

SW1#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 N - not in use, no aggregation

f - failed to allocate aggregator

M - not in use, no aggregation due to minimum links not met

m - not in use, port not aggregated due to minimum links not met

u - unsuitable for bundling

d - default port

w - waiting to be aggregated

Number of channel-groups in use: 1

Number of aggregators: 1

Group Port-channel Protocol Ports

------+-------------+-----------+-----------------------------------------------

1 Po1(SU) LACP Et0/0(P) Et0/1(P) Et0/2(P)

Et0/3(P) Et1/0(P) Et1/1(P)

Et1/2(P) Et1/3(P) Et2/0(H)

Et2/1(H) Et2/2(H) Et2/3(H)

Et3/0(H) Et3/1(H) Et3/2(H)

現在嘗試把一些 Port 的 LACP Port Priority 變小,Active Port 亦隨之改變。留意兩隻 Switch 相對的 Port 的狀態必需相同 (我這邊是 Active Port,對方也應該是 Active Port),否則會造成不相容而出現 Secondary Aggregator 的問題。

SW1(config)#int range ethernet 2/0-1, ethernet 3/2-3

SW1(config-if-range)#lacp port-priority 1000

SW1(config-if-range)#end

SW1#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 N - not in use, no aggregation

f - failed to allocate aggregator

M - not in use, no aggregation due to minimum links not met

m - not in use, port not aggregated due to minimum links not met

u - unsuitable for bundling

d - default port

w - waiting to be aggregated

Number of channel-groups in use: 1

Number of aggregators: 1

Group Port-channel Protocol Ports

------+-------------+-----------+-----------------------------------------------

1 Po1(SU) LACP Et0/0(P) Et0/1(P) Et0/2(P)

Et0/3(P) Et1/0(H) Et1/1(H)

Et1/2(H) Et1/3(H) Et2/0(P)

Et2/1(P) Et2/2(H) Et2/3(H)

Et3/0(H) Et3/1(H) Et3/2(P)

Et3/3(P)

五、Connectivity testing

Switch#show etherchannel ?

load-balance Load-balance/frame-distribution scheme among ports in port-channel

port-channel Port-channel information

summary One-line summary per channel-group

Switch#show etherchannel port-channel

.....

Ports in the Port-channel:

Index Load Port EC state No of bits

------+------+------+------------------+-----------

0 00 Fa0/7 Desirable-Sl 0

0 00 Fa0/8 Desirable-Sl 0

Time since last port bundled: 00d:03h:15m:36s Fa0/8

cisco链路聚合 不均衡_思科CISCO交换机间链路聚合端口聚合实现方法详解相关推荐

  1. cisco packet tracer路由器配置_思科Cisco静态路由如何配置?

    首先说一下概念,什么是静态路由?静态路由是管理员在路由器中手工配置的固定路由,路由明确地指定了数据包到达目的地的必须通过的路径,除非管理员干预,否则静态路由不会发生变化,静态路由的灵活性不够强,一旦网 ...

  2. c++ 数组截取_【学习教程】JavaScript中原生Array数组方法详解

    来源 | http://www.fly63.com/article/detial/9692 JS中,数组可以通过阵列构造函数或[]字面量的方式创建.数组是一个特殊的对象,继承自对象原型,但用typeo ...

  3. 钉钉开发者接口文档_无需开发,IT事件接入钉钉的方法详解

    1.市场在拥抱钉钉 最近一篇名为<为什么又很多企业沉迷钉钉无法自拔>的文章很火,文章不短,其中有一部分阐述了:钉钉抓住以人为核心的"智能协同"差异化路线,帮助企业打破过 ...

  4. xpath 取标签下所有文字内容_对Xpath 获取子标签下所有文本的方法详解

    对Xpath 获取子标签下所有文本的方法详解 在爬虫中遇见这种怎么办 想提取名称, 但是 名称不在一个标签里 使用xpath string()方法 例如 data.xpath("string ...

  5. php 公众号验证回调方法_如何进行公众号文章收集 两种收集方法详解

    大家都知道优质的公众号吸引用户最关键的就是要优质的文章,所以会有专人负责进行公众号文章收集工作,下面我们跟随拓途数据一起来了解一下如何进行公众号文章收集的相关资料吧. 如何进行公众号文章收集方案一:基 ...

  6. idea 断点线程_在IntelliJ IDEA中多线程并发代码的调试方法详解

    通常来说,多线程的并发及条件断点的debug是很难完成的,或许本篇文章会给你提供一个友好的调试方法.让你在多线程开发过程中的调试更加的有的放矢. 我们将通过一个例子来学习.在这里,我编写了一个多线程程 ...

  7. 重装上阵怎么造简便机器人_重装上阵机器人蓝图怎么做?机器人蓝图制作方法详解[多图]...

    重装上阵机器人蓝图怎么做?重装上阵今日迎来了公测,很多小伙伴早就等不及了吧,已经去尝试了一番吧.很多小伙伴还不太清楚机器人蓝图怎么制作,那么下面就为大家带来重装上阵机器人蓝图制作方法详解,希望对小伙伴 ...

  8. api 定位 微信小程序 精度_微信小程序3种位置API的使用方法详解

    获取位置 获取当前的地理位置.速度.当用户离开小程序后,此接口无法调用:当用户点击"显示在聊天顶部"时,此接口可继续调用. wx.getLocation(object) 获取位置 ...

  9. python telnet线程锁_对python使用telnet实现弱密码登录的方法详解

    系统环境: 64位win7企业版 python2.7.10 2016.08.16修改内容: 1)read_until()函数是可以设置timeout的,之前不能获取到password之后的返回是因为调 ...

最新文章

  1. 转帖:硬盘生产全过程(图)
  2. Windbg内核调试之四: Dump文件分析
  3. html5--6-4 CSS选择器
  4. v8学习笔记(二) Handle和HandleScope机制
  5. python-操作xml格式的文件
  6. mysql 最近_关于mysql查询最近一条记录
  7. Oracle 获取月初和月末
  8. JSON 和 JS 对象互转
  9. 树莓派+docker+tensorflow
  10. Vue:使用highCharts
  11. 象棋 计算机配置,象棋名手要什么配置的电脑运行最佳,用来弈天砍分
  12. Netlogo入门(二)
  13. Jinjia2模板控制语句
  14. analyze怎么优化oracle,Analyze table对Oracle性能的提升
  15. 小米科技面试题-互联网老辛整理
  16. signature=2850cfcfebaece38f3ee6f56047eb922,A characteristic metabolic signature of breast cancer
  17. 动态规划 — 钢条切割问题
  18. C语言 “水仙花数”(包懂)
  19. 趋势检验方法(一)直线方程拟合
  20. C# Aspose Word获取章节首页页眉

热门文章

  1. 多线程管程法(生产者消费者问题)
  2. 2019年12月7日PAT甲级满分题解与经验总结
  3. 安化云台山第二届星空帐篷音乐节盛大启动
  4. 2021知识付费、流量变现小程序源码系统搭建安装教程,一个小白都可以日入过千的项目。
  5. 大华摄像机找不到服务器,大华无法找到网络主机解决方法
  6. 怎么在线免费压缩图片
  7. 如何安装 FTDI 驱动
  8. JAVA 数据库连接池系列 —— HikariCP 简介
  9. 百度wz搜索竞价推广关键词转化成本计算
  10. 【蓝桥杯】 《3W字数总结》 蓝桥杯Java必备基础知识以及国赛真题解析