Installation and configuration of a TFTP server
Peter Boy
Version F35-F37
Last review: 2023-00-00
Status: work in progress. Text is still raw and unedited yet. |
Abstract TBD
Installing the tftp server
-
Install the tftp server package.
# dnf install tftp-server
-
Start and enable the
tftp socket
.systemd
will automatically start thetftpd
service when required.# systemctl start tftp.socket # systemctl enable tftp.socket
If you enable the TFTP service in dnsmasq, allow access by TFTP requests: # iptables -I INPUT -i eth1 -p udp --dport 69 -j ACCEPT
Want to help? Learn how to contribute to Fedora Docs ›