For decades, the lifetime of ARP entries has been 20 minutes. This is
known to cause issues in environments where IP adresses may get recycled
at a high rate (virtualization / cloud, wifi networks...) Reducing the
lifetime is a nop except in the rare case where we regularly exchange
packets with a given node on the local network more frequently than the
old lifetime but less frequently than the new lifetime.
- Reduce the default value of V_arpt_keep / net.link.ether.inet.max_age from 1200 seconds to 60 seconds.
- Add a V_arpt_jitter / net.link.ether.inet.jitter variable which defaults to 10 seconds.
- Combine the two to produce a random value ranging from V_arpt_keep - V_arpt_jitter to V_arpt_keep + V_arpt_jitter.
PR: 291100
MFC after: 1 week
Relnotes: yes