Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> FTP服務器 >> linuxtftp服務

linuxtftp服務

日期:2017/1/20 17:52:43      編輯:FTP服務器

TFTP(Trivial File Transfer Protocol)是基於UDP協議開發,用來在客戶機與服務器之間進行簡單文件傳輸的協議,提供不復雜、開銷不大的文件傳輸服務。

一、修改/etc/xinetd.d/tftp配置文件,如下:

$ cat /etc/xinetd.d/tftp

service tftp

{

protocol = udp

port = 69

socket_type = dgram

wait = yes

user = root

server = /usr/sbin/in.tftpd

server_args = /tmp/tftproot

disable = no

}

二、運行服務

$ service xinetd start

三、查看服務是否啟動,69對應/etc/xinetd.d/tftp配置文件中的port端口

$ sudo netstat -anpu | grep 69

udp 0 0 0.0.0.0:69 0.0.0.0:* 14890/xinetd

Copyright © Windows教程網 All Rights Reserved