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 To Use Camera Webcam in Docker for OBS Studio etc...
  • Computer Server Won't Post Boot Or Enter BIOS Setup After Installing RAID SAS or GPU Card etc..
  • How To Test PHP Scripts from CLI with GET variables/query string
  • apt-cache how to see all available versions of a package in Debian Ubuntu Mint
  • Virtualbox VBox Guest-utils drag and drop files stops working with Windows VMs
  • How To Remove Ubuntu Netplan and Go Back to /etc/network/interfaces
  • How To Force Flash an AMD Instinct GPU To Another Model Using Debian Ubuntu Mint Linux
  • How To compile ollama from source to use unsupported AMD GPU with rocm in Ubuntu Debian
  • QEMU KVM Virtio GPU Windows Cannot Select 1080P
  • Linux Gnome Desktop Ubuntu Mint Debian Gets Slower After Weeks
  • Firefox How to Save Full Page As Screenshot/PDF
  • Nvidia Datacenter Driver Tesla Slow nvidia-smi response and high utilization with 0 usage
  • ffmpeg how to normalize / increase the volume of your audio
  • kdenlive audio blips pops cracks artifacts solution fix
  • haproxy / nginx certbot SSL issues
  • nginx how to see the real IP when behind a CDN
  • Docker how to find real container child process ID
  • Alibaba Aliyun how to reset password solution 'Setup does not meet the requirements, please resetting'
  • RTL88X Series 80Mhz hostapd mode for Linux Debian Kali
  • How To Deploy Your Own Mastodon Server in Docker