<div dir="ltr"><div><div><span id="result_box" class="" lang="en"><span class="">When the user</span> <span class="">logs on to</span> <span class="">Windows domain</span> <span class="">and opens</span> <span class="">the browser can</span> <span class="">navigate</span> <span class="">because it is already</span> <span class="">authenticated.</span> <span class="">When the user is</span> <span class="">not logged</span> <span class="">on the domain</span> <span class="">opens a</span> <span class="">popup</span> <span class="">asking for</span> <span class="">username and password.</span> <span class="">When</span> <span class="">informed</span> <span class="">user</span> <span class="">and password</span> <span class="">authentication</span> <span class="">correct</span> <span class="">he asks</span> <span class="">again (twice) and</span> <span class="">after</span> <span class="">work.</span> <span class="">If</span> <span class="">the wrong password</span> <span class="">is entered</span> <span class="">he asks</span> <span class="">again</span><span>,</span> <span class="">but even</span> <span class="">informing</span> <span class="">the correct password</span> <span class="">several times</span> <span class="">he did not</span> <span class="">get</span> <span class="">success in</span> <span class="">authentication.</span><br><br> <span class="">My</span> <span class="">squid3</span> <span class="">server is</span> <span class="">on the domain</span> <span class="">and authentication</span> <span class="">on the command line</span> <span class="">is working properly</span> <span class="">(</span><span>-u</span> <span class="">wbinfo</span><span>,</span> <span class="">wbinfo</span> <span class="">-g</span><span>,</span> <span class="">getent</span> <span class="">passwd</span><span>,</span> <span class="">ntlm_auth</span><span>)</span><span>.<br><br></span></span>Follow my configuration file (squid.conf):<br><br>### Configuracoes Basicas<br>http_port 3128<br><br><br>### Bloqueia o cache de CGI's<br>acl QUERY urlpath_regex cgi-bin \?<br>cache deny QUERY<br><br>maximum_object_size 4096 KB<br>minimum_object_size 0 KB<br>maximum_object_size_in_memory 64 KB<br>cache_mem 60 MB<br><br>#Para não bloquear downloads<br>quick_abort_min -1 KB<br><br>detect_broken_pconn on<br><br>pipeline_prefetch on<br><br>fqdncache_size 1024<br><br>### Parametros de atualizacao da memoria cache<br>refresh_pattern ^ftp:    1440    20%    10080<br>refresh_pattern ^gopher:    1440    0%    1440<br>refresh_pattern -i (/cgi-bin/|\?) 0 0%     0<br>refresh_pattern .        0    20%    4320<br><br>### Parametros de cache em RAM e HD<br>cache_swap_low 90<br>cache_swap_high 95<br><br>### Localizacao dos logs<br>cache_access_log /var/log/squid3/access.log<br>cache_log /var/log/squid3/cache.log<br>cache_store_log /var/log/squid3/store.log<br><br><br>### define a localizacao do cache de disco, tamanho, qtd de diretorios pai e subdiretorios<br>cache_dir aufs /var/spool/squid3 600 16 256<br><br>#Controle do arquivo de log<br>logfile_rotate 10<br><br>hosts_file /etc/hosts<br><br>#Libera acesso ao site da caixa<br>acl caixa dstdomain .<a href="http://caixa.gov.br">caixa.gov.br</a><br>always_direct allow caixa<br>cache deny caixa<br><br><br>### Realiza a autenticacao no AD via Winbind<br><br># NTLM <br># para quem esta logado em maquinas windows, aproveita a senha do logon<br>auth_param ntlm program /usr/bin/ntlm_auth --helper-protocol=squid-2.5-ntlmssp<br>auth_param ntlm children 30<br><br># para clientes nao windows, user/senha tem de ser solicitado<br>auth_param basic program /usr/bin/ntlm_auth --helper-protocol=squid-2.5-basic<br>auth_param basic children 5<br>auth_param basic realm "Autenticacao - Acesso Monitorado"<br>auth_param basic credentialsttl 2 hours<br><br>external_acl_type ad_group ipv4 ttl=600 children-max=35 %LOGIN /usr/lib/squid3/ext_wbinfo_group_acl<br><br><br>### ACLs<br><br>#acl manager proto cache_object<br>acl localhost src <a href="http://192.168.0.30/32">192.168.0.30/32</a><br><br>acl SSL_ports port 22 443 563     # https, snews<br>acl Safe_ports port 80        # http<br>acl Safe_ports port 21        # ftp<br>acl Safe_ports port 443 563    # https, snews<br>acl Safe_ports port 70        # gopher<br>acl Safe_ports port 210        # wais<br>acl Safe_ports port 1025-65535    # unregistered ports<br>acl Safe_ports port 280        # http-mgmt<br>acl Safe_ports port 488        # gss-http<br>acl Safe_ports port 591        # filemaker<br>acl Safe_ports port 777        # multiling http<br>acl Safe_ports port 3001        # imprenssa nacional<br><br>acl purge method PURGE<br>acl CONNECT method CONNECT<br><br><br>### Regras iniciais do Squid<br><br>http_access allow manager localhost<br>http_access deny manager<br>http_access allow purge localhost<br>http_access deny purge<br>http_access deny !Safe_ports<br>http_access deny CONNECT !SSL_ports<br><br>acl connect_abertas maxconn 8<br><br><br># acl ligada a autenticacao<br>acl grupo_admins external ad_group gg_webadmins<br>acl grupo_liberado external ad_group gg_webliberados <br>acl grupo_restrito external ad_group gg_webcontrolados<br><br><br>### Bloqueia extensoes de arquivos<br>acl extensoes_bloqueadas url_regex -i "/etc/squid3/acls/extensoes-proibidas"<br><br>### Liberar alguns sites<br>acl sites_liberados url_regex -i "/etc/squid3/acls/sites-permitidos"<br><br>### Bloqueia sites por URL<br>acl sites_bloqueados url_regex -i "/etc/squid3/acls/sites-proibidos"<br><br>### Realiza o bloqueio por palavras<br>acl palavras_bloqueadas url_regex -i "/etc/squid3/acls/palavras-proibidas"<br><br><br>### Exige autenticacao<br>acl autenticados proxy_auth REQUIRED<br><br><br>#libera o grupo internet<br>http_access allow grupo_admins<br><br>http_access deny extensoes_bloqueadas<br>http_access allow sites_liberados<br>http_access deny sites_bloqueados <br>http_access deny palavras_bloqueadas <br>http_access allow grupo_liberado<br><br>### Liberando midia social e musica no horario do almoco<br>acl almoco time 11:30-13:30<br>http_access allow almoco<br><br>#bloqueia midia social durante o expediente<br>acl social_proibido url_regex -i "/etc/squid3/acls/media-social"<br>http_access deny social_proibido<br><br># Regra para bloqueio de extensoes de radios online / arquivos de streaming:<br>acl streaming req_mime_type -i "/etc/squid3/acls/mimeaplicativo"<br><br>#acl proibir_musica urlpath_regex -i "/etc/squid3/acls/audioextension"<br>acl proibir_musica url_regex -i "/etc/squid3/acls/audioextension"<br>http_access deny proibir_musica<br>http_reply_access deny streaming <br><br>### Controle de banda<br>delay_pools 1<br>delay_class 1 2<br><br>### aprox 32Mbps para todos e 500Kbps para cada usuario <br>delay_parameters 1 4194304/4194304 64000/64000<br>delay_access 1 allow grupo_restrito<br><br>http_access allow grupo_restrito<br><br>#liberando acesso a todos os usuarios autenticados<br>#http_access deny !autenticados<br>http_access allow autenticados<br><br>### Rede do CMB #####<br>acl rede_local src <a href="http://192.168.0.0/22">192.168.0.0/22</a><br><br>### Nega acesso de quem nao esta na rede local<br>http_access deny !rede_local<br><br>#negando o acesso para todos que nao estiverem nas regras anteriores<br>http_access deny all<br><br>visible_hostname <a href="http://proxy.meudominio.com.br">proxy.meudominio.com.br</a><br><br><br>### Erros em portugues<br>error_directory /usr/share/squid3/errors/Portuguese<br><br>coredump_dir /var/spool/squid3<br><br>debug_options ALL,111,2 29,9 84,6"<br><br><br><br><br><br><br>Follow part of my cache.log:<br>...<br><br>2015/09/05 02:35:09.796 kid1| AsyncCallQueue.cc(53) fireNext: leaving MaintainSwapSpace()<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:09.796 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall DelayPools::Update constructed, this=0x7f361986d530 [call2470]<br>2015/09/05 02:35:09.796 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call DelayPools::Update() [call2470]<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:09.796 kid1| AsyncCallQueue.cc(51) fireNext: entering DelayPools::Update()<br>2015/09/05 02:35:09.796 kid1| AsyncCall.cc(30) make: make call DelayPools::Update [call2470]<br>2015/09/05 02:35:09.796 kid1| event.cc(346) schedule: schedule: Adding 'DelayPools::Update', in 1.00 seconds<br>2015/09/05 02:35:09.796 kid1| AsyncCallQueue.cc(53) fireNext: leaving DelayPools::Update()<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:09.796 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:10.797 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:10.797 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall MaintainSwapSpace constructed, this=0x7f361986d530 [call2471]<br>2015/09/05 02:35:10.797 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call MaintainSwapSpace() [call2471]<br>2015/09/05 02:35:10.797 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:10.797 kid1| AsyncCallQueue.cc(51) fireNext: entering MaintainSwapSpace()<br>2015/09/05 02:35:10.797 kid1| AsyncCall.cc(30) make: make call MaintainSwapSpace [call2471]<br>2015/09/05 02:35:10.797 kid1| ufs/UFSSwapDir.cc(451) maintain: f=1.00, max_scan=500, max_remove=80<br>2015/09/05 02:35:10.797 kid1| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0x7f36195bc308<br>2015/09/05 02:35:10.797 kid1| cbdata.cc(348) cbdataInternalFree: cbdataFree: 0x7f36195bc308<br>2015/09/05 02:35:10.797 kid1| cbdata.cc(365) cbdataInternalFree: cbdataFree: Freeing 0x7f36195bc308<br>2015/09/05 02:35:10.797 kid1| ufs/UFSSwapDir.cc(475) maintain: /var/spool/squid3 removed 0/80 f=1.0000 max_scan=500<br>2015/09/05 02:35:10.797 kid1| event.cc(346) schedule: schedule: Adding 'MaintainSwapSpace', in 1.00 seconds<br>2015/09/05 02:35:10.797 kid1| AsyncCallQueue.cc(53) fireNext: leaving MaintainSwapSpace()<br>2015/09/05 02:35:10.797 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:10.797 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall DelayPools::Update constructed, this=0x7f361986d530 [call2472]<br>2015/09/05 02:35:10.797 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call DelayPools::Update() [call2472]<br>2015/09/05 02:35:10.797 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:10.798 kid1| AsyncCallQueue.cc(51) fireNext: entering DelayPools::Update()<br>2015/09/05 02:35:10.798 kid1| AsyncCall.cc(30) make: make call DelayPools::Update [call2472]<br>2015/09/05 02:35:10.798 kid1| event.cc(346) schedule: schedule: Adding 'DelayPools::Update', in 1.00 seconds<br>2015/09/05 02:35:10.798 kid1| AsyncCallQueue.cc(53) fireNext: leaving DelayPools::Update()<br>2015/09/05 02:35:10.798 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:10.798 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:10.798 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:10.798 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.473 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.473 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall fqdncache_purgelru constructed, this=0x7f361986d530 [call2473]<br>2015/09/05 02:35:11.474 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call fqdncache_purgelru() [call2473]<br>2015/09/05 02:35:11.474 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.474 kid1| AsyncCallQueue.cc(51) fireNext: entering fqdncache_purgelru()<br>2015/09/05 02:35:11.474 kid1| AsyncCall.cc(30) make: make call fqdncache_purgelru [call2473]<br>2015/09/05 02:35:11.474 kid1| event.cc(346) schedule: schedule: Adding 'fqdncache_purgelru', in 10.00 seconds<br>2015/09/05 02:35:11.474 kid1| fqdncache.cc(258) fqdncache_purgelru: fqdncache_purgelru: removed 0 entries<br>2015/09/05 02:35:11.474 kid1| AsyncCallQueue.cc(53) fireNext: leaving fqdncache_purgelru()<br>2015/09/05 02:35:11.474 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.474 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.798 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall MaintainSwapSpace constructed, this=0x7f361986d530 [call2474]<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call MaintainSwapSpace() [call2474]<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.799 kid1| AsyncCallQueue.cc(51) fireNext: entering MaintainSwapSpace()<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(30) make: make call MaintainSwapSpace [call2474]<br>2015/09/05 02:35:11.799 kid1| ufs/UFSSwapDir.cc(451) maintain: f=1.00, max_scan=500, max_remove=80<br>2015/09/05 02:35:11.799 kid1| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0x7f36195bc308<br>2015/09/05 02:35:11.799 kid1| cbdata.cc(348) cbdataInternalFree: cbdataFree: 0x7f36195bc308<br>2015/09/05 02:35:11.799 kid1| cbdata.cc(365) cbdataInternalFree: cbdataFree: Freeing 0x7f36195bc308<br>2015/09/05 02:35:11.799 kid1| ufs/UFSSwapDir.cc(475) maintain: /var/spool/squid3 removed 0/80 f=1.0000 max_scan=500<br>2015/09/05 02:35:11.799 kid1| event.cc(346) schedule: schedule: Adding 'MaintainSwapSpace', in 1.00 seconds<br>2015/09/05 02:35:11.799 kid1| AsyncCallQueue.cc(53) fireNext: leaving MaintainSwapSpace()<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall DelayPools::Update constructed, this=0x7f361986d530 [call2475]<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call DelayPools::Update() [call2475]<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.799 kid1| AsyncCallQueue.cc(51) fireNext: entering DelayPools::Update()<br>2015/09/05 02:35:11.799 kid1| AsyncCall.cc(30) make: make call DelayPools::Update [call2475]<br>2015/09/05 02:35:11.799 kid1| event.cc(346) schedule: schedule: Adding 'DelayPools::Update', in 1.00 seconds<br>2015/09/05 02:35:11.799 kid1| AsyncCallQueue.cc(53) fireNext: leaving DelayPools::Update()<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:11.799 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:11.800 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall MaintainSwapSpace constructed, this=0x7f361986d530 [call2476]<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call MaintainSwapSpace() [call2476]<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:12.801 kid1| AsyncCallQueue.cc(51) fireNext: entering MaintainSwapSpace()<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(30) make: make call MaintainSwapSpace [call2476]<br>2015/09/05 02:35:12.801 kid1| ufs/UFSSwapDir.cc(451) maintain: f=1.00, max_scan=500, max_remove=80<br>2015/09/05 02:35:12.801 kid1| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0x7f36195bc308<br>2015/09/05 02:35:12.801 kid1| cbdata.cc(348) cbdataInternalFree: cbdataFree: 0x7f36195bc308<br>2015/09/05 02:35:12.801 kid1| cbdata.cc(365) cbdataInternalFree: cbdataFree: Freeing 0x7f36195bc308<br>2015/09/05 02:35:12.801 kid1| ufs/UFSSwapDir.cc(475) maintain: /var/spool/squid3 removed 0/80 f=1.0000 max_scan=500<br>2015/09/05 02:35:12.801 kid1| event.cc(346) schedule: schedule: Adding 'MaintainSwapSpace', in 1.00 seconds<br>2015/09/05 02:35:12.801 kid1| AsyncCallQueue.cc(53) fireNext: leaving MaintainSwapSpace()<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall DelayPools::Update constructed, this=0x7f361986d530 [call2477]<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call DelayPools::Update() [call2477]<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:12.801 kid1| AsyncCallQueue.cc(51) fireNext: entering DelayPools::Update()<br>2015/09/05 02:35:12.801 kid1| AsyncCall.cc(30) make: make call DelayPools::Update [call2477]<br>2015/09/05 02:35:12.801 kid1| event.cc(346) schedule: schedule: Adding 'DelayPools::Update', in 1.00 seconds<br>2015/09/05 02:35:12.801 kid1| AsyncCallQueue.cc(53) fireNext: leaving DelayPools::Update()<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:12.801 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:13.802 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:13.802 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall MaintainSwapSpace constructed, this=0x7f361986d530 [call2478]<br>2015/09/05 02:35:13.802 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call MaintainSwapSpace() [call2478]<br>2015/09/05 02:35:13.802 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:13.802 kid1| AsyncCallQueue.cc(51) fireNext: entering MaintainSwapSpace()<br>2015/09/05 02:35:13.802 kid1| AsyncCall.cc(30) make: make call MaintainSwapSpace [call2478]<br>2015/09/05 02:35:13.802 kid1| ufs/UFSSwapDir.cc(451) maintain: f=1.00, max_scan=500, max_remove=80<br>2015/09/05 02:35:13.802 kid1| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0x7f36195bc308<br>2015/09/05 02:35:13.803 kid1| cbdata.cc(348) cbdataInternalFree: cbdataFree: 0x7f36195bc308<br>2015/09/05 02:35:13.803 kid1| cbdata.cc(365) cbdataInternalFree: cbdataFree: Freeing 0x7f36195bc308<br>2015/09/05 02:35:13.803 kid1| ufs/UFSSwapDir.cc(475) maintain: /var/spool/squid3 removed 0/80 f=1.0000 max_scan=500<br>2015/09/05 02:35:13.803 kid1| event.cc(346) schedule: schedule: Adding 'MaintainSwapSpace', in 1.00 seconds<br>2015/09/05 02:35:13.803 kid1| AsyncCallQueue.cc(53) fireNext: leaving MaintainSwapSpace()<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:13.803 kid1| AsyncCall.cc(18) AsyncCall: The AsyncCall DelayPools::Update constructed, this=0x7f361986d530 [call2479]<br>2015/09/05 02:35:13.803 kid1| AsyncCall.cc(85) ScheduleCall: event.cc(261) will call DelayPools::Update() [call2479]<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:13.803 kid1| AsyncCallQueue.cc(51) fireNext: entering DelayPools::Update()<br>2015/09/05 02:35:13.803 kid1| AsyncCall.cc(30) make: make call DelayPools::Update [call2479]<br>2015/09/05 02:35:13.803 kid1| event.cc(346) schedule: schedule: Adding 'DelayPools::Update', in 1.00 seconds<br>2015/09/05 02:35:13.803 kid1| AsyncCallQueue.cc(53) fireNext: leaving DelayPools::Update()<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d930 is idle.<br>2015/09/05 02:35:13.803 kid1| EventLoop.cc(61) checkEngine: Engine 0x7ffd4ae5d900 is idle.<br><br><br><br></div>Regards,<br><br></div>Márcio Bacci<br></div>