[squid-users] Installing certificate on Andriod to use with SSL-bump

2015-06-09 Thread dkandle
I would like to be able to inspect traffic from my android device. I have a transparent squid proxy working with SSL bump (using WiFi to get traffic through my proxy server). Everything works fine as long as I go through a browser. But I would like to see the other traffic which the OS and other ap

Re: [squid-users] Looking for a recomendation for tutorial for transparent proxy under Ubuntu

2015-06-01 Thread dkandle
I got things working (at least they appear to be working now). For some unknown reason when I changed the iptables entry for port 443 from 10.1.10.200/28 to 10.1.10.0/24 it started to work. Even though the HTTP side worked either way. If anyone knows what was going on there I would appreciate under

Re: [squid-users] Looking for a recomendation for tutorial for transparent proxy under Ubuntu

2015-06-01 Thread dkandle
Amos Jeffries wrote > On 2/06/2015 10:57 a.m., dkandle wrote: > >> I also don't understand why the first ip address specification didn't >> work >> but I had to change the 10.1.10.1 to 10.100 which is the exact ip address >> of >> the client. I thoug

Re: [squid-users] Looking for a recomendation for tutorial for transparent proxy under Ubuntu

2015-06-01 Thread dkandle
Slight correction to my iptables: iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.200/28 -p tcp --dport 80 -j REDIRECT --to-port 3128 iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.200/28 -p tcp --dport 443 -j REDIRECT --to-port 3129 I also don't understand why the first ip address specificati

Re: [squid-users] Looking for a recomendation for tutorial for transparent proxy under Ubuntu

2015-06-01 Thread dkandle
Thanks James. That got me most of the way there. I have the HTTP proxy working now but I have some strange (to me) issues with SSL traffic. I am using the ssl-bump I am redirecting both ports 80 and 443 with: iptables -t nat -A PREROUTING -i eth2 -s 10.1.10.1/28 -p tcp --dport 80 -j REDIRECT --to

[squid-users] Looking for a recomendation for tutorial for transparent proxy under Ubuntu

2015-06-01 Thread dkandle
I am using Ubuntu 14.04 on a server with multiple NICs. I would like to set it up as a transparent proxy. I have the router working and I had squid working as an explicit proxy (where I set the IP address of the server as the proxy in my client's browser). Is there a good tutorial which covers thi