<div dir="ltr">Thank you for helping.<div><br></div><div>After some experiments and tcpdumping it looks like it's not sibling sending request to the parent, but original squid!</div><div><br></div><div>So instead of asking sibling about his digests squid asks parent.</div><div><br></div><div>And your trick with urlpath_regex didn't help. I even tried:</div><div><br></div><div><div>acl internal_digest urlpath_regex +i /.*store_digest.*/</div><div>always_direct allow internal_digest</div><div>never_direct deny internal_digest</div></div><div><br></div><div>but no luck. It still asks parent.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 29, 2016 at 1:00 AM, Amos Jeffries <span dir="ltr"><<a href="mailto:squid3@treenet.co.nz" target="_blank">squid3@treenet.co.nz</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 2016-12-29 20:51, Ivan Larionov wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
I'm sure about forwarding because I see requests to<br>
</span><a href="http://172.22.15.88:3128/squid-internal-periodic/store_digest" rel="noreferrer" target="_blank">http://172.22.15.88:3128/squid<wbr>-internal-periodic/store_diges<wbr>t</a> [1] in<span class=""><br>
parent logs and my parent returns 502 because we do not allow requests<br>
to internal IPs. Logs from the parent:<br>
<br>
Got request: GET<br>
<a href="http://172.22.15.88:3128/squid-internal-periodic/store_digest" rel="noreferrer" target="_blank">http://172.22.15.88:3128/squid<wbr>-internal-periodic/store_diges<wbr>t</a><br>
Not allowing blacklisted IP 172.22.15.88<br>
GET <a href="http://172.22.15.88:3128/squid-internal-periodic/store_digest" rel="noreferrer" target="_blank">http://172.22.15.88:3128/squid<wbr>-internal-periodic/store_diges<wbr>t</a> 502<br>
0ms<br>
<br>
I do not have "global_internal_static off" in my config and also I'm<br>
able to get<br>
</span><a href="http://172.22.15.88:3128/squid-internal-periodic/store_digest" rel="noreferrer" target="_blank">http://172.22.15.88:3128/squid<wbr>-internal-periodic/store_diges<wbr>t</a> [1]<span class=""><br>
using curl or telnet (with telnet I do "GET<br>
/squid-internal-periodic/store<wbr>_digest" – note relative URL).<br>
</span></blockquote>
<br>
Okay, thats good.<span class=""><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
However according to debug logs squid does this request using absolute<br>
URL which probably works if target sibling can do direct requests (so<br>
it will request itself for digest and return response to original<br>
squid). But I do have "never_direct allow all" which probably makes<br>
sibling to forward such request to a parent.<br>
</blockquote>
<br></span>
Hmm, I think you might be right about that.<br>
You can test it by adding:<br>
<br>
 acl foo urlpath_regex +i /squid.internal.digest/<br>
 never_direct deny foo<span class=""><br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
If my theory about absolute vs relative URL is correct then I believe<br>
original squid should make store_digest request using relative URL<br>
(like I can do with telnet) so sibling squid will return response<br>
right away w/o asking itself for result.<br>
</blockquote>
<br></span>
Whats happening with the URL is that the sending peer generates it from the cache_peer IP/host name and port.<br>
<br>
The receiving peer checks the pathstarts with "/squid-internal-" and that the hostname portion matches its own visible_hostname or unique_hostname. If those match its marked for special handling as an internal request, otherwise global_internal_static is used to determine if the hostname not matching is ignored and it gets marked anyway.<br>
<br>
Since the digest needs to be targeted at the specific peer and not anything which may inject itself in between them the hostname does need to be sent. The relative URLs are for things that don't vary between proxies, like the Squid icons.<br>
<br>
If you configure cache_peer with the hostname of the receiving peer instead of its raw-IP the requests should be sent with that hostname instead of raw-IP.<br>
<br>
<br>
<br>
The config looks okay. Thanks for that.<span class="HOEnZb"><font color="#888888"><br>
<br>
Amos<br>
<br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">With best regards, Ivan Larionov.</div>
</div>