Sync network ports.

This commit is contained in:
Zhang Huangbin 2018-12-26 17:48:21 +08:00
parent 1d45d913c0
commit e78e48f18a
4 changed files with 31 additions and 15 deletions

View File

@ -2,8 +2,8 @@
Port | Service | Software | Comment | Allow Public Access?
--- |--- |--- |--- |---
25 | smtp | Postfix | Normal smtp service, used for server-to-server communication. __WARNING__: This port __MUST__ be open, otherwise you cannot receive email sent from other servers. | YES
587 | submission | Postfix | a.k.a. SMTP over TLS. Used by end users to send/submit email. | YES (open to your end users)
25 | smtp | Postfix | Used for communication betweem mail servers. __WARNING__: This port __MUST__ be open, otherwise you cannot receive email sent by other mail servers. | YES (REQUIRED){: .red }
587 | submission | Postfix | SMTP over TLS. Used by end users to send/submit email. | YES (open to your end users)
24 | lmtp | Dovecot | Used to deliver email to local mailboxes via LMTP protocol. | No (listen on `127.0.0.1` by default)
110 | pop3 | Dovecot | Used by end users to retrieve emails via POP3 protocol, secure connection over STARTTLS is available by default. | YES (open to your end users)
995 | pop3s | Dovecot | Used by end users to retrieve emails via POP3 protocol over SSL. Port 110 with STARTTLS is recommended. | YES (open to your end users)
@ -15,18 +15,20 @@ Port | Service | Software | Comment | Allow Public Access?
3306 | mysql | MySQL/MariaDB | MySQL/MariaDB database service | NO (listen on `127.0.0.1` by default)
5432 | postgresql | PostgreSQL | PostgreSQL database service | NO (listen on `127.0.0.1` by default)
389 | ldap | OpenLDAP (or OpenBSD ldapd) | LDAP service, STARTTLS is available for secure connection. | NO (listen on `127.0.0.1` by default)
636 |ldaps | OpenLDAP (or OpenBSD ldapd) | LDAP service over SSL. Deprecated, port 389 with STARTTLS is recommended. | NO (listen on `127.0.0.1` by default)
636 |ldaps | OpenLDAP (or OpenBSD ldapd) | LDAP service over SSL. Deprecated, port 389 with STARTTLS is recommended. | NO (Not enabled by default)
10024 | | Amavisd-new | Used to scan inbound messages, includes spam/virus scanning, DKIM verification, applying spam policy. | NO (listen on `127.0.0.1` by default)
10025 | smtp | Postfix | Used by Amavisd to inject scanned emails back to Postfix queue. | NO (listen on `127.0.0.1` by default)
10026 | | Amavisd-new | Used to scan outbound messages, includes spam/virus scanning, DKIM signing, applying spam policy. | NO (listen on `127.0.0.1` by default)
10027 | | Amavisd-new | Used by mlmmj mailing list manager, it bypasses spam/virus/header/banned checks by default, but have DKIM signing enabled. | NO (listen on `127.0.0.1` by default)
10028 | | Postfix | Used by Amavisd-new to handle email message sent by mlmmj mailing list manager. Introduced in iRedMail-0.9.9. | NO (listen on `127.0.0.1` by default)
9998 | | Amavisd-new | Used to manage quarantined emails. | NO (listen on `127.0.0.1` by default)
7777 | | iRedAPD | Postfix policy service for greylisting, whitelisting, blacklists, throttling, etc | NO (listen on `127.0.0.1` by default)
7790 | http | mlmmjadmin | RESTful API server used to manage mlmmj mailing lists. New in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
7790 | http | mlmmjadmin | RESTful API server used to manage mlmmj mailing lists. Introduced in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
7791 | http | iredadmin | iRedAdmin (standalone uwsgi instance). Introduced in iRedMail-0.9.9. | NO (listen on `127.0.0.1` by default)
20000 | | SOGo | SOGo groupware | NO (listen on `127.0.0.1` by default)
11211 | | Memcached | A distributed, high performance memory object caching system. | No (listen on `127.0.0.1` by default)
24242 | | Dovecot | Dovecot service status. New in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
19999 | | Netdata | Netdata monitor. New in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
24242 | | Dovecot | Dovecot service status. Introduced in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
19999 | | Netdata | Netdata monitor. Introduced in iRedMail-0.9.8. | NO (listen on `127.0.0.1` by default)
!!! note

