Fix IPMI: add vnc port 5900, http(s) ports 80,443
This commit is contained in:
@ -693,8 +693,8 @@ ipmi_server_ips=""
|
||||
# - TCP 623: Virtual Media for Remote Console
|
||||
# - TCP 3520: "This is TCP Port 3520 which is also needed in addition to TCP port 5900 to be able to use iKVM."
|
||||
# -
|
||||
ipmi_udp_port=623
|
||||
ipmi_tcp_ports="623 3520"
|
||||
ipmi_udp_ports="623 5900"
|
||||
ipmi_tcp_ports="80 443 623 3520"
|
||||
|
||||
|
||||
# =============
|
||||
|
@ -678,8 +678,8 @@ ipmi_server_ips=""
|
||||
# - TCP 623: Virtual Media for Remote Console
|
||||
# - TCP 3520: "This is TCP Port 3520 which is also needed in addition to TCP port 5900 to be able to use iKVM."
|
||||
# -
|
||||
ipmi_udp_port=623
|
||||
ipmi_tcp_ports="623 3520"
|
||||
ipmi_udp_ports="623 5900"
|
||||
ipmi_tcp_ports="80 443 623 3520"
|
||||
|
||||
|
||||
# =============
|
||||
|
@ -384,6 +384,11 @@ done
|
||||
# - IPMI
|
||||
# ---
|
||||
|
||||
declare -a ipmi_udp_port_arr
|
||||
for _port in $ipmi_udp_ports ; do
|
||||
ipmi_udp_port_arr+=("$_port")
|
||||
done
|
||||
|
||||
declare -a ipmi_tcp_port_arr
|
||||
for _port in $ipmi_tcp_ports ; do
|
||||
ipmi_tcp_port_arr+=("$_port")
|
||||
|
Reference in New Issue
Block a user