Create a TFTP server and backup and restore device configurations
âš I am using a Debian machine for my TFTP server, so the commands presented are only valid for Linux. To do on your server On a Debian 10 machine, install a TFTP server: sudo -s apt install xinetd tftpd tftp Once the service is installed, you need to create the configuration file : nano /etc/xinetd.d/tftp and add the following lines to the file: service tftp { protocol = udp port = 69 socket_type = dgram wait = yes user = nobody server = /usr/sbin/in....