![]() |
![]() OCAU News - Wiki - QuickLinks - Pix - Sponsors |
|
|||||||
| Notices |
|
Sign up for a free OCAU account and this ad will go away! Search our forums with Google: |
![]() |
|
|
Thread Tools |
|
|
#16 |
|
Member
Join Date: Nov 2003
Location: Sydney
Posts: 3,542
|
I know what it is built on....
__________________
WTB: Any one have a VT SS Commodore die cast model in heron white? Please PM Me. |
|
|
|
| Join OCAU to remove this ad! |
|
|
#17 |
|
Member
Join Date: Feb 2004
Location: Melbourne
Posts: 1,039
|
Hope and dreams?
Seriously, most of the commercial proxies are built on top a *nix based OS. Not many wish to reinvent the wheel or pay MS a royalty!
__________________
Insert 40 Quarters to continue... |
|
|
|
|
|
#18 |
|
Member
Join Date: Jun 2001
Location: Brisbane
Posts: 19,921
|
That's the OS. Now guess the Proxy application software.
__________________
Child's Play Charity |
|
|
|
|
|
#19 | |||
|
Member
Join Date: Jan 2007
Location: Perth, WA
Posts: 237
|
Quote:
I think the Note about halfway down this page gives a way around this Quote:
See above Quote:
The issue here is the fact the client is not doing a full refresh of the policy. Correct, in that Enforcing a GPO should not be recommended without an understanding of the OU and GPO design for the network.
__________________
Main Machine - Franken-PC Q6600, Gigabyte EP35-DS4, 8GB DDR2-800, Gigabyte 5850 OC, Windows 7 64Bit Secondary Machine - Galaxy Note 10.1" "Life without risk is life without reward" |
|||
|
|
|
|
|
#20 |
|
Member
Join Date: Feb 2004
Location: Melbourne
Posts: 1,039
|
Squid seems popular; comes up typically when 'assessing' open ports these devices have open. Apache used for Webmin type duties. Even seen HAproxy once.
Most choose this path as WC3 type logging can be easily ported off box to almost any log/event aggregation utility without much data manipulation.
__________________
Insert 40 Quarters to continue... |
|
|
|
|
|
#21 |
|
Member
Join Date: Jun 2001
Location: Brisbane
Posts: 19,921
|
You've got it.
Linux+Squid happily supports regular and transparent proxies with AD (or anything else) authentication. If you want to be really crazy, you can even use Apache with mod_proxy and mod_cache, although Squid is a million times more efficient. I've set that up dozens of times over the last few years for businesses big and small. Sometimes where nothing was in place previously, and other times to replace MS Proxy Server and ISA boxes that were end of life. Typically I also throw in a bunch of regex based blacklisting to kill known advertising and SPAM portals, much to the delight of both users (whether it be for no ugly ads on their browsers, or because 80%+ of web browsing bandwidth these days is in non-cacheable advertising). As mentioned, logging is standard, and trivial to parse either with a few basic shell scripts, or any one of a million reporting tools ranging from free to insanely expensive.
__________________
Child's Play Charity |
|
|
|
|
|
#22 | |
|
Member
Join Date: Feb 2004
Location: Melbourne
Posts: 1,039
|
Quote:
How many times I see a MISS in squid logs far outweighs the HIT. Well, that's the log options for cache hit success I use. Most HITs are a result of large file type downloads, PDFs typically, that are kept that pass AV scans.
__________________
Insert 40 Quarters to continue... |
|
|
|
|
|
|
#23 |
|
Member
Join Date: May 2004
Location: Melbourne
Posts: 1,724
|
Code:
//Automatic proxy script.
function FindProxyForURL(url, host)
{
//Connect directly if the destination host is an internal address (10.128.*.*) or if the url matches the CAG addresses.
if (isInNet(host, "10.128.0.0", "255.255.0.0") ||
isInNet(host, "172.16.0.0", "255.255.255.0") ||
isInNet(host, "192.168.0.0", "255.255.0.0") ||
isInNet(host, "127.0.0.0", "255.0.0.0") ||
shExpMatch(url, "https://url.yourinternaldomain.com.au"))
return "DIRECT";
else
//Connect through a proxy for all other connections.
return "PROXY proxy.your.domain.com:8080";
Just an example.
__________________
“I choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it.” ― Bill Gates
“Be nice to nerds. Chances are you'll end up working for one.” ― Bill Gates |
|
|
|
|
|
#24 | ||
|
Member
Join Date: Jun 2001
Location: Brisbane
Posts: 19,921
|
Quote:
"heap GDSF" is best for high hit rate, at the expense of bytes. "heap LFUDA" is best for high byte rate, at the expense of hits. Generally speaking, I set disk to "heap LFUDA" and memory to "heap GDSF" to get a nice mix of both (as generally you want a high hit rate out of memory objects in order to minimise latency, and a high byte rate out of your disk to minimise bandwidth utilisation on larger binary objects). From the default config file: Quote:
__________________
Child's Play Charity Last edited by elvis; 24th April 2012 at 3:04 PM. |
||
|
|
|
|
|
#25 | |
|
Member
Join Date: Jul 2001
Location: Wahroonga
Posts: 350
|
Quote:
How does this work for remote/roaming users? Or do you force them back into your network (vpn etc) - That would suck for a user in W.A on a 3G card,....
__________________
dotc |
|
|
|
|
|
|
#26 |
|
Member
Join Date: Mar 2002
Posts: 1,133
|
what's the go for transparent proxies in a WAN?
Eg let us say we have wan site #1, hosting various web based resources - the exclusions go in to squid for local stuff, plus anything hosted inside the WAN but what about things that arent web services.. such as an exchange server, or rdp/direct ftp connections/torrents etc hosted at site #2/site #5/ site #83 is this where iptables comes in to play to forward anything not on port 21/80/443 direct out? so effectively the squid box with iptables becomes a router in the lan? |
|
|
|
![]() |
| Bookmarks |
|
Sign up for a free OCAU account and this ad will go away! |
| Thread Tools | |
|
|