启用 MPLS、RSVP 和 OSPF-TE

启用 MPLS、RSVP 和 OSPF-TE

我正在使用 Juniper J 系列路由器来模拟小型电信公司和 VPN 客户。我需要使用 OSPF,以便路由信息可以传播到所有 P 和 PE 节点(基本上是所有核心和边缘路由器)。请注意,我不希望将路由信息传播到面向客户的路由器(绿色路由器)。

TAU-PE1:

set protocols ospf area 0.0.0.0 interface ge-0/0/0
set protocols ospf area 0.0.0.0 interface ge-0/0/1

set protocols ospf area 0.0.0.0 interface lo0.0 passive (loopback)
set protocols ospf area 0.0.0.0 interface ge-0/0/2.0 passive (customer facing)

火腿-PE1:

set protocols ospf area 0.0.0.0 interface ge-0/0/0

set protocols ospf area 0.0.0.0 interface lo0.0 passive (loopback)
set protocols ospf area 0.0.0.0 interface ge-0/0/2.0 passive (customer facing)

TAU-P1:

set protocols ospf area 0.0.0.0 interface ge-0/0/0
set protocols ospf area 0.0.0.0 interface ge-0/0/1
set protocols ospf area 0.0.0.0 interface ge-0/0/2

set protocols ospf area 0.0.0.0 interface lo0.0 passive (loopback)

确认-P1:

set protocols ospf area 0.0.0.0 interface ge-0/0/0
set protocols ospf area 0.0.0.0 interface ge-0/0/2
set protocols ospf area 0.0.0.0 interface ge-0/0/3

set protocols ospf area 0.0.0.0 interface lo0.0 passive (loopback)

火腿-P1:

set protocols ospf area 0.0.0.0 interface ge-0/0/0
set protocols ospf area 0.0.0.0 interface ge-0/0/1
set protocols ospf area 0.0.0.0 interface ge-0/0/3

set protocols ospf area 0.0.0.0 interface lo0.0 passive (loopback)

现在我想在所有 PE 和 P 节点上启用以下内容。

1)MPLS 2)RSVP 3)OSPF-TE扩展

以 TAU-P1 为例

set protocols mpls interface ge-0/0/0
set protocols mpls interface ge-0/0/1
set protocols mpls interface ge-0/0/2

set protocols rsvp interface ge-0/0/0
set protocols rsvp interface ge-0/0/1
set protocols rsvp interface ge-0/0/2

set protocols ospf traffic-engineering interface ge-0/0/0 
set protocols ospf traffic-engineering interface ge-0/0/1
set protocols ospf traffic-engineering interface ge-0/0/2

以下步骤足以实现上述目标吗?任何帮助都值得感激。

答案1

您包含的两个配置语句将告诉 JunOS 设备执行两件事:

1) 开始在该接口上传输链路状态通告。

2) 通告在这些接口上配置的子网。

对于每个设备,您应该使用以下命令:

set protocols ospf area 0.0.0.0 interface lo0.0 passive

被动选项告诉 JunOS 包含该子网,但不要通过该链路发送广告。您几乎总是在环回接口上执行此操作。如果接口没有面向您希望分发路由的另一个路由器,则应将该接口设置为被动。

因此,您应该将此声明添加到 UOW-TAU 和 UOW-HAM:

set protocols ospf area 0.0.0.0 interface ge-0/0/1.0 passive

在 TAU-PE1 和 HAM-PE1 上,您可以通过添加以下语句来接收广告:

set protocols ospf area 0.0.0.0 interface ge-0/0/2.0

相关内容