@DavidSte1
I came across this thread today with the same issue as you.
What I observed is that if you tick the "Enable Transparent HTTP proxy" option while "Enable SSL inspection" is enabled you will get a /usr/local/etc/squid/squid.conf which includes entries like this:
Notably a listener gets added to localhost on 3129 for the first time. I created a NAT rule to redirect traffic for 3129 to opnsense and it seems to progress. yet to get it 100% working.
I came across this thread today with the same issue as you.
What I observed is that if you tick the "Enable Transparent HTTP proxy" option while "Enable SSL inspection" is enabled you will get a /usr/local/etc/squid/squid.conf which includes entries like this:
Code Select
# Setup transparent mode listeners on loopback interfaces
http_port 127.0.0.1:3128 intercept ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
http_port [::1]:3128 intercept ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
https_port 127.0.0.1:3129 intercept ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
https_port [::1]:3129 intercept ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
# Setup regular listeners configuration
http_port 192.168.50.1:3128 ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
http_port [2407:8800:bcc2:7700::1]:3128 ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
http_port 192.168.52.1:3128 ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
http_port 192.168.50.24:3128 ssl-bump cert=/var/squid/ssl/ca.pem dynamic_cert_mem_cache_size=10MB generate-host-certificates=on
Notably a listener gets added to localhost on 3129 for the first time. I created a NAT rule to redirect traffic for 3129 to opnsense and it seems to progress. yet to get it 100% working.