|
Posted by response3 on May 27, 2008, 7:17 pm
If you were Registered and logged in, you could reply and use other advanced thread options
> Hello,
>
> do some one have an idea, how to emulate a IGMP Proxy [1] on IOS 12.4?
>
> I'd like to emulate the T-Com device (SpeedPoint W701V) on order to
> receive the IPTV.
>
> Thank You,
>
> Mark
>
> [1]http://sourceforge.net/projects/igmpproxy
Are you trying to get multicast traffic through a Cisco router between
separate IP subnets? If so, you need to enable multicast routing and
apply PIM to each interface that this traffic will pass through. In
most cases, this will do it:
en
conf t
ip multicast-routing
ip igmp-snooping
interface s0/0
ip pim sparse-mode
interface s0/1
ip pim sparse-mode
end
To verify, use:
show ip igmp groups
show ip igmp interface
sh ip mroute
|