Configuring static parameters

Procedure

  1. To add an IGMP static multicast source:
    config>router# igmp
            — interface ip-int-name
                — no shutdown
                — static
                    — group grp-ip-address
                        — source ip-address
    
    Example

    Use the following CLI syntax to configure static group addresses and source addresses for the SSM translate group ranges:

    config>router>igmp# interface lax-vls
        — config>router>igmp>if# static
        — config>router>igmp>if>static# group 239.255.0.2
        — config>router>igmp>if>static>group# source 172.22.184.197
        — config>router>igmp>if>static>group# exit
        — config>router>igmp>if>static# exit
        — config>router>igmp>if# exit
    
    Example

    The following example displays the configuration:

    A:LAX>config>router>igmp# info
    ----------------------------------------------
            interface "lax-sjc"
            exit
            interface "lax-vls"
                static
                    group 239.255.0.2
                        source 172.22.184.197
                    exit
                exit
            exit
            interface "p1-ix"
            exit
    ----------------------------------------------
    A:LAX>config>router>igmp#
    
  2. To add an IGMP static starg entry:
    config>router# igmp
            — interface ip-int-name
                — no shutdown
                — static
                    — group grp-ip-address
                        — starg
    
    Example

    Use the following CLI syntax to configure static group addresses and add a static (*,G) entry:

    config>router>igmp# interface lax-sjc
        — config>router>igmp>if# static
        — config>router>igmp>if>static# group 239.1.1.1
        — config>router>igmp>if>static>group# starg
        — config>router>igmp>if>static>group# exit
        — config>router>igmp>if>static# exit
        — config>router>igmp>if# exit
        — config>router>igmp#
    
    Example

    The following example displays the configuration:

    Example
    A:LAX>config>router>igmp# info
    ----------------------------------------------
            interface "lax-sjc"
                static
                    group 239.1.1.1
                        starg
                    exit
                exit
            exit
            interface "lax-vls"
                static
                    group 239.255.0.2
                        source 172.22.184.197
                    exit
                exit
            exit
            interface "p1-ix"
            exit
    ----------------------------------------------
    A:LAX>config>router>igmp#