※このページで解説している内容は、Packet Tracer が IGRP に対応していないため、検証することができません。実機における検証結果を紹介しています。検証に使った実機は、古い機種です。
IGRP(検証コマンド)
「IGRPの設定例1」では、下のようなネットワークを IGRP で構築しました。ここでは、このIGRPネットワークを検証コマンドを使って確認していきます。

show ip route
ルーティングテーブルを確認するには、「show ip route」コマンドを使います。
Router#show ip route
Router_A、Router_B のルーティングテーブルを確認すると次のように表示されます。
●Router_Aのルーティングテーブル
Gateway of last resort is not set
C 172.16.0.0/16 is directly connected, Ethernet0
C 172.17.0.0/16 is directly connected, Serial0
I 172.18.0.0/16 [100/8576] via 172.17.0.2, 00:00:41, Serial0
●Router_Bのルーティングテーブル
Gateway of last resort is not set
I 172.16.0.0/16 [100/8576] via 172.17.0.1, 00:00:45, Serial0
C 172.17.0.0/16 is directly connected, Serial0
C 172.18.0.0/16 is directly connected, Ethernet0
「I」で表示されているルートは、IGRPによって学習したことを意味します。
上のRouter_Aのルーティングテーブルで、黄色くマークしている
I 172.18.0.0/16 [100/8576] via 172.17.0.2, 00:00:41, Serial0
のルート解釈方法を下の図で示します。

宛先ネットワークへ行くには、メトリックがどれぐらいで、どのインターフェイスから出力されて、次のどのルータの IPアドレスへ送られるのかが分かります。
「00:00:41」は、経路を学習してからの経過時間を示しています。IGRP は、90秒間隔でアップデート情報を流しますので、49秒後にまた、アップデートを受信することになります。
show ip protocols
「show ip protocols」は、現在、ルータで稼動しているルーティングプロトコルを確認することができます。ルーティングプロトコルの各種タイマ値やアドミニストレーティブディスタンス値などが確認できます。
Router#show ip protocols
●「show ip protocols」の出力
Router_A#show ip protocols
Routing Protocol is "igrp 1"
Sending updates every 90 seconds, next due in 73 seconds
Invalid after 270 seconds, hold down 280, flushed after 630
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
IGRP maximum hopcount 100
IGRP maximum metric variance 1
Redistributing: igrp 1
Routing for Networks:
172.16.0.0
172.17.0.0
Routing Information Sources:
Gateway Distance Last Update
172.17.0.2 100 00:00:12
Distance: (default is 100)
出力を確認すると以下のことが分かります。
項目 | デフォルト値 |
アップデートタイマ | 90秒ごと |
無効タイマ | 270秒 |
ホールドダウンタイマ | 280秒 |
フラッシュタイマ | 630秒 |
ルーティングプロトコル | IGRP |
アドミニストレーティブディスタンス | 100秒 |
IGRPのメトリックの重みも確認できます。
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
K1=1、K3=1となっていることから、帯域幅と遅延がメトリックとして計算されていることが分かります。
次は、「IGRP(debugコマンド)」でIGRPのデバッグコマンドを確認します。