Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F170990390
D55373.id172250.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
973 B
Referenced Files
None
Subscribers
None
D55373.id172250.diff
View Options
diff --git a/stand/i386/pxeldr/pxeboot.8 b/stand/i386/pxeldr/pxeboot.8
--- a/stand/i386/pxeldr/pxeboot.8
+++ b/stand/i386/pxeldr/pxeboot.8
@@ -130,7 +130,14 @@
acts just like
.Xr loader 8 .
.Pp
-For further information on Intel's PXE specifications and Wired for
+.Nm
+requires NFS over UDP.
+Many recent distributions of Linux only serve NFS over TCP.
+Enable UDP in some distributions by uncommenting
+.Ql udp=y
+in
+.Pa /etc/nfs.conf .
+.PpFor further information on Intel's PXE specifications and Wired for
Management (WfM) systems, see
.Li http://www.pix.net/software/pxeboot/archive/pxespec.pdf .
.Sh SEE ALSO
diff --git a/stand/libsa/rpc.c b/stand/libsa/rpc.c
--- a/stand/libsa/rpc.c
+++ b/stand/libsa/rpc.c
@@ -415,6 +415,11 @@
return (-1);
}
port = (int)ntohl(res->port);
+ if (port == 0) {
+ printf("Portmapper returned 0. TCP-only NFS server?\n");
+ free(pkt);
+ return (-1);
+ }
free(pkt);
rpc_pmap_putcache(d->destip, prog, vers, port);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Sep 9, 1:22 AM (6 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38552526
Default Alt Text
D55373.id172250.diff (973 B)
Attached To
Mode
D55373: pxeboot: don't hang with TCP-only NFS server. Add useful error message and manpage hint.
Attached
Detach File
Event Timeline
Log In to Comment