网络设备(嵌入式Linux)连接到本地计算机(Windows OS)。什么是tftp命令将二进制文件从网络设备复制到本地计算机?另外,从本地计算机到网络设备以相反的方式复制文件的命令是什么?
编辑:
我找到了BusyBox tftp命令:
BusyBox v0.61.pre (2003.02.04-12:10+0000) multi-call binary
Usage: tftp [OPTIONS] HOST [PORT]
Transfers a file from/to a tftp server
Options:
-l FILE Local FILE.
-r FILE Remote FILE.
-g Get file.
-p Put file.
命令:
tftp -l <local file> -r <remote file> -p <remote ip>
tftp -g -r <remote file> <remote ip>
SSH和TFTP是不同的文件传输协议。您通常会使用TFTP客户端进行TFTP传输。SSH如何涉及到这里?
—
肯斯特
我的意思是从设备
—
triwo 2014年
running Linux
(从SSH shell
)传输文件到具有TFTP服务器(Tftpd32)的本地Windows PC。