OSPF Hello/Dead Interval 047

今回はOSPFのHello IntervalとDead Intervalの変更方法を解説します。

 

座学

Hello IntervalとDead Interval

OSPFが動作しているルータ間では定期的にHelloパケットを送受信し、死活を監視します。Helloパケットの送信間隔のことをHello Intervalと呼びます。

 

また、同時に、OSPFが動作しているルータはネイバーに対してDead Intervalを適用します。もし、Helloパケットを受信後、Dead Intervalが経過するまで、Helloパケットを再度受信できない場合、ネイバーがダウンしたと判断します。

 

ルータは特定のネイバーからHelloパケットを受信する度に、そのネイバーのDead Intervalをリセットします。

 

Hello IntervalとDead Intervalのデフォルト値はインタフェースのNetwork Typeによって異なります。また、デフォルトでDead IntervalはHello Intervalの4倍になります。

 

また、ルータ自身に設定されているHello IntervalとDead IntervalはHelloパケットに格納され、ネイバーに通知されます。

 

実機での動作確認

検証内容

R1のg2、R2のg2でOSPF Area 0を有効にします。
Network TypeにはPoint-to-Pointを使用します。

Hello IntervalとDead Intervalを変更し、動作を確認します。

 

初期設定


interface GigabitEthernet2
 ip address 10.1.1.1 255.255.255.0
 ip ospf network point-to-point
!
router ospf 1
 router-id 1.1.1.1
 network 10.1.1.0 0.0.0.255 area 0
            


interface GigabitEthernet2
 ip address 10.1.1.2 255.255.255.0
 ip ospf network point-to-point
!
router ospf 1
 router-id 2.2.2.2
 network 10.1.1.0 0.0.0.255 area 0
            


vlan 10
!
interface GigabitEthernet1/0/1
 switchport mode access
 switchport access vlan 10
!
interface GigabitEthernet1/0/2
 switchport mode access
 switchport access vlan 10
            

 

Hello/Dead Interval変更前

OSPFが動作しているインタフェースの状態確認

OSPFのHello Intervalが10秒、Dead Intervalが40秒であることが確認できます。

R1

R1#show ip ospf interface
GigabitEthernet2 is up, line protocol is up
  Internet Address 10.1.1.1/24, Interface ID 6, Area 0
  Attached via Network Statement
  Process ID 1, Router ID 1.1.1.1, Network Type POINT_TO_POINT, Cost: 1
  Topology-MTID    Cost    Disabled    Shutdown      Topology Name
        0           1         no          no            Base
  Transmit Delay is 1 sec, State POINT_TO_POINT
  Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5
    oob-resync timeout 40
    Hello due in 00:00:06
  Supports Link-local Signaling (LLS)
  Cisco NSF helper support enabled
  IETF NSF helper support enabled
  Index 1/1/1, flood queue length 0
  Next 0x0(0)/0x0(0)/0x0(0)
  Last flood scan length is 1, maximum is 1
  Last flood scan time is 0 msec, maximum is 0 msec
  Neighbor Count is 1, Adjacent neighbor count is 1
    Adjacent with neighbor 2.2.2.2
  Suppress hello for 0 neighbor(s)
            

 

Helloパケットの確認

R1が送信したHelloパケットのHello Intervalに10秒、Dead Intervalに40秒が格納されていることが確認できます。

 

Helloパケット送信時のR1の様子

 

R1は10秒間隔でHelloパケットを送信していることが確認できます。

R1

R1#debug ip ospf hello
*May 10 13:31:31.288: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
*May 10 13:31:41.206: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
*May 10 13:31:50.646: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
            

 

R2ダウン後のR1の様子

R2のg2をシャットダウンします。

R2

interface GigabitEthernet2
 shutdown
            

 

R1は最後のHelloパケットを受信してから40秒後にR2がダウンしたと判断していることが確認できます。

R1

R1#debug ip ospf hello
R1#debug ip ospf adj
*May 10 13:33:16.982: OSPF-1 HELLO Gi2: Rcv hello from 2.2.2.2 area 0 10.1.1.2
*May 10 13:33:56.982: OSPF-1 ADJ Gi2: 2.2.2.2 address 10.1.1.2 is dead, state DOWN
*May 10 13:33:56.982: %OSPF-5-ADJCHG: Process 1, Nbr 2.2.2.2 on GigabitEthernet2 from FULL to DOWN, Neighbor Down: Dead timer expired
            

 

Hello Interval変更後

R1とR2のg2のHello Intervalを5秒に変更します。

 

追加した設定

OSPFのHello Intervalはip ospf hello-interval <second>コマンドで変更可能です。

R1 , R2

interface GigabitEthernet2
 ip ospf hello-interval 5
            

 

OSPFが動作しているインタフェースの状態確認

OSPFのHello Intervalが5秒に変化したことが確認できます。また、Dead Intervalも自動的にHello intervalの4倍である20秒に変化したことが確認できます。

R1

R1#show ip ospf interface
GigabitEthernet2 is up, line protocol is up
  Internet Address 10.1.1.1/24, Interface ID 6, Area 0
  Attached via Network Statement
  Process ID 1, Router ID 1.1.1.1, Network Type POINT_TO_POINT, Cost: 1
  Topology-MTID    Cost    Disabled    Shutdown      Topology Name
        0           1         no          no            Base
  Transmit Delay is 1 sec, State POINT_TO_POINT
  Timer intervals configured, Hello 5, Dead 20, Wait 40, Retransmit 5
    oob-resync timeout 40
    Hello due in 00:00:06
  Supports Link-local Signaling (LLS)
  Cisco NSF helper support enabled
  IETF NSF helper support enabled
  Index 1/1/1, flood queue length 0
  Next 0x0(0)/0x0(0)/0x0(0)
  Last flood scan length is 1, maximum is 1
  Last flood scan time is 0 msec, maximum is 0 msec
  Neighbor Count is 1, Adjacent neighbor count is 1
    Adjacent with neighbor 2.2.2.2
  Suppress hello for 0 neighbor(s)
            

 

Helloパケットの確認

R1が送信したHelloパケットのHello Intervalに5秒、Dead Intervalに20秒が格納されていることが確認できます。

 

Helloパケット送信時のR1の様子

 

R1は5秒間隔でHelloパケットを送信していることが確認できます。

R1

R1#debug ip ospf hello
*May 10 13:35:06.761: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
*May 10 13:35:11.439: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
*May 10 13:35:15.967: OSPF-1 HELLO Gi2: Send hello to 224.0.0.5 area 0 from 10.1.1.1
            

 

R2ダウン後のR1の様子

R2のg2をシャットダウンします。

R2

interface GigabitEthernet2
 shutdown
            

 

R1は最後のHelloパケットを受信してから20秒後にR2がダウンしたと判断していることが確認できます。

R1

R1#debug ip ospf hello
R1#debug ip ospf adj
*May 10 13:38:12.302: OSPF-1 HELLO Gi2: Rcv hello from 2.2.2.2 area 0 10.1.1.2
*May 10 13:38:32.302: OSPF-1 ADJ Gi2: 2.2.2.2 address 10.1.1.2 is dead, state DOWN
*May 10 13:38:32.302: %OSPF-5-ADJCHG: Process 1, Nbr 2.2.2.2 on GigabitEthernet2 from FULL to DOWN, Neighbor Down: Dead timer expired
            

 

Dead Interval変更後

R1とR2のg2のDead Intervalを30秒に変更します。

 

追加した設定

OSPFのHello Intervalはip ospf dead-interval <second>コマンドで変更可能です。

R1 , R2

interface GigabitEthernet2
 ip ospf dead-interval 30
            

 

OSPFが動作しているインタフェースの状態確認

OSPFのHello Intervalは10秒のままで、Dead Intervalが30秒に変化したことが確認できます。

R1

R1#show ip ospf interface
GigabitEthernet2 is up, line protocol is up
  Internet Address 10.1.1.1/24, Interface ID 6, Area 0
  Attached via Network Statement
  Process ID 1, Router ID 1.1.1.1, Network Type POINT_TO_POINT, Cost: 1
  Topology-MTID    Cost    Disabled    Shutdown      Topology Name
        0           1         no          no            Base
  Transmit Delay is 1 sec, State POINT_TO_POINT
  Timer intervals configured, Hello 10, Dead 30, Wait 40, Retransmit 5
    oob-resync timeout 40
    Hello due in 00:00:06
  Supports Link-local Signaling (LLS)
  Cisco NSF helper support enabled
  IETF NSF helper support enabled
  Index 1/1/1, flood queue length 0
  Next 0x0(0)/0x0(0)/0x0(0)
  Last flood scan length is 1, maximum is 1
  Last flood scan time is 0 msec, maximum is 0 msec
  Neighbor Count is 1, Adjacent neighbor count is 1
    Adjacent with neighbor 2.2.2.2
  Suppress hello for 0 neighbor(s)
            

 

Helloパケットの確認

R1が送信したHelloパケットのHello Intervalに10秒、Dead Intervalに30秒が格納されていることが確認できます。

 

R2ダウン後のR1の様子

R2のg2をシャットダウンします。

R2

interface GigabitEthernet2
 shutdown
            

 

R1は最後のHelloパケットを受信してから30秒後にR2がダウンしたと判断していることが確認できます。

R1

R1#debug ip ospf hello
R1#debug ip ospf adj
*May 10 13:42:56.153: OSPF-1 HELLO Gi2: Rcv hello from 2.2.2.2 area 0 10.1.1.2
*May 10 13:42:26.153: OSPF-1 ADJ Gi2: 2.2.2.2 address 10.1.1.2 is dead, state DOWN
*May 10 13:42:26.153: %OSPF-5-ADJCHG: Process 1, Nbr 2.2.2.2 on GigabitEthernet2 from FULL to DOWN, Neighbor Down: Dead timer expired
            

コメント

タイトルとURLをコピーしました