[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/10] grub.texi: Add net_dhcp6 document
From: |
Michael Chang |
Subject: |
[PATCH 04/10] grub.texi: Add net_dhcp6 document |
Date: |
Mon, 16 Dec 2024 16:03:33 +0800 |
Update grub documentation for net_dhcp6 command.
Signed-off-by: Michael Chang <mchang@suse.com>
Signed-off-by: Ken Lin <ken.lin@hpe.com>
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
---
docs/grub.texi | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/docs/grub.texi b/docs/grub.texi
index 200e747af..50a779d11 100644
--- a/docs/grub.texi
+++ b/docs/grub.texi
@@ -5207,6 +5207,12 @@ This includes the following commands:
@item
@command{net_dhcp} - @pxref{net_dhcp}
+@item
+@command{net_bootp6} - @pxref{net_bootp6}
+
+@item
+@command{net_dhcp6} - @pxref{net_dhcp6}
+
@item
@command{net_get_dhcp_option} - @pxref{net_get_dhcp_option}
@@ -8141,10 +8147,12 @@ Note: The command is not allowed when lockdown is
enforced (@pxref{Lockdown}).
* net_add_dns:: Add a DNS server
* net_add_route:: Add routing entry
* net_bootp:: Perform a bootp/DHCP autoconfiguration
+* net_bootp6:: Perform a DHCPv6 autoconfiguration
* net_del_addr:: Remove IP address from interface
* net_del_dns:: Remove a DNS server
* net_del_route:: Remove a route entry
* net_dhcp:: Perform a DHCP autoconfiguration
+* net_dhcp6:: Perform a DHCPv6 autoconfiguration
* net_get_dhcp_option:: Retrieve DHCP options
* net_ipv6_autoconf:: Perform IPv6 autoconfiguration
* net_ls_addr:: List interfaces
@@ -8199,6 +8207,17 @@ command (@pxref{net_dhcp}).
@end deffn
+@node net_bootp6
+@subsection net_bootp6
+
+@deffn Command net_bootp6 [@var{card}]
+Alias for net_dhcp6, for compatibility with older version of the downstream
+patch set. It will perform the same DHCPv6 handshake with the net_dhcp6 command
+(@pxref{net_dhcp6}).
+
+@end deffn
+
+
@node net_del_addr
@subsection net_del_addr
@@ -8278,6 +8297,17 @@ are converted to string representation.
@end deffn
+@node net_dhcp6
+@subsection net_dhcp6
+
+@deffn Command net_dhcp6 [@var{card}]
+Perform configuration of @var{card} using DHCPv6 protocol. If no card name is
+specified, try to configure all existing cards. If configuration was
+successful, interface with name @var{card}@samp{:dhcp6} and configured address
+is added to @var{card}.
+@end deffn
+
+
@node net_ipv6_autoconf
@subsection net_ipv6_autoconf
--
2.47.1
- [PATCH 00/10] Support UEFI HTTP boot with IPv6 and DNS, Michael Chang, 2024/12/16
- [PATCH 01/10] net/http: Check result of grub_netbuff_put() in http_receive(), Michael Chang, 2024/12/16
- [PATCH 02/10] efinet: Add structures for PXE messages, Michael Chang, 2024/12/16
- [PATCH 04/10] grub.texi: Add net_dhcp6 document,
Michael Chang <=
- [PATCH 05/10] bootp: Process DHCPACK packet during HTTP Boot, Michael Chang, 2024/12/16
- [PATCH 03/10] efinet + bootp: add net_dhcp6 command supporting dhcpv6, Michael Chang, 2024/12/16
- [PATCH 06/10] efinet: Configure network from UEFI device path, Michael Chang, 2024/12/16
- [PATCH 07/10] efinet: Set DNS server from UEFI protocol, Michael Chang, 2024/12/16
- [PATCH 08/10] kern/efi/efi: Print URI and DNS device path info, Michael Chang, 2024/12/16
- [PATCH 09/10] kern/efi/efi: Correct endianness in IPv6 device path, Michael Chang, 2024/12/16
- [PATCH 10/10] bootp: Fix logical operator in DHCP option overload check, Michael Chang, 2024/12/16