diff options
author | Patrick Rohr <prohr@google.com> | 2023-07-19 16:52:13 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-07-23 12:51:24 +0200 |
commit | 1671bcfd76fdc0b9e65153cf759153083755fe4c (patch) | |
tree | 2cdf85b02de36c2fe6ad26db0cf77c6a6a47717f /Documentation/networking | |
parent | net: dsa: remove deprecated strncpy (diff) | |
download | linux-1671bcfd76fdc0b9e65153cf759153083755fe4c.tar.xz linux-1671bcfd76fdc0b9e65153cf759153083755fe4c.zip |
net: add sysctl accept_ra_min_rtr_lft
This change adds a new sysctl accept_ra_min_rtr_lft to specify the
minimum acceptable router lifetime in an RA. If the received RA router
lifetime is less than the configured value (and not 0), the RA is
ignored.
This is useful for mobile devices, whose battery life can be impacted
by networks that configure RAs with a short lifetime. On such networks,
the device should never gain IPv6 provisioning and should attempt to
drop RAs via hardware offload, if available.
Signed-off-by: Patrick Rohr <prohr@google.com>
Cc: Maciej Żenczykowski <maze@google.com>
Cc: Lorenzo Colitti <lorenzo@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/ip-sysctl.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst index 82f2117cf2b3..37603ad6126b 100644 --- a/Documentation/networking/ip-sysctl.rst +++ b/Documentation/networking/ip-sysctl.rst @@ -2288,6 +2288,14 @@ accept_ra_min_hop_limit - INTEGER Default: 1 +accept_ra_min_rtr_lft - INTEGER + Minimum acceptable router lifetime in Router Advertisement. + + RAs with a router lifetime less than this value shall be + ignored. RAs with a router lifetime of 0 are unaffected. + + Default: 0 + accept_ra_pinfo - BOOLEAN Learn Prefix Information in Router Advertisement. |