I'm using a custom compiled version
Squid Cache: Version 3.5.1-20150206-r13746
Service Name: squid
configure options: '--disable-auth' '--disable-auto-locale' '--disable-cache-digests' '--disable-cpu-profiling' '--disable-debug-cbdata' '--disable-delay-pools' '--disable-devpoll' '--disable-ecap' '--disable-esi' '--disable-eui' '--disable-external-acl-helpers' '--disable-follow-x-forwarded-for' '--disable-forw-via-db' '--enable-gnuregex' '--disable-htcp' '--disable-icap-client' '--disable-ident-lookups' '--enable-internal-dns' '--disable-ipf-transparent' '--disable-ipfw-transparent' '--disable-ipv6' '--disable-leakfinder' '--disable-pf-transparent' '--disable-poll' '--disable-select' '--disable-snmp' '--enable-ssl' '--disable-stacktraces' '--disable-translation' '--disable-url-rewrite-helpers' '--disable-wccp' '--disable-wccpv2' '--disable-win32-service' '--disable-x-accelerator-vary' '--disable-icmp' '--disable-storeid-rewrite-helpers' '--enable-async-io' '--enable-disk-io' '--enable-epoll' '--enable-http-violations' '--enable-inline' '--enable-kill-parent-hack' '--enable-linux-netfilter' '--enable-log-daemon-helpers' '--enable-removal-policies' '--enable-storeio' '--enable-unlinkd' '--enable-x-accelerator-vary' '--enable-zph-qos' '--with-default-user=nobody' '--with-pthreads' '--with-included-ltdl' '--with-netfilter-conntrack' '--disable-arch-native' --enable-ltdl-convenience
I tried to simplify my squid.conf to this:
http_port 3128 transparent
http_access allow all
strip_query_terms off
access_log stdio:/var/log/squid/access.log
cache deny all
And still can't do an upload test with ookla products.
When accessing http://www.speed.com.do I get this access.log
1424121146.052 358 10.55.127.10 TCP_MISS/304 251 GET http://www.speed.com.do/ - ORIGINAL_DST/200.88.127.14 -
1424121149.705 190 10.55.127.10 TCP_MISS/200 3743 GET http://www.speed.com.do/settings.xml?x=1424121149355 - ORIGINAL_DST/200.88.127.14 application/xml
1424121150.334 385 10.55.127.10 TCP_MISS/200 519 GET http://api.ookla.com/ipaddress.php - ORIGINAL_DST/72.21.92.82 text/html
1424121168.694 587 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121168097 - ORIGINAL_DST/200.88.127.14 text/plain
1424121168.982 184 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121168744 - ORIGINAL_DST/200.88.127.14 text/plain
1424121169.212 191 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121169010 - ORIGINAL_DST/200.88.127.14 text/plain
1424121169.458 186 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121169260 - ORIGINAL_DST/200.88.127.14 text/plain
1424121169.721 188 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121169526 - ORIGINAL_DST/200.88.127.14 text/plain
1424121169.977 177 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121169793 - ORIGINAL_DST/200.88.127.14 text/plain
1424121170.305 212 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121170011 - ORIGINAL_DST/200.88.127.14 text/plain
1424121170.532 180 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121170344 - ORIGINAL_DST/200.88.127.14 text/plain
1424121170.777 178 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121170593 - ORIGINAL_DST/200.88.127.14 text/plain
1424121171.034 200 10.55.127.10 TCP_MISS/200 363 GET http://www.speed.com.do/speedtest/latency.txt?x=1424121170826 - ORIGINAL_DST/200.88.127.14 text/plain
1424121175.336 3733 10.55.127.10 TCP_MISS/200 1118375 GET http://www.speed.com.do/speedtest/random750x750.jpg?x=1424121171593&y=1 - ORIGINAL_DST/200.88.127.14 image/jpeg
1424121177.454 5846 10.55.127.10 TCP_MISS/200 1118375 GET http://www.speed.com.do/speedtest/random750x750.jpg?x=1424121171593&y=2 - ORIGINAL_DST/200.88.127.14 image/jpeg
1424121185.545 8021 10.55.127.10 TCP_MISS/200 1986647 GET http://www.speed.com.do/speedtest/random1000x1000.jpg?x=1424121177504&y=2 - ORIGINAL_DST/200.88.127.14 image/jpeg
1424121188.656 11135 10.55.127.10 TCP_MISS/200 1986647 GET http://www.speed.com.do/speedtest/random1000x1000.jpg?x=1424121177504&y=1 - ORIGINAL_DST/200.88.127.14 image/jpeg
1424121191.109 377 10.55.127.10 TCP_MISS/500 1564 POST http://www.speed.com.do/speedtest/upload.asp?x=0.5987499579787254 - ORIGINAL_DST/200.88.127.14 text/html
1424121191.134 399 10.55.127.10 TCP_MISS/500 1557 POST http://www.speed.com.do/speedtest/upload.asp?x=0.8488976825028658 - ORIGINAL_DST/200.88.127.14 text/html
If I do a traffic analisys in the internet traffic I can see the server sends squid an Internal Server Error (500) at the middle of the POST (BEFORE the POST is complete).
The error comes from the server. But this doesn't happens in squid 3.4 or with a direct connection.
The POST content-length is 26761 So I don't think buffers may be a problem.
¿Any clue?
Alfrenovsky
_______________________________________________ squid-users mailing list squid-users@xxxxxxxxxxxxxxxxxxxxx http://lists.squid-cache.org/listinfo/squid-users