Juniper

啟用 MPLS、RSVP 和 OSPF-TE

  • October 4, 2012

我正在使用瞻博網路 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)

年-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

以下步驟是否足以實現上述目標?任何幫助表示讚賞。

您包含的兩個配置語句將告訴 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

引用自:https://serverfault.com/questions/433816