Land #490, allow all loopback traffic

This commit is contained in:
Jeffrey Martin 2020-10-29 14:15:15 -05:00
commit 72516dc014
No known key found for this signature in database
GPG Key ID: 0CD9BBC2AF15F171
1 changed files with 8 additions and 3 deletions

View File

@ -10,6 +10,14 @@ iptables_rule '00_established' do
lines '-A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT'
end
iptables_rule '00_lo_allow_in' do
lines '-I INPUT -i lo -j ACCEPT'
end
iptables_rule '00_lo_allow_out' do
lines '-I OUTPUT -o lo -j ACCEPT'
end
iptables_rule '01_ssh' do
lines "-A INPUT -p tcp --dport 22 -j ACCEPT"
end
@ -21,6 +29,3 @@ end
iptables_rule '999_drop_all' do
lines '-A INPUT -j DROP'
end