TFTP Server

From KlavoWiki
Revision as of 05:56, 7 September 2015 by David (talk | contribs) (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...")
(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

chmod 777 /var/lib/tftpboot

Reboot

reboot

Turn On

systemctl enable xinetd
systemctl start xinetd