MLD Configuration on Huawei Routers

huawei-mld-configuration

MLD Configuration on Huawei Routers

In this lesson we will give an example topology consist of Huawei switches and multicast hosts and then we will configure MLD on these devices.

For our example, we will use the below topology:

huawei-mld-configuration

Let’s configure MLD on the Switch 1.

Enabling IPv6 Multicast

Firstly, we will enalble IPv6 Multicast globally on the switch.

 system-view
[Switch1] multicast ipv6 routing-enable

Enabling PIM-SM

We will use PIM-SM with MLD. So, we will enable IPv6 PIM-SM.

[Switch1] pim ipv6 sm

Enabling MLD

We will enable MLD under the interface that we will use MLD with “mld enable” command.Before this, we will enalbe Layer 3 on switch with “undo portswitch”. We will do this configuration on each interface that we will use MLD.

[Switch1] interface 10GE 1/1/1
[Switch1-10GE1/1/1] undo portswitch
[Switch1-10GE1/1/1] mld enable
[Switch1-10GE1/1/1] quit
[Switch1] interface 10GE 1/1/2
[Switch1-10GE1/1/2] undo portswitch
[Switch1-10GE1/1/2] mld enable
[Switch1-10GE1/1/2] quit
[Switch1] interface 10GE 1/1/3
[Switch1-10GE1/1/3] undo portswitch
[Switch1-10GE1/1/3] mld enable

MLD Version Configuration

As we discussed before, MLD has twı versions; MLDv1 and MLDv2. We will set the version MLDv2 here. We will do this configuration on each interface that run MLD.

[Switch1-10GE1/1/1] mld version 2
[Switch1-10GE1/1/1] quit

Lesson tags: Multicast, mld
Back to: IP Multicast Course > Multicast Listener Discovery (MLD)
Comments are closed.