Proxies (Best?)


 
Thread Tools Search this Thread
Special Forums Cybersecurity Proxies (Best?)
Prev   Next
# 1  
Old 11-03-2005
Proxies (Best?)

I hope this is the right place to post this. If not, would an administrator please move it? Thanks.

I've got a situation where we are using iPlanet proxy server to allow some of our web browsers to ONLY go to certain sites on an "approved" list. If they try to go to sites that aren't on the list, they get a message stating that they are at a limited workstation. This would be great overall if the iPlanet proxy (running on Win2K) wasn't so flakey. The performance seems poor because our clients complain about pages not loading completely or at all at times. I've been looking at Freshmeat.net for a decent open source/free software replacement. But there are quite a few proxies and they all seem to have different focuses.

What I need is just an HTTP proxy that will allow me to maintain a list of approved sites. Ideally, it should have a web interface for managing the approved sites since I'm not really the maintainer, a non-technical person is. And finally, the list should work with regular expressions so that wildcards can be used to allow people access to subparts of the approved sites. If possible, we really DON'T want stuff caching on disk because we can't afford to be legally viewed as a "content provider". Since the definition of that is pretty nebulous it makes the non-caching feature pretty important. Anyone know of anything like that?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Web Development

Apache2 reverse proxies implementation

Hi all, I hope someone here could shine a light on an issue that I am having with apache2. I have 2 servers with apache2 on each, which are on the same network with one router. I have implemented what I have seen on guides on the net on the landing server such as 'Apache2 reverse proxies'... (1 Reply)
Discussion started by: nodrama
1 Replies

2. UNIX for Dummies Questions & Answers

unix program that can port scan a c block of ips for proxies

can anyone tell me a unix program that can port scan a c block of ips for proxies? a fast one, with reliable results, that can load an ip list, or set an ip range, and specify ports thanks! (1 Reply)
Discussion started by: user
1 Replies
Login or Register to Ask a Question
regex(3)						     Library Functions Manual							  regex(3)

Name
       re_comp, re_exec - regular expression handler

Syntax
       char *re_comp(s)
       char *s;

       re_exec(s)
       char *s;

Description
       The  subroutine	compiles  a string into an internal form suitable for pattern matching.  The subroutine checks the argument string against
       the last string passed to

       The subroutine returns 0 if the string s was compiled successfully; otherwise a string containing an  error  message  is  returned.  If	is
       passed 0 or a null string, it returns without changing the currently compiled regular expression.

       The  subroutine returns 1 if the string s matches the last compiled regular expression, 0 if the string s failed to match the last compiled
       regular expression, and -1 if the compiled regular expression was invalid (indicating an internal error).

       The strings passed to both and may have trailing or embedded newline characters; they are terminated by	nulls.	 The  regular  expressions
       recognized are described in the manual entry for given the above difference.

Diagnostics
       The subroutine returns -1 for an internal error.

       The subroutine returns one of the following strings if an error occurs:

       No previous regular expression
       Regular expression too long
       unmatched (
       missing ]
       too many () pairs
       unmatched )

See Also
       ed(1), ex(1), egrep(1), fgrep(1), grep(1)

																	  regex(3)