HostedDB - Dedicated UNIX Servers

Securing-Optimizing-RH-Linux-1_2_110
Comments and suggestions concerning this book should be mailed to gmourani@videotron.ca © Copyright 1999-2000 Gerhard Mourani and Open Network Architecture ® 110     # Set the default policy of the filter to deny.     ipchains -P input  DENY     ipchains -P output REJECT     ipchains -P forward REJECT # ----------------------------------------------------------------------------     # Enable TCP SYN Cookie Protection     echo 1 >/proc/sys/net/ipv4/tcp_syncookies     # Enable IP spoofing protection     # turn on Source Address Verification     for f in /proc/sys/net/ipv4/conf/*/rp_filter; do         echo 1 > $f     done     # Disable ICMP Redirect Acceptance     for f in /proc/sys/net/ipv4/conf/*/accept_redirects; do         echo 0 > $f     done     # Disable Source Routed Packets      for f in /proc/sys/net/ipv4/conf/*/accept_source_route; do         echo 0 > $f     done # ---------------------------------------------------------------------------- # LOOPBACK     # Unlimited traffic on the loopback interface.     ipchains -A input  -i $LOOPBACK_INTERFACE -j ACCEPT       ipchains -A output -i $LOOPBACK_INTERFACE -j ACCEPT   # ---------------------------------------------------------------------------- # Network Ghouls # Deny access to jerks      # /etc/rc.d/rc.firewall.blocked contains a list of     # ipchains -A input  -i $EXTERNAL_INTERFACE -s address -j DENY     # rules to block from any access.     # Refuse any connection from problem sites      #if [ -f /etc/rc.d/rc.firewall.blocked ]; then     #    . /etc/rc.d/rc.firewall.blocked     #fi # ---------------------------------------------------------------------------- # SPOOFING & BAD ADDRESSES # Refuse spoofed packets. # Ignore blatantly illegal source addresses. # Protect yourself from sending to bad addresses.     # Refuse spoofed packets pretending to be from the external address.     ipchains -A input  -i $EXTERNAL_INTERFACE -s $IPADDR -j DENY -l     # Refuse packets claiming to be to or from a Class A private network     ipchains -A input  -i $EXTERNAL_INTERFACE -s $CLASS_A -j DENY -l     ipchains -A input  -i $EXTERNAL_INTERFACE -d $CLASS_A -j DENY -l     ipchains -A output -i $EXTERNAL_INTERFACE -s $CLASS_A -j REJECT -l     ipchains -A output -i $EXTERNAL_INTERFACE -d $CLASS_A -j REJECT -l