Install TFTP Server on Ubuntu 14.04
Tuyen D. Le August 16, 2023 [Server] #TFTPInstall the TFTP Server package
After successfully installing, in.tftpd
file should be found in /usr/sbin/
directory.
|
TFTPD configurations
The folder contains the TFTP files. The TFTP server will look up the requested file from a client in this directory.
- Changing the configuration in
/etc/xinetd.d/tftpd
directory
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
{
}
- On Ubuntu 14.04,
tftp
needs to be disabled from theinetd.conf
file
# comment out this line: tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp
- Restart
xinetd
service
- Verify configurations. Port 69 should be opened for incoming requests
|