You are not logged in.

#1 2003-09-06 12:44:39

galen
Member
From: Canada
Registered: 2003-07-02
Posts: 135
Website

firewall that works with AL is Arno's

FYI

Arno's firewall scripts seems to work fine with AL 0.5

# Arno's iptables firewall - Single- & multi-homed firewall script with DSL/ADSL support
# (C) Copyright 2001-2003 by Arno van Amersfoort
# Homepage              : http://rocky.molphys.leidenuniv.nl/
# Freshmeat homepage    : http://freshmeat.net/projects/iptables- … pic_id=151
# Email                 : a r n o v a AT x s 4 a l l DOT n l
8)


Off to using Peanut and Slackware, no hard feelings but I need my CD to burn, PDA and scanner to connect and arch won't do it.

[img]http://www.flightsimhq.org/images/war-is-bushit_s.jpg[/img]

Offline

#2 2003-09-06 13:44:16

jlvsimoes
Member
From: portugal
Registered: 2002-12-23
Posts: 392
Website

Re: firewall that works with AL is Arno's

seems to that all iptables firewalls work with arch ;O


-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GU/ d- s: a- C L U P+ L+++ E--- W+
N 0+ K- W-- !O !M V-- PS+ PE- V++ PGP T 5 Z+ R* TV+ B+
DI-- D- G-- e-- h! r++ z+ z*
------END GEEK CODE BLOCK------

Offline

#3 2003-09-07 11:31:24

Mork II
Member
From: Visby, Sweden
Registered: 2003-05-14
Posts: 87

Re: firewall that works with AL is Arno's

With Arch all the good stuff just seems to work smile. I prefer things simple:

#!/bin/sh
#
# /etc/rc.d/firewall: start/stop firewall
#

if [ "$1" = "start" ]; then
    /usr/sbin/iptables -F
    /usr/sbin/iptables -P OUTPUT ACCEPT
    /usr/sbin/iptables -P FORWARD DROP
    /usr/sbin/iptables -P INPUT DROP
    /usr/sbin/iptables -A INPUT -i eth0 -m state 
    --state ESTABLISHED,RELATED -j ACCEPT
elif [ "$1" = "stop" ]; then
    killall -q /usr/sbin/iptables
else
    echo "usage: $0 start|stop"
fi

#End of file

Create the file as root, chmod 744, mv firewall /etc/rc.d/firewall, add firewall to the daemons array in rc.conf (before network) and there you go.

This is intented for a desktop and allows all outoing trafic and only incoming answers. It's short enough to type if you forgot to put your script on a disk and need to get a working configuration fast.

Offline

#4 2003-09-07 17:03:33

netkrash
Member
From: Viña del Mar, Chile.
Registered: 2003-03-19
Posts: 95

Re: firewall that works with AL is Arno's

galen wrote:

FYI

Arno's firewall scripts seems to work fine with AL 0.5

# Arno's iptables firewall - Single- & multi-homed firewall script with DSL/ADSL support
# (C) Copyright 2001-2003 by Arno van Amersfoort
# Homepage              : http://rocky.molphys.leidenuniv.nl/
# Freshmeat homepage    : http://freshmeat.net/projects/iptables- … pic_id=151
# Email                 : a r n o v a AT x s 4 a l l DOT n l
8)

i use the same firewall.. it's really cool and full featured wink


GNU/Linux: Share & Enjoy!

Offline

Board footer

Powered by FluxBB