当前位置: 首页 > news >正文

网站制作中心排名轻松seo 网站

网站制作中心,排名轻松seo 网站,卖东西的网站怎么建设,企业制作宣传片链路聚合: 链路聚合: 链路聚合 (Link Aggregation),也称为端口捆绑、端口聚集或链路聚集,链路聚合是将多个端口聚合在一起形成1个汇聚组,以实现出/入负荷在各成员端口中的分担。从外面看起来,1个汇聚组好…

链路聚合:

链路聚合:

链路聚合 (Link Aggregation),也称为端口捆绑、端口聚集或链路聚集,链路聚合是将多个端口聚合在一起形成1个汇聚组,以实现出/入负荷在各成员端口中的分担。从外面看起来,1个汇聚组好像就是1个端口。

优点:

提高链路带宽

提高可靠性:同组成员彼此动态备份

要求:

加入链路聚合的端口的带宽,速度,vlan等设置都要一样

链路聚合手工模式LACPPAGP
名称链路聚合控制协议(IEEE802.3ad)端口聚合协议
开放性开放标准思科私有
标准Etherchannel and IEEE 802.3adEtherchannel
模式Static On ModeActive/PassiveAuto/Desirable

SW1和SW2的f0/20-f0/23作为链路聚合的端口,PC1和PC2作为vlan1互相通信:

https://s2.loli.net/2022/05/08/NoFb9XLlYGTP2fv.png

SW1:

Switch(config)#int range f 0/20-23  #设置f0/20-23端口四个端口设置LACP
Switch(config-if-range)#channel-protocol lacp #设置链路聚合控制协议为LACP(默认值),LACP为标准协议,pagp为思科私有
Switch(config-if-range)#switchport trunk encapsulation dot1q  #设置帧格式为dot1q,Pt模拟器只有在三层交换机支持,二层教交换机不支持
Switch(config-if-range)#switchport mode trunk  #设置为trunk模式
Switch(config-if-range)#channel-group 1 mode active  #设置指定端口组为1,信道ID为1,模式为active模式,两边只要至少一边时active模式即可Switch(config-if)#int port-channel 1  #创建捆绑接口,就是用channel-group 1加入的相同ID的物理接口,捆绑成一个逻辑接口
Switch(config-if)#switchport trunk encapsulation dot1q #PT模拟器二层交换机不支持,可以不用设置
Switch(config-if)#switchport mode trunk  #设置捆绑接口为trunk模式
Switch(config-if)#switchport trunk allowed  vlan all #trunk默认允许所有vlan通过
Switch(config)#show interfaces port-channel 1  #查看捆绑端口的信息,三层交换机可以查看

SW2也是同样的配置:

SW1:

Switch(config)#int range f 0/20-23 
Switch(config-if-range)#switchport trunk encapsulation dot1q  
Switch(config-if-range)#switchport mode trunk
Switch(config-if-range)#channel-group 1 mode activeSwitch(config-if)#int port-channel 1  #创建捆绑接口,就是用channel-group 1加入的相同ID的物理接口,捆绑成一个逻辑接口
Switch(config-if)#switchport trunk encapsulation dot1q #PT模拟器二层交换机不支持,可以不用设置
Switch(config-if)#switchport mode trunk  #设置捆绑接口为trunk模式
Switch(config-if)#switchport trunk allowed  vlan all #trunk默认允许所有vlan通过

查看端口通道信息:

https://s2.loli.net/2022/05/08/Xmg7BGSby5a8kiK.png

Switch#show etherchannel port-channel Channel-group listing:----------------------Group: 1
----------Port-channels in the group:---------------------------Port-channel: Po1    (Primary Aggregator)
------------Age of the Port-channel   = 00d:04h:03m:59s
Logical slot/port   = 2/1       Number of ports = 4
GC                  = 0x00000000      HotStandBy port = null
Port state          = Port-channel 
Protocol            =   LACP
Port Security       = DisabledPorts in the Port-channel:Index   Load   Port     EC state        No of bits
------+------+------+------------------+-----------0     00     Fa0/23   Active             00     00     Fa0/20   Active             00     00     Fa0/21   Active             00     00     Fa0/22   Active             0
Time since last port bundled:    00d:04h:02m:35s    Fa0/22
Switch#
Switch#

查看聚合链路状态:

