shina305さんの投稿一覧

助け合いフォーラムの投稿
2023/02/09 返信
コマンド入力時の挙動/順について

「ip ospf 1 area 0」を実行すると、エラーメッセージが出力されますが、その後に「no shutdown」を実行することによりOSPFプロセスが起動します。(エラーを無視して次のコマンドを実行する)

Router#sh ip ospf 
Router#     ←OSPFはまだ起動していない
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int gi 0/0
Router(config-if)#ip address 10.1.1.100 255.255.255.0  ←IPアドレスを設定
Router(config-if)#ip ospf 1 area 0  ←インターフェースでOSPFを起動
Router(config-if)#
*Feb  9 00:21:49.481: %OSPF-4-NORTRID: OSPF process 1 failed to allocate unique router-id and cannot start  ←エラーメッセージ
Router(config-if)#end
*Feb  9 00:21:53.994: %SYS-5-CONFIG_I: Configured from console by consolep
Router#sh ip ospf
%OSPF: Router process 1 is not running, please configure a router-id  ←まだOSPFプロセス1を起動できていない
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int gi 0/0
Router(config-if)#no shutdown   ←gi0/0をアクティブにする
Router(config-if)#
*Feb  9 00:22:22.229: %LINK-3-UPDOWN: Interface GigabitEthernet0/0, changed state to up
*Feb  9 00:22:23.229: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to up
Router(config-if)#end
*Feb  9 00:22:26.614: %SYS-5-CONFIG_I: Configured from console by console
Router#sh ip ospf 
 Routing Process "ospf 1" with ID 10.1.1.100   ←gi0/0がアクティブになったので、OSPF1が起動した
 Start time: 00:02:49.310, Time elapsed: 00:00:42.241
 Supports only single TOS(TOS0) routes
~以下省略~

そのため、[1]ip ospf 1 area 0、[2]no shutdown の順に実行しても問題はないと思われます。
エラーメッセージが出た後に「no shutdown」を実行されてみてはいかがでしょうか?

合格体験記の投稿
投稿がありません