tftp的使用
1 ping通
保证开发板与PC能够相互ping通,如未ping通,请检查以下原因:
2 tftp服务端
PC打开 tftpd32 软件,选择相应的文件夹与网卡,作为服务端。
3 tftp客户端
保证开发板具有tftp功能
~
BusyBox v1.20.2 (2017-01-05 08:41:22 HKT) multi-call binary.
Usage: tftp [OPTIONS] HOST [PORT]
Transfer a file from/to tftp server
-l FILE Local FILE
-r FILE Remote FILE
-g Get file
-p Put file
-b SIZE Transfer blocks of SIZE octets
参数说明:
- -l: 是local的缩写,后跟本地或下载到本地后重命名的文件名。
- -r: 是remote的缩写,后跟远程即PC机tftp服务器根目录中的文件名,或上传到PC机后重命名后的文件名。
- -g: 是get的缩写,下载文件时用,后跟PC机的IP地址
- -p: 是put的缩写,上传文件时用,后跟PC机的IP地址
- tftp 默认占用的是69端口
4 文件传输
-
下载文件 tftp -l [本地文件] -r [远程服务器文件] -g [远程服务器IP]
例如: tftp -l hello -r hello -g 192.168.0.100
-
上传文件 tftp -l [本地文件] -r [远程服务器文件] -p [远程服务器IP]
例如: tftp -l hello -r hello -p 192.168.0.100
|