File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,13 @@ CHANGES WITH 258 in spe:
109109 * The meson option 'integration-tests' has been deprecated, and will be
110110 removed in a future release.
111111
112+ systemd-networkd and networkctl:
113+
114+ * systemd-networkd now supports configuring the timeout for IPv4
115+ Duplicate Address Detection via a new setting
116+ IPv4DuplicateAddressDetectionTimeoutSec=. The default timeout value
117+ has been changed from 7 seconds to 200 milliseconds.
118+
112119 — <place>, <date>
113120
114121CHANGES WITH 257:
Original file line number Diff line number Diff line change @@ -996,7 +996,7 @@ DuplicateAddressDetection=none</programlisting></para>
996996 <listitem >
997997 <para >Configures the maximum timeout for IPv4 Duplicate Address Detection (RFC 5227). Must be a
998998 value between 1 millisecond and 60 seconds. If set, Duplicate Address Detection takes a randomized
999- time between 57% (4/7) and 100% of the given value. If unset, defaults to 7 seconds .</para >
999+ time between 57% (4/7) and 100% of the given value. If unset, defaults to 200 milliseconds .</para >
10001000
10011001 <xi : include href =" version-info.xml" xpointer =" v258" />
10021002 </listitem >
Original file line number Diff line number Diff line change 4343#define MAX_CONFLICTS 10U
4444
4545/* Default timeout from the RFC */
46- #define DEFAULT_ACD_TIMEOUT_USEC (7 * USEC_PER_SEC )
46+ #define DEFAULT_ACD_TIMEOUT_USEC (200 * USEC_PER_MSEC )
4747
4848typedef enum IPv4ACDState {
4949 IPV4ACD_STATE_INIT ,
You can’t perform that action at this time.
0 commit comments