Add Video Conferencing System 'alfaview'.
This commit is contained in:
@ -2864,7 +2864,7 @@ fi
|
||||
|
||||
echononl "\t\tBigBlueButton Video Conference Service out only"
|
||||
|
||||
if $allow_jitsi_video_conference_out ; then
|
||||
if $allow_bigbluebutton_video_conference_out ; then
|
||||
for _dev in ${ext_if_arr[@]} ; do
|
||||
|
||||
if [[ "$bigbluebutton_tcp_ports" != "$standard_http_ports" ]] ; then
|
||||
@ -2916,6 +2916,42 @@ else
|
||||
fi
|
||||
|
||||
|
||||
# ---
|
||||
# - alfaview - Video Conferencing Systems
|
||||
# ---
|
||||
|
||||
echononl "\t\talfaview - Video Conferencing Systems Service out only"
|
||||
|
||||
if $allow_alfaview_video_conference_out && ! $permit_local_net_to_inet ; then
|
||||
for _dev in ${ext_if_arr[@]} ; do
|
||||
|
||||
# alfaview is a browser application
|
||||
#
|
||||
if ! $allow_http_request_out ; then
|
||||
$ip6t -A OUTPUT -o $_dev -p tcp -m multiport --dports $standard_http_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
if $kernel_activate_forwarding ; then
|
||||
$ip6t -A FORWARD -o $_dev -p tcp -m multiport --dports $standard_http_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
fi
|
||||
fi
|
||||
|
||||
$ip6t -A OUTPUT -o $_dev -p tcp -m multiport --dports $alfaview_tcp_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
if $kernel_activate_forwarding ; then
|
||||
$ip6t -A FORWARD -o $_dev -p tcp -m multiport --dports $alfaview_tcp_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
fi
|
||||
|
||||
$ip6t -A OUTPUT -o $_dev -p udp -m multiport --dports $alfaview_udp_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
if $kernel_activate_forwarding ; then
|
||||
$ip6t -A FORWARD -o $_dev -p udp -m multiport --dports $alfaview_udp_ports -m conntrack --ctstate NEW -j ACCEPT
|
||||
fi
|
||||
|
||||
done
|
||||
echo_done
|
||||
else
|
||||
echo_skipped
|
||||
fi
|
||||
|
||||
|
||||
|
||||
# ---
|
||||
# - TURN Server (Stun Server) (for Nextcloud 'talk' app)
|
||||
# ---
|
||||
|
Reference in New Issue
Block a user