- Table of Contents
-
- H3C Fixed Port Campus Switches Configuration Examples-B70D029-6W100
- 01-Login Management Configuration Examples
- 02-RBAC Configuration Examples
- 03-Software Upgrade Examples
- 04-ISSU Configuration Examples
- 05-Software Patching Examples
- 06-Ethernet Link Aggregation Configuration Examples
- 07-Port Isolation Configuration Examples
- 08-Spanning Tree Configuration Examples
- 09-VLAN Configuration Examples
- 10-VLAN Tagging Configuration Examples
- 11-DHCP Snooping Configuration Examples
- 12-Cross-Subnet Dynamic IP Address Allocation Configuration Examples
- 13-IPv6 over IPv4 Tunneling with OSPFv3 Configuration Examples
- 14-IPv6 over IPv4 GRE Tunnel Configuration Examples
- 15-GRE with OSPF Configuration Examples
- 16-OSPF Configuration Examples
- 17-IS-IS Configuration Examples
- 18-BGP Configuration Examples
- 19-Policy-Based Routing Configuration Examples
- 20-OSPFv3 Configuration Examples
- 21-IPv6 IS-IS Configuration Examples
- 22-Routing Policy Configuration Examples
- 23-IGMP Snooping Configuration Examples
- 24-IGMP Configuration Examples
- 25-MLD Snooping Configuration Examples
- 26-IPv6 Multicast VLAN Configuration Examples
- 27-ACL Configuration Examples
- 28-Traffic Policing Configuration Examples
- 29-GTS and Rate Limiting Configuration Examples
- 30-Priority Mapping and Queue Scheduling Configuration Examples
- 31-Traffic Filtering Configuration Examples
- 32-AAA Configuration Examples
- 33-Port Security Configuration Examples
- 34-Portal Configuration Examples
- 35-SSH Configuration Examples
- 36-IP Source Guard Configuration Examples
- 37-Ethernet OAM Configuration Examples
- 38-CFD Configuration Examples
- 39-DLDP Configuration Examples
- 40-VRRP Configuration Examples
- 41-BFD Configuration Examples
- 42-NTP Configuration Examples
- 43-SNMP Configuration Examples
- 44-NQA Configuration Examples
- 45-Mirroring Configuration Examples
- 46-sFlow Configuration Examples
- 47-OpenFlow Configuration Examples
- 48-MAC Address Table Configuration Examples
- 49-Static Multicast MAC Address Entry Configuration Examples
- 50-IP Unnumbered Configuration Examples
- 51-MVRP Configuration Examples
- 52-MCE Configuration Examples
- 53-Attack Protection Configuration Examples
- 54-Smart Link Configuration Examples
- 55-RRPP Configuration Examples
- 56-BGP Route Selection Configuration Examples
- 57-IS-IS Route Summarization Configuration Examples
- 58-IRF Configuration Examples
- 59-VXLAN Configuration Examples
- Related Documents
-
Title | Size | Download |
---|---|---|
49-Static Multicast MAC Address Entry Configuration Examples | 66.22 KB |
Introduction
This document provides configuration examples of static multicast MAC address entries.
Prerequisites
The configuration examples in this document were created and verified in a lab environment, and all the devices were started with the factory default configuration. When you are working on a live network, make sure you understand the potential impact of every command on your network.
This document assumes that you have basic knowledge of multicast MAC addresses.
Example: Configuring static multicast MAC address entries
Network configuration
As shown in Figure 1, Router A runs IGMP and acts as the IGMP querier. Switch A does not run a Layer 2 multicast protocol.
Configure a static multicast MAC address entry on Switch A so that only Host A and Host C can receive multicast data for multicast group 224.1.1.1.
Analysis
Multicast MAC address entries guide Layer 2 multicast forwarding. They can be dynamically created through Layer 2 multicast protocols or manually configured by binding multicast MAC addresses and ports.
In this example, Switch A does not run a Layer 2 multicast protocol. To control destination ports of Layer 2 multicast data, configure a static multicast MAC address entry on Switch A.
Applicable hardware and software versions
The following matrix shows the hardware and software versions to which this configuration example is applicable:
Hardware |
Software version |
S6520X-HI switch series S6520X-EI switch series |
Supported in Release 1110P01 |
S6520X-SI switch series S6520-SI switch series S5000-EI switch series MS4600 switch series |
Supported in Release 1110P01 |
Restrictions and guidelines
When you configure multicast MAC address entries, follow these guidelines:
· You must specify an unused multicast MAC address in a manually configured multicast MAC address entry.
· By default, Ethernet interfaces, VLAN interfaces, and aggregate interfaces are shut down. You must first use the undo shutdown command to bring them up. This example assumes that all these interfaces are already up.
Procedures
# On Switch A, create VLAN 100.
<SwitchA> system-view
[SwitchA] vlan 100
[SwitchA-vlan100] quit
# Configure Ten-GigabitEthernet 1/0/1 through Ten-GigabitEthernet 1/0/4 to operate in Layer 2 mode, and assign the ports to VLAN 100.
[SwitchA] interface range ten-gigabitethernet 1/0/1 to ten-gigabitethernet 1/0/4
[SwitchA-if-range] port access vlan 100
[SwitchA-if-range] quit
# Translate the multicast IP address 224.1.1.1 to a multicast MAC address (0100-5e01-0101). (Details not shown.)
# Create a static entry for the multicast MAC address 0100-5e01-0101 with Ten-GigabitEthernet 1/0/2 and Ten-GigabitEthernet 1/0/4 in VLAN 100 as outgoing ports.
[SwitchA] mac-address multicast 0100-5e01-0101 interface ten-gigabitethernet 1/0/2 ten-gigabitethernet 1/0/4 vlan 100
Verifying the configuration
# Display static multicast MAC address entries for VLAN 100 on Switch A.
[SwitchA] display mac-address multicast vlan 100
MAC Address VLAN ID State Port/NickName Aging
0100-5e01-0101 100 Multicast XGE1/0/2 N
XGE1/0/4
The output shows that Ten-GigabitEthernet 1/0/2 and Ten-GigabitEthernet 1/0/4 have become outgoing ports of the multicast MAC group 0100-5e01-0101.
Configuration files
#
vlan 100
#
interface Ten-GigabitEthernet1/0/1
port link-mode bridge
port access vlan 100
#
interface Ten-GigabitEthernet1/0/2
port link-mode bridge
port access vlan 100
#
interface Ten-GigabitEthernet1/0/3
port link-mode bridge
port access vlan 100
#
interface Ten-GigabitEthernet1/0/4
port link-mode bridge
port access vlan 100
#
mac-address multicast 0100-5e01-0101 interface Ten-GigabitEthernet1/0/2 Ten-GigabitEthernet1/0/4 vlan 100
#