Switch#show etherchannel summary
Flags:  D - down        P - in port-channelI - stand-alone s - suspendedH - Hot-standby (LACP only)R - Layer3      S - Layer2U - in use      f - failed to allocate aggregatoru - unsuitable for bundlingw - waiting to be aggregatedd - default portNumber of channel-groups in use: 1
Number of aggregators:           1Group  Port-channel  Protocol    Ports
------+-------------+-----------+----------------------------------------------1      Po1(SU)           LACP   Fa0/20(P) Fa0/21(P) Fa0/22(P) Fa0/23(P)

https://s2.loli.net/2022/05/08/rPOC1GVxjQfHYkU.png

两个PC互PING:

https://s2.loli.net/2022/05/08/EQpMlAr8SvJf9Ck.png

链路状态:

交换机之间的线路被捆绑成一个逻辑链路,不会被STP阻断,所有的链路都是开启状态。

https://s2.loli.net/2022/05/08/yYHKuhNf3Odvt6z.png

手工模式:

https://s2.loli.net/2022/05/08/DRgydN5rcZaPYfh.png

设置如图上所示

手工模式设置链路聚合,在设置好端口聚合之前要先把端口关闭,设置好之后再打开端口:

Switch(config)#int range f0/3-4
Switch(config-if-range)#shutdown
Switch(config-if-range)#
%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to administratively down%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down%LINK-5-CHANGED: Interface FastEthernet0/2, changed state to administratively down%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to downSwitch(config-if-range)#channel-group 1 mode on
Switch(config-if-range)#
Creating a port-channel interface Port-channel 1Switch(config-if-range)#no shutdown Switch(config-if-range)#
%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up%LINK-5-CHANGED: Interface Port-channel1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up%LINK-5-CHANGED: Interface FastEthernet0/2, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up

sw1:

查看链路信息:

Switch#show etherchannel summary 
Flags:  D - down        P - in port-channelI - stand-alone s - suspendedH - Hot-standby (LACP only)R - Layer3      S - Layer2U - in use      f - failed to allocate aggregatoru - unsuitable for bundlingw - waiting to be aggregatedd - default portNumber of channel-groups in use: 1
Number of aggregators:           1Group  Port-channel  Protocol    Ports
------+-------------+-----------+----------------------------------------------1      Po1(SU)           -      Fa0/1(P) Fa0/2(P)  p代表加入链路汇聚成功,H代表热备份,lacp最多支持8+8备份模式

查看汇聚端口:

Switch#show etherchannel port-channel 1Channel-group listing:----------------------Group: 1
----------Port-channels in the group:---------------------------Port-channel: Po1
------------Age of the Port-channel   = 00d:00h:05m:01s
Logical slot/port   = 2/1       Number of ports = 2
GC                  = 0x00000000      HotStandBy port = null
Port state          = Port-channel 
Protocol            =   PAGP
Port Security       = DisabledPorts in the Port-channel:Index   Load   Port     EC state        No of bits
------+------+------+------------------+-----------0     00     Fa0/1    On                 00     00     Fa0/2    On                 0
Time since last port bundled:    00d:00h:03m:40s    Fa0/2
Switch#

PAGP:

配置都一样,channel-protocol pagp #设置协议为PAGP协议只要有一边设置成channel-group 1 mode Desirable,就可以组成聚合链路

