Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supplyment multicast document with a limitation #4850

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/multicast-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Antrea supports multicast traffic in the following scenarios:
- [Use case example](#use-case-example)
- [Limitations](#limitations)
- [Encap mode](#encap-mode)
- [Maximum number of receiver groups on one Node](#maximum-number-of-receiver-groups-on-one-node)
- [Traffic in local network control block](#traffic-in-local-network-control-block)
- [Linux kernel](#linux-kernel)
<!-- /toc -->
Expand Down Expand Up @@ -137,6 +138,13 @@ Support for Windows and IPv6 will be added in the future.
Configuration option `multicastInterfaces` is not supported with encap mode.
Multicast packets in encap mode are SNATed and forwarded to the transport interface only.

### Maximum number of receiver groups on one Node

A Linux host limits the maximum number of multicast groups it can subscribe to;
the default number is 20. The limit can be changed by setting [/proc/sys/net/ipv4/igmp_max_memberships](https://sysctl-explorer.net/net/ipv4/igmp_max_memberships/).
Users are responsible for changing the limit if Pods on the Node are expected to
join more than 20 groups.

### Traffic in local network control block

Multicast IPs in [Local Network Control Block](https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml#multicast-addresses-1) (224.0.0.0/24)
Expand Down