Lines Matching +full:nfs +full:- +full:kernel +full:- +full:server

34 bootloader is a modified version of the system third-stage bootstrap
38 3Com 3c905c Ethernet cards, and Ethernet-equipped Intel motherboards.
39 PXE supports DHCP configuration and provides low-level NIC access services.
43 to allow flexible configuration of the DHCP server.
47 bootloader retrieves the kernel, modules,
48 and other files either via NFS over UDP or by TFTP,
49 selectable through compile-time options.
50 In combination with a memory file system image or NFS-mounted root file system,
53 EEPROM-burner free construction of diskless machines.
58 by specifying it in the DHCP server's configuration file.
59 Below is a sample configuration for the ISC DHCP v3 server:
60 .Bd -literal -offset indent
61 option domain-name "example.com";
63 option subnet-mask 255.255.255.0;
64 option broadcast-address 10.0.0.255;
65 option domain-name-servers 10.0.0.1;
66 server-name "DHCPserver";
67 server-identifier 10.0.0.1;
68 next-server 10.0.0.1;
70 default-lease-time 120;
71 max-lease-time 120;
76 if exists user-class and option user-class = "FreeBSD" {
77 option root-path "tftp://10.0.0.1/FreeBSD";
82 .Va next-server
83 is the IP address of the next server in the bootstrap process, i.e.
84 your TFTP server or NFS server.
87 .Va option root-path
88 directives as the server and path to NFS mount for file requests,
89 respectively, or the server to make TFTP requests to.
94 from the specified server before loading any other files.
97 .Va option root-path
99 .Bl -tag -width <scheme>://ip/path
101 path to the root filesystem on the NFS server
103 path to the root filesystem on the NFS server
105 .It nfs://path
106 path to the root filesystem on the NFS server
107 .It nfs://ip/path
108 path to the root filesystem on the NFS server
111 path to the root filesystem on the TFTP server
113 path to the root filesystem on the TFTP server
118 defaults to a conservative 1024 byte NFS data packet size.
120 .Va nfs.read_size
141 .An -nosplit