【old】HSRP Aware PIM(RPについて)

画像

基本設定

今更ながら

PIM-SM、staticかautoのRP設定をしてやらないとRPが存在せずマルチキャストを転送できない。

vIOS1#sh ip pim rp mapping
PIM Group-to-RP Mappings

vIOS1#
vIOS3#sh ip mroute
<略>

(*, 239.0.0.1), 00:01:07/00:02:57, RP 0.0.0.0, flags: SJC
Incoming interface: Null, RPF nbr 0.0.0.0
Outgoing interface list:
GigabitEthernet0/2, Forward/Sparse, 00:01:07/00:02:57

(*, 224.0.1.40), 00:01:51/00:02:49, RP 0.0.0.0, flags: DCL
Incoming interface: Null, RPF nbr 0.0.0.0
Outgoing interface list:
GigabitEthernet0/0, Forward/Sparse, 00:01:51/00:02:49

vIOS3#sh ip pim rp mapping
PIM Group-to-RP Mappings

Incoming interfaceがNullになっている。

vIOS1(config)#int lo0
vIOS1(config-if)#ip address 1.1.1.1 255.255.255.255
vIOS1(config-if)#ip pim sparse-mode
vIOS1(config-if)#exit

vIOS1(config)#access-list 1 permit host 239.0.0.1
vIOS1(config)#ip pim rp-address 1.1.1.1 1
vIOS1(config)#
vIOS1#sh ip pim rp 239.0.0.1
Group 239.0.0.1 not found

vIOS3#sh ip pim rp 239.0.0.1
Group: 239.0.0.1, RP: 0.0.0.0

・vIOS1をRPに設定してあげたけど他のルータには伝わらず。
・よくよく調べると全ルータでStatic RPの設定をしないといけないことがわかる。そらAuto-RPが存在するわな。

vIOS3(config)#access-list 1 permit 239.0.0.1
vIOS3(config)#ip pim rp-address 1.1.1.1 1
vIOS3(config)#end

vIOS3#sh ip pim rp mapping
PIM Group-to-RP Mappings
Acl: 1, Static
RP: 1.1.1.1 (?)

vIOS3#sh ip mroute
<略>

(*, 239.0.0.1), 00:55:15/00:01:55, RP 1.1.1.1, flags: SJC
Incoming interface: GigabitEthernet0/0, RPF nbr 13.13.13.1
Outgoing interface list:
GigabitEthernet0/2, Forward/Sparse, 00:55:15/00:01:55

vIOS1#sh ip pim rp mapping
PIM Group-to-RP Mappings
Acl: 1, Static
    RP: 1.1.1.1 (?)

pingも通りました。

vIOS5#ping 239.0.0.1
Type escape sequence to abort.
Sending 1, 100-byte ICMP Echos to 239.0.0.1, timeout is 2 seconds:
Reply to request 0 from 10.0.0.10, 123 ms

そんなんがしたかったんじゃない

本当はHSRP Aware PIMの検証をしたかった。
まああやふやな部分が確実な知識になったからいいけど。
長くなったので記事をわける。