概要
Cisco NX-OSにてOSPFのNetowrk(Broadcast / Point-to-Point )の設定方法を紹介します。
Broadcast/Point-to-Pointの違い
-
OSPF ネットワークタイプ
設定概要図
Network Type Broadcast
インターフェイスがイーサネットの時はデフォルトの動作がBroadcastです。従って特別の設定は不要です。
OSPFの設定後、インターフェイスの状態を確認すると「Network Type BROADCAST」の記載があり、Broadcastで動作していることがわかります。
また、Broadcastで動作しているので、DR,BDRの選出が動作します。今回のインターフェイスでは、DRに選出されていることがわかります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
NXOS-1# show ip ospf interface ethernet 2/1 Ethernet2/1 is up, line protocol is up IP address 192.168.0.1/24 Process ID 1 VRF default, area 0.0.0.0 Enabled by interface configuration State DR, Network type BROADCAST, cost 40 Index 1, Transmit delay 1 sec, Router Priority 1 Designated Router ID: 1.1.1.1, address: 192.168.0.1 Backup Designated Router ID: 2.2.2.2, address: 192.168.0.2 1 Neighbors, flooding to 1, adjacent with 1 Timer intervals: Hello 10, Dead 40, Wait 40, Retransmit 5 Hello timer due in 00:00:05 No authentication Number of opaque link LSAs: 0, checksum sum 0 NXOS-1# |
Broadcastで動作しているので、該当のネットワーク(192.168.0.0/24)では、DRであるNXOS-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 24 25 26 27 28 29 30 31 32 33 |
NXOS-1# show ip ospf database OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default) Router Link States (Area 0.0.0.0) Link ID ADV Router Age Seq# Checksum Link Count 1.1.1.1 1.1.1.1 92 0x80000004 0xee48 2 2.2.2.2 2.2.2.2 92 0x80000004 0x72b7 2 Network Link States (Area 0.0.0.0) Link ID ADV Router Age Seq# Checksum 192.168.0.1 1.1.1.1 92 0x80000002 0x2cb2 NXOS-1# show ip ospf database network detail OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default) Network Link States (Area 0.0.0.0) LS age: 93 Options: 0x2 (No TOS-capability, No DC) LS Type: Network Links Link State ID: 192.168.0.1 (Designated Router address) Advertising Router: 1.1.1.1 LS Seq Number: 0x80000002 Checksum: 0x2cb2 Length: 32 Network Mask: /24 Attached Router: 1.1.1.1 Attached Router: 2.2.2.2 NXOS-1# |
スポンサーリンク
Network Type Point-to-Point
設定方法
1 |
ip ospf network NET-WORK-TYPE |
コマンド引数 | 説明 |
---|---|
NET-WORK-TYPE | OSPFのネットワークタイプを設定する。設定項目として下記がある broadcast point-to-point |
構成図を元に設定例
NXOS-R1
1 2 |
interface ethernet 2/1 ip ospf network point-to-point |
NXOS-R2
1 2 |
interface ethernet 2/1 ip ospf network point-to-point |
設定後のインターフェイスおよびOSPF Databaseの変化について
設定後、インターフェイスの状態を確認すると「Network type P2P」の記載があり、Point-to-Pointで動作していることがわかります。
また、Point-to-Pointで動作しているので、DR,BDRの選出はありません。従ってDR,BDRの項目がなくなっていることがわかります。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
NXOS-1# show ip ospf interface ethernet 2/1 Ethernet2/1 is up, line protocol is up IP address 192.168.0.1/24 Process ID 1 VRF default, area 0.0.0.0 Enabled by interface configuration State P2P, Network type P2P, cost 40 Index 1, Transmit delay 1 sec 1 Neighbors, flooding to 1, adjacent with 1 Timer intervals: Hello 10, Dead 40, Wait 40, Retransmit 5 Hello timer due in 00:00:07 No authentication Number of opaque link LSAs: 0, checksum sum 0 NXOS-1# |
NetworkTypeがPoint-to-Pointになった為、LSAは「Type-1 Router」のみになりました。
1 2 3 4 5 6 7 8 9 10 |
NXOS-1# show ip ospf database OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default) Router Link States (Area 0.0.0.0) Link ID ADV Router Age Seq# Checksum Link Count 1.1.1.1 1.1.1.1 74 0x80000006 0x8b6b 3 2.2.2.2 2.2.2.2 74 0x80000006 0xaa43 3 NXOS-1# |
スポンサーリンク