4
iptables ดีเริ่มต้นกฎสำหรับเว็บเซิร์ฟเวอร์หรือไม่
ฉันกำลังติดตั้งเซิร์ฟเวอร์ centos 5.4 ใหม่และฉันต้องการมีชุดกฎที่สะอาดสำหรับ mu iptables เพื่อเริ่มต้น กฎที่ดีในการเริ่มต้นคืออะไร? นี่เป็นจุดเริ่มต้นที่ดีหรือไม่: # Allow outgoing traffic and disallow any passthroughs iptables -P INPUT DROP iptables -P OUTPUT ACCEPT iptables -P FORWARD DROP # Allow traffic already established to continue iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT # Allow ssh, ftp and …
12
iptables