diff options
author | Irina Gómez <irinagomez@us.es> | 2019-10-10 14:06:10 +0200 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2019-10-10 14:06:10 +0200 |
commit | 0fd42f40c79d9389a2180a13d7718c1fc11ed025 (patch) | |
tree | c1246d9a68dad6b092308217bbffdd47adb8da1e /client/engine | |
parent | 6495c7c2cee7a5b867fe553aecb7296c43776932 (diff) |
#928 Multicast ports are allowed from 9000 to 9098. Port 9100 is assigned to bacula Director.
Diffstat (limited to 'client/engine')
-rwxr-xr-x | client/engine/Protocol.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/engine/Protocol.lib b/client/engine/Protocol.lib index c58d262b..f54edc4f 100755 --- a/client/engine/Protocol.lib +++ b/client/engine/Protocol.lib @@ -399,7 +399,7 @@ fi ##### BEGIN SERVER SESSION ##### # 2º param check: controlamos el primer componente comun de las sesiones de servidor y cliente: PORTBASE PORTBASE=${SESSION[0]} -ogCheckStringInGroup ${SESSION[0]} "$(seq 9000 2 9100)" || ogRaiseError $OG_ERR_FORMAT "McastSession portbase ${SESSION[0]}" || PERROR=3 #return $? +ogCheckStringInGroup ${SESSION[0]} "$(seq 9000 2 9098)" || ogRaiseError $OG_ERR_FORMAT "McastSession portbase ${SESSION[0]}" || PERROR=3 #return $? # 2º param check: Controlamos el resto de componenentes de la sesion del servidor. if [ $MODE == "server" ] then |