LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-03-2007, 05:12 PM   #1
agentc0re
Member
 
Registered: Apr 2007
Location: SLC, UTAH
Distribution: Slackware
Posts: 200

Rep: Reputation: 34
Firewall Software, What do you use and how well do you like it?


I currently use IPCOP w/QOS and NTOP addon. my machine has been locking up since then and i've been wanting to test out other firewall software. would like to get some input from any fellow slackers that use something other than IPCOP.

for me, ipcop does work great, just wondering what else is out there.
 
Old 07-03-2007, 05:31 PM   #2
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
I'm not a slackware user, but in the past I've used fwbuilder. It was pretty versatile and even let me customize the firewall on my hacked Linksys WRT54G router.
 
Old 07-03-2007, 05:51 PM   #3
rigelan
Member
 
Registered: Jul 2005
Location: Iowa
Distribution: Slackware
Posts: 180

Rep: Reputation: 19
Just running as an internet client, I don't use anything but a rc.firewall script in my /etc/rc.d directory that has a few simple iptables rules in it.
 
Old 07-03-2007, 06:07 PM   #4
Road_map
Member
 
Registered: Jan 2007
Distribution: Slackware
Posts: 341

Rep: Reputation: 31
I use arno-iptables-firewall from http://www.linuxpackages.net.
 
Old 07-03-2007, 07:58 PM   #5
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
rc.firewall for me. I have a few custom ports for my UT server:

Code:
#!/bin/bash

 start() {
     echo "Starting Firewall..."
     iptables -F
     iptables -P INPUT DROP
     iptables -P FORWARD DROP

 #   iptables -A INPUT  -i lo -j ACCEPT
     iptables -A INPUT -i lo -s 0.0.0.0/0 -d 0.0.0.0/0 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --destination-port 7777 -j ACCEPT
     iptables -A INPUT -p udp -d localhost --destination-port 7778 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --destination-port 50000 -j ACCEPT
     iptables -A INPUT -p udp -d localhost --destination-port 50000 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --destination-port 61031 -j ACCEPT
     iptables -A INPUT -p udp -d localhost --destination-port 61031 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --destination-port 113 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --source-port 20 -j ACCEPT
     iptables -A INPUT -p tcp -d localhost --destination-port 0 -j DROP
     iptables -A INPUT -p tcp -d localhost --destination-port 1 -j DROP
     iptables -A INPUT -p udp ! --destination-port 25 -j ACCEPT
     iptables -A INPUT -p tcp ! --syn -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type destination-unreachable -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type source-quench -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type time-exceeded -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type parameter-problem -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type redirect -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type router-advertisement -j ACCEPT
     iptables -A INPUT -p icmp --icmp-type echo-reply -j ACCEPT

     iptables -L | sed 's/        / /' | sed 's/           / /g' | sed 's/     / /g'
     echo
 }

 stop() {
     echo "Stopping firewall"
     iptables -F
     iptables -P INPUT ACCEPT
     iptables -P FORWARD ACCEPT
     echo
 }

 case "$1" in
     start)
     start
     ;;
     stop)
     stop
     ;;
     restart)
     stop
     start
     ;;
 esac
 
Old 07-04-2007, 12:24 AM   #6
Datamike
Member
 
Registered: Oct 2003
Location: Finland
Distribution: Slackware 12.0
Posts: 34

Rep: Reputation: 15
I use a D-Link router/modem combination, with an inbuilt firewall. Although I wouldn't recommend D-link to anyone. I've just had a load of problems with it and I'll be getting a new one soon. But the solution itself works very well for me. It actually takes some of the weight off your shoulder when you're no longer running your firewall on your pc. Also makes it easier to plug other pc's to my network that don't necessarily have a firewall.
 
Old 07-04-2007, 11:31 AM   #7
slackist
Member
 
Registered: Feb 2004
Location: Phuket
Distribution: Slackware 14.2 and Slackware Arm
Posts: 479

Rep: Reputation: 44
I use Firestarter. Easy to configure and it lets me share my wired connection through the laptop's wifi card with other machines in the house.
 
Old 07-04-2007, 12:17 PM   #8
adriv
Member
 
Registered: Nov 2005
Location: Diessen, The Netherlands
Distribution: Slackware 15
Posts: 700

Rep: Reputation: 43
Guarddog.
Simple, easy.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
router billion 5102 has firewall and software firewall tests aus9 Linux - Security 6 12-31-2006 10:09 PM
Software Firewall gbowden Linux - Security 6 01-26-2006 10:00 AM
Software firewall. greenthing Linux - Security 1 04-15-2005 09:58 AM
Best software firewall proton666 Linux - Newbie 1 12-03-2004 04:06 PM
Firewall software to use? pilot1 Linux - Security 10 03-12-2003 12:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:18 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration