OSPF
デフォルト
40秒間にHelloパケットを受信しないとDown
table:Neighbor/Adjacency確立の流れ
Init 初期状態 Helloパケットを受信して追加
2Way 双方向状態 Neighbor確立。DROTHER同士はコンバージェンス Excange 交換状態 マスターからDBDパケットを送信。データベースの交換 Full 完全状態 Adjacency確立。コンバージェンス
https://www.infraexpert.com/studygif/linkstate18.gif
https://www.infraexpert.com/studygif/linkstate23.gif
手動で設定したもの
変更する場合はOSPFプロセスを再起動する
シングルエリア
エリアIDは0のみ
プロセスID
1 ~ 65535で指定する
ローカルルータのみで使用する
code:cisco
# NW Addressで指定する
edge-rt01(config)#route ospf 1 # 1:プロセスID
edge-rt01(config-router)#network ${address} ${wildcard} area 0 #0:エリアID edge-rt01(config-router)#default-information originate # デフォルトルートを広告
edge-rt01(config-router)#router-id 1.1.1.1
# IFに指定する
edge-rt01(config)#interface ${IF}
edge-rt01(config-if)#ip ospf 1 area 0
edge-rt01(config-if)#ip ospf network point-to-point
# OSPFが動作しているIFを表示
edge-rt01#show ip ospf interface
# OSPFのネイバー情報を表示
edge-rt01#show ip ospf neighbor
Reference