锐捷MPLS LDP远端配置
时间: 2023-08-19 15:10:52 浏览: 228
锐捷MPLS隧道单域实验配置命令.zip
锐捷MPLS LDP远端配置可以通过以下步骤完成:
1. 首先,确保你的设备已经运行了适当的MPLS和LDP功能。
2. 进入设备的命令行界面(CLI)。
3. 使用以下命令进入全局配置模式:
```
configure terminal
```
4. 配置LDP全局参数,包括:
```
mpls ldp router-id <router-id>
mpls ldp session holdtime <hold-time>
mpls ldp session protection
```
其中,<router-id>是设备的路由器ID,<hold-time>是LDP会话的保持时间。
5. 配置LDP接口参数,包括:
```
interface <interface-type> <interface-number>
mpls ldp enable
mpls ldp discovery hello holdtime <hold-time>
mpls ldp discovery hello interval <interval>
```
其中,<interface-type>是接口类型(如Ethernet、FastEthernet等),<interface-number>是接口编号,<hold-time>是LDP发现报文的保持时间,<interval>是LDP发现报文的发送间隔。
6. 配置远程LDP邻居,包括:
```
mpls ldp neighbor <neighbor-ip> targeted
```
***
阅读全文