Loading
Home ›
Resources for “Add Web Porn Filtering and Other Content Filtering to Linux Desktops”
Sep 29, 2006 By Donald Emmack
in
DansGuardian “Flow of Events”: dansguardian.org/?page=dgflow
DansGuardian Download Page: dansguardian.org/?page=download
Tinyproxy Download Page: tinyproxy.sourceforge.net
DansGuardian Documentation: www.vollmar.ch/dansguardian-e.html
Using FireHol: www.pilpi.net/journal/item-985.php
“HOWTO Lockdown Mozilla Preferences for LTSP” by Warren Togami: togami.com/~warren/guides/mozlockdown
DansGuardian Extras Link: dansguardian.org/?page=extras
URLblacklist.com: urlblacklist.com
Web Content Filtering Portal: www.harvest.com.br/asp/afn/dg.nsf
______________________
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Parallel Programming with NVIDIA CUDA
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- Linux-Based X Terminals with XDMCP
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- Why Python?
- The Linux powered LAN Gaming House
- Python for Android
- BeOS was the best
50 min 4 sec ago - I use Wireshark on a daily
5 hours 20 min ago - buena información
10 hours 27 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
11 hours 27 min ago - Gnome3 is such a POS. No one
20 hours 55 min ago - Gnome 3 is the biggest POS
21 hours 5 min ago - I didn't knew this thing by
1 day 3 hours ago - Author's reply
1 day 6 hours ago - Link to modlys
1 day 7 hours ago - I use YNAB because of the
1 day 7 hours ago






Comments
firefox settings for pickup cfg file
Hi,
Nice article!
I have a non-preloaded firefox 1.0.7 on my distribution (slack).
I had to change/augment the greprefs/all.js file
pref("general.config.obscure_value", 0); //was 13 ; changed pref("general.config.filename", "firefox.cfg"); //Addedotherwise the firefox.cfg file would not be read.
Manfred.
Using iptables
I wanted a filtering system that would not be easy to defeat and I did not want the solution to depend on one machine being on all the time.
I ended up running dansguardian, squid, and iptables on each machine, using iptables to forces the browser to use the squid proxy at 8080.
The following line, added to the end of /etc/rc.d/rc.local, does the trick:
iptables -A OUTPUT -p tcp --dport 80 -m owner ! --uid-owner squid -j REJECT --reject-with tcp-reset
This configuration has served me well for over a year.