Unix Technical Forum

Net Nanny?

This is a discussion on Net Nanny? within the Gentoo Linux Support forums, part of the Unix Operating Systems category; --> Does anyone know how to stop porn sites from being accessed by users? I need a Net Nanny sort ...


Go Back   Unix Technical Forum > Unix Operating Systems > Gentoo Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-21-2008, 10:39 AM
jafar
 
Posts: n/a
Default Net Nanny?

Does anyone know how to stop porn sites from being accessed by users? I
need a Net Nanny sort of approach so my children don't click a link on
google etc.. and unwittingly end up staring a porn on the screen.
Many thanks for help.

--
Jafar Calley
Producer - http://moonlife-records.com
--------------------------------------
See the latest Mars and Saturn images
http://fatcat.homelinux.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-21-2008, 10:39 AM
Sybren Stuvel
 
Posts: n/a
Default Re: Net Nanny?

jafar enlightened us with:
> Does anyone know how to stop porn sites from being accessed by
> users?


Shut down the web server.

> I need a Net Nanny sort of approach so my children don't click a
> link on google etc.. and unwittingly end up staring a porn on the
> screen. Many thanks for help.


Check out http://squidguard.mesd.k12.or.us/, I think it's just the
thing you need.

Sybren
--
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-21-2008, 10:39 AM
jafar
 
Posts: n/a
Default Re: Net Nanny?

On Wed, 06 Apr 2005 17:54:07 +0200, Sybren Stuvel wrote:

> jafar enlightened us with:
>> Does anyone know how to stop porn sites from being accessed by
>> users?

>
> Shut down the web server.


er.. hehe

>
>> I need a Net Nanny sort of approach so my children don't click a
>> link on google etc.. and unwittingly end up staring a porn on the
>> screen. Many thanks for help.

>
> Check out http://squidguard.mesd.k12.or.us/, I think it's just the
> thing you need.


Thanks for that. Exactly what I'm looking for I think. Does that mean the
users will need to set firefox to access through a proxy for it to work?

--
Jafar Calley
Producer - http://moonlife-records.com
--------------------------------------
See the latest Mars and Saturn images
http://fatcat.homelinux.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-21-2008, 10:40 AM
Sybren Stuvel
 
Posts: n/a
Default Re: Net Nanny?

jafar enlightened us with:
> Does that mean the users will need to set firefox to access through
> a proxy for it to work?


If you have a linux box as the default gateway in your network, you
could use iptables to transparently redirect all HTTP traffic through
squid:

iptables -t nat -A PREROUTING \
-i eth1 -p tcp --dport 80 \
-j REDIRECT --to-port 3128

where eth1 is the NIC that's connected to your LAN.

Sybren
--
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-21-2008, 10:40 AM
Xanadu
 
Posts: n/a
Default Re: Net Nanny?

On Thu, 07 Apr 2005 17:38:07 +0200, Sybren Stuvel wrote:

> jafar enlightened us with:
>> Does that mean the users will need to set firefox to access through a
>> proxy for it to work?

>
> If you have a linux box as the default gateway in your network, you could
> use iptables to transparently redirect all HTTP traffic through squid:
>
> iptables -t nat -A PREROUTING \
> -i eth1 -p tcp --dport 80 \
> -j REDIRECT --to-port 3128
>
> where eth1 is the NIC that's connected to your LAN.
>
> Sybren


(I'm someone else, I'm not jafar)

I just wanted to say thanx for posting this bit of iptables magic. I just
happened to be setting up something similar myself that this is the basic
answer for.

Thank you!

M.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-21-2008, 10:40 AM
Sybren Stuvel
 
Posts: n/a
Default Re: Net Nanny?

Xanadu enlightened us with:
> I just wanted to say thanx for posting this bit of iptables magic.
> I just happened to be setting up something similar myself that this
> is the basic answer for.


You're welcome ;-)

Sybren
--
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-21-2008, 11:23 AM
Paul Bredbury
 
Posts: n/a
Default Re: Net Nanny?

jafar wrote:
> Does anyone know how to stop porn sites from being accessed by users?
> I need a Net Nanny sort of approach so my children don't click a link
> on google etc.. and unwittingly end up staring a porn on the screen.


The best guardian is of course you being present with them

The best software aide seems to be dansguardian, in combination with
squid and a blacklist.

http://packages.gentoo.org/search/?sstring=dansguardian
http://packages.gentoo.org/search/?sstring=squid
http://urlblacklist.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-21-2008, 11:23 AM
ray
 
Posts: n/a
Default Re: Net Nanny?

On Wed, 31 Aug 2005 22:37:58 +0200, jafar wrote:

> Does anyone know how to stop porn sites from being accessed by users? I
> need a Net Nanny sort of approach so my children don't click a link on
> google etc.. and unwittingly end up staring a porn on the screen.
> Many thanks for help.


Trust me - if you do a web search for 'linux content filter' you will get
several hits. I'll be doing this for a local library (they have a
requirement to filter for minors, but not for adults). I've not yet
checked which of them might be easy, effective, etc.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-21-2008, 11:24 AM
Jafar As-Sadiq Calley
 
Posts: n/a
Default Re: Net Nanny?

Paul Bredbury wrote:
> jafar wrote:
>
>>Does anyone know how to stop porn sites from being accessed by users?
>>I need a Net Nanny sort of approach so my children don't click a link
>>on google etc.. and unwittingly end up staring a porn on the screen.

>
>
> The best guardian is of course you being present with them
>
> The best software aide seems to be dansguardian, in combination with
> squid and a blacklist.
>
> http://packages.gentoo.org/search/?sstring=dansguardian
> http://packages.gentoo.org/search/?sstring=squid
> http://urlblacklist.com/


Thanks, but I think my poor suffering little server may have to wait for
an upgrade for all that. It's struggling as it is under the weight of
Amavisd at the moment
Cheers.

--
Jafar Calley
Producer - http://moonlife-records.com
--------------------------------------
See the latest Mars and Saturn images
http://fatcat.homelinux.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 03:28 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com