Feb 13, 2012
tom

What does this linux command mean “route add -net 224.0.0.0 netmask 240.0.0.0 eth0”

Question

Could somebody explain what exactly this command means in relation to transmitting and receiving multicast traffic

route add -net 224.0.0.0 netmask 240.0.0.0 eth0
Asked by smicjk

Answer

The “224.0.0.0″ is a reserved range of IPv4 addresses having special multicast meaning (IPv4 Multicast).

The command in itself just means that the multicast routing should go through the “eth0″ interface.

Answered by Ouki

Related posts:

  1. Why ip route add doesn’t work, but ip route add with less details and then change works?
  2. How can I get linux to honor new netmask without hard restart of networking subsystem?
  3. solaris 10 route add on specific interface
  4. How do I add a multicast route in Windows 7?
  5. net eth0: rx->offset 4294967295

Leave a comment