概要
Juniper JunosにてOSPFのNetowrk(Broadcast / Point-to-Point )の設定方法を紹介します。
Broadcast/Point-to-Pointの違い
-
OSPF ネットワークタイプ
設定概要図
Network Type Broadcast
インターフェイスがイーサネットの時はデフォルトの動作がBroadcastです。従って特別の設定は不要です。
OSPFの設定後、インターフェイスの状態を確認すると「Type LAN」の記載があり、これがBroadcastで動作していることがわかります。
また、Broadcastで動作しているので、DR,BDRの選出が動作します。今回のインターフェイスでは、DRに選出されていることがわかります。
1 2 3 4 5 6 7 8 9 10 11 12 |
juniper@JUNOS:Junos-R1> show ospf interface fe-0/0/0.0 detail Interface State Area DR ID BDR ID Nbrs fe-0/0/0.0 DR 0.0.0.0 1.1.1.1 2.2.2.2 1 Type: LAN, Address: 192.168.0.1, Mask: 255.255.255.0, MTU: 1500, Cost: 1 DR addr: 192.168.0.1, BDR addr: 192.168.0.2, Priority: 128 Adj count: 1 Hello: 10, Dead: 40, ReXmit: 5, Not Stub Auth type: None Protection type: None Topology default (ID 0) -> Cost: 1 juniper@JUNOS:Junos-R1> |
Broadcastで動作しているので、該当のネットワーク(192.168.0.0/24)では、DRであるJunos-R1ルータから「LSA Type2 Network」が生成されていることがわかります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
juniper@JUNOS:Junos-R1> show ospf database OSPF database, Area 0.0.0.0 Type ID Adv Rtr Seq Age Opt Cksum Len Router *1.1.1.1 1.1.1.1 0x80000005 455 0x22 0x2c12 48 Router 2.2.2.2 2.2.2.2 0x80000004 429 0x22 0x42ef 48 Network *192.168.0.1 1.1.1.1 0x80000001 460 0x22 0x4c73 32 juniper@JUNOS:Junos-R1> show ospf database network detail OSPF database, Area 0.0.0.0 Type ID Adv Rtr Seq Age Opt Cksum Len Network *192.168.0.1 1.1.1.1 0x80000001 462 0x22 0x4c73 32 mask 255.255.255.0 attached router 1.1.1.1 attached router 2.2.2.2 Topology default (ID 0) Type: Transit, Node ID: 2.2.2.2 Metric: 0, Bidirectional Type: Transit, Node ID: 1.1.1.1 Metric: 0, Bidirectional juniper@JUNOS:Junos-R1> |
スポンサーリンク
Network Type Point-to-Point
設定方法
1 |
set protocols ospf area 0 interface fe-0/0/0.0 interface-type NET-WORK-TYPE |
コマンド引数 | 説明 |
---|---|
NET-WORK-TYPE | OSPFのネットワークタイプを設定する。設定項目として下記がある p2p p2mp nbma |
構成図を元に設定例
Junos-R1
1 |
set protocols ospf area 0 interface fe-0/0/0.0 interface-type p2p |
Junos-R2
1 |
set protocols ospf area 0 interface fe-0/0/1.0 interface-type p2p |
設定後のインターフェイスおよびOSPF Databaseの変化について
設定後、インターフェイスの状態を確認すると「Type P2P」の記載があり、Point-to-Pointで動作していることがわかります。
また、Point-to-Pointで動作しているので、DR,BDRの選出はありません。Stateは、PtToPtになり、DR,BDRの項目がなくなっていることがわかります。
1 2 3 4 5 6 7 8 9 10 11 |
juniper@JUNOS:Junos-R1> show ospf interface fe-0/0/0.0 detail Interface State Area DR ID BDR ID Nbrs fe-0/0/0.0 PtToPt 0.0.0.0 0.0.0.0 0.0.0.0 1 Type: P2P, Address: 192.168.0.1, Mask: 255.255.255.0, MTU: 1500, Cost: 1 Adj count: 1 Hello: 10, Dead: 40, ReXmit: 5, Not Stub Auth type: None Protection type: None Topology default (ID 0) -> Cost: 1 juniper@JUNOS:Junos-R1> |
NetworkTypeがPoint-to-Pointになった為、LSAは「Type-1 Router」のみになりました。
1 2 3 4 5 6 7 8 |
juniper@JUNOS:Junos-R1> show ospf database OSPF database, Area 0.0.0.0 Type ID Adv Rtr Seq Age Opt Cksum Len Router *1.1.1.1 1.1.1.1 0x80000009 116 0x22 0x2201 60 Router 2.2.2.2 2.2.2.2 0x80000008 117 0x22 0x46d4 60 juniper@JUNOS:Junos-R1> |
スポンサーリンク