<% 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() %> |
<% try { %>
<% if (!CertificateManager.isRSACertificate(SSLConfig.getKeyStore(), XMPPServer.getInstance().getServerInfo().getXMPPDomain()) || LocalClientSession.getTLSPolicy() == org.jivesoftware.openfire.Connection.TLSPolicy.disabled) { %>
 |
<% } else { %>
 |
<% } %>
<% } catch (Exception e) { %>
 |
<% } %>
|
|
<% } } %>
<% 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() == org.jivesoftware.openfire.Connection.TLSPolicy.disabled) { %>
 |
<% } else { %>
 |
<% } %>
|
|
<% } } %>
<%
if (componentPort != null) {
%>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : componentPort.getIPAddress() %> |
<%= componentPort.getPort() %> |
 |
|
|
<% } %>
| <%= adminConsolePlugin.getBindInterface() == null ? LocaleUtils.getLocalizedString("ports.all_ports") : adminConsolePlugin.getBindInterface() %> |
<%= adminConsolePlugin.getAdminUnsecurePort() %> |
 |
|
|
<%
if (adminConsolePlugin.getAdminSecurePort() > 0) {
%>
| <%= adminConsolePlugin.getBindInterface() == null ? LocaleUtils.getLocalizedString("ports.all_ports") : adminConsolePlugin.getBindInterface() %> |
<%= 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.isHttpsBindActive()) {
%>
| <%= 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() %> |
 |
|
|
<% } %>
| <%= interfaceName == null ? LocaleUtils.getLocalizedString("ports.all_ports") : interfaceName %> |
<%= flashCrossDomainHandler.getPort() %> |
 |
|
|