View File

@ -183,7 +183,7 @@ Here we use a new smtp port 10028.
`/usr/local/etc/postfix/master.cf` (FreeBSD):
```
10028 inet n - n - - smtpd
107.0.0.1:10028 inet n - n - - smtpd
-o syslog_name=postfix/10028
-o content_filter=
-o mynetworks_style=host

View File

@ -31,14 +31,14 @@
<td>25</td>
<td>smtp</td>
<td>Postfix</td>
<td>Normal smtp service, used for server-to-server communication. <strong>WARNING</strong>: This port <strong>MUST</strong> be open, otherwise you cannot receive email sent from other servers.</td>
<td>YES</td>
<td>Used for communication betweem mail servers. <strong>WARNING</strong>: This port <strong>MUST</strong> be open, otherwise you cannot receive email sent by other mail servers.</td>
<td class="red">YES (REQUIRED)</td>
</tr>
<tr>
<td>587</td>
<td>submission</td>
<td>Postfix</td>
<td>a.k.a. SMTP over TLS. Used by end users to send/submit email.</td>
<td>SMTP over TLS. Used by end users to send/submit email.</td>
<td>YES (open to your end users)</td>
</tr>
<tr>
@ -123,7 +123,7 @@
<td>ldaps</td>
<td>OpenLDAP (or OpenBSD ldapd)</td>
<td>LDAP service over SSL. Deprecated, port 389 with STARTTLS is recommended.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
<td>NO (Not enabled by default)</td>
</tr>
<tr>
<td>10024</td>
@ -154,6 +154,13 @@
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
<tr>
<td>10028</td>
<td></td>
<td>Postfix</td>
<td>Used by Amavisd-new to handle email message sent by mlmmj mailing list manager. Introduced in iRedMail-0.9.9.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
<tr>
<td>9998</td>
<td></td>
<td>Amavisd-new</td>
@ -171,7 +178,14 @@
<td>7790</td>
<td>http</td>
<td>mlmmjadmin</td>
<td>RESTful API server used to manage mlmmj mailing lists. New in iRedMail-0.9.8.</td>
<td>RESTful API server used to manage mlmmj mailing lists. Introduced in iRedMail-0.9.8.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
<tr>
<td>7791</td>
<td>http</td>
<td>iredadmin</td>
<td>iRedAdmin (standalone uwsgi instance). Introduced in iRedMail-0.9.9.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
<tr>
@ -192,14 +206,14 @@
<td>24242</td>
<td></td>
<td>Dovecot</td>
<td>Dovecot service status. New in iRedMail-0.9.8.</td>
<td>Dovecot service status. Introduced in iRedMail-0.9.8.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
<tr>
<td>19999</td>
<td></td>
<td>Netdata</td>
<td>Netdata monitor. New in iRedMail-0.9.8.</td>
<td>Netdata monitor. Introduced in iRedMail-0.9.8.</td>
<td>NO (listen on <code>127.0.0.1</code> by default)</td>
</tr>
</tbody>

View File

@ -206,7 +206,7 @@ Please follow steps below to fix it.</p>
<li>Append new lines to file <code>/etc/postfix/master.cf</code> (Linux/OpenBSD) or
<code>/usr/local/etc/postfix/master.cf</code> (FreeBSD):</li>
</ul>
<pre><code>10028 inet n - n - - smtpd
<pre><code>107.0.0.1:10028 inet n - n - - smtpd
-o syslog_name=postfix/10028
-o content_filter=
-o mynetworks_style=host