• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

gentoo/H03-Jun-2013-4530

MakefileH A D03-Jun-2013281 2313

README.mdH A D03-Jun-20132.3 KiB5438

dhcp.hH A D03-Jun-20136.7 KiB206138

pdhcp.cH A D03-Jun-20132.8 KiB12074

pdhcp.hH A D03-Jun-20132.4 KiB6834

pxe-pdhcp.cH A D03-Jun-20139.7 KiB397302

README.md

1pxe-pdhcp
2===========
3
4A implementation of Preboot Execution Environment (PXE) server.
5
6pxe-pdhcp works with DHCP server running on another host. The DHCP server
7doesn't need to be configured for any PXE specific options. This means that
8you can set up network boot environment without re-configuring existent DHCP
9server.
10
11    usage: pxe-pdhcp  [-d] [-i interface]
12                      [-l listen address] [-t tftp address] [-b broadcast address]
13                      <nbp name>
14
15pxe-pdhcp listens on two well-known ports (67/udp and 68/udp) so the root
16privilege is needed to run.
17
18With -d option, pxe-pdhcp runs on foreground. This option is useful for debugging.
19
20Specify nework interface name ('eth0' for example, on Linux) to -i option.
21
22If the network interface has more than one IP address, use -l, -t, -b options.
23-i or (-l,-t and -b) option is required.
24
25Finally specify the path of Network Bootstrap Program on the TFTP server to
26<nbp name> option. It will be 'pxelinux.0' if you are using PXELINUX.
27
28----
29
30    Copyright (c) 2007 FURUHASHI Sadayuki
31
32    Permission is hereby granted, free of charge, to any person obtaining a copy
33    of this software and associated documentation files (the "Software"), to deal
34    in the Software without restriction, including without limitation the rights
35    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36    copies of the Software, and to permit persons to whom the Software is
37    furnished to do so, subject to the following conditions:
38
39    The above copyright notice and this permission notice shall be included in
40    all copies or substantial portions of the Software.
41
42    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48    THE SOFTWARE.
49
50    dhcp.h is provided by ISC-DHCP copyright by Internet Systems Consortium
51    licensed under MIT license. the original software and related information is
52    available at https://www.isc.org/software/dhcp/.
53
54