MOTORCYCLE

Got harley, suzuki or honda?
It is currently January 5, 2009, 6:06 pm

All times are UTC





Post new topic Reply to topic  [ 8 posts ] 
Author Message
PostPosted: 2007-03-09 19:23:16
Online
Registered User

Joined: 2007-03-09 19:23:16
My employers have improved the web filter to remove access to google
groups, amongst other sites[1]. Lord only knows why.

Anyway, I intend to rectify this by, hopefully, installing some sort of
PHP/Apache-based web access to Usenet of my own, ideally on my little Linksys
NSLU2 at home, so I can just https: to my ADSL IP address and post away.

Are there any decent Perl/PHP/Python/etc web-based usenet readers out there,
or am I simply imagining that they exist?

[1] such as the homepage of akamai.com stupidity of corporate IS department/>

--
simonk: 955i, ccm404-ds


Top
 Profile
 
PostPosted: 2007-03-09 19:38:32
Online
Registered User

Joined: 2007-03-09 19:38:32
On Fri, 09 Mar 2007 19:23:16 +0000, simonk wrote:

> My employers have improved the web filter to remove access to google
> groups, amongst other sites[1]. Lord only knows why.
>
> Anyway, I intend to rectify this by, hopefully, installing some sort of
> PHP/Apache-based web access to Usenet of my own, ideally on my little Linksys

> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>
> Are there any decent Perl/PHP/Python/etc web-based usenet readers out there,
> or am I simply imagining that they exist?


Do you have a Mac at home? You could install leafnode [1] on it and tunnel
from work.

[1] Checks to see if it will compile onna Mac.

Yup. http://www.leafnode.org/doc en/FAQ.html#id2515754

--
p BotM#1 LotR#9


Top
 Profile
 
PostPosted: 2007-03-09 20:00:51
Online
Registered User

Joined: 2007-03-09 20:00:51
On Fri, 9 Mar 2007 19:38:32 +0000, prawn wrote
(in article ):

> On Fri, 09 Mar 2007 19:23:16 +0000, simonk wrote:
>
>> My employers have improved the web filter to remove access to google
>> groups, amongst other sites[1]. Lord only knows why.
>>
>> Anyway, I intend to rectify this by, hopefully, installing some sort of
>> PHP/Apache-based web access to Usenet of my own, ideally on my little
>> Linksys
>> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>>
>> Are there any decent Perl/PHP/Python/etc web-based usenet readers out
>> there,
>> or am I simply imagining that they exist?
>
>
> Do you have a Mac at home? You could install leafnode [1] on it and tunnel
> from work.
>
> [1] Checks to see if it will compile onna Mac.
>
> Yup. http://www.leafnode.org/doc en/FAQ.html#id2515754

Doubt that would work - its proxied HTTP or nothing at work

--
simonk: 955i, ccm404-ds


Top
 Profile
 
PostPosted: 2007-03-09 20:46:26
Online
Registered User

Joined: 2007-03-09 20:46:26
simonk wrote:
>
> My employers have improved the web filter to remove access to google
> groups, amongst other sites[1]. Lord only knows why.
>
> Anyway, I intend to rectify this by, hopefully, installing some sort of
> PHP/Apache-based web access to Usenet of my own, ideally on my little Linksys
> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>
Presumably youre running Apache at home? If so, just set up a new
virtualhost with the following (you need mod rewrite and mod proxy
available)

RewriteEngine On
RewriteRule ^/(.*) http://groups.google.co.uk/$1 [P,L]
ProxyPassReverse / http://groups.google.co.uk/

Then you just point the browser at http://your.new.virtualhost/ and as
far as the filters concerned, you havent gone anywhere near Google at
all. If someone cottons on (unlikely) you can just change the hostname.

I used the same trick to give the Blane access to news.bbc.co.uk yonks
ago, it works a treat so long as the filtering is hostname/ip based.

--
ogden
sv650 (chick wheels) | cg125 (dead wheels) zx7r (wheels on ebay)

buy tat here: http://search.ebay.co.uk/ W0QQsassZdr.daifQQhtZ-1


Top
 Profile
 
PostPosted: 2007-03-09 21:39:09
Online
Registered User

Joined: 2007-03-09 21:39:09
Ogden wrote:
> simonk wrote:
>> My employers have improved the web filter to remove access to google
>> groups, amongst other sites[1]. Lord only knows why.
>>
>> Anyway, I intend to rectify this by, hopefully, installing some sort of
>> PHP/Apache-based web access to Usenet of my own, ideally on my little
Linksys
>> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>>
> Presumably youre running Apache at home? If so, just set up a new
> virtualhost with the following (you need mod rewrite and mod proxy
> available)
>
> RewriteEngine On
> RewriteRule ^/(.*) http://groups.google.co.uk/$1 [P,L]
> ProxyPassReverse / http://groups.google.co.uk/
>
> Then you just point the browser at http://your.new.virtualhost/ and as
> far as the filters concerned, you havent gone anywhere near Google at
> all. If someone cottons on (unlikely) you can just change the hostname.
>
> I used the same trick to give the Blane access to news.bbc.co.uk yonks
> ago, it works a treat so long as the filtering is hostname/ip based.

