Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial

apt install tftpd-hpa

#change TFTP_ADDRESS to by setting address to 192.168.1.1:69 or the IP you need, otherwise it will listen on all IPs and interfaces which could be a security risk.

# edit /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp"
TFTP_ADDRESS="192.168.1.1:69"
TFTP_OPTIONS="--secure"


systemctl restart tftpd-hpa


#now edit our isc dhcp server /etc/dhcp/dhcpd.conf



#under the subnet declaration:

subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.2 192.168.1.200;
  #deny unknown-clients;
  option routers 192.168.1.1;
  option domain-name-servers 192.168.1.1;
  next-server 192.168.1.1;
  filename "pxelinux.0";
}


#how to exclude hosts from receiving a DHCP
# add this in the subnet declaration
  host whatevernameyouwant {
   hardware ethernet 00:10:28:e2:49:2e;
   ignore booting;
  }

#comment out the ignore booting and restart dhcpd if you want to re-enable it
 


###
apt install syslinux pxelinux
#for MBR copy this

cp /usr/lib/PXELINUX/pxelinux.0 /srv/tftp/
cp /usr/lib/syslinux/modules/bios/ldlinux.c32 /srv/tftp/
cp /usr/lib/syslinux//modules/bios/menu.c32 /srv/tftp/
cp /usr/lib/syslinux//modules/bios/memdisk /srv/tftp/
cp /usr/lib/syslinux//modules/bios/mboot.c32 /srv/tftp/
cp /usr/lib/syslinux//modules/bios/chain.c32 /srv/tftp/
cp /usr/lib/syslinux//modules/bios/libutil.c32 /srv/tftp/


mkdir /srv/tftp/images
mkdir /srv/tftp/pxelinux.cfg


vi /srv/tftp/pxelinux.cfg/default

default menu.c32
prompt 5
timeout 300

MENU TITLE Menu
LABEL rtt-Diagnostic
MENU rtt-Diagnostic
kernel ../images/kernelfs




service isc-dhcp-server restart
 


Tags:

debian, ubuntu, linux, tftpd, hpa, server, tutorialapt, install, tftp_address, ip, ips, interfaces, edit, etc, default, tftp_username, quot, tftp, tftp_directory, srv, tftp_options, systemctl, restart, isc, dhcp, dhcpd, conf, subnet, declaration, netmask, routers, domain, servers, filename, pxelinux, exclude, hosts, receiving, whatevernameyouwant, hardware, ethernet, booting, enable, apt, syslinux, mbr, cp, usr, lib, modules, bios, ldlinux, memdisk, mboot, libutil, mkdir, images, cfg, vi, prompt, timeout, label, rtt, diagnostic, kernel, kernelfs,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint