[Contents] [Prev] [Next] [Index] [Report an Error]

Multicast Bandwidth Map Example

The following example creates a multicast bandwidth map for both multicast traffic admission control and QoS adjustment:

Note: In this example, you can replace the set admission-bandwidth command and set qos-bandwidth command with their adaptive command counterparts.

  1. Define a route-map using the set admission-bandwidth and set qos-bandwidth commands. You can optionally issue the set priority command.
    host1(config)#route-map mcast-bandwidths permit 10
    host1(config-route-map)#match ip address sdtv
    host1(config-route-map)#set admission-bandwidth 2000000
    host1(config-route-map)#set qos-bandwidth 2000000
    host1(config-route-map)#set priority 100
    host1(config-route-map)#route-map mcast-bandwidths permit 20
    host1(config-route-map)#match ip address hdtv
    host1(config-route-map)#set admission-bandwidth 10000000
    host1(config-route-map)#set qos-bandwidth 10000000
    host1(config-route-map)#set priority 200
    host1(config-route-map)#end
  2. Define the access list for use by the match ip address command to match (S,G) and (*,G) entries.
    host1(config)#access-list sdtv permit ip host 31.0.0.1 232.0.0.0 0.0.0.255
    host1(config)#access-list hdtv permit ip host 32.0.0.1 232.0.0.0 0.0.0.255
    host1(config)#access-list hdtv permit ip host 32.0.0.2 232.0.0.0 0.0.0.255
    host1(config-route-map)#end

    Note: You can also define a prefix-list or a prefix-tree for use by the match ip address command to match (S,G) and (*,G) entries.

For additional information about configuring QoS adjustment, see Configuring Multicast QoS Adjustment.

For additional information about configuring interface-level and port-level admission control, see Blocking and Limiting Multicast Traffic.

For additional information about creating route maps, see JUNOSe IP Services Configuration Guide .

set admission-bandwidth

set priority

set qos-bandwidth


[Contents] [Prev] [Next] [Index] [Report an Error]