Linux Routing Configuration

From NovaOrdis Knowledge Base
Revision as of 17:46, 21 March 2017 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

External

Internal

Adding Multicast Routing to a Specific Network Interface

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

More details about ip can be found here

ip

The equivalent "route" command is:

route add 224.0.0.0 netmask 240.0.0.0 dev <device-name>

Routing Configuration that Survives Reboot

Add the routing configuration to /etc/sysconfig/network-scripts/route-<device-name>:

# default multicast route
224.0.0.0 netmask 240.0.0.0 dev <device-name>