You are not logged in.
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
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
With Arch all the good stuff just seems to work . 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
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
GNU/Linux: Share & Enjoy!
Offline