-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL
156 lines (118 loc) · 5.92 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
PXE daemon install
==================
1) If you have a bootp/dhcp daemon installed and running, skip to step 2. If
you have not, download the boot daemon from a sunsite mirror, it is under:
/pub/Linux/system/network/boot.net/bootpd-2.4.tar.gz
eg:
ftp://src.doc.ic.ac.uk//Mirrors/sunsite.unc.edu/pub/Linux/system/network/boot.net/bootpd-2.4.tar.gz
Follow the install instructions in the bootp package.
2) Download and install PXELINUX from here: http://syslinux.zytor.com/pxe.php
My setup for this looks something like this:
in /tftpboot/X86PC/linux I have the PXELINUX bootstrap (linux.0)
and the kernel I am going to boot from (bzImage)
Make a directory here called pxelinux.cfg, inside are a series of files
which are named after the hex IP addresses of the machines. ie:
/tftpboot/X86PC/linux/pxelinux.cfg/C0A8C8F1
which contains:
label linux
kernel bzImage
append ip=auto
You may also need to update your tftp daemon for this as PXELINUX requires
an options not present in many versions eg the Solaris tftpd. Details of
this are on the PXELINUX page.
3) Run the configure script in this directory.
There are several option that can be used in this:
--disable-setuid => Disable the daemon from setuiding to a low privilaged user.
--with-setuid=user => Set the username to setuid to.
--with-config=file => Set the location of the config file.
--with-log=file => Set the location of the log file.
4) Check config.h to make sure of things, most things should be ok,
however you may wish to change the location of the log file and/or the
configuration file.
5) Type 'make' in this directory. If this fails, please send me an email and
I will try and fix it, however it is most likely to be a header clash or
something.
6) Type 'make install', this will install the pxe daemon and it's config file.
7) Edit /etc/pxe.conf and set up the appropriate entries.
set the interface line to be the interface on the machine to bind to. If
you enter an invalid interface, the daemon will bind to all available
interfaces.
It is mandatory to set the default_address address to the default interface
of the machine. This is because the PXE protocol is a bit dumb, it sends
multicast packets to the bootserver, then uses the server address in the
bootp server field for the tftp transfer procedure. 3Com cards are
particularly prone to this stupidity.
I have not fully tested broadcast capability as yet, there may be some
problems with it, however PXE prefers multicast over broadcast, and that
has been tested.
Most of the other directives are fairly self-explanatory, and you should not
need to change them. The menus however do need to be set up.
As the config file stands, the first service is a local boot, and the second
is a network boot/remote install. The format of the service line is:
service=<CSA>,<min layer>,<max layer>,<basename>,<menu entry>
The CSA is one of several Client System Architectures, most PXE platforms are
X86, so this should be left as 'X86PC' however other platforms are supported
by inserting the appropriate CSA.
The min and max layers are the starting and finishing layers in the boot
protocol, most commonly these are:
Layer 0: The bootstrap code.
Layer 1: The kernel.
Layer 2: The initrd.
To use a ramdisk, please refer to the PXELINUX config.
The basename defines how the filename is built, see below for an example.
The Menu entry is the string that should be printed on screen when a menu
is requested.
There is one special case for all architectures, when the basename is
"local" the layers will be ignored and a local boot performed.
E.G.:
service=X86PC,0,0,pxelinux,PXELinux
This defines a service for an X86 PC, starting at layer 0 and ending at
layer 1. The basename (filenames below) builds the filename, and
"Linux Install" will be displayed on the boot menu.
Files requested:
/tftpboot/X86PC/pxelinux/pxelinux.0
When more than one service is configured, the menu order is implied by the
service description order. If no key is pressed within the prompt_timeout
time, the first item from the services list will be selected.
8) Before you are ready to go, make sure you have the following lines in
your inetd.conf file (or equivalent):
in /etc/bootptab, make sure every system you intend to boot via PXE has
the line
:T60="PXEClient":\
in it (This is case sensitive). Otherwise the PXE ROM on the network card
will not use the PXE protocol. Also make sure the bootptab has a correctly
set tftp base directory and has no boot filename.
for ISC dhcpd 3.0 users, just add
option vendor-class-identifier "PXEClient";
to each class you wish to PXE boot.
#########
#tftpd
tftp dgram udp wait root /usr/sbin/in.tftpd in.tftpd -s /tftpboot
#bootp
bootps dgram udp wait root /usr/local/sbin/bootpd bootpd -i -c /tftpboot /etc/bootptab
#########
BSD users may want something like:
#########
tftp dgram udp wait root /usr/libexec/tftpd tftpd -l -s /tft
pboot -u nobody /
#########
If you change your inetd.conf file, make sure to send inetd a HUP signal.
If you do not understand how to so this, please read the appropriate man
pages/One of the Linux HOWTOs.
And /etc/services:
pxe 4011/udp # pxe
Also make sure you have a route specified for multicast packets, or a default
route. Solaris automatically defines a route for multicast packets however
you may need to change the binding interface.
to enable a default route, as root type
route add default <interface>
where <interface> is the name of your interface, eg eth0, le0, hme0, ...
on some versions of linux you can type to route multicast packets
route add 224.0.0.0 netmask 240.0.0.0 dev <interface>
9) as root type "pxe" (otherwise the daemon will not set UID to another user.
10) go play.
If you have problems with this daemon, please make sure it is repeatable,
and send any core dumps/packet dumps to me. If you compiled the daemon
without debugging, please don't send the core dumps.
Tim Hurman. Feb 2003
kano@kano.org.uk