After configuring Squid to perform SSL Bump on HTTPS SSL requests from clients..i want to send this to another proxy that will perform its own MITM and connect to the 'target Server' and return back the information to the client........ What is needed for squid to pass the requests(after ssl bump is performed) to the second proxy?
client(box1)->iptables(box1)->squiq+ssl_bump(box2)->anotherproxy(box3)->targetServer
box1 was updated with iptable rules
iptables -t nat -A OUTPUT -p tcp --dport 443 -j DNAT --to 10.1.1.1.1:8444
box2 has SSL_BUMP configured to listen and decrypt on 8444.. however i am unsure how to configure squid how to pass the descrypted ssl redirect from the ssl_bump...I've tried cache_peer(parent) and squid does not successfully connect to the 'cache_peer(parent)..