Add support for ZOOM Meetings.

This commit is contained in:
2021-06-09 16:38:34 +02:00
parent 75a5c40430
commit 701655c193
6 changed files with 153 additions and 0 deletions

View File

@ -578,6 +578,7 @@ for _port in $ldap_tcp_ports ; do
ldap_tcp_port_arr+=("$_port")
done
# ---
# - BigBlueButton Video Conference - adjust 'bigbluebutton_tcp_ports'
# ---
@ -599,6 +600,29 @@ IFS=',' ; for _port in $_tmp_tcp_ports ; do
done
IFS="$CUR_IFS"
# ---
# Zoom Meetings - Video Conference - adjust 'zoom_tcp_ports'
# ---
declare -a zoom_tcp_port_arr
CUR_IFS="$IFS"
_tmp_tcp_ports="$zoom_tcp_ports"
zoom_tcp_ports=""
declare -i count=0
IFS=',' ; for _port in $_tmp_tcp_ports ; do
if containsElement "${_port}" "${standard_http_port_arr[@]}" ; then
continue
fi
if [[ $count -eq 0 ]]; then
zoom_tcp_ports="$_port"
else
zoom_tcp_ports="${zoom_tcp_ports},${_port}"
fi
((count++))
done
IFS="$CUR_IFS"
# ---
# - IPMI
# ---