For When You Can't Have The Real Thing
[ start | index | login ]
start > CentOS > 7 > tftp-server

tftp-server

Created by dave. Last edited by dave, 6 years and 67 days ago. Viewed 2,264 times. #1
[edit] [rdf]
labels
attachments
(2018-01-12)

Problem

I need a tftp server on CentOS 7.

Solution

# yum -y install tftp-server xinetd
# systemctl start tftp-server
# vi /etc/xinetd.d/tftp
  (edit disabled = no)
# systemctl start xinetd
# firewall-cmd --add-service=tftp

If you need this config to survive reboots:

# systemctl enable xinetd
# systemctl enable tftp
# firewall-cmd --add-service=tftp --permanent

If you need clients to upload via tftp:

# setsebool -P tftp_anon_write 1
no comments | post comment
This is a collection of techical information, much of it learned the hard way. Consider it a lab book or a /info directory. I doubt much of it will be of use to anyone else.

Useful:


snipsnap.org | Copyright 2000-2002 Matthias L. Jugel and Stephan J. Schmidt