TFTP Server: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(Created page with "The following commands were completed on Centos 7.1 = Install TFTP = <pre> yum -y install tftp tftp-server xinetd </pre> = Enable Service = <pre> vi /etc/xinetd.d/tftp </pr...")
 
Line 25: Line 25:


= Allow Anonymous =
= Allow Anonymous =
Elsewhere I see that this is required but I have not had to do so.
<pre>
<pre>
chmod 777 /var/lib/tftpboot
chmod 777 /var/lib/tftpboot

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

Reboot

reboot

Turn On

systemctl enable xinetd
systemctl start xinetd