TFTP 包含空格的文件

TFTP 包含空格的文件

在 Windows 10 机器上,我安装了一个 TFTP 服务器(由 Ph. Jounin 开发的 TFTPD64)。我在 Windows 机器上创建了两个名为“test.txt”和“test me.txt”的文件。

然后,我在 Linux tftp 客户端 (atftp) 上使用该命令get test.txt获取我的第一个文件。一切按预期进行。

但是,当我尝试获取“test me.txt”时,它不起作用:

tftp> get test me.txt
tftp: error received from server <File 'test' does not exist>
tftp: aborting

tftp> get test\ me.txt
Overwrite local file [y/n]? y
tftp: error received from server <File 'test\' does not exist>
tftp: aborting
tftp> get 'test me.txt'
tftp: error received from server <File ''test' does not exist>
tftp: aborting

我怎样才能获得“test me.txt”?也许用另一个 tftp 客户端?

答案1

我解决问题的方法是使用 SFN:https://en.wikipedia.org/wiki/8.3_filename

相关内容