Transferência de arquivos enorme de LAN

1

Como enviar um arquivo enorme com mais de 8 GB para vários clientes em uma rede local, ao mesmo tempo, como o Multicast de arquivo, . Nenhum software intermediário. Nenhuma permissão exigida no cliente ou no receptor

    
por Ramesh Sakthi 02.08.2014 / 12:05

1 resposta

0

Eu usei o UDPcast .

UDPcast is a file transfer tool that can send data simultaneously to many destinations on a LAN. This can for instance be used to install entire classrooms of PC's at once. The advantage of UDPcast over using other methods (nfs, ftp, whatever) is that UDPcast uses UDP's multicast abilities: it won't take longer to install 15 machines than it would to install just 2.
From https://www.udpcast.linux.lu/index.html

É um programa de software antigo (2006), mas ainda funcionou bem para mim.

Eu nunca configurei de forma perfeita, então 1 ou 2 transmissões geralmente falharam, mas economizou tempo durante minhas aulas enviando um grande arquivo ISO para meus alunos de uma vez.

Basic usage

udp-sender -f outfile
Starts the sender program. The program waits for connections from the receivers. As soon as a key is pressed on either one of the receivers or on one of the senders, the data transfer will start.

udp-receiver -f outfile
Starts the receiver program. It automatically locates (via broadcast) any sender on the local net, and connects to it.
From https://www.udpcast.linux.lu/cmdlinedoc.html

    
por 11.12.2015 / 08:53