Fix IPMI: add vnc port 5900, http(s) ports 80,443

This commit is contained in:
root
2017-03-18 17:33:51 +01:00
parent b54e85241f
commit c1550a6f9e
5 changed files with 39 additions and 14 deletions

View File

@ -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"
# =============

View File

@ -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"
# =============

View File

@ -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")