マルチキャストルーティングの問題 【CCIEレベル】
目次
ネットワーク構成
R1を中心とするハブ&スポークのフレームリレーネットワークを介して、マルチキャストルーティングを行います。ネットワーク構成は下記の図のようになっています。
設定情報
ユニキャストルーティングおよびマルチキャストルーティングの設定を次のように行っています。
・ユニキャストルーティング
シングルエリアOSPFで、すべてインタフェースがエリア0に所属しています。
・マルチキャストルーティング
PIM-SMを利用しています。239.1.1.1のRPは、R2のLoopback0(10.0.0.2)になるようにスタティックに設定しています。
R1~R3の設定の抜粋は、次の通りです。
R1 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ip multicast-routing ! interface Loopback0 ip address 10.0.0.1 255.255.255.255 ip pim sparse-mode ! interface Serial0/0 ip address 192.168.100.1 255.255.255.0 ip pim sparse-mode encapsulation frame-relay no fair-queue frame-relay map ip 192.168.100.2 120 broadcast frame-relay map ip 192.168.100.3 130 broadcast no frame-relay inverse-arp ! router ospf 1 router-id 1.1.1.1 log-adjacency-changes network 10.0.0.1 0.0.0.0 area 0 network 192.168.100.0 0.0.0.255 area 0 neighbor 192.168.100.2 neighbor 192.168.100.3 ! ip pim rp-address 10.0.0.2 1 ! access-list 1 permit 239.3.3.3 ! ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R2 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ip multicast-routing ! interface Loopback0 ip address 10.0.0.2 255.255.255.255 ip pim sparse-mode ! interface FastEthernet0/0.22 encapsulation dot1Q 22 ip address 192.168.22.2 255.255.255.0 ip pim sparse-mode ! interface Serial0/0 ip address 192.168.100.2 255.255.255.0 ip pim sparse-mode encapsulation frame-relay ip ospf priority 0 no fair-queue frame-relay map ip 192.168.100.1 210 broadcast frame-relay map ip 192.168.100.3 210 no frame-relay inverse-arp ! router ospf 1 router-id 2.2.2.2 log-adjacency-changes network 10.0.0.2 0.0.0.0 area 0 network 192.168.0.0 0.0.255.255 area 0 ! ip pim rp-address 10.0.0.2 1 ! access-list 1 permit 239.3.3.3 ! ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ R3 設定抜粋 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ip multicast-routing ! interface Loopback0 ip address 10.0.0.3 255.255.255.255 ip pim sparse-mode ip igmp join-group 239.3.3.3 ! interface FastEthernet0/0.33 encapsulation dot1Q 33 ip address 192.168.33.3 255.255.255.0 ip pim sparse-mode ! interface Serial0/0 ip address 192.168.100.3 255.255.255.0 ip pim sparse-mode encapsulation frame-relay ip ospf priority 0 no fair-queue frame-relay map ip 192.168.100.1 310 broadcast frame-relay map ip 192.168.100.2 310 no frame-relay inverse-arp ! router ospf 1 router-id 3.3.3.3 log-adjacency-changes network 10.0.0.3 0.0.0.0 area 0 network 192.168.0.0 0.0.255.255 area 0 ! ip pim rp-address 10.0.0.2 1 ! access-list 1 permit 239.3.3.3 ! ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
問題点
レシーバが239.3.3.3にJoinしているにも関わらずRPであるR1までの共有ツリーが作成されていません。そのため、ソースからのマルチキャストパケットも正常にルーティングできていません。
この問題の原因は何でしょうか?
また、解決するためには、どのルータでどのような設定を追加すればよいでしょうか?