Linux 7 Multicast Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 58: Line 58:


Ping and generate multicast traffic. For more details see the [[#Troubleshooting|Troubleshooting]] section.
Ping and generate multicast traffic. For more details see the [[#Troubleshooting|Troubleshooting]] section.
=<tt>/proc</tt>=
==/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=
=Troubleshooting=
Line 108: Line 94:


See {{Internal|Java Network Traffic Generator|Java Network Traffic Generator}}
See {{Internal|Java Network Traffic Generator|Java Network Traffic Generator}}
=<tt>/proc</tt>=
==/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.


=Organizatorium=
=Organizatorium=


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

Revision as of 18:19, 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.

iptables Configuration

If iptables runs on the system, it must be configured to allow multicast traffic for the interface that will handle multicast traffic. Details on how to do that are available here:

Configure iptables to allow Multicast

Test

Ping and generate multicast traffic. For more details see the Troubleshooting section.

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

A host with multicast enabled will listen by default to 224.0.0.1, so all the hosts on the network can be pinged.

ping -c 10 224.0.0.1

Send Multicast Traffic

See

Java Network Traffic Generator

/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.

Organizatorium

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