Configuring static parameters

Use the following syntax 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

The following shows the command usage 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: Configuration output

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#

Use the following syntax to add an IGMP static starg entry.

config>router# igmp
    interface ip-int-name
    no shutdown
    static
        group grp-ip-address
            starg
Example

The following shows the command usage 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: Configuration output

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#