tftp

Installing and Configuring TFTP Server on CentOS 7

Installing and Configuring TFTP Server on CentOS 7
TFTP (Trivial File Transfer Protocol) is a lightweight version of the FTP (File Transfer Protocol). TFTP doesn't have many of the advanced features such as security built in. TFTP also runs on UDP port 69 instead of any TCP port. But, it's still useful at the time of this writing. CISCO routers and switches uses TFTP server to backup and restore configuration files and IOS images. Network boot protocols such as PXE, BOOTP etc uses TFTP. There are many more usages of TFTP.

In this article, I am going to show you how to install and configure TFTP server on CentOS 7. So, let's get started.

Installing and Configuring TFTP Server:

First, update the YUM package repository cache with the following command:

$ sudo yum makecache

Now, install TFTP server and client packages with the following command:

$ sudo yum install tftp tftp-server

NOTE: The TFTP client package tftp is installed to test the TFTP server after configuration.

Now, press y and then press to continue.

TFTP client and server packages should be installed.

TFTP uses systemd by default. But, it's not a good idea to modify the default systemd service files. So, I am going to copy the systemd service files of tftp server to /etc/systemd/system directory just to be safe.

To copy the default tftp.service file to /etc/systemd/system directory, run the following command:

$ sudo cp -v /usr/lib/systemd/system/tftp.service /etc/systemd/system/tftp-server.service

The new tftp service file is called tftp-server.service which we can modify as much as we want.

Also copy the tftp.socket file to /etc/systemd/system directory with the following command:

$ sudo cp -v /usr/lib/systemd/system/tftp.socket /etc/systemd/system/tftp-server.socket

The new socket file is tftp-server.socket which we can work on.

Now, open the tftp-server.service file for editing with the following command:

$ sudo vi /etc/systemd/system/tftp-server.service

tftp-server.service file should be opened. Now, you have to modify the lines as marked in the screenshot below.

I replaced tftp.socket with tftp-server.socket. I also changed the command (ExecStart) that starts the TFTP daemon. The -c TFTP option will let you upload files to the server, the -p option will solve many of the permission issues, and the -s option sets /var/lib/tftpboot as the directory which you can access via TFTP.

Also add WantedBy=multi-user.target in the [Install] section as marked in the screenshot below.

This is the final tftp-server.socket file. Now, save the file.

Now, open the tftp-server.socket file for editing with the following command:

$ sudo vi /etc/systemd/system/tftp-server.socket

Now, add BindIPv6Only=both line in the [Socket] section as marked in the screenshot below and save the file.

In order to enable anonymous upload to the TFTP server, you need to do some SELinux configuration.

For SELinux configuration, install the policycoreutils-python package with the following command:

$ sudo yum install policycoreutils-python

Now, press y and then press to continue.

policycoreutils-python package should be installed.

Now, enable SELinux TFTP anonymous write with the following command:

$ sudo setsebool -P tftp_anon_write 1

The TFTP directory is /var/lib/tftpboot. It needs to have read, write and executable permission for the directory owner, group and others in order for TFTP upload and download to work. Otherwise, you will get permission error.

You can assign the required directory permissions to the /var/lib/tftpboot directory with the following command:

$ sudo chmod 777 /var/lib/tftpboot

Now, try to start the tftp-server service with the following command:

$ sudo systemctl start tftp-server

Now, check whether the tftp-server service is running with the following command:

$ sudo systemctl status tftp-server

As you can see, the service is active or running. So, TFTP should be configured correctly.

Now that TFTP service is running, we have to test the TFTP server to see whether it works or not.

First, run the following command to find the IP address of your TFTP server.

$ ip a

As you can see, the IP address is 192.168.11.134. It will be different for you. So, make sure to replace it with yours from now on.

Now, connect to the TFTP server with the following command:

$ tftp 192.168.11.134

You should be connected.

Now, enable verbose mode as follows:

tftp> verbose

Now, try to upload a file (let's say hello.txt) to the TFTP server as follows:

tftp> put hello.txt

As you can see, the file is successfully uploaded to the TFTP server.

Now, exit out of the TFTP command prompt.

tftp> quit

Now that everything is working correctly, add the tftp-server service to the system startup with the following command:

$ sudo systemctl enable tftp-server

Now, configure firewalld firewall program to allow TFTP requests to the server with the following command:

$ sudo firewall-cmd --zone=public --add-service=tftp --permanent

Now, reload firewalld for the changes to take effect with the following command:

$ sudo firewall-cmd --reload

TFTP server should be configured.

Known Issues:

When you try to upload files to the TFTP server from your computer, you may see Transfer timed out error as marked in the screenshot below. This is a known issue on CentOS and RHEL systems. TFTP uses UDP port to communicate and for some reason the client firewall blocks it. This is the reason for this error.

To fix the problem, disable firewall on the client and try to upload the file again. It should work as you can see in the screenshot below.

So, that's how you install and configure TFTP server on CentOS 7. Thanks for reading this article.

OpenTTD vs Simutrans
Creating your own transport simulation can be fun, relaxing and extremely enticing. That's why you need to make sure that you try out as many games as...
OpenTTD Tutorial
OpenTTD is one of the most popular business simulation games out there. In this game, you need to create a wonderful transportation business. However,...
SuperTuxKart for Linux
SuperTuxKart is a great title designed to bring you the Mario Kart experience free of charge on your Linux system. It is pretty challenging and fun to...