Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== TFTP ====== ===== Server ===== ==== Fedora ==== <code bash> dnf in tftp-server firewall-cmd --add-service=tftp systemctl start tftp.socket </code> if you want to make it permanent instead: <code bash> firewall-cmd --permanent --zone=home --add-service=tftp firewall-cmd --reload systemctl enable tftp.socket systemctl daemon-reload </code> if you only want to bind to a specific IP/port: <file - /etc/systemd/system/tftp.service> … [Service] ExecStart=/usr/sbin/in.tftpd -s /var/lib/tftpboot -a 127.0.0.1:69 … </file> Last modified: 2024-07-05 14:31