首页 > 其他分享 >LACP(Link Aggregation Control Protocol Data Unit,LACPDU)

LACP(Link Aggregation Control Protocol Data Unit,LACPDU)

时间:2023-11-12 15:32:53浏览次数:32  
标签:Control Protocol 配置 Aggregation 接口 lacp trunk Eth port

1、手工模式

LACP(Link Aggregation Control Protocol Data Unit,LACPDU)_优先级

配置流程:

1)创建ETH-trunk 1

interface Eth-trunk 1

2)将端口配置为Eth-Trunk 1

int g0/0/1

Eth-trunk 1

3)配置Eth-trunk 类型

interface Eth-Trunk1

port link-type trunk

port trunk allow-pass vlan 2 to 4094

4、主动端与被动端(越小越优先)

系统视图模型下:

lacp priority 0-65535 //默认32768

2、LACP模式链路聚合配置

LACP(Link Aggregation Control Protocol Data Unit,LACPDU)_链路_02

配置流程:

1)创建接口ETH-trunk 1

int Eth-trunk 1

2)修改模式

mode lacp-static

3)配置接口模式

port link-type trunk

port trunk allow-pass vlan all

4)修改全局优先级

lacp priority 100 //本优级用于选主动端与被动端

5)接口优先级

用于选择活动接口

标签:Control,Protocol,配置,Aggregation,接口,lacp,trunk,Eth,port
From: https://blog.51cto.com/u_13560030/8329703

相关文章

  • kube-controller-manager加分布式锁
    k8sv1.19.0kube-controller-manager加分布式锁lease,完成leader选举,与kube-scheduler相同。holder是主机名+uuidcmd/kube-controller-manager/app/controllermanager.goRun函数staging/src/k8s.io/component-base/config/options/leaderelectionconfig.goBindLeaderElectio......
  • China's Wisdom for Water Pollution Control
    一、BasicmethodsforwaterpollutioncontrolThepurposeofwastewatertreatmentistoseparatethepollutantsinthewastewaterinacertainway,ordecomposethemintoharmlessandstablesubstances,sothatthesewagecanbepurified.Generally,itis......
  • Adding Conditional Control to Text-to-Image Diffusion Models
    https://mp.weixin.qq.com/s/iL6YitT7EGP6DnrBehb9MQ1.AddingConditionalControltoText-to-ImageDiffusionModels论文地址:https://arxiv.org/pdf/2302.05543.pdf开源地址:https://github.com/lllyasviel/ControlNet(该项目已有2.4万stars)作者单位:斯坦福大学这......
  • Soil pollution--Measures to control soil polluted by heavy metals
    Onespecificmeasure:strengthenpreventionandcontrolofsoilpollutionatitssource(fromOpinionsoftheCPCCentralCommitteeandTheStateCouncilonDeepeningtheBattleagainstPollution)Thedocumentrequiredthateffortswillbemadetoprevent......
  • Action plan for soil pollution control
              ActionplanforsoilpollutioncontrolInMay2016,TheStateCouncilissuedthe"SoilPollutionPreventionandControlActionPlan"(referredtoasthe"TenSoilPollutionMeasures"),focusingonimprovingsoilenv......
  • Action plan for soil pollution control.
    ActionplanforsoilpollutioncontrolInMay2016,TheStateCouncilissuedthe"SoilPollutionPreventionandControlActionPlan"(referredtoasthe"TenSoilPollutionMeasures"),focusingonimprovingsoilenvironmentalquality,......
  • Action plan for soil pollution control
    ActionplanforsoilpollutioncontrolHowdoesitwork?First,tocarryoutsoilpollutioninvestigationandgraspthestatusofsoilenvironmentalquality Second,promotesoilpollutionpreventionandcontrollegislation,andestablishasoundsystem......
  • Plastic Pollution Control Action Plan
    WhatisthePlasticPollutionControlActionPlan?SinceChinaissuedtheOpinionsonEnhancedControlMeasuresagainstPlasticPollutioninJanuary2020,plasticpollutioncontrolmeasureshavebeentakennationwide.ThelatestPlasticPollutionControl......
  • Electrical(Hardware) Protocols: FIFO / JTAG / SPI / IIC / IIS / UART / SWD / ICS
    Electrical(Hardware)Protocols:JTAG(JointTestActionGroup),JTAGisactuallyaprotocoloverSPI.5pins/connections(GND,TMS,TCK,TDI,TDO),Outputtype:Maximumvoltage:5.5volts(5voltsafe),3.3voltnormal,oropencollector(pull-upresistorsre......
  • Java安全机制之一——SecurityManager和AccessController
    前言:在看socket相关代码的时候,AbstractPlainSocketImpl中的一段代码吸引了我,其实之前见过很多次类似的代码,但一直不想去看,只知道肯定和权限什么的相关,这次既然又碰到了就研究一下,毕竟也不能对java基本代码一无所知。static{java.security.AccessController.doPrivileged(......