View | Details | Raw Unified | Return to bug 275217
Collapse All | Expand All

(-)net/dhcpd/files/patch-dhcp-options.5 (+13 lines)
Added Link Here
1
--- dhcp-options.5.orig	2020-04-13 17:07:01 UTC
2
+++ dhcp-options.5
3
@@ -346,6 +346,10 @@ This option specifies whether the client should config
4
 for packet forwarding.
5
 A value of 0 means disable IP forwarding, and a value of 1 means enable
6
 IP forwarding.
7
+.It Ic option ipv6-only-preferred Ar uint32 ;
8
+The number of seconds for which an IPv6-only-capable client should disable
9
+DHCPv4.
10
+See RFC 8925 for details.
11
 .It Ic option irc-server Ar ip-address Oo , Ar ip-address ... Oc ;
12
 The
13
 .Ic irc-server
(-)net/dhcpd/files/patch-tables.c (+11 lines)
Added Link Here
1
--- tables.c.orig	2023-11-20 14:12:38 UTC
2
+++ tables.c
3
@@ -184,7 +184,7 @@ struct option dhcp_options[256] = {
4
 	{ "option-105", "X",				&dhcp_universe, 105 },
5
 	{ "option-106", "X",				&dhcp_universe, 106 },
6
 	{ "option-107", "X",				&dhcp_universe, 107 },
7
-	{ "option-108", "X",				&dhcp_universe, 108 },
8
+	{ "ipv6-only-preferred", "L",			&dhcp_universe, 108 },
9
 	{ "option-109", "X",				&dhcp_universe, 109 },
10
 	{ "option-110", "X",				&dhcp_universe, 110 },
11
 	{ "option-111", "X",				&dhcp_universe, 111 },

Return to bug 275217