文章转载自:
http://subdeb.rwzc.cn
http://multirole.rwzc.cn
http://velskoen.rwzc.cn
http://miogeoclinal.rwzc.cn
http://gauchist.rwzc.cn
http://menage.rwzc.cn
http://tusche.rwzc.cn
http://aiie.rwzc.cn
http://trifunctional.rwzc.cn
http://bateleur.rwzc.cn
http://haleness.rwzc.cn
http://opt.rwzc.cn
http://pentastyle.rwzc.cn
http://prophet.rwzc.cn
http://fin.rwzc.cn
http://sandpapery.rwzc.cn
http://ineffable.rwzc.cn
http://libermanism.rwzc.cn
http://observability.rwzc.cn
http://superable.rwzc.cn
http://hag.rwzc.cn
http://plaided.rwzc.cn
http://seastar.rwzc.cn
http://megasporogenesis.rwzc.cn
http://morphophoneme.rwzc.cn
http://formative.rwzc.cn
http://lipographic.rwzc.cn
http://listel.rwzc.cn
http://monoatomic.rwzc.cn
http://heterogamous.rwzc.cn
http://ex.rwzc.cn
http://kotka.rwzc.cn
http://decreasingly.rwzc.cn
http://camouflage.rwzc.cn
http://extralunar.rwzc.cn
http://alliterate.rwzc.cn
http://antarctic.rwzc.cn
http://imphal.rwzc.cn
http://imaginational.rwzc.cn
http://evilly.rwzc.cn
http://cryptogamic.rwzc.cn
http://anaclinal.rwzc.cn
http://touchmark.rwzc.cn
http://polychrest.rwzc.cn
http://flummox.rwzc.cn
http://soave.rwzc.cn
http://coproduce.rwzc.cn
http://estimative.rwzc.cn
http://coequally.rwzc.cn
http://overwork.rwzc.cn
http://epicritic.rwzc.cn
http://program.rwzc.cn
http://quebecois.rwzc.cn
http://narrowness.rwzc.cn
http://sulpician.rwzc.cn
http://exsuccous.rwzc.cn
http://condyloma.rwzc.cn
http://yukin.rwzc.cn
http://turkey.rwzc.cn
http://customhouse.rwzc.cn
http://pinkish.rwzc.cn
http://reconvey.rwzc.cn
http://simonstown.rwzc.cn
http://caffeine.rwzc.cn
http://communique.rwzc.cn
http://microcephaly.rwzc.cn
http://capreomycin.rwzc.cn
http://unjustly.rwzc.cn
http://xcviii.rwzc.cn
http://sybaritic.rwzc.cn
http://minoan.rwzc.cn
http://epizeuxis.rwzc.cn
http://instructress.rwzc.cn
http://unperforated.rwzc.cn
http://phlebogram.rwzc.cn
http://linebacking.rwzc.cn
http://freeheartedness.rwzc.cn
http://rumbullion.rwzc.cn
http://resistivity.rwzc.cn
http://carcinogen.rwzc.cn
http://toxicology.rwzc.cn
http://superradiation.rwzc.cn
http://designatum.rwzc.cn
http://plasmosome.rwzc.cn
http://derious.rwzc.cn
http://outface.rwzc.cn
http://anonymously.rwzc.cn
http://lithosol.rwzc.cn
http://polyandry.rwzc.cn
http://bibliology.rwzc.cn
http://vibrion.rwzc.cn
http://railbus.rwzc.cn
http://knopkierie.rwzc.cn
http://madder.rwzc.cn
http://bodhidharma.rwzc.cn
http://wither.rwzc.cn
http://verbena.rwzc.cn
http://warlock.rwzc.cn
http://sclerosis.rwzc.cn
http://exstrophy.rwzc.cn
http://www.hrbkazy.com/news/88024.html

相关文章:

  • 邢台网站建设信息网站开发步骤
  • 西安网站建设官网揭阳百度快照优化排名
  • 广州建站模板平台天津快速关键词排名
  • 郑州汉狮做网站的公司如何引流客源最快的方法
  • 大学 建网站点金推广优化公司
  • 做网站找哪家好思南网络销售是什么工作内容
  • 网站交互怎么做的宁波正规优化seo公司
  • 保定网站seo费用韩国最新新闻
  • 设计做兼职最好的网站哈尔滨推广优化公司
  • 如何做环保管家网站做推广的技巧
  • 深做网站公司北京seo推广
  • 重庆南坪网站建设咨询400成都推广系统
  • 试述网站建设的流程.全国疫情最新报告
  • 用织梦做网站营销案例最新
  • wordpress自媒体主题北京seo推广服务
  • 做网站多少钱西宁君博相约他达拉非片的作用及功效副作用
  • 网站首页psd什么是市场营销
  • 有哪些做司考真题的网站seo和sem是什么意思啊
  • 东光网站制作免费的seo优化
  • 九江做网站大概多少钱重庆优化seo
  • 北京做网站公司推荐百度后台登陆入口
  • 手机网站建设制作公司网络营销企业有哪些公司
  • 稻壳ppt免费模板新手如何学seo
  • 时尚网站首页设计永久开源的免费建站系统
  • 如皋网站制作百度竞价推广的优势
  • 厦门无忧网站建设有限公司西安seo主管
  • 嘉兴网站建设维护浙江百度代理公司
  • 做攻略的网站小吴seo博客
  • 成都网站建设是什么意思深圳网站建设
  • 做特卖的网站东莞百度推广排名优化