[求助]大家推荐一个slackware下用的防火墙吧..

由 heartlylig 在 09-19-2004 18:02 发表:

[求助]大家推荐一个slackware下用的防火墙吧..

谢谢

大家觉得哪一个比较好/?


由 LiEn 在 09-20-2004 03:35 发表:

看看这个!

IP伪装固太防火墙:(见代)

> > 源码: >
> * * * >
>
> > > #!/bin/bash
> > > #Our complete stateful firewall script. This firewall can be customized for
> > > #a laptop, workstation, router or even a server. :)
> > > #change this to the name of the interface that provides your "uplink"
> > > #(connection to the Internet)
> > > UPLINK="eth1"
> > > #if you're a router (and thus should forward IP packets between interfaces),
> > > #you want ROUTER="yes"; otherwise, ROUTER="no"
> > > ROUTER="yes"
> > > #change this next line to the static IP of your uplink interface for static SNAT, or
> > > #"dynamic" if you have a dynamic IP. If you don't need any NAT, set NAT to "" to
> > > #disable it.
> > > NAT="1.2.3.4"
> > > #change this next line so it lists all your network interfaces, including lo
> > > INTERFACES="all"
> > > #change this line so that it lists the assigned numbers or symbolic names (from
> > > #/etc/services) of all the services that you'd like to provide to the general
> > > #public. If you don't want any services enabled, set it to ""
> > > SERVICES="http ftp smtp ssh rsync"
> > > if [ "$1" = "start" ]
> > > then
> > > echo "Starting firewall..."
> > > iptables -P INPUT DROP
> > > iptables -A INPUT -i ! ${UPLINK} -j ACCEPT
> > > iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
> > > #enable public access to certain services
> > > for x in ${SERVICES}
> > > do
> > > iptables -A INPUT -p tcp --dport ${x} -m state --state NEW -j ACCEPT
> > > done
> > >
> > > iptables -A INPUT -p tcp -i ${UPLINK} -j REJECT --reject-with tcp-reset
> > > iptables -A INPUT -p udp -i ${UPLINK} -j REJECT --reject-with icmp-port-unreachable
> > >
> > > #explicitly disable ECN
> > > if [ -e /proc/sys/net/ipv4/tcp_ecn ]
> > > then
> > > echo 0 > /proc/sys/net/ipv4/tcp_ecn
> > > fi
> > > #disable spoofing on all interfaces
> > > for x in ${INTERFACES}
> > > do
> > > echo 1 > /proc/sys/net/ipv4/conf/${x}/rp_filter
> > > done
> > > if [ "$ROUTER" = "yes" ]
> > > then
> > > #we're a router of some kind, enable IP forwarding
> > > echo 1 > /proc/sys/net/ipv4/ip_forward
> > > if [ "$NAT" = "dynamic" ]
> > > then
> > > #dynamic IP address, use masquerading
> > > echo "Enabling masquerad

Published At
Categories with 服务器类
Tagged with
comments powered by Disqus