Skip to main content

Quick HOWTO : Ch14 : Linux Firewalls Using iptables - Linux H...

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Bookmark History

Saved by 24 people (-8 private), first by anonymouse user on 2007-03-15


Public Sticky notes

Network security is a primary consideration in any decision to host a website as the threats are becoming more widespread and persistent every day. One means of providing additional protection is to invest in a firewall. Though prices are always falling, in some cases you may be able to create a comparable unit using the Linux iptables package on an existing server for little or no additional expenditure.

Highlighted by indupati

iptables-save

Highlighted by fcaballero

Image:iptables.gif

Highlighted by bartos

iptables -A OUTPUT -p udp -o eth0 --dport 53 --sport 1024:65535 \ -j ACCEPT iptables -A INPUT -p udp -i eth0 --sport 53 --dport 1024:65535 \ -j ACCEPT

Highlighted by azulcm