ネットワーク構成
R1を中心とするハブ&スポークのフレームリレーネットワークでEIGRPによるダイナミックルーティングを行っています。ネットワーク構成の概要は、下記の図です。
設定情報
各ルータのインタフェースでEIGRPを有効化しています。また、フレームリレーのハブ&スポークトポロジなので、ハブルータであるR1のSerial1/0にno ip split-horizonコマンドを入力して、スプリットホライズンを無効化しています。
各ルータの設定抜粋は次の通りです。
R1 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ interface FastEthernet0/0 ip address 192.168.1.1 255.255.255.0 ! interface Serial1/0 ip address 192.168.123.1 255.255.255.0 encapsulation frame-relay no ip split-horizon frame-relay map ip 192.168.123.2 120 broadcast frame-relay map ip 192.168.123.3 130 broadcast ! router eigrp 123 network 192.168.0.0 0.0.255.255 no auto-summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R2 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ interface FastEthernet0/0 ip address 192.168.2.2 255.255.255.0 ! interface Serial1/0 ip address 192.168.123.2 255.255.255.0 encapsulation frame-relay frame-relay map ip 192.168.123.1 210 broadcast frame-relay map ip 192.168.123.3 210 ! router eigrp 123 network 192.168.0.0 0.0.255.255 no auto-summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R3 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ interface FastEthernet0/0 ip address 192.168.3.3 255.255.255.0 ! interface Serial1/0 ip address 192.168.123.3 255.255.255.0 encapsulation frame-relay frame-relay map ip 192.168.123.1 310 broadcast frame-relay map ip 192.168.123.2 310 ! router eigrp 123 network 192.168.0.0 0.0.255.255 no auto-summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
問題
上記のような設定を行っていますが、192.168.2.0/24と192.168.3.0/24間の通信ができません。R2、R3のルーティングテーブルを確認すると、相手のLAN側のネットワークのルート情報が存在しません。
R2 show ip route ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R2#show ip route ~省略~ Gateway of last resort is not set C 192.168.123.0/24 is directly connected, Serial1/0 D 192.168.1.0/24 [90/2172416] via 192.168.123.1, 00:05:32, Serial1/0 C 192.168.2.0/24 is directly connected, FastEthernet0/0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R3 show ip route ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R3#show ip route ~省略~ Gateway of last resort is not set C 192.168.123.0/24 is directly connected, Serial1/0 D 192.168.1.0/24 [90/2172416] via 192.168.123.1, 00:06:33, Serial1/0 C 192.168.3.0/24 is directly connected, FastEthernet0/0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
R1のshow ip interface serial1/0を見ると、スプリットホライズンは無効化されています。
R1 show ip interface serial1/0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R1#show ip interface serial 1/0 Serial1/0 is up, line protocol is up Internet address is 192.168.123.1/24 Broadcast address is 255.255.255.255 Address determined by setup command MTU is 1500 bytes Helper address is not set Directed broadcast forwarding is disabled Multicast reserved groups joined: 224.0.0.10 Outgoing access list is not set Inbound access list is not set Proxy ARP is enabled Local Proxy ARP is disabled Security level is default Split horizon is disabled ICMP redirects are always sent ICMP unreachables are always sent ICMP mask replies are never sent ~省略~ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
R1のSerial1/0でスプリットホライズンが無効化されているのに、R2とR3のLAN側のルート情報がR1から送信されていないようです。
この原因は何ですか?







