]> git.puffer.fish Git - matthieu/frr.git/commit
pimd : Add support for MLAG Register & Un-register
authorSatheesh Kumar K <sathk@cumulusnetworks.com>
Mon, 26 Aug 2019 05:31:47 +0000 (22:31 -0700)
committerSatheesh Kumar K <sathk@cumulusnetworks.com>
Tue, 17 Sep 2019 03:11:01 +0000 (20:11 -0700)
commit4bf3dda597cea57745e1aab906d52fc808f088e2
tree512498e80ee97524d73dc57c9f6142405224985d
parent6c11fdb3c46ce27ac0e2440e941add5a43efaf2c
pimd : Add support for MLAG Register & Un-register

when ever a FRR Client wants to send any data to another node
using MLAG Channel, uses below mechanisam.

1. sends  a MLAG Registration to zebra with interested messages that
   it is intended to receive from peer.
2. In response to this request, Zebra opens communication channel with
   MLAG. and also in Rx. diretion zebra forwards only those messages which
   client shown interest during registration
3. when client is no-longer interested in communicating with MLAG, client
   posts De-register to Zebra
4. if this is the last client which is interested for MLAG Communication,
   zebra closes the channel.

why PIM Needs MLAG Communication
================================
1. In general on LAN Networks elecetd DR will send the Join towards
   Multicast RP in case of a LHR and Register in case of FHR.
2. But in case DR Goes down, traffic will be re-converged only after
   the New DR is elected, but this can take time based on Hold Timer to
   detect the DR down.
3. this can be optimised by using MLAG Mecganisam.
4. and also Traffic can be forwarded more efficiently by knowing the cost
   towards RP using MLAG

Signed-off-by: Satheesh Kumar K <sathk@cumulusnetworks.com>
13 files changed:
lib/mlag.h
lib/zclient.c
lib/zclient.h
pimd/pim_cmd.c
pimd/pim_cmd.h
pimd/pim_instance.c
pimd/pim_instance.h
pimd/pim_main.c
pimd/pim_mlag.c [new file with mode: 0644]
pimd/pim_mlag.h [new file with mode: 0644]
pimd/pim_zebra.c
pimd/pimd.h
pimd/subdir.am