We are using some Amazon EC2 instances with configured Security Groups
(e.g. can SSH only from particular IPs -- sorry I cant post rules).
Some time ago I checked iptables
and it looked like there were not configured.
sudo iptables -L -n
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
My question is:
Does it makes sense to configured iptables
- either via raw method
or via some front-end e.g. csf
(not neceserraly the best pick, but I want to provide some example)?
Or maybe we don't gain anything?