TFTP Server

From KlavoWiki
Revision as of 00:35, 2 November 2015 by David (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The following commands were completed on Centos 7.1

Install TFTP

yum -y install tftp tftp-server xinetd


Enable Service

vi /etc/xinetd.d/tftp

change

server_args             = -s /var/lib/tftpboot
disable                 = yes

to

server_args             = -c -s /var/lib/tftpboot
disable                 = no

Allow Anonymous

Elsewhere I see that this is required but I have not had to do so.

chmod 777 /var/lib/tftpboot

Turn On

systemctl enable xinetd
systemctl start xinetd