informatique:logiciels:dhcpd
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| informatique:logiciels:dhcpd [2019/10/04 15:26] – [Client poli] pteu | informatique:logiciels:dhcpd [2019/12/02 09:23] (current) – [Boot BIOS vs UEFI] pteu | ||
|---|---|---|---|
| Line 200: | Line 200: | ||
| </ | </ | ||
| + | =====Boot BIOS vs UEFI===== | ||
| + | Pour prendre en compte le PXE avec des machines UEFI : on doit utiliser des fichiers différents en fonction de l' | ||
| + | <code bash> | ||
| + | # Definition of PXE-specific options | ||
| + | # Code 1: Multicast IP address of bootfile | ||
| + | # Code 2: UDP port that client should monitor for MTFTP responses | ||
| + | # Code 3: UDP port that MTFTP servers are using to listen for MTFTP requests | ||
| + | # Code 4: Number of secondes a client must listen for activity before trying | ||
| + | # to start a new MTFTP transfer | ||
| + | # Code 5: Number of secondes a client must listen before trying to restart | ||
| + | # a MTFTP transfer | ||
| + | option space PXE; | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | option arch code 93 = unsigned integer 16; # RFC4578 | ||
| + | # | ||
| + | # [..] | ||
| + | class " | ||
| + | match if substring(option vendor-class-identifier, | ||
| + | | ||
| + | # 6 EFI IA32 | ||
| + | #< | ||
| + | if option arch = 00:06 { | ||
| + | filename " | ||
| + | # 7 EFI BC (EFI Byte Code) | ||
| + | } else if option arch = 00:07 { | ||
| + | filename " | ||
| + | # Défaut (cas des machines avec BIOS classiques) | ||
| + | } else { | ||
| + | filename " | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| ======Diagnostic===== | ======Diagnostic===== | ||
informatique/logiciels/dhcpd.1570202815.txt.gz · Last modified: 2019/10/04 15:26 by pteu