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