Opened 14 years ago
Closed 14 years ago
#7384 closed defect (fixed)
PXE fails if ~/.VirtualBox/TFTP/ is missing => Fixed in SVN
Reported by: | Luiz Angelo Daros de Luca | Owned by: | |
---|---|---|---|
Component: | network/NAT | Version: | VirtualBox 3.2.8 |
Keywords: | Cc: | ||
Guest type: | other | Host type: | Linux |
Description (last modified by )
Hello,
I configured my machine to use a external TFTP server:
VBoxManage modifyvm "Diskless NAT" --nattftpserver1 10.9.1.31 VBoxManage modifyvm "Diskless NAT" --nattftpfile1 /pxelinux.0
However, according to vbox code, it still checks for TFTP directory:
./src/VBox/Devices/Network/slirp/bootp.c:
248 /*DHCP Offer specific*/ 249 if ( tftp_prefix 250 && RTDirExists(tftp_prefix) 251 && bootp_filename) 252 RTStrPrintf((char*)rbp->bp_file, sizeof(rbp->bp_file), "%s", bootp_filename); 253
Please, if tftp_server is defined, ignore tftp_prefix.
Change History (7)
comment:1 by , 14 years ago
Description: | modified (diff) |
---|
comment:2 by , 14 years ago
comment:4 by , 14 years ago
Summary: | PXE fails if ~/.VirtualBox/TFTP/ is missing → PXE fails if ~/.VirtualBox/TFTP/ is missing => Fixed in SVN |
---|
The fix will be included in the next maintenance release.
comment:7 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Indeed this code should be changed in manner to validate folder in case it's built-in server only.