blob: a9f9db5e225a4fdf041388754a2443269818d6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
#@brief Envía un fichero por multicast ORIGEN(fichero) DESTINO(sessionmulticast)
#@param path_file Camino completo del fichero a enviar
#@param str_session Datos de sesión (Puerto:Duplex:IP:Mpbs:Nclientes:Timeout)
PROG=$(basename $0)
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
echo "Formato: $PROG fichero datosMulticast"
echo "Ejemplo: $PROG /opt/opengnsys/images/PS1_PH1.img 9000:full-duplex:239.194.17.2:70M:20:300"
exit 0
fi
# Error si no se reciben 2 parámetros.
if [ $# -ne 2 ]; then
echo "Error: Formato: $PROG fichero datosMulticast" >&2
exit 1
fi
# Parámetros de sesión separado por ":".
PARAMS=$(echo $2 | \
awk -F: '$1~/^[0-9]*$/ {print $1}
tolower($2)~/^(half)(-duplex)?$/ {print "half-duplex"}
tolower($2)~/^(full)(-duplex)?$/ {print "full-duplex"}
$3~/^[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*$/ {print $3}
$4~/^[0-9]*[mM]/ {print $4}
$5~/^[0-9]*/ {print $5}
$6~/^[0-9]*/ {print "$6"}
')
read -e PORTBASE METHOD ADDRESS BITRATE NCLIENTS MAXTIME <<< $PARAMS
# Valores estandar no configurables.
CERROR="8x8/128"
# Envío de fichero por Multicast.
which mbuffer &> /dev/null && MBUFFER="--pipe 'mbuffer -m 20M'"
udp-sender $MBUFFER --portbase $PORTBASE --$METHOD --mcast-data-address $ADDRESS --fec $CERROR --max-bitrate $BITRATE --ttl 1 --min-clients $NCLIENTS --max-wait $MAXTIME --file "$1"
|