Skip to main content

Posts

Showing posts from May, 2018

Setup TFTP Server in RHEL/CentOS 7

Welcome to My Blog, It is my First Blog I hope I will continue with more topics on Linux, HP-UX, Oracle, WebLogic Server, Oracle Secure Backup and much more. What is TFTP-Server Trivial File Transfer Protocol (TFTP) is an Internet software utility for transferring ãles that is simpler to use than the File Transfer Protocol (FTP) but less capable. It is used where user authentication and directory visibility are not required. TFTP uses the User Datagram Protocol (UDP) rather than the Transmission Control Protocol (TCP). 1. Install tftp-server and xinetd is also required # yum install -y tftp tftp-server* xinetd* 2.  Edit "/etc/xinetd.d/tftp" – set disable to no and add -c option into server_args  to upload files to TFTP-Server from clients. # vim /etc/xinetd.d/tftp service tftp {          socket_type = dgram          protocol = udp          wait = yes       ...