tftp服务器软件tftp服务器传文件到2440开发板


如何打开TFTP

运行TFTP的软件。。运行了后它就是已经启动了TFTP了。
更多TFTP相关的请看:
/e/search/result/?searchid=174

tftp到底怎么使用

如何使用Tftp:

TFTP 自带的帮助信息:

TFTP [-i] host [GET | PUT] source [destination]

-i Specifies binary image transfer mode (also called

octet). In binary image mode the file is moved

literally, byte by byte. Use this mode when transferring binary files.

host Specifies the local or remote host.

GET Transfers the file destination on the remote host to

the file source on the local host.

PUT Transfers the file source on the local host to

the file destination on the remote host.

source Specifies the file to transfer.

destination Specifies where to transfer the file.

说明:

-i选项是以二进制模式传送文件,很多Exploit代码就需要用这种模式来传送。

Host是开启了tftp服务的主机,可以是本地主机也可以是远程主机。

get就是到当前运行的目录里面下载,而put就是把文件上传到了开了tftp服务的机子。Source是你要上传或者是下载的文件名称。

下面举几个列子:

C:Longker>tftp -i 202.xx.xx.165 get sc.exe

tftp -i 202.xx.xx.165 get sc.exe

Transfer essful: 63248 bytes in 1 second, 63248 bytes/s

这个是从开了tftp服务的主机下载sc.exe程序,速度不错吧 :)

C:Longker>tftp -i 202.xx.xx.165 put sc.exe

tftp -i 202.xx.xx.165 put sc.exe

Transfer essful: 63248 bytes in 1 second, 63248 bytes/s

上面是把sc.exe上传到tftp服务器。

tftp服务器传文件到2440开发板


1 网线接口

2 网卡设置,关无线,你的虽然在同一网段,你也可以试试别的网段。

3 IP地址设置
4 linux里边的tftp有没有设置好,添加共享目录的读和执行权限,重启服务,service d restart
一一对照排查,