Add support for ZOOM Meetings.
This commit is contained in:
@ -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
|
||||
# ---
|
||||
|
Reference in New Issue
Block a user