Linux 7 Multicast Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 41: Line 41:
==Multicast Routing==
==Multicast Routing==


Configure multicast routing, ensuring the multicast traffic is routed to the appropriate interface. The route we need is 224.0.0.0/4.
Configure multicast routing, ensuring the multicast traffic is routed to the appropriate interface, and the route configuration survives reboot. The route we need is 224.0.0.0/4.


<pre>
<pre>

Revision as of 18:07, 21 March 2017

Internal

Concepts

Multicast

Procedure

Multicast at Kernel Level

Make sure multicast is enabled at kernel level.

To compile multicast support into the kernel, CONFIG_IP_MULTICAST must be present in the kernel configuration file. The kernels are usually compiled with multicast support. If netstat -ng shows multicast groups being registered to, it means multicast support is available in kernel. For more details, see Troubleshooting below.

Multicast Support at Interface Level

Verify that the network interface you plan to use for multicast traffic has multicast enabled, and if not, turn it on. This can be done with the ip utility, as described here Change MULTICAST Flag on Device.

ip addr

Look for MULTICAST flag:

[eap@app01 ~]$ ip addr
...
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 08:00:27:cd:76:d7 brd ff:ff:ff:ff:ff:ff
...

To turn on:

ip link set dev <interface-name> multicast on

Multicast Routing

Configure multicast routing, ensuring the multicast traffic is routed to the appropriate interface, and the route configuration survives reboot. The route we need is 224.0.0.0/4.

ip route add 224.0.0.0/4 dev <device-name>

For more details, see Configure Multicast Routing.


/proc

/proc/net/dev_mcast

Contains Layer2 multicast groups which a device is listening to (interface index, label, number of references, number of bound addresses).

/proc/net/igmp

Contains IPv4 multicast groups joined by this host.

/proc/net/igmp6

Contains IPv6 multicast groups joined by this host.

Troubleshooting

Display Multicast Group Membership Information

netstat -g

displays multicast group membership information for IPv4 and IPv6. Optionally use -n to prevent DNS lookups (faster).

The same information can be obtained from /proc:

cat /proc/net/dev_mcast
cat /proc/net/igmp
cat /proc/net/igmp6

For more details on these files see /proc above.

ip has multicast querying abilities. See:

ip Multicast Support

Ping

Send Multicast Traffic

See

Java Network Traffic Generator

Organizatorium

TODO http://lartc.org/howto/lartc.multicast.html


echo 1 > /proc/sys/net/ipv4/ip_forward