Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configuration link to documentation 

MC-LAG :  share a common LAG endpoint  ( the other endpoint is the server,CPE ) 
Intra-Domain-Link (IDL)

to synchronize the states between both routers 

via MCEC packets

No data traffic is carried over the IDP

Intra-Domain-Peer (IDP)

to synchronize the states between both routers

Layer 3 communication path to carry MCEC packets.

No data traffic is carried over the IDP



Example



View file
namemlag.pdf
height250
R5 and R6 config example


Code Block
titleconfig
collapsetrue
R5LAB
------


hardware-profile filter egress-l2 enable

interface ce1
  switchport
  description "R5-R6 peer-link or line between mlag domain"


mcec domain configuration
 domain-address 1111.2222.3333
 domain-system-number 1
 intra-domain-link ce1
 domain-hello-timeout short
 
 
 

bridge 1 protocol rstp vlan-bridge
vlan 2 bridge 1 state enable

interface mlag1 
  bridge-group 1 spanning-tree disable
  switchport
  switchport mode trunk
  switchport trunk allowed vlan all

interface mlag1
mode active-active
>>> commit


interface po1
  switchport
  mlag 1

interface xe10
  channel-group 1 mode active


commandslink to documentation
LAG or popo port channel or link aggregation LAG


show commands

show mlag domain summary

Code Block
titleshow mlag
collapsetrue
R5LAB#show mlag domain summary

------------------------------------
Domain Configuration
------------------------------------

Domain System Number            : 1
Domain Address                  : 1111.2222.3333
Domain Priority                 : 32768
Intra Domain Interface          : ce1
Domain Adjacency                : UP
MCEC PDU local version          : 1
MCEC PDU peer version           : 1
Domain Sync via                : Intra-domain-interface
Peer SVI interface MAC Address : E8.C5.7A.2E.50.1B

------------------------------------
MLAG Configuration
------------------------------------

MLAG-1
  Mapped Aggregator            : po1
  Physical properties Digest   : 54 a9 3a 2a 2b 50 65 bb 3c bc 3d bd c2 43 d6 22
  Total Bandwidth              : 20g
  Mlag Sync                    : IN_SYNC
  Mode                         : Active-Active
  Current Mlag state           : Active



show etherchannel summary

Code Block
titleshow etherchannel
collapsetrue
R5LAB#show etherchannel summary
  Aggregator po1 100001
  Aggregator Type: Layer2
  Parent Aggregator : Active mlag1
  Admin Key: 16385 - Oper Key 16385
     Link: xe10 (5011) sync: 1 (Mlag-active-link)




...