3 Server Configuration

  1. Install DHCP: Install net/isc-dhcp3-server you can use this config file dhcpd.conf, stick it in /usr/local/etc/.

  2. Enable tftp:

    1. Make a directory /usr/tftpboot

    2. Add this line to your /etc/inetd.conf:

      tftp    dgram   udp     wait    nobody  /usr/libexec/tftpd    tftpd /usr/tftpboot
      
  3. Enable NFS:

    1. Add this to /etc/rc.conf:

      nfs_server_enable="YES"
      
    2. Add this to /etc/exports:

      /usr -alldirs -ro
      
  4. Reboot to enable the new services or start them manually.