-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TFTP-boot provisioning in IPv6 networks (#3532)
Co-authored-by: Ewoud Kohl van Wijngaarden <[email protected]>
- Loading branch information
Showing
5 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
guides/common/modules/con_foreman-and-dhcp-configuration.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[id="{project-context}-and-dhcp-configuration"] | ||
= {Project} and DHCP configuration | ||
|
||
{Project} manages DHCP reservations through a DHCP {SmartProxy}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
guides/common/modules/ref_options-in-unmanaged-dhcpv6.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[id="options-in-unmanaged-dhcpv6"] | ||
= Options in unmanaged DHCPv6 | ||
|
||
To provision hosts over TFTP in an IPv6-only network, configure the DHCP server to respond with the `bootfile-url` DHCP option. | ||
{Project} cannot manage the DHCPv6 service, therefore, you have to configure your DHCP server manually. | ||
|
||
`bootfile-url`:: | ||
The URL value of this option has to point to a file on TFTP {SmartProxy} that is a first-stage boot loader, such as `pxelinux.0`. | ||
Example configuration: | ||
+ | ||
[options="nowrap" subs="+quotes,attributes,verbatim"] | ||
---- | ||
"option-data": [ | ||
{ | ||
"name": "bootfile-url", | ||
"data": "tftp://2001:db8:1::1/pxelinux.0" | ||
} | ||
], | ||
---- |