CIS Hardened Image Level 1 on Ubuntu Linux Server 22.04 LTS
Center for Internet Security | 2.0.0.15Linux/Unix, Ubuntu 22.04 - 64-bit Amazon Machine Image (AMI)
External reviews
36 reviews
from
External reviews are not included in the AWS star rating for the product.
If you want open port on this CIS image
https://medium.com/@venkateshprasaddasari/install-postgres-16-on-cis-ubuntu-22-04-056da68aee18
sudo apt-get update
apt install ufw
sudo apt-get install iptables-persistent
sudo nft insert rule inet filter input tcp dport {db_port} accept
sudo iptables -A INPUT -p tcp --dport {db_port} -m state --state NEW -j ACCEPT
sudo netfilter-persistent save
showing 1 - 1