Comprehensive and Detailed In-Depth Explanation:
To determine the correct configuration, we need to analyze how MPLS LDP (Label Distribution Protocol) is correctly enabled on a Huawei router.
1. Required Steps to Enable MPLS LDP on R1
To enable MPLS LDP on R1 and establish LDP sessions, the following steps must be followed:
✅ Step 1: Configure the MPLS LSR ID (Loopback IP recommended)
shell
CopyEdit
mpls lsr-id 1.1.1.1
✅ Step 2: Enable MPLS Globally
shell
CopyEdit
mpls
✅ Step 3: Enable MPLS LDP Globally
shell
CopyEdit
mpls ldp
Why?
LDP is needed for label distribution in the MPLS domain.
Without this, routers cannot exchange MPLS labels.
✅ Step 4: Enable MPLS and LDP on the Required Interface
shell
CopyEdit
interface gigabitethernet 0/0/1
mpls
mpls ldp
2. Analyzing the Answer Choices
✅ Option B (Correct)
shell
CopyEdit
[R1] mpls lsr-id 1.1.1.1 ✅ (Sets LSR ID)
[R1] mpls ✅ (Enables MPLS globally)
[R1-mpls] quit
[R1] mpls ldp ✅ (Enables LDP globally)
[R1-mpls-ldp] quit
[R1] interface gigabitethernet 0/0/1
[R1-GigabitEthernet0/0/1] mpls ✅ (Enables MPLS on interface)
[R1-GigabitEthernet0/0/1] mpls ldp ✅ (Enables LDP on interface)
[R1-GigabitEthernet0/0/1] quit
This configuration correctly enables MPLS LDP on R1.
All required steps are followed, including the LSR ID, MPLS, LDP, and interface activation.
❌ Option A (Incorrect)
shell
CopyEdit
[R1] mpls lsr-id 1.1.1.1
[R1] mpls
[R1-mpls] quit
[R1] mpls ldp
[R1-mpls-ldp] quit
[R1] interface gigabitethernet 0/0/1
[R1-GigabitEthernet0/0/1] mpls ✅
[R1-GigabitEthernet0/0/1] quit ❌ (Missing "mpls ldp" under interface)
Missing mpls ldp under interface configuration.
Without this, the interface will not establish an LDP session → Incorrect.
❌ Option C (Incorrect)
shell
CopyEdit
[R1] mpls
[R1-mpls] quit
[R1] mpls ldp
[R1-mpls-ldp] quit
[R1] interface gigabitethernet 0/0/1
[R1-GigabitEthernet0/0/1] mpls
[R1-GigabitEthernet0/0/1] mpls ldp
[R1-GigabitEthernet0/0/1] quit
Missing mpls lsr-id 1.1.1.1.
LSR ID is critical for LDP sessions → Incorrect.
❌ Option D (Incorrect)
shell
CopyEdit
[R1] mpls lsr-id 1.1.1.1
[R1] mpls
[R1-mpls] quit
[R1] interface gigabitethernet 0/0/1
[R1-GigabitEthernet0/0/1] mpls
[R1-GigabitEthernet0/0/1] mpls ldp
[R1-GigabitEthernet0/0/1] quit
Missing global MPLS LDP configuration (mpls ldp).
Without enabling LDP globally, labels will not be distributed.
This makes LDP sessions fail. → Incorrect.