diff options
author | Patrick Rohr <prohr@google.com> | 2023-07-19 17:52:13 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-07-23 13:51:24 +0300 |
commit | 1671bcfd76fdc0b9e65153cf759153083755fe4c (patch) | |
tree | 2cdf85b02de36c2fe6ad26db0cf77c6a6a47717f /include/linux/ipv6.h | |
parent | 5c9f7b04aadf79f783542d096dfbb8184e7c91f5 (diff) | |
download | linux-1671bcfd76fdc0b9e65153cf759153083755fe4c.tar.xz |
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 'include/linux/ipv6.h')
-rw-r--r-- | include/linux/ipv6.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 839247a4f48e..ed3d110c2eb5 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h @@ -33,6 +33,7 @@ struct ipv6_devconf { __s32 accept_ra_defrtr; __u32 ra_defrtr_metric; __s32 accept_ra_min_hop_limit; + __s32 accept_ra_min_rtr_lft; __s32 accept_ra_pinfo; __s32 ignore_routes_with_linkdown; #ifdef CONFIG_IPV6_ROUTER_PREF |