このページで解説している内容は、以下の YouTube 動画の解説で見ることができます。

演習ファイルのダウンロード

 ネットワークの構成を Packet Tracer で一から設定していくのは大変かと思います。「ダウンロード」から演習で使用するファイルのダウンロードができます。ファイルは、McAfee インターネットセキュリティでウイルスチェックをしておりますが、ダウンロードは自己責任でお願いいたします。

不連続サブネット問題(EIGRP)その1

 EIGRPは、クラスレスルーティングプロトコルです。ルーティングアップデートの情報の中にサブネットマスクの情報を含めて送信します。

しかし、下図のように、不連続のサブネットを配置した環境では、効率の良いルーティングを行うことができません。

まず、下図のネットワークをEIGRPで構築します。

EIGRPによる基本設定

各ルータの設定は、以下のようになります。

●R1のコンフィグ
enable
conf t
hostname R1
int s0/0/0
ip address 10.0.0.2 255.255.255.252
clock rate 64000
bandwidth 64
no shutdown
int s0/0/1
ip address 20.0.0.1 255.255.255.252
clock rate 64000
bandwidth 64
no shutdown
router eigrp 100
network 10.0.0.0 0.0.0.3
network 20.0.0.0 0.0.0.3
end
copy run start

●R2のコンフィグ
enable
conf t
hostname R2
int lo0
ip address 172.16.0.1 255.255.255.0
int lo1
ip address 172.16.1.1 255.255.255.0
int lo2
ip address 172.17.0.1 255.255.255.0
int lo3
ip address 172.17.1.1 255.255.255.0
int s0/0/0
ip address 10.0.0.1 255.255.255.252
bandwidth 64
no shutdown
int s0/0/1
ip address 30.0.0.1 255.255.255.252
bandwidth 64
no shutdown
router eigrp 100
network 10.0.0.0 0.0.0.3
network 30.0.0.0 0.0.0.3
network 172.16.0.0
network 172.17.0.0
end
copy run start

●R3のコンフィグ
enable
conf t
hostname R3
int lo0
ip address 172.16.2.1 255.255.255.0
int lo1
ip address 172.16.3.1 255.255.255.0
int lo2
ip address 172.17.2.1 255.255.255.0
int lo3
ip address 172.17.3.1 255.255.255.0
int s0/0/0
ip address 20.0.0.2 255.255.255.252
bandwidth 64
no shutdown
int s0/0/1
ip address 30.0.0.2 255.255.255.252
bandwidth 64
no shutdown
router eigrp 100
network 20.0.0.0 0.0.0.3
network 30.0.0.0 0.0.0.3
network 172.16.0.0
network 172.17.0.0
end
copy run start

この続きは、「不連続サブネット問題(EIGRP)その2」で解説していきます。

関連コンテンツ