BusyBox tftp使用

来源:互联网 发布:手机音乐变调软件 编辑:程序博客网 时间:2024/04/29 13:27

作者:ccskyer

原作网址:http://blog.csdn.net/ccskyer/article/details/6075048

今天在用板子时,突然发现自己都忘了tftp怎么使用了,哎,感觉很熟悉的东西往往在真的用的时候在发现还有好写不清楚

帮助信息:

BusyBox v1.13.3 (2009-03-25 15:48:45 CST) multi-call binary

Usage: tftp [OPTION]... HOST [PORT]

Transfer a file from/to tftp server

Options:
        -l FILE Local FILE
        -r FILE Remote FILE
        -g      Get file
        -p      Put file
        -b SIZE Transfer blocks of SIZE octets

从服务器获得文件

tftp –g –r filename ipaddr(主机的ip)

(filename所在目录是之前配置tftp服务器时所配的目录)

上传文件:

tftp –p –l filename ipaddr(开发板的ip)

0 0