well dear thats a iptables issue if u are using linux.(as u mentioaned about linux care)
we normally do this to make transperant proxy
e.g
iptables -t nat -A PREROUTING -p tcp -s 192.168.100.0/24 --dport 80 -j REDIRECT --to-port 8080
or normally on firewall
iptables -t nat -A PREROUTING -p tcp -s 192.168.100.0/24 --dport 80 -j DNAT --to squidbox:8080
now u want pc 192.168.100.23,33 to not go into proxy
use this command
iptables -t nat -I PREROUTING 1 -p tcp -s 192.168.100.23 --dport 80 -j ACCEPT
iptables -t nat -I PREROUTING 2 -p tcp -s 192.168.100.33 --dport 80 -j ACCEPT
iptables -t nat -I PREROUTING 3 -p tcp -s 192.168.100.0/24 --dport 80 -j REDIRECT --to-port 8080
From: Chris Curtis <[EMAIL PROTECTED]> To: Squid USers <[EMAIL PROTECTED]> Subject: [squid-users] Paid Support Date: Mon, 02 Feb 2004 12:49:20 -0800
Hello All. I have a vexing ACL list problem I can't figure out. I posted it but got no response. I'm not above paying to solve this problem, so I called two companies (Wilson and eGenius) listed on the Squid website for support. Neither company has even bothered to return my call.
I have a problem allowing one PC on my network to bypass the proxy. I have actually attempted it, a number of times, but still have not got it to work.
Before I call Linuxcare and see if they can assist, is there anyone on the list who would have an hour or two to spare for some paid support on ACL issues with Squid.
Thanks for the bandwidth
Chris Curtis
_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail
