Note: this is 16 bit Router Lifetime field in RA packets
*/
-#define RouterLifetime 65535
+/* RFC9096 defines recommended option lifetimes configuration values
+ ND_PREFERRED_LIMIT 2700
+ ND_VALID_LIMIT 5400
+
+ RFC9096 §3.4
+ CE routers SHOULD set the "Router Lifetime" of Router Advertisement
+ (RA) messages to ND_PREFERRED_LIMIT.
+
+ Note: while the RFC recommends SHOULD of ND_PREFERRED_LIMIT, this
+ define is used to cap values to a sane ceiling, i.e. ND_VALID_LIMIT.
+*/
+#define RouterLifetime 5400
#define ND_RA_FLAG_PROXY 0x4
#define ND_RA_PREF_HIGH (1 << 3)