set ingress-group

Sets the ingress group to be used by the an interface or transport tunnel for forwarding matched packets.

Syntax

set ingress-group name
no set ingress-group name

Parameters

name
Specifies the configured ingress group to be bound to an interface or transport tunnel and used for packet forwarding. Name must not exceed 64 characters and must start with an alphabetic character or an underscore followed by an arbitrary sequence of alphabetic or numeric characters, underscores, hyphens, or dots.

Modes

Interface config mode

Transport tunnel config mode

Usage Guidelines

You must have the admin role to perform this task.

The following reserved keywords cannot be used as name identifiers: all, ingress-group, egress, egress-group, match, list, access-list, route-map, and listener-policy.

Table 1. Error messages
Message Reason
Error: ingress-group name identifier must start with an alphabetic character or an underscore. Name begins with non-alphabetic character or does not begin with an underscore.
Error: ingress-group name identifier cannot exceed 64 characters Name is longer than 64 characters.
Error: ingress-group name identifier must start with an alphabetic character or an underscore Name begins with non-alphabetic character or does not begin with an underscore.
Error: ingress-group name identifier must be an arbitrary sequence of alphabets, numerals, underscores, hyphens or dots. Name contains invalid characters.
Error: ingress-group name identifier must not be reserved keyword "ingress-group". Name includes the reserved word ingress-group.
Error: ethernet slot/number is a member of port-channel number cannot bind to ingress-group Ingress-group binding is not allowed in port-channel member ports.

Examples

The following example configures ingress-group ig1 to be used by interface ethernet 1/1 for forwarding matched packets.

device# configure terminal
device(config)# interface ethernet 1/1
device(config-if-eth-1/1)# set ingress-group ig1 

The following example configures ingress-group ig1 to be used by transport tunnel tt1 1 for forwarding matched packets.

device# configure terminal
device(config)# transport-tunnel tt1
device(config-tranport-tunnel)# set ingress-group ig1 

The following example shows the configuration configures ingress-group ig1 to be used by port-channel 1 for forwarding matched packets.

device# show running-config interface ethernet 1/1 
interface port-channel 1 
  set ingress-group ig1 
interface ethernet 1/1 
  set ingress-group ig1  
transport-tunnel tt1 
  set ingress-group ig1 

The following example unbinds ingress-group ig1 from the lp100 from transport tunnel tt1.

device# configure terminal
device(config)# transport-tunnel tt1
device(config-tranport-tunnel)# no set ingress-group ig1