All of lore.kernel.org
 help / color / mirror / Atom feed
* Transparent proxy setup with apache on the nat gateway
@ 2006-06-04 20:10 Nicolas Mailhot
  0 siblings, 0 replies; 11+ messages in thread
From: Nicolas Mailhot @ 2006-06-04 20:10 UTC (permalink / raw)
  To: netfilter


[-- Attachment #1.1: Type: text/plain, Size: 856 bytes --]

Hi,

I'm currently setting up a small LAN. The target hosts will be windows
laptops, so all the smarts are in a single FC5 linux box connected to
cable internet.

So far I've managed to setup pretty much everything I needed (dns, dhcp,
nat, smtp, webmail, spam-filter...) but I'm stuck on the transparent
proxy stage. I've got the gateway apache configured as proxy on the
lan-facing IP, and it works when configured manually in the laptop
browsers, but I'm not getting any further. All the docs on the internet
seem to focus on the squid-on-another-box scenario, and I'm failing to
adapt them to my setup. Can anyone help me?

(a big plus would be to make apache transparent proxy for the gateway
itself, as it will double up as my own system)

I've attached my current iptables rules if it can help.

Regards,

-- 
Nicolas Mailhot

[-- Attachment #1.2: iptables --]
[-- Type: text/plain, Size: 6225 bytes --]

# Custom iptables rules
*nat
:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
#-A PREROUTING -p tcp -m multiport --dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081
#-A PREROUTING -p tcp -m multiport --dports http,https,squid,svn,http-alt,webcache -j DNAT --to 192.168.1.1:8081

-A POSTROUTING -s 192.168.1.0/24 -o eth0 -j MASQUERADE
COMMIT
*mangle
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
#-A PREROUTING -p tcp -m multiport --dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081
#-A PREROUTING -p tcp -m multiport --dports http,https,squid,svn,http-alt,webcache,tproxy -s 127.0.0.1 -j ACCEPT
-A PREROUTING -p tcp -m multiport -i eth1 --dports http,https,squid,svn,http-alt,webcache -j MARK --set-mark 3
COMMIT
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
:INBOUND - [0:0]
:GENCHK - [0:0]
:ICMP - [0:0]
:SPOOF - [0:0]
:SYN-FLOOD - [0:0]
:LOG_FILTER - [0:0]
:LSI - [0:0]
:LSO - [0:0]
:LS - [0:0]
:OUTBOUND - [0:0]
### Input
# loopback
-A INPUT -i lo -j ACCEPT
# Broadcast
-A INPUT -m pkttype --pkt-type broadcast -i eth0 -p udp -m multiport --ports bootps,bootpc -j INBOUND
-A INPUT -m pkttype --pkt-type broadcast -i eth0 -j LS
#  Generic checks
-A INPUT -j ICMP
-A INPUT -j GENCHK
-A INPUT -j SPOOF
# Multicast
-A INPUT -m pkttype --pkt-type multicast -j ACCEPT
-A INPUT -i eth0 -j INBOUND 
-A INPUT -i eth1 -j INBOUND
-A INPUT -j LOG_FILTER 
-A INPUT -j LOG --log-prefix "Unknown Input " --log-level 6
### Forward
# Generic checks
-A FORWARD -j ICMP
-A FORWARD -j GENCHK
-A FORWARD -j SPOOF
# Do not forward any broadcast
-A FORWARD -m pkttype --pkt-type broadcast -j LS
-A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 
-A FORWARD -i eth1 -j OUTBOUND 
-A FORWARD -d 192.168.1.0/24 -o eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT 
-A FORWARD -j LOG_FILTER 
-A FORWARD -j LOG --log-prefix "Unknown Forward " --log-level 6 
### Output
# Loopback
-A OUTPUT -o lo -j ACCEPT 
-A OUTPUT -j GENCHK
-A OUTPUT -o eth0 -j OUTBOUND 
-A OUTPUT -o eth1 -j OUTBOUND
-A OUTPUT -j LOG_FILTER 
-A OUTPUT -j LOG --log-prefix "Unknown Output " --log-level 6 
### Inbound
-A INBOUND -m state --state RELATED,ESTABLISHED -j ACCEPT
# DHCP
-A INBOUND -p udp -m multiport --ports bootps,bootpc -j ACCEPT
# Multicast
-A INBOUND -m pkttype --pkt-type multicast -j ACCEPT
-A INBOUND -d 224.0.0.251 -j ACCEPT
# Syn-flood tcp protection
-A INBOUND -p tcp --syn -j SYN-FLOOD
-A INBOUND -p tcp -m multiport --dports ssh,submission,https,imaps -j ACCEPT
-A INBOUND -p tcp -d 192.168.1.1 -m multiport --dports smtp,domain,ntp,printer,tproxy -i eth1 -j ACCEPT
-A INBOUND -p udp -d 192.168.1.1 -m multiport --dports smtp,domain,ntp,printer -i eth1 -j ACCEPT
-A INBOUND -p udp -d 192.168.1.255 --sport ipp --dport ipp -i eth1 -j ACCEPT
-A INBOUND -p udp -d 192.168.1.1 --sport ipp --dport ipp -i eth1 -j ACCEPT
# This DNS server deffers replies in UDP
-A INBOUND -p udp -s 202.89.131.4 --sport domain --dport domain -i eth0 -j ACCEPT
-A INBOUND -j LSI
### Generic checks
-A GENCHK -m state --state INVALID -j DROP
-A GENCHK -p tcp ! --syn -m state --state NEW -j LS
-A GENCHK -m state --state RELATED,ESTABLISHED -j RETURN
-A GENCHK -m state --state ! NEW -j LS
-A GENCHK -j RETURN
### ICMP check
-A ICMP -p icmp --fragment -j DROP
-A ICMP -p icmp --icmp-type echo-reply -m limit --limit 1/sec -j ACCEPT
-A ICMP -p udp --dport traceroute -j LS
-A ICMP -p icmp --icmp-type destination-unreachable -j ACCEPT
-A ICMP -p icmp --icmp-type redirect -m limit --limit 2/sec -j ACCEPT
-A ICMP -p icmp --icmp-type time-exceeded -j ACCEPT
-A ICMP -p icmp -j LS
-A ICMP -j RETURN
### Spoof check (need to accept dhcp and lo before)
# Refuse packets claiming to be to the loopback interface.
# Refusing packets claiming to be to the loopback interface protects against
# source quench, whereby a machine can be told to slow itself down by an icmp source
# quench to the loopback.
-A SPOOF -d 127.0.0.0/8 -j LS
# Accept LAN in
-A SPOOF -s 192.168.1.0/24 -i eth1 -j RETURN
# Nothing else from LAN
-A SPOOF -i eth1 -j LS
# Refuse packets claiming to be from a Class A private network.
-A SPOOF -s 10.0.0.0/8 -j LS
# Refuse packets claiming to be from a Class B private network.
-A SPOOF -s 172.16.0.0/12 -j LS
# Refuse packets claiming to be from a Class C private network.
-A SPOOF -s 192.168.0.0/16 -j LS
# Refuse Class D multicast addresses. Multicast is illegal as a source address
-A SPOOF -s 224.0.0.0/4 -j LS
# Refuse Class E reserved IP addresses.
-A SPOOF -s 240.0.0.0/5 -j LS
# Accept LAN out
-A SPOOF -d 192.168.1.0/24 -o eth1 -j RETURN
# Nothing else to LAN
-A SPOOF -o eth1 -j LS
# If we got this far filtering can continue
-A SPOOF -j RETURN
### syn-flood check
-A SYN-FLOOD -m limit --limit 5/s --limit-burst 10 -j RETURN
-A SYN-FLOOD -j DROP
### Outbound
-A OUTBOUND -m state --state RELATED,ESTABLISHED -j ACCEPT
# DHCP
-A OUTBOUND -p udp --sport bootpc --dport bootps -o eth0 -j ACCEPT
-A OUTBOUND -p udp --sport bootps --dport bootpc -o eth1 -j ACCEPT
-A OUTBOUND -p udp --sport ipp --dport ipp -o eth0 -j DROP
-A OUTBOUND -j ACCEPT
### Generic logging filtering
-A LOG_FILTER -m multiport -p tcp --ports 135,netbios-ns,netbios-dgm,netbios-ssn,microsoft-ds,593,ms-sql-s,ms-sql-m -j DROP
-A LOG_FILTER -m multiport -p udp --ports 135,netbios-ns,netbios-dgm,netbios-ssn,microsoft-ds,593,ms-sql-s,ms-sql-m -j DROP
-A LOG_FILTER -p icmp --icmp-type echo-request -m limit --limit 1/sec -j RETURN
-A LOG_FILTER -p icmp --icmp-type echo-request -j DROP
-A LOG_FILTER -m limit --limit 5/sec -j RETURN
-A LOG_FILTER -j DROP
### Inbound log
-A LSI -j LOG_FILTER 
-A LSI -m limit --limit 5/sec -j LOG --log-prefix "Inbound " --log-level 6 
-A LSI -j DROP 
### Outbound log
-A LSO -j LOG_FILTER 
-A LSO -m limit --limit 5/sec -j LOG --log-prefix "Outbound " --log-level 6 
-A LSO -j DROP 
### Generic log
-A LS -j LOG_FILTER
-A LS -m limit --limit 5/sec -j LOG --log-prefix "Blocking " --log-level 6
-A LS -j DROP
COMMIT

[-- Attachment #2: Ceci est une partie de message numériquement signée --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: Transparent proxy setup with apache on the nat gateway
@ 2006-06-05  8:40 Sietse van Zanen
  2006-06-05  9:48 ` Nicolas Mailhot
  0 siblings, 1 reply; 11+ messages in thread
From: Sietse van Zanen @ 2006-06-05  8:40 UTC (permalink / raw)
  To: Nicolas Mailhot, netfilter

I think the error is in your first two rules for the PREROUTING chain in
the NAT table:


#-A PREROUTING -p tcp -m multiport --dports
http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081
#-A PREROUTING -p tcp -m multiport --dports
http,https,squid,svn,http-alt,webcache -j DNAT --to 192.168.1.1:8081

All WEB traffic will only hit the first rule and never the second. So
the destination IP address doen't get changed. A packet for 1.2.3.4 on
port 80 will be redirected to 1.2.3.4 port 8081.

I think you should try something like this.
Have apache proxy listen on localhost (127.0.0.1) port 8081
Iptables -t NAT -A PREROUTING -p tcp -i eth0(internal nic) -m multiport
--dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to
127.0.0.1:8081

-Sietse

-----Original Message-----
From: netfilter-bounces@lists.netfilter.org
[mailto:netfilter-bounces@lists.netfilter.org] On Behalf Of Nicolas
Mailhot
Sent: Sunday, June 04, 2006 10:10 PM
To: netfilter@lists.netfilter.org
Subject: Transparent proxy setup with apache on the nat gateway

Hi,

I'm currently setting up a small LAN. The target hosts will be windows
laptops, so all the smarts are in a single FC5 linux box connected to
cable internet.

So far I've managed to setup pretty much everything I needed (dns, dhcp,
nat, smtp, webmail, spam-filter...) but I'm stuck on the transparent
proxy stage. I've got the gateway apache configured as proxy on the
lan-facing IP, and it works when configured manually in the laptop
browsers, but I'm not getting any further. All the docs on the internet
seem to focus on the squid-on-another-box scenario, and I'm failing to
adapt them to my setup. Can anyone help me?

(a big plus would be to make apache transparent proxy for the gateway
itself, as it will double up as my own system)

I've attached my current iptables rules if it can help.

Regards,

-- 
Nicolas Mailhot


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: Transparent proxy setup with apache on the nat gateway
  2006-06-05  8:40 Transparent proxy setup with apache on the nat gateway Sietse van Zanen
@ 2006-06-05  9:48 ` Nicolas Mailhot
  2006-06-05 11:10   ` Pascal Hambourg
  0 siblings, 1 reply; 11+ messages in thread
From: Nicolas Mailhot @ 2006-06-05  9:48 UTC (permalink / raw)
  To: Sietse van Zanen; +Cc: netfilter

[-- Attachment #1: Type: text/plain, Size: 1330 bytes --]

Le lundi 05 juin 2006 à 10:40 +0200, Sietse van Zanen a écrit :

Thank you for taking the time to look at my problem !

> I think the error is in your first two rules for the PREROUTING chain
> in the NAT table:

...

> All WEB traffic will only hit the first rule and never the second.

I have traces of many attempts in my rule file - I never used those two
rules together so it's not the problem

> I think you should try something like this.
> Have apache proxy listen on localhost (127.0.0.1) port 8081
> Iptables -t NAT -A PREROUTING -p tcp -i eth0(internal nic) -m
> multiport
> --dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to
> 127.0.0.1:8081

If I use REDIRECT the to is interpreted like --to-port and I see the LAN
system hammer the gateway 127 port :(

If I use
-A PREROUTING -i eth1 -p tcp -m multiport --dports
http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081

the requests are redirected to port 8081 of the lan interface IP
(192.168.1.1, I can live with that) but the result is abysmal :
apache logs 

"GET / HTTP/1.1" requests instead of
"GET http://www.slashdot.org/ HTTP/1.1" requests

so all sites are served as if the browser asked for the local root
(empty) and the browser only receives blank pages

Regards,

-- 
Nicolas Mailhot

[-- Attachment #2: Ceci est une partie de message numériquement signée --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: Transparent proxy setup with apache on the nat gateway
@ 2006-06-05 10:51 Sietse van Zanen
  0 siblings, 0 replies; 11+ messages in thread
From: Sietse van Zanen @ 2006-06-05 10:51 UTC (permalink / raw)
  To: Nicolas Mailhot; +Cc: netfilter

Well, if Apache sees the traffic on port 8081 then your redirect is working as it should. Netfilter does nothing with the contents of the packets, just with the addresses and ports.

Your problem is then with Apache. A browser never requests a / but always a URL, your apache makes something different of it. 

-Sietse

-----Original Message-----
From: Nicolas Mailhot [mailto:nicolas.mailhot@laposte.net] 
Sent: Monday, June 05, 2006 11:48 AM
To: Sietse van Zanen
Cc: netfilter@lists.netfilter.org
Subject: RE: Transparent proxy setup with apache on the nat gateway

Le lundi 05 juin 2006 à 10:40 +0200, Sietse van Zanen a écrit :

Thank you for taking the time to look at my problem !

> I think the error is in your first two rules for the PREROUTING chain
> in the NAT table:

...

> All WEB traffic will only hit the first rule and never the second.

I have traces of many attempts in my rule file - I never used those two
rules together so it's not the problem

> I think you should try something like this.
> Have apache proxy listen on localhost (127.0.0.1) port 8081
> Iptables -t NAT -A PREROUTING -p tcp -i eth0(internal nic) -m
> multiport
> --dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to
> 127.0.0.1:8081

If I use REDIRECT the to is interpreted like --to-port and I see the LAN
system hammer the gateway 127 port :(

If I use
-A PREROUTING -i eth1 -p tcp -m multiport --dports
http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081

the requests are redirected to port 8081 of the lan interface IP
(192.168.1.1, I can live with that) but the result is abysmal :
apache logs 

"GET / HTTP/1.1" requests instead of
"GET http://www.slashdot.org/ HTTP/1.1" requests

so all sites are served as if the browser asked for the local root
(empty) and the browser only receives blank pages

Regards,

-- 
Nicolas Mailhot


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05  9:48 ` Nicolas Mailhot
@ 2006-06-05 11:10   ` Pascal Hambourg
  2006-06-05 11:21     ` Nicolas Mailhot
                       ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Pascal Hambourg @ 2006-06-05 11:10 UTC (permalink / raw)
  To: netfilter

Hello,

Nicolas Mailhot a écrit :
> Le lundi 05 juin 2006 à 10:40 +0200, Sietse van Zanen a écrit :
> 
>>I think the error is in your first two rules for the PREROUTING chain
>>in the NAT table:
>> 
>>> #-A PREROUTING -p tcp -m multiport --dports
>>> http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081
>>> #-A PREROUTING -p tcp -m multiport --dports
>>> http,https,squid,svn,http-alt,webcache -j DNAT --to 192.168.1.1:8081
>>
>>All WEB traffic will only hit the first rule and never the second.  So
>>the destination IP address doen't get changed. A packet for 1.2.3.4 on
>>port 80 will be redirected to 1.2.3.4 port 8081.

This is not true. REDIRECT replaces the destination address with the 
address of the input interface. So when the input interface has address 
192.168.1.1 both rules would produce the same result.

>>I think you should try something like this.
>>Have apache proxy listen on localhost (127.0.0.1) port 8081
>>Iptables -t NAT -A PREROUTING -p tcp -i eth0(internal nic) -m multiport
>>--dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to 127.0.0.1:8081

No, this won't work. The IP stack refuses packets with a loopback 
destination address received on a non loopback interface.

> If I use REDIRECT the to is interpreted like --to-port and I see the LAN
> system hammer the gateway 127 port :(

Looks like iptables command parsing could be improved. ;-)

> If I use
> -A PREROUTING -i eth1 -p tcp -m multiport --dports
> http,https,squid,svn,http-alt,webcache -j REDIRECT --to-port 8081
> 
> the requests are redirected to port 8081 of the lan interface IP
> (192.168.1.1, I can live with that) but the result is abysmal :
> apache logs 
> 
> "GET / HTTP/1.1" requests instead of
> "GET http://www.slashdot.org/ HTTP/1.1" requests
> 
> so all sites are served as if the browser asked for the local root
> (empty) and the browser only receives blank pages

The question is : are you sure that Apache can act as a _transparent_ 
proxy, like Squid ?

*Disclaimer : I don't know Apache much*
 From a quick search it does not seem that mod_proxy can do transparent 
proxying. There is a mod_tproxy that is designed to do it, but it does 
not seem to be part of the standard Apache distribution.
HTH.


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05 11:10   ` Pascal Hambourg
@ 2006-06-05 11:21     ` Nicolas Mailhot
  2006-06-05 11:31       ` Pascal Hambourg
  2006-06-07  3:58       ` R. DuFresne
  2006-06-05 11:24     ` Pascal Hambourg
  2006-06-07  8:42     ` Benny Amorsen
  2 siblings, 2 replies; 11+ messages in thread
From: Nicolas Mailhot @ 2006-06-05 11:21 UTC (permalink / raw)
  To: Pascal Hambourg; +Cc: netfilter

[-- Attachment #1: Type: text/plain, Size: 456 bytes --]

Le lundi 05 juin 2006 à 13:10 +0200, Pascal Hambourg a écrit :

> The question is : are you sure that Apache can act as a _transparent_ 
> proxy, like Squid ?

I don't know.
There is a ton of pages on mod_proxy and transparent proxying, but most
of the times transparent seems to be used in another context. And this
makes googling absolutely useless.

Where is this mod_tproxy so I can take a look at it ?

Regards,

-- 
Nicolas Mailhot

[-- Attachment #2: Ceci est une partie de message numériquement signée --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05 11:10   ` Pascal Hambourg
  2006-06-05 11:21     ` Nicolas Mailhot
@ 2006-06-05 11:24     ` Pascal Hambourg
  2006-06-07  8:42     ` Benny Amorsen
  2 siblings, 0 replies; 11+ messages in thread
From: Pascal Hambourg @ 2006-06-05 11:24 UTC (permalink / raw)
  To: netfilter

Pascal Hambourg a écrit :
> 
>> Le lundi 05 juin 2006 à 10:40 +0200, Sietse van Zanen a écrit :
> 
>>> I think you should try something like this.
>>> Have apache proxy listen on localhost (127.0.0.1) port 8081
>>> Iptables -t NAT -A PREROUTING -p tcp -i eth0(internal nic) -m multiport
>>> --dports http,https,squid,svn,http-alt,webcache -j REDIRECT --to 
>>> 127.0.0.1:8081
> 
> No, this won't work. The IP stack refuses packets with a loopback 
> destination address received on a non loopback interface.

I forgot to mention that anyway this rule won't work and should cause an 
error because its syntax is incorrect.  REDIRECT accepts only a port or 
port range in the --to or --to-ports option, not an address. Didn't you 
mistake REDIRECT for DNAT ?


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05 11:21     ` Nicolas Mailhot
@ 2006-06-05 11:31       ` Pascal Hambourg
  2006-06-07  3:58       ` R. DuFresne
  1 sibling, 0 replies; 11+ messages in thread
From: Pascal Hambourg @ 2006-06-05 11:31 UTC (permalink / raw)
  To: netfilter

Nicolas Mailhot a écrit :
> There is a ton of pages on mod_proxy and transparent proxying, but most
> of the times transparent seems to be used in another context.

Really ? I searched for "transparent AND mod_proxy" in the 
www.apache.org site and nothing relevant came out.


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: Transparent proxy setup with apache on the nat gateway
@ 2006-06-05 11:35 Sietse van Zanen
  0 siblings, 0 replies; 11+ messages in thread
From: Sietse van Zanen @ 2006-06-05 11:35 UTC (permalink / raw)
  To: Pascal Hambourg, netfilter

I guess the apache mailing list would be the right place to ask such questions.... :-)

-Sietse

-----Original Message-----
From: netfilter-bounces@lists.netfilter.org [mailto:netfilter-bounces@lists.netfilter.org] On Behalf Of Pascal Hambourg
Sent: Monday, June 05, 2006 1:32 PM
To: netfilter@lists.netfilter.org
Subject: Re: Transparent proxy setup with apache on the nat gateway

Nicolas Mailhot a écrit :
> There is a ton of pages on mod_proxy and transparent proxying, but most
> of the times transparent seems to be used in another context.

Really ? I searched for "transparent AND mod_proxy" in the 
www.apache.org site and nothing relevant came out.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05 11:21     ` Nicolas Mailhot
  2006-06-05 11:31       ` Pascal Hambourg
@ 2006-06-07  3:58       ` R. DuFresne
  1 sibling, 0 replies; 11+ messages in thread
From: R. DuFresne @ 2006-06-07  3:58 UTC (permalink / raw)
  To: Nicolas Mailhot; +Cc: netfilter, Pascal Hambourg

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1190 bytes --]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Mon, 5 Jun 2006, Nicolas Mailhot wrote:

> Le lundi 05 juin 2006 à 13:10 +0200, Pascal Hambourg a écrit :
>
>> The question is : are you sure that Apache can act as a _transparent_
>> proxy, like Squid ?
>
> I don't know.
> There is a ton of pages on mod_proxy and transparent proxying, but most
> of the times transparent seems to be used in another context. And this
> makes googling absolutely useless.
>
> Where is this mod_tproxy so I can take a look at it ?
>
> Regards,
>
>

You may also want to try the apache users lists.

Thanks,

Ron DuFresne
- -- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         admin & senior security consultant:  sysinfo.com
                         http://sysinfo.com
Key fingerprint = 9401 4B13 B918 164C 647A  E838 B2DF AFCC 94B0 6629

...We waste time looking for the perfect lover
instead of creating the perfect love.

                 -Tom Robbins <Still Life With Woodpecker>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFEhk7Pst+vzJSwZikRAvqDAKDgoel7yQEd0PJjXllJ+XlfVpc7ZwCdEggZ
HYN8nZ3S9FaM0qofFM/Z8gE=
=2X2f
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Transparent proxy setup with apache on the nat gateway
  2006-06-05 11:10   ` Pascal Hambourg
  2006-06-05 11:21     ` Nicolas Mailhot
  2006-06-05 11:24     ` Pascal Hambourg
@ 2006-06-07  8:42     ` Benny Amorsen
  2 siblings, 0 replies; 11+ messages in thread
From: Benny Amorsen @ 2006-06-07  8:42 UTC (permalink / raw)
  To: netfilter

>>>>> "PH" == Pascal Hambourg <pascal.mail@plouf.fr.eu.org> writes:

PH> The question is : are you sure that Apache can act as a
PH> _transparent_ proxy, like Squid ?

Apache can work as a transparent proxy only if it has an upstream
proxy to forward to. I use it that way, but I would prefer to only
have one proxy.


/Benny




^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2006-06-07  8:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-05  8:40 Transparent proxy setup with apache on the nat gateway Sietse van Zanen
2006-06-05  9:48 ` Nicolas Mailhot
2006-06-05 11:10   ` Pascal Hambourg
2006-06-05 11:21     ` Nicolas Mailhot
2006-06-05 11:31       ` Pascal Hambourg
2006-06-07  3:58       ` R. DuFresne
2006-06-05 11:24     ` Pascal Hambourg
2006-06-07  8:42     ` Benny Amorsen
  -- strict thread matches above, loose matches on Subject: below --
2006-06-05 11:35 Sietse van Zanen
2006-06-05 10:51 Sietse van Zanen
2006-06-04 20:10 Nicolas Mailhot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.