MPLS-----LDP会话建立
没有太加详细的解释-------只有大概的逻辑印象
MPLS------- 标签转发
LER------边缘路由器
LSR----MPLS内的所有路由器
LSP----路径
FEC-----一条路由
-------------------------------------------------------------------
静态MPLS---------适用于简单的网络,稳定的网络
[ar1]mpls LS
[ar1]mpls lsr-id 11.11.11.11
[ar1]MPLS
Info: Mpls starting, please wait... OK!
[ar1-mpls]INT G0/0/0
[ar1-GigabitEthernet0/0/0]
[ar1]static-lsp ingress LSP destination 3.3.3.3 32 nexthop 10.0.12.2 out-label 88
-------------------------------------
[ar2]MPLS lsr-id 22.22.22.22
[ar2]MPLS
Info: Mpls starting, please wait... OK!
[ar2-GigabitEthernet0/0/0]MPLS
[ar2-GigabitEthernet0/0/0]INT G0/0/1
[ar2-GigabitEthernet0/0/1]MPLS
[ar2-GigabitEthernet0/0/1]
[ar2]static-lsp transit LSA incoming-interface G0/0/0 in-label 88 nexthop 10.0.23.3 out-label 99
------------------------------------------------
[ar3]MPLS lsr-id 33.33.33.33
[ar3]MPLS
Info: Mpls starting, please wait... OK!
[ar3-GigabitEthernet0/0/0]MPLS
[ar3]static-lsp egress LSP incoming-interface G0/0/0 in-label 99
===========================================================
LDP---label Distribution protocol
使用UDP的646源目端口的hello报文,发现邻居,使用组播地址224.0.0.2。使用TCP的源目端口646建立邻居。
LDP邻接就是平常说的LDP邻居,但是在LDP中存在邻居和会话两种概念。
LDP是通过hello报文建立的邻居关系,在LDP中默认5S发送一次hello报文,15秒没有收到邻居的hello报文,则认为邻居失败。
LDP会话是使用keeplinve报文维护会话状态,默认15s一次,如果在45秒没有收到邻居的keeplive报文,则断开会话。
-----------------------------------------
配置---------------
[ar1]mpls lsr-id 10.1.1.1 //最好是使用已经存在环回口的Ip地址
[ar1]mpls //全局模式下开启mpls
Info: Mpls starting, please wait... OK! //开启成功的提示信息
[ar1-mpls]mpls ldp //开启ldp
[ar1-mpls-ldp]q
[ar1-GigabitEthernet0/0/0]mpls //接口模式下开启mpls
[ar1-GigabitEthernet0/0/0]mpls ldp //接口模式下开始ldp
---------------------------
[ar2] 略......................................
-------------------------------------------------------------------