Quellcode durchsuchen

Merge pull request #56 from ariddell/feature/ferm-adjust

Don't open unused ports
Alex Payne vor 11 Jahren
Ursprung
Commit
208934edd6
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      roles/common/files/etc_ferm_ferm.conf

+ 2
- 2
roles/common/files/etc_ferm_ferm.conf Datei anzeigen

@@ -16,8 +16,8 @@ table filter {
16 16
         proto icmp icmp-type echo-request ACCEPT;
17 17
 
18 18
         # expose our services to the world:
19
-        # web, ssh, imap + ssl, smtp + ssl, jabber/xmpp, dns, znc
20
-        proto tcp dport (53 http https ssh smtp 993 465 5222 5223 5269 6697) ACCEPT;
19
+        # dns, web, ssh, imap + ssl, smtp + ssl, znc
20
+        proto tcp dport (53 http https ssh 993 465 6697) ACCEPT;
21 21
 
22 22
         # openvpn
23 23
         proto udp dport 1194 ACCEPT;

Laden…
Abbrechen
Speichern