TFTP Server: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
 
Line 28: Line 28:
<pre>
<pre>
chmod 777 /var/lib/tftpboot
chmod 777 /var/lib/tftpboot
</pre>
= Reboot =
<pre>
reboot
</pre>
</pre>



Latest revision as of 00:35, 2 November 2015

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