简体   繁体   English

UFTP无法正常工作

[英]UFTP is not working as expected

I am using UFTP to transfer files within the subnetwork computers. 我正在使用UFTP在子网计算机内传输文件。

But when I used -H to send only particular computers instead of sending to all computers, it is not working as expected. 但是,当我使用-H仅发送特定计算机而不是发送给所有计算机时,它无法正常工作。

Let me explain in detail : 让我详细解释一下:

  1. I have two windows machines in same network of IP's 172.21.170.198,172.21.181.216 respectively. 我在IP为172.21.170.198,172.21.181.216的同一网络中有两台Windows机器。
  2. From one of the system, I used below mentioned command to send the file 从一个系统中,我使用下面提到的命令发送文件

uftp.exe -R 100000 -H 172.21.170.198,172.21.181.216 e:\\setup.exe uftp.exe -R 100000 -H 172.21.170.198,172.21.181.216 e:\\ setup.exe

  1. But both machines won't receive those file. 但是两台机器都不会收到这些文件。

But if I use this command both machines will receive the file. 但是,如果我使用此命令,则两台计算机都将接收该文件。

uftp.exe -R 100000 E:\\setup.exe uftp.exe -R 100000 E:\\ setup.exe

I want to know whether I made any mistake. 我想知道我是否犯了任何错误。

Please correct me if I am wrong. 如果我错了,请纠正我。

Thanks in Advance. 提前致谢。
Kindly revert back for any clarifications. 请恢复原状进行任何澄清。

Regards, 问候,
Thiyagu 提雅古

If ipv6 isn't enabled, it would look like this, converting the ipv4 addresses to hex (with a converter like http://www.kloth.net/services/iplocate.php ): 如果未启用ipv6,则如下所示,将ipv4地址转换为十六进制(使用类似http://www.kloth.net/services/iplocate.php的转换器):

uftp.exe   -R 100000    -H 0xAC15AAC6,0xAC15B5D8    e:\setup.exe

But if you have an ipv6 address on the client, the client id sort of comes from the end of it backwards. 但是,如果客户端上有一个ipv6地址,则客户端ID的种类是从其末尾开始的。 Like if the address was "fe80::e5ca:e3ca:fea3:153f%5", the command would look like: 就像地址是“ fe80 :: e5ca:e3ca:fea3:153f%5”一样,该命令将如下所示:

uftp.exe   -R 100000    -H 0x3f15a3fe    e:\setup.exe

(coming from "fe a3 15 3f") (来自“ fe a3 15 3f”)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM