3.2.1 Ensure source routed packets are not accepted

Information

In networking, source routing allows a sender to partially or fully specify the route packets take through a network. In contrast, non-source routed packets travel a path determined by routers in the network. In some cases, systems may not be routable or reachable from some locations (e.g. private addresses vs. Internet routable), and so source routed packets would need to be used.

Rationale:

Setting net.ipv4.conf.all.accept_source_route, net.ipv4.conf.default.accept_source_route, net.ipv6.conf.all.accept_source_route and net.ipv6.conf.default.accept_source_route to 0 disables the system from accepting source routed packets. Assume this system was capable of routing packets to Internet routable addresses on one interface and private addresses on another interface. Assume that the private addresses were not routable to the Internet routable addresses and vice versa. Under normal routing circumstances, an attacker from the Internet routable addresses could not use the system as a way to reach the private address systems. If, however, source routed packets were allowed, they could be used to gain access to the private address systems as the route could be specified, rather than rely on routing protocols that did not allow this routing.

Solution

Run the following command to set the active kernel parameters and persist the settings:

# apiclient apply <<EOF
[settings.kernel.sysctl]
"net.ipv4.conf.all.accept_source_route" = "0"
"net.ipv4.conf.default.accept_source_route" = "0"
"net.ipv6.conf.all.accept_source_route" = "0"
"net.ipv6.conf.default.accept_source_route" = "0"
EOF
Run the following command to flush the routing caches:

# sysctl -w net.ipv4.route.flush=1
# sysctl -w net.ipv6.route.flush=1

See Also

https://workbench.cisecurity.org/benchmarks/6709

Item Details

Category: CONFIGURATION MANAGEMENT, SYSTEM AND SERVICES ACQUISITION

References: 800-53|CM-1, 800-53|CM-2, 800-53|CM-6, 800-53|CM-7, 800-53|CM-7(1), 800-53|CM-9, 800-53|SA-3, 800-53|SA-8, 800-53|SA-10, CSCv7|5.1

Plugin: Unix

Control ID: 6393a5c949d3261fb90462898a3378ebc32d411e665a61cd2c8b1329269f663a