<% if (socketAcceptor != null) {
for (SocketAddress socketAddress : socketAcceptor.getManagedServiceAddresses()) {
InetSocketAddress address = (InetSocketAddress) socketAddress;
%>
| <%= "0.0.0.0".equals(address.getHostName()) ? LocaleUtils.getLocalizedString("ports.all_ports") : address.getHostName() %> |
<%= address.getPort() %> |
<% if (LocalClientSession.getTLSPolicy() == Connection.TLSPolicy.disabled) { %>
 |
<% } else { %>
 |
<% } %>
|
|
<% } } %>
<% if (sslSocketAcceptor != null) {
for (SocketAddress socketAddress : sslSocketAcceptor.getManagedServiceAddresses()) {
InetSocketAddress address = (InetSocketAddress) socketAddress;
%>
| <%= "0.0.0.0".equals(address.getHostName()) ? LocaleUtils.getLocalizedString("ports.all_ports") : address.getHostName() %> |
<%= address.getPort() %> |
 |
|
|
<% } } %>
<%
if (serverPort != null) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : serverPort.getIPAddress() %> |
<%= serverPort.getPort() %> |
<% if (JiveGlobals.getBooleanProperty("xmpp.server.tls.enabled", true)) { %>
 |
<% } else { %>
 |
<% } %>
|
|
|
<% } %>
<% if (multiplexerSocketAcceptor != null) {
for (SocketAddress socketAddress : multiplexerSocketAcceptor.getManagedServiceAddresses()) {
InetSocketAddress address = (InetSocketAddress) socketAddress;
%>
| <%= "0.0.0.0".equals(address.getHostName()) ? LocaleUtils.getLocalizedString("ports.all_ports") : address.getHostName() %> |
<%= address.getPort() %> |
<% if (LocalConnectionMultiplexerSession.getTLSPolicy() == Connection.TLSPolicy.disabled) { %>
 |
<% } else { %>
 |
<% } %>
|
|
<% } } %>
<%
if (componentPort != null) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : componentPort.getIPAddress() %> |
<%= componentPort.getPort() %> |
 |
|
|
<% } %>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= adminConsolePlugin.getAdminUnsecurePort() %> |
 |
|
|
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= adminConsolePlugin.getAdminSecurePort() %> |
 |
|
|
<%
if (fileTransferProxy.isProxyEnabled()) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= fileTransferProxy.getProxyPort() %> |
 |
|
|
<% } %>
<%
if (httpBindManager.isHttpBindEnabled()) {
%>
<%
if (httpBindManager.getHttpBindUnsecurePort() > 0) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= httpBindManager.getHttpBindUnsecurePort() %> |
 |
|
|
<% } %>
<%
if (httpBindManager.getHttpBindSecurePort() > 0) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= httpBindManager.getHttpBindSecurePort() %> |
 |
|
|
|
<% } %>
<% } %>
<%
if (mediaProxyService.isEnabled()) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= mediaProxyService.getMinPort() %> - <%= mediaProxyService.getMaxPort() %> |
 |
|
|
<% } %>
<%
if (stunService.isEnabled()) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= stunService.getPrimaryPort() %> & <%= stunService.getSecondaryPort() %> |
 |
|
|
<% } %>