Add support for FreeIPA Service on local networks.

This commit is contained in:
2024-08-17 22:19:12 +02:00
parent 06199517c7
commit 80bf02d7ad
6 changed files with 88 additions and 0 deletions

View File

@ -140,6 +140,12 @@ standard_unifi_tcp_ctrl_out_ports="443,8883"
standard_unifi_udp_ctrl_out_ports="443,3478"
# freeIPA Ports
#
standard_freeipa_tcp_in_ports="53,80,88,443,464,389,636"
standard_freeipa_udp_in_ports="53,123,88,464"
# Outbound Streaming Ports TCP
#
# - outbound port 1935/TCP : outbound streaming over RTMP to most

View File

@ -968,6 +968,20 @@ snmp_port="$standard_snmp_port"
snmp_trap_port="$standard_snmp_trap_port"
# ======
# - FreeIPA Service
# ======
# - FreeIPA services local Networks
# -
freeipa_server_ips=""
# - FreeIPA (in) Ports
# -
freeipa_tcp_in_ports="$standard_freeipa_tcp_in_ports"
freeipa_udp_in_ports="$standard_freeipa_udp_in_ports"
# ======
# - Mumble Service
# ======

View File

@ -938,6 +938,20 @@ snmp_port="$standard_snmp_port"
snmp_trap_port="$standard_snmp_trap_port"
# ======
# - FreeIPA Service
# ======
# - FreeIPA services local Networks
# -
freeipa_server_ips=""
# - FreeIPA (in) Ports
# -
freeipa_tcp_in_ports="$standard_freeipa_tcp_in_ports"
freeipa_udp_in_ports="$standard_freeipa_udp_in_ports"
# ======
# - Mumble Service

View File

@ -433,6 +433,14 @@ for _ip in $snmp_server_ips ; do
snmp_server_ip_arr+=("$_ip")
done
# ---
# - IP Adresses FreeIPA Server
# ---
declare -a freeipa_server_ip_arr=()
for _ip in $freeipa_server_ips ; do
freeipa_server_ip_arr+=("$_ip")
done
# ---
# - IP Adresses Munin Service
# ---