home · contact · privacy
WIP.
[config] / all_new_2018 / linkable_etc_files / server / etc / iptables / rules.v4
1 *filter
2 :INPUT DROP [0:0]
3 :FORWARD DROP [0:0]
4 :OUTPUT ACCEPT [0:0]
5 # otherwise self-referential connections to local host will fail
6 -A INPUT -i lo -j ACCEPT
7 # this enables ping etc.
8 -A INPUT -p icmp -j ACCEPT
9 # SSH
10 -A INPUT -p tcp --dport 22 -j ACCEPT
11 # HTTP; uncomment for creating LetsEncrypt certificates in standalone mode.
12 #-A INPUT -p tcp --dport 80 -j ACCEPT
13 # HTTPS in theory, in practice my second SSH port, see sshd_config
14 -A INPUT -p tcp --dport 443 -j ACCEPT
15 # SMTP (allowing for STARTTLS); necessary for mail server to mail server banter
16 -A INPUT -p tcp --dport 25 -j ACCEPT
17 # SMTPS, for mail server to mail user agent communication
18 -A INPUT -p tcp --dport 465 -j ACCEPT
19 # IMAPS
20 -A INPUT -p tcp --dport 993 -j ACCEPT
21 # tolerate any inbound connections requested by our server, no matter the port
22 -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
23 COMMIT
24 # this last line is here because iptables-restore ignores the final command if no newline follows it