Hi,
I'm trying to configure a juniper srx 220 in order to proxy IPTV multicast traffic between two interfaces. For that i've added the following configuration:
show protocols
igmp {
traceoptions {
file igmp_trace;
flag all;
}
interface ge-0/0/0.0 {
version 3;
}
interface vlan.21 {
version 3;
}
}
pim {
traceoptions {
file pim_trace;
flag all;
}
interface ge-0/0/0.0 {
mode dense;
}
interface vlan.21 {
mode dense;
}
}
In the traceoptions files i can see the following messages:
RCV IGMP V3 Report len 32 from 192.168.1.67 intf ge-0/0/0.0
Records 3
Group 232.16.1.13, type IS_EX, aux_len 0, sources 0
Group 232.0.8.8, type IS_EX, aux_len 0, sources 0
Group 239.255.255.250, type IS_EX, aux_len 0, sources 0
RPD_IGMP_SSM_REPORT_MODE_INVALID: Interface ge-0/0/0.0: Group record with invalid mode for SSM group 232.16.1.13 ignored
Jul 23 02:36:05.393278 RPD_IGMP_SSM_REPORT_MODE_INVALID: Interface ge-0/0/0.0: Group record with invalid mode for SSM group 232.0.8.8 ignored
I cannot understand what should i change in order to be able to proxy those multicast addresses, can you point me in the right direction?
Regards