xref: /dragonfly/libexec/bootpd/Installation (revision 36a3d1d6)
1
2Installation instructions for SunOS
3
4Compile the executable:
5For SunOS 4.X:
6	make sunos4
7For SunOS 5.X:  (Solaris)
8	make sunos5
9
10Install the executables:
11
12	make install
13
14Edit (or create) the bootptab:
15(See bootptab.sample and bootptab.5 manual entry)
16	edit /etc/bootptab
17
18Edit /etc/services to add these two lines:
19bootps		67/udp		bootp		# BOOTP Server
20bootpc		68/udp				# BOOTP Client
21
22Edit /etc/inetd.conf to add the line:
23bootp	dgram	udp	wait	root	/usr/etc/bootpd bootpd -i
24
25If you compiled report.c with LOG_LOCAL2 (defined in the Makefile)
26then you may want to capture syslog messages from BOOTP by changing
27your syslog.conf file.  (See the sample syslog.conf file here).
28Test the change with:  logger -t test -p local2.info "message"
29
30