LOL. I wonder if they will ever cotton on? :)

Ive been doing it for ages....


--
--
ZX10R in the correct colour.
Triumph Sprint ST for long two up touring.
http://sportstourer.org


Top
 Profile
 
PostPosted: 2007-03-09 23:19:22
Online
Registered User

Joined: 2007-03-09 23:19:22
On Fri, 9 Mar 2007 20:46:26 +0000, ogden wrote
(in article ):

> simonk wrote:
>>
>> My employers have improved the web filter to remove access to google
>> groups, amongst other sites[1]. Lord only knows why.
>>
>> Anyway, I intend to rectify this by, hopefully, installing some sort of
>> PHP/Apache-based web access to Usenet of my own, ideally on my little
>> Linksys
>> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>>
> Presumably youre running Apache at home? If so, just set up a new
> virtualhost with the following (you need mod rewrite and mod proxy
> available)
>
> RewriteEngine On
> RewriteRule ^/(.*) http://groups.google.co.uk/$1 [P,L]
> ProxyPassReverse / http://groups.google.co.uk/
>
> Then you just point the browser at http://your.new.virtualhost/ and as
> far as the filters concerned, you havent gone anywhere near Google at
> all. If someone cottons on (unlikely) you can just change the hostname.
>
> I used the same trick to give the Blane access to news.bbc.co.uk yonks
> ago, it works a treat so long as the filtering is hostname/ip based.

Aha...

Nope, not running Apache at present, cos the default install on the NSLU2 is
a bit of a memory hog (theres only 32Mb of RAM), but Ill see if I can set
up a slimmed-down version and give it a whirl. Cheers.

--
simonk: 955i, ccm404-ds


Top
 Profile
 
PostPosted: 2007-03-10 12:47:25
Online
Registered User

Joined: 2007-03-10 12:47:25
simonk wrote:
> My employers have improved the web filter to remove access to google
> groups, amongst other sites[1]. Lord only knows why.
>
> Anyway, I intend to rectify this by, hopefully, installing some sort of
> PHP/Apache-based web access to Usenet of my own, ideally on my little Linksys

> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>
> Are there any decent Perl/PHP/Python/etc web-based usenet readers out there,
> or am I simply imagining that they exist?

Ive got WebNews running on here, from when AndrewR was having problems
with mailgate. It wasnt pretty, but it did the job.

But see my other post about ssh...

--
Eddie mailto:eddie@deguello.org


Top
 Profile
 
PostPosted: 2007-03-10 12:50:10
Online
Registered User

Joined: 2007-03-10 12:50:10
simonk wrote:
> On Fri, 9 Mar 2007 19:38:32 +0000, prawn wrote
> (in article ):
>>
>>Do you have a Mac at home? You could install leafnode [1] on it and tunnel
>>from work.
>>
>>[1] Checks to see if it will compile onna Mac.
>>
>>Yup. http://www.leafnode.org/doc en/FAQ.html#id2515754
>
> Doubt that would work - its proxied HTTP or nothing at work

If the proxy will cope with HTTPS, you can quite easily tunnel through
it using a combination of PuTTY and sshd, or similar. Worked a treat at
my last job.

And, of course, once youve got the ssh tunnel, the world is your oyster...

--
Eddie mailto:eddie@deguello.org


Top
 Profile
 
Post new topic Reply to topic  [ 8 posts ] 



 Topics   Author   Replies   Views   Last post 
No new posts Re: FOAK: Web design app

0

2008-08-06 12:06:18

No new posts FOAK: Web design app

0

2008-08-04 20:22:02

No new posts Amateurs web camchat

0

2008-07-25 04:13:50

No new posts Direct Access / Restricted Access - How to tell the difference on a driving license

0

2008-06-23 11:21:41

No new posts usenet news server info...

0

2008-06-20 19:17:32

No new posts Garage Night - web TV show for bikers - WATCH EPISODE 4 NOW

0

2008-06-16 01:08:36

No new posts OT: Paging the MS Access experts

0

2008-05-30 09:02:47

No new posts More than 500 free web hostings

0

2008-05-28 03:31:07

No new posts IOM Web cams

0

2008-05-27 13:24:59

No new posts =?windows-1256?Home Based Typist/Data Entry Needed Ł250 - Ł750+ p =?windows-1256?er week

0

2008-05-16 10:37:37


Who is online

Users browsing this forum: Desmond Coughlan,Shadie B,Graham,Leveller, 1 guests, sitodruk kredyt mieszkaniowy kalkulator pilates kraków rakeback Umowa Zlecenie


New posts New posts    No new posts No new posts    Announce Announcement
New posts [ Popular ] New posts [ Popular ]    No new posts [ Popular ] No new posts [ Popular ]    Sticky Sticky
New posts [ Locked ] New posts [ Locked ]    No new posts [ Locked ] No new posts [ Locked ]    Moved topic Moved topic
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group