[Çözüldü] Squid Proxy Server ile Oturum Açma Problemi

Başlatan umityildiz, 21 Eylül 2011 - 12:08:40

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

umityildiz

htpasswd /etc/squid/passwd kullaniciadi ile kullanıcı ekliyorum. Hatta webmin üzerinden Proxy Authentication ile eklenen kullanıcıları görebiliyorum. Ancak bir türlü proxy üzerinden web tarayıcım ile login olamıyorum. Hala herkese açık. Yardımcı olacak biri varsa önerilerini bekliyorum.

# dpkg -L squid | grep ncsa_auth
# touch /etc/squid/passwd
# chmod o+r /etc/squid/passwd

/etc/squid/squid.conf
Alıntı Yap
http_port 127.0.0.1:3128
http_port 192.168.1.5:3128 transparent
icp_port 3130

acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl cachehost src 192.168.1.5
acl to_cachehost dst 192.168.1.5

acl Safe_ports port 80      # http
acl Safe_ports port 21      # ftp
acl Safe_ports port 443      # https
acl Safe_ports port 70      # gopher
acl Safe_ports port 210      # wais
acl Safe_ports port 1025-65535   # unregistered ports
acl Safe_ports port 280      # http-mgmt
acl Safe_ports port 488      # gss-http
acl Safe_ports port 591      # filemaker
acl Safe_ports port 777      # multiling http

acl localnet src 192.168.1.0/255.255.255.0 172.18.80.0/255.255.240.0

http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access allow localhost
###
http_access allow cachehost
http_access deny to_cachehost
http_access allow localnet
###
http_access deny all
icp_access deny all

acl shoutcast rep_header X-HTTP09-First-Line ^ICY.[0-9]
upgrade_http0.9 deny shoutcast
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
cache_store_log none
log_fqdn off
log_icp_queries off
logfile_rotate 1

auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
acl ncsa_users proxy_auth REQUIRED
http_access allow ncsa_users

umityildiz

Sizin verdiğiniz örnekten böyle bir yapılandırma dosyası oluşturdum. Bu işimi görüyor. Ancak aşağıdaki uyarıyı alıyorum. Bunu nasıl düzeltebilirim.

Alıntı Yap
Initializing the Squid cache with the command squid -f /etc/squid/squid.conf -z ..


2011/09/22 01:06:23| Invalid Proxy Auth ACL 'acl ncsa_users proxy_auth REQUIRED' because no authentication schemes are fully configured.
FATAL: Bungled squid.conf line 24: acl ncsa_users proxy_auth REQUIRED
Squid Cache (Version 2.7.STABLE9): Terminated abnormally.

.. Done
Failed to re-start Squid ..


2011/09/22 01:06:23| Invalid Proxy Auth ACL 'acl ncsa_users proxy_auth REQUIRED' because no authentication schemes are fully configured.
FATAL: Bungled squid.conf line 24: acl ncsa_users proxy_auth REQUIRED
Squid Cache (Version 2.7.STABLE9): Terminated abnormally.



/etc/squid/squid.conf

acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
acl localnet src 192.168.1.0/24 # Benim A1m
acl SSL_ports port 443          # https
acl SSL_ports port 563          # snews
acl SSL_ports port 873          # rsync
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl Safe_ports port 631         # cups
acl Safe_ports port 873         # rsync
acl Safe_ports port 901         # SWAT
acl purge method PURGE
acl CONNECT method CONNECT
acl ncsa_users proxy_auth REQUIRED

http_access allow manager localhost
http_access deny manager
http_access allow localnet
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_access allow ncsa_users

icp_access allow localnet
icp_access deny all
http_port 3128 transparent

hierarchy_stoplist cgi-bin ?
access_log /var/log/squid/access.log squid
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
extension_methods REPORT MERGE MKACTIVITY CHECKOUT
hosts_file /etc/hosts
coredump_dir /var/spool/squid

cache_dir diskd /var/cache 200 16 256
cache_mem 64 MB
maximum_object_size 10 MB

auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd

cagriemer

Bir baska basliga hata aldiginizi yazmissiniz baslatirken.

sudo service squid stop
/usr/local/sbin/squid -X


komutlarini verince once squid'i durdurup sonra debugging modunda baslatmasi lazim. baslatirken hatalari detaylica yazacaktir. kopyalayip gonderir misiniz?

not: ikinci komut freebsd uzerindeki path'e gore su anda ubuntu uzerinde deneyemedim ama ustteki gibi calismazsa bir de asagidaki sekilde deneyin.

/usr/local/squid/sbin/squid -X

cagriemer

Alıntı yapılan: umityildiz - 22 Eylül 2011 - 01:12:41
Sizin verdiğiniz örnekten böyle bir yapılandırma dosyası oluşturdum. Bu işimi görüyor. Ancak aşağıdaki uyarıyı alıyorum. Bunu nasıl düzeltebilirim.



Yapilandirma dosyanizi asagidaki sekilde degistirip dener misiniz?

Alıntı Yapacl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
acl localnet src 192.168.1.0/24 # Benim A1m
acl SSL_ports port 443          # https
acl SSL_ports port 563          # snews
acl SSL_ports port 873          # rsync
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl Safe_ports port 631         # cups
acl Safe_ports port 873         # rsync
acl Safe_ports port 901         # SWAT
acl purge method PURGE
acl CONNECT method CONNECT

auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
acl ncsa_users proxy_auth REQUIRED

http_access allow manager localhost
http_access deny manager
http_access allow localnet
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow ncsa_users
http_access deny all

icp_access allow localnet
icp_access deny all
http_port 3128 transparent

hierarchy_stoplist cgi-bin ?
access_log /var/log/squid/access.log squid
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
extension_methods REPORT MERGE MKACTIVITY CHECKOUT
hosts_file /etc/hosts
coredump_dir /var/spool/squid

cache_dir diskd /var/cache 200 16 256
cache_mem 64 MB
maximum_object_size 10 MB

Yalniz bu sekilde localnet diye tanimladiginiz alandan gelen isteklere sifre sormaz. Eger onlarin da sifre ile erismesini istiyorsaniz

Alıntı Yapacl localnet src 192.168.1.0/24 # Benim A1m
http_access allow localnet

satirlarinin basina # koyabilirsiniz.

umityildiz

Dediğnizi yaptım. Proxy çalışıyor ama oturum açma işlemi yapmıyor. Sorunu nasıl çözebilirim?

2011/09/22 08:28:58| Memory pools are 'off'; limit: 0.00 MB
2011/09/22 08:28:58| cachemgrRegister: registered mem
2011/09/22 08:28:58| cbdataInit
2011/09/22 08:28:58| cachemgrRegister: registered cbdata
2011/09/22 08:28:58| cachemgrRegister: registered events
2011/09/22 08:28:58| cachemgrRegister: registered squidaio_counts
2011/09/22 08:28:58| cachemgrRegister: registered coss
2011/09/22 08:28:58| cachemgrRegister: registered diskd
2011/09/22 08:28:58| diskd started
2011/09/22 08:28:58| authSchemeAdd: adding basic
2011/09/22 08:28:58| authSchemeAdd: adding digest
2011/09/22 08:28:58| authSchemeAdd: adding ntlm
2011/09/22 08:28:58| authSchemeAdd: adding negotiate
2011/09/22 08:28:58| parse_line: authenticate_cache_garbage_interval 1 hour
2011/09/22 08:28:58| parse_line: authenticate_ttl 1 hour
2011/09/22 08:28:58| parse_line: authenticate_ip_ttl 0 seconds
2011/09/22 08:28:58| parse_line: authenticate_ip_shortcircuit_ttl 0 seconds
2011/09/22 08:28:58| parse_line: acl_uses_indirect_client on
2011/09/22 08:28:58| parse_line: delay_pool_uses_indirect_client on
2011/09/22 08:28:58| parse_line: log_uses_indirect_client on
2011/09/22 08:28:58| parse_line: zph_mode off
2011/09/22 08:28:58| parse_line: zph_local 0
2011/09/22 08:28:58| parse_line: zph_sibling 0
2011/09/22 08:28:58| parse_line: zph_parent 0
2011/09/22 08:28:58| parse_line: zph_option 136
2011/09/22 08:28:58| parse_line: dead_peer_timeout 10 seconds
2011/09/22 08:28:58| parse_line: cache_mem 8 MB
2011/09/22 08:28:58| parse_line: maximum_object_size_in_memory 8 KB
2011/09/22 08:28:58| parse_line: memory_replacement_policy lru
2011/09/22 08:28:58| parse_line: cache_replacement_policy lru
2011/09/22 08:28:58| parse_line: store_dir_select_algorithm least-load
2011/09/22 08:28:58| parse_line: max_open_disk_fds 0
2011/09/22 08:28:58| parse_line: minimum_object_size 0 KB
2011/09/22 08:28:58| parse_line: maximum_object_size 20480 KB
2011/09/22 08:28:58| parse_line: cache_swap_low 90
2011/09/22 08:28:58| parse_line: cache_swap_high 95
2011/09/22 08:28:58| parse_line: update_headers on
2011/09/22 08:28:58| parse_line: logfile_daemon /usr/lib/squid/logfile-daemon
2011/09/22 08:28:58| parse_line: cache_log /var/log/squid/cache.log
2011/09/22 08:28:58| parse_line: cache_store_log /var/log/squid/store.log
2011/09/22 08:28:58| parse_line: logfile_rotate 0
2011/09/22 08:28:58| parse_line: emulate_httpd_log off
2011/09/22 08:28:58| parse_line: log_ip_on_direct on
2011/09/22 08:28:58| parse_line: mime_table /usr/share/squid/mime.conf
2011/09/22 08:28:58| parse_line: log_mime_hdrs off
2011/09/22 08:28:58| parse_line: pid_filename /var/run/squid.pid
2011/09/22 08:28:58| parse_line: debug_options ALL,1
2011/09/22 08:28:58| parse_line: log_fqdn off
2011/09/22 08:28:58| parse_line: client_netmask 255.255.255.255
2011/09/22 08:28:58| parse_line: strip_query_terms on
2011/09/22 08:28:58| parse_line: buffered_logs off
2011/09/22 08:28:58| parse_line: netdb_filename /var/spool/squid/logs/netdb.state
2011/09/22 08:28:58| parse_line: ftp_user Squid@
2011/09/22 08:28:58| parse_line: ftp_list_width 32
2011/09/22 08:28:58| parse_line: ftp_passive on
2011/09/22 08:28:58| parse_line: ftp_sanitycheck on
2011/09/22 08:28:58| parse_line: ftp_telnet_protocol on
2011/09/22 08:28:58| parse_line: diskd_program /usr/lib/squid/diskd-daemon
2011/09/22 08:28:58| parse_line: unlinkd_program /usr/lib/squid/unlinkd
2011/09/22 08:28:58| parse_line: storeurl_rewrite_children 5
2011/09/22 08:28:58| parse_line: storeurl_rewrite_concurrency 0
2011/09/22 08:28:58| parse_line: url_rewrite_children 5
2011/09/22 08:28:58| parse_line: url_rewrite_concurrency 0
2011/09/22 08:28:58| parse_line: url_rewrite_host_header on
2011/09/22 08:28:58| parse_line: redirector_bypass off
2011/09/22 08:28:58| parse_line: location_rewrite_children 5
2011/09/22 08:28:58| parse_line: location_rewrite_concurrency 0
2011/09/22 08:28:58| parse_line: max_stale 1 week
2011/09/22 08:28:58| parse_line: quick_abort_min 16 KB
2011/09/22 08:28:58| parse_line: quick_abort_max 16 KB
2011/09/22 08:28:58| parse_line: quick_abort_pct 95
2011/09/22 08:28:58| parse_line: read_ahead_gap 16 KB
2011/09/22 08:28:58| parse_line: negative_ttl 5 minutes
2011/09/22 08:28:58| parse_line: positive_dns_ttl 6 hours
2011/09/22 08:28:58| parse_line: negative_dns_ttl 1 minute
2011/09/22 08:28:58| parse_line: range_offset_limit 0 KB
2011/09/22 08:28:58| parse_line: minimum_expiry_time 60 seconds
2011/09/22 08:28:58| parse_line: store_avg_object_size 13 KB
2011/09/22 08:28:58| parse_line: store_objects_per_bucket 20
2011/09/22 08:28:58| parse_line: request_header_max_size 20 KB
2011/09/22 08:28:58| parse_line: reply_header_max_size 20 KB
2011/09/22 08:28:58| parse_line: request_body_max_size 0 KB
2011/09/22 08:28:58| parse_line: via on
2011/09/22 08:28:58| parse_line: cache_vary on
2011/09/22 08:28:58| parse_line: collapsed_forwarding off
2011/09/22 08:28:58| parse_line: refresh_stale_hit 0 seconds
2011/09/22 08:28:58| parse_line: ie_refresh off
2011/09/22 08:28:58| parse_line: vary_ignore_expire off
2011/09/22 08:28:58| parse_line: request_entities off
2011/09/22 08:28:58| parse_line: relaxed_header_parser on
2011/09/22 08:28:58| parse_line: server_http11 off
2011/09/22 08:28:58| parse_line: ignore_expect_100 off
2011/09/22 08:28:58| parse_line: forward_timeout 4 minutes
2011/09/22 08:28:58| parse_line: connect_timeout 1 minute
2011/09/22 08:28:58| parse_line: peer_connect_timeout 30 seconds
2011/09/22 08:28:58| parse_line: read_timeout 15 minutes
2011/09/22 08:28:58| parse_line: request_timeout 5 minutes
2011/09/22 08:28:58| parse_line: persistent_request_timeout 2 minutes
2011/09/22 08:28:58| parse_line: client_lifetime 1 day
2011/09/22 08:28:58| parse_line: half_closed_clients on
2011/09/22 08:28:58| parse_line: pconn_timeout 1 minute
2011/09/22 08:28:58| parse_line: ident_timeout 10 seconds
2011/09/22 08:28:58| parse_line: shutdown_lifetime 30 seconds
2011/09/22 08:28:58| parse_line: cache_mgr webmaster
2011/09/22 08:28:58| parse_line: mail_program mail
2011/09/22 08:28:58| parse_line: cache_effective_user proxy
2011/09/22 08:28:58| parse_line: httpd_suppress_version_string off
2011/09/22 08:28:58| parse_line: umask 027
2011/09/22 08:28:58| parse_line: announce_period 0
2011/09/22 08:28:58| parse_line: announce_host tracker.ircache.net
2011/09/22 08:28:58| parse_line: announce_port 3131
2011/09/22 08:28:58| parse_line: httpd_accel_no_pmtu_disc off
2011/09/22 08:28:58| parse_line: delay_pools 0
2011/09/22 08:28:58| parse_line: delay_initial_bucket_level 50
2011/09/22 08:28:58| parse_line: wccp_router 0.0.0.0
2011/09/22 08:28:58| parse_line: wccp_version 4
2011/09/22 08:28:58| parse_line: wccp2_rebuild_wait on
2011/09/22 08:28:58| parse_line: wccp2_forwarding_method 1
2011/09/22 08:28:58| parse_line: wccp2_return_method 1
2011/09/22 08:28:58| parse_line: wccp2_assignment_method 1
2011/09/22 08:28:58| parse_line: wccp2_weight 10000
2011/09/22 08:28:58| parse_line: wccp_address 0.0.0.0
2011/09/22 08:28:58| parse_line: wccp2_address 0.0.0.0
2011/09/22 08:28:58| parse_line: client_persistent_connections on
2011/09/22 08:28:58| parse_line: server_persistent_connections on
2011/09/22 08:28:58| parse_line: persistent_connection_after_error off
2011/09/22 08:28:58| parse_line: detect_broken_pconn off
2011/09/22 08:28:58| parse_line: digest_generation on
2011/09/22 08:28:58| parse_line: digest_bits_per_entry 5
2011/09/22 08:28:58| parse_line: digest_rebuild_period 1 hour
2011/09/22 08:28:58| parse_line: digest_rewrite_period 1 hour
2011/09/22 08:28:58| parse_line: digest_swapout_chunk_size 4096 bytes
2011/09/22 08:28:58| parse_line: digest_rebuild_chunk_percentage 10
2011/09/22 08:28:58| parse_line: snmp_port 0
2011/09/22 08:28:58| parse_line: snmp_incoming_address 0.0.0.0
2011/09/22 08:28:58| parse_line: snmp_outgoing_address 255.255.255.255
2011/09/22 08:28:58| parse_line: icp_port 3130
2011/09/22 08:28:58| parse_line: htcp_port 0
2011/09/22 08:28:58| parse_line: log_icp_queries on
2011/09/22 08:28:58| parse_line: udp_incoming_address 0.0.0.0
2011/09/22 08:28:58| parse_line: udp_outgoing_address 255.255.255.255
2011/09/22 08:28:58| parse_line: icp_hit_stale off
2011/09/22 08:28:58| parse_line: minimum_direct_hops 4
2011/09/22 08:28:58| parse_line: minimum_direct_rtt 400
2011/09/22 08:28:58| parse_line: netdb_low 900
2011/09/22 08:28:58| parse_line: netdb_high 1000
2011/09/22 08:28:58| parse_line: netdb_ping_period 5 minutes
2011/09/22 08:28:58| parse_line: query_icmp off
2011/09/22 08:28:58| parse_line: test_reachability off
2011/09/22 08:28:58| parse_line: icp_query_timeout 0
2011/09/22 08:28:58| parse_line: maximum_icp_query_timeout 2000
2011/09/22 08:28:58| parse_line: minimum_icp_query_timeout 5
2011/09/22 08:28:58| parse_line: mcast_icp_query_timeout 2000
2011/09/22 08:28:58| parse_line: icon_directory /usr/share/squid/icons
2011/09/22 08:28:58| parse_line: global_internal_static on
2011/09/22 08:28:58| parse_line: short_icon_urls off
2011/09/22 08:28:58| parse_line: error_directory /usr/share/squid/errors/en
2011/09/22 08:28:58| parse_line: nonhierarchical_direct on
2011/09/22 08:28:58| parse_line: prefer_direct off
2011/09/22 08:28:58| parse_line: ignore_ims_on_miss off
2011/09/22 08:28:58| parse_line: max_filedescriptors 0
2011/09/22 08:28:58| parse_line: tcp_recv_bufsize 0 bytes
2011/09/22 08:28:58| parse_line: incoming_rate 30
2011/09/22 08:28:58| parse_line: check_hostnames on
2011/09/22 08:28:58| parse_line: allow_underscore on
2011/09/22 08:28:58| parse_line: dns_retransmit_interval 5 seconds
2011/09/22 08:28:58| parse_line: dns_timeout 2 minutes
2011/09/22 08:28:58| parse_line: dns_defnames off
2011/09/22 08:28:58| parse_line: hosts_file /etc/hosts
2011/09/22 08:28:58| parse_line: ignore_unknown_nameservers on
2011/09/22 08:28:58| parse_line: ipcache_size 1024
2011/09/22 08:28:58| parse_line: ipcache_low 90
2011/09/22 08:28:58| parse_line: ipcache_high 95
2011/09/22 08:28:58| parse_line: fqdncache_size 1024
2011/09/22 08:28:58| parse_line: memory_pools on
2011/09/22 08:28:58| parse_line: memory_pools_limit 5 MB
2011/09/22 08:28:58| parse_line: forwarded_for on
2011/09/22 08:28:58| parse_line: client_db on
2011/09/22 08:28:58| parse_line: reload_into_ims off
2011/09/22 08:28:58| parse_line: maximum_single_addr_tries 1
2011/09/22 08:28:58| parse_line: retry_on_error off
2011/09/22 08:28:58| parse_line: as_whois_server whois.ra.net
2011/09/22 08:28:58| parse_line: offline_mode off
2011/09/22 08:28:58| parse_line: uri_whitespace strip
2011/09/22 08:28:58| parse_line: balance_on_multiple_ip on
2011/09/22 08:28:58| parse_line: pipeline_prefetch off
2011/09/22 08:28:58| parse_line: high_response_time_warning 0
2011/09/22 08:28:58| parse_line: high_page_fault_warning 0
2011/09/22 08:28:58| parse_line: high_memory_warning 0 KB
2011/09/22 08:28:58| parse_line: sleep_after_fork 0
2011/09/22 08:28:58| parse_line: zero_buffers on
2011/09/22 08:28:58| parse_line: windows_ipaddrchangemonitor on
2011/09/22 08:28:58| Including Configuration File: /etc/squid/squid.conf (depth 0)
2011/09/22 08:28:58| Processing: 'http_port 127.0.0.1:3128 '
2011/09/22 08:28:58| parse_line: http_port 127.0.0.1:3128
2011/09/22 08:28:58| Processing: 'http_port 192.168.1.5:3128 transparent'
2011/09/22 08:28:58| parse_line: http_port 192.168.1.5:3128 transparent
2011/09/22 08:28:58| Processing: 'icp_port 3130'
2011/09/22 08:28:58| parse_line: icp_port 3130
2011/09/22 08:28:58| Processing: 'acl all src all'
2011/09/22 08:28:58| parse_line: acl all src all
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'all'
2011/09/22 08:28:58| aclParseIpData: all
2011/09/22 08:28:58| Processing: 'acl manager proto cache_object'
2011/09/22 08:28:58| parse_line: acl manager proto cache_object
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'manager'
2011/09/22 08:28:58| Processing: 'acl localhost src 127.0.0.1/32'
2011/09/22 08:28:58| parse_line: acl localhost src 127.0.0.1/32
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'localhost'
2011/09/22 08:28:58| aclParseIpData: 127.0.0.1/32
2011/09/22 08:28:58| Processing: 'acl cachehost src 192.168.1.5'
2011/09/22 08:28:58| parse_line: acl cachehost src 192.168.1.5
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'cachehost'
2011/09/22 08:28:58| aclParseIpData: 192.168.1.5
2011/09/22 08:28:58| Processing: 'acl to_cachehost dst 192.168.1.5'
2011/09/22 08:28:58| parse_line: acl to_cachehost dst 192.168.1.5
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'to_cachehost'
2011/09/22 08:28:58| aclParseIpData: 192.168.1.5
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 80      # http'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 80      # http
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 21      # ftp'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 21      # ftp
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 443      # https'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 443      # https
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 70      # gopher'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 70      # gopher
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 210      # wais'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 210      # wais
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 1025-65535   # unregistered ports'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 1025-65535   # unregistered ports
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 280      # http-mgmt'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 280      # http-mgmt
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 488      # gss-http'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 488      # gss-http
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 591      # filemaker'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 591      # filemaker
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl Safe_ports port 777      # multiling http'
2011/09/22 08:28:58| parse_line: acl Safe_ports port 777      # multiling http
2011/09/22 08:28:58| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 08:28:58| Processing: 'acl localnet src 192.168.1.0/255.255.255.0 172.18.80.0/255.255.240.0'
2011/09/22 08:28:58| parse_line: acl localnet src 192.168.1.0/255.255.255.0 172.18.80.0/255.255.240.0
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'localnet'
2011/09/22 08:28:58| aclParseIpData: 192.168.1.0/255.255.255.0
2011/09/22 08:28:58| aclParseIpData: 172.18.80.0/255.255.240.0
2011/09/22 08:28:58| Processing: 'http_access allow manager localhost'
2011/09/22 08:28:58| parse_line: http_access allow manager localhost
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'manager'
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'localhost'
2011/09/22 08:28:58| Processing: 'http_access deny manager'
2011/09/22 08:28:58| parse_line: http_access deny manager
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'manager'
2011/09/22 08:28:58| Processing: 'http_access deny !Safe_ports'
2011/09/22 08:28:58| parse_line: http_access deny !Safe_ports
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'Safe_ports'
2011/09/22 08:28:58| Processing: 'http_access allow localhost'
2011/09/22 08:28:58| parse_line: http_access allow localhost
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'localhost'
2011/09/22 08:28:58| Processing: 'http_access allow cachehost'
2011/09/22 08:28:58| parse_line: http_access allow cachehost
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'cachehost'
2011/09/22 08:28:58| Processing: 'http_access deny to_cachehost'
2011/09/22 08:28:58| parse_line: http_access deny to_cachehost
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'to_cachehost'
2011/09/22 08:28:58| Processing: 'http_access allow localnet'
2011/09/22 08:28:58| parse_line: http_access allow localnet
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'localnet'
2011/09/22 08:28:58| Processing: 'http_access deny all'
2011/09/22 08:28:58| parse_line: http_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| Processing: 'icp_access deny all'
2011/09/22 08:28:58| parse_line: icp_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| Processing: 'acl shoutcast rep_header X-HTTP09-First-Line ^ICY.[0-9]'
2011/09/22 08:28:58| parse_line: acl shoutcast rep_header X-HTTP09-First-Line ^ICY.[0-9]
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'shoutcast'
2011/09/22 08:28:58| Processing: 'upgrade_http0.9 deny shoutcast'
2011/09/22 08:28:58| parse_line: upgrade_http0.9 deny shoutcast
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'shoutcast'
2011/09/22 08:28:58| Processing: 'acl apache rep_header Server ^Apache'
2011/09/22 08:28:58| parse_line: acl apache rep_header Server ^Apache
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'apache'
2011/09/22 08:28:58| Processing: 'broken_vary_encoding allow apache'
2011/09/22 08:28:58| parse_line: broken_vary_encoding allow apache
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'apache'
2011/09/22 08:28:58| Processing: 'cache_store_log none'
2011/09/22 08:28:58| parse_line: cache_store_log none
2011/09/22 08:28:58| Processing: 'log_fqdn off'
2011/09/22 08:28:58| parse_line: log_fqdn off
2011/09/22 08:28:58| Processing: 'log_icp_queries off'
2011/09/22 08:28:58| parse_line: log_icp_queries off
2011/09/22 08:28:58| Processing: 'logfile_rotate 1'
2011/09/22 08:28:58| parse_line: logfile_rotate 1
2011/09/22 08:28:58| Processing: 'auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd'
2011/09/22 08:28:58| parse_line: auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
2011/09/22 08:28:58| Processing: 'auth_param basic children 5'
2011/09/22 08:28:58| parse_line: auth_param basic children 5
2011/09/22 08:28:58| Processing: 'auth_param basic realm Squid proxy-caching web server'
2011/09/22 08:28:58| parse_line: auth_param basic realm Squid proxy-caching web server
2011/09/22 08:28:58| Processing: 'auth_param basic credentialsttl 2 hours'
2011/09/22 08:28:58| parse_line: auth_param basic credentialsttl 2 hours
2011/09/22 08:28:58| Processing: 'auth_param basic casesensitive off'
2011/09/22 08:28:58| parse_line: auth_param basic casesensitive off
2011/09/22 08:28:58| Processing: 'acl ncsa_users proxy_auth REQUIRED'
2011/09/22 08:28:58| parse_line: acl ncsa_users proxy_auth REQUIRED
2011/09/22 08:28:58| aclParseAclLine: Creating ACL 'ncsa_users'
2011/09/22 08:28:58| authenticateSchemeCount: 4 active.
2011/09/22 08:28:58| authBasicConfigured: returning configured
2011/09/22 08:28:58| authNTLMConfigured: not configured
2011/09/22 08:28:58| authNegotiateConfigured: not configured
2011/09/22 08:28:58| authenticateActiveSchemeCount: 1 active.
2011/09/22 08:28:58| aclParseUserList: parsing user list
2011/09/22 08:28:58| aclParseUserList: current is null. Creating
2011/09/22 08:28:58| aclParseUserList: First token is REQUIRED
2011/09/22 08:28:58| aclParseUserList: REQUIRED-type enabled
2011/09/22 08:28:58| aclParseUserList: Case-insensitive-switch is 0
2011/09/22 08:28:58| aclParseUserList: parsing user list
2011/09/22 08:28:58| Processing: 'http_access allow ncsa_users'
2011/09/22 08:28:58| parse_line: http_access allow ncsa_users
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'ncsa_users'
2011/09/22 08:28:58| parse_line: http_reply_access allow all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: htcp_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: htcp_clr_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: ident_lookup_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: reply_body_max_size 0 allow all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: follow_x_forwarded_for deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: cache_dir ufs /var/spool/squid 100 16 256
2011/09/22 08:28:58| parse_line: wccp2_service standard 0
2011/09/22 08:28:58| wccp2_add_service_list: added service id 0
2011/09/22 08:28:58| parse_line: snmp_access deny all
2011/09/22 08:28:58| aclParseAclList: looking for ACL name 'all'
2011/09/22 08:28:58| parse_line: dns_testnames netscape.com internic.net nlanr.net microsoft.com
2011/09/22 08:28:58| parse_line: coredump_dir none
2011/09/22 08:28:58| getMyHostname: resolved 127.0.0.1 to 'localhost.localdomain'
2011/09/22 08:28:58| authBasicConfigured: returning configured
2011/09/22 08:28:58| cachemgrRegister: registered config
2011/09/22 08:28:58| Squid is already running!  Process ID 2840

umityildiz

Aşağıdaki gibi düzeltince çalıştı. Daha hızlı çalışması için bir öneriniz var mı?

acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
# acl localnet src 192.168.1.0/24
acl SSL_ports port 443          # https
acl SSL_ports port 563          # snews
acl SSL_ports port 873          # rsync
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl Safe_ports port 631         # cups
acl Safe_ports port 873         # rsync
acl Safe_ports port 901         # SWAT
acl purge method PURGE
acl CONNECT method CONNECT

auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
acl ncsa_users proxy_auth REQUIRED

http_access allow manager localhost
http_access deny manager
# http_access allow localnet
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow ncsa_users
http_access deny all

# icp_access allow localnet
icp_access deny all
http_port 3128 transparent

hierarchy_stoplist cgi-bin ?
access_log /var/log/squid/access.log squid
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
extension_methods REPORT MERGE MKACTIVITY CHECKOUT
hosts_file /etc/hosts
# coredump_dir /var/spool/squid

cache_dir ufs /var/spool/squid 200 16 256
cache_mem 64 MB
maximum_object_size 10 MB
check_hostnames off
allow_underscore off
dns_nameservers 4.2.2.5 4.2.2.6



Mesaj tekrarı yüzünden mesajınız birleştirildi. Bu mesajın gönderim tarihi : 22 Eylül 2011 - 10:21:12

Yukarıdaki yaptıklarımdan aldığım çıktı bu şekilde. Düzeltmem greken bir şey varsa söyleyebilir misiniz? Yardımlarınız için teşekkürler.

2011/09/22 10:18:09| Memory pools are 'off'; limit: 0.00 MB
2011/09/22 10:18:09| cachemgrRegister: registered mem
2011/09/22 10:18:09| cbdataInit
2011/09/22 10:18:09| cachemgrRegister: registered cbdata
2011/09/22 10:18:09| cachemgrRegister: registered events
2011/09/22 10:18:09| cachemgrRegister: registered squidaio_counts
2011/09/22 10:18:09| cachemgrRegister: registered coss
2011/09/22 10:18:09| cachemgrRegister: registered diskd
2011/09/22 10:18:09| diskd started
2011/09/22 10:18:09| authSchemeAdd: adding basic
2011/09/22 10:18:09| authSchemeAdd: adding digest
2011/09/22 10:18:09| authSchemeAdd: adding ntlm
2011/09/22 10:18:09| authSchemeAdd: adding negotiate
2011/09/22 10:18:09| parse_line: authenticate_cache_garbage_interval 1 hour
2011/09/22 10:18:09| parse_line: authenticate_ttl 1 hour
2011/09/22 10:18:09| parse_line: authenticate_ip_ttl 0 seconds
2011/09/22 10:18:09| parse_line: authenticate_ip_shortcircuit_ttl 0 seconds
2011/09/22 10:18:09| parse_line: acl_uses_indirect_client on
2011/09/22 10:18:09| parse_line: delay_pool_uses_indirect_client on
2011/09/22 10:18:09| parse_line: log_uses_indirect_client on
2011/09/22 10:18:09| parse_line: zph_mode off
2011/09/22 10:18:09| parse_line: zph_local 0
2011/09/22 10:18:09| parse_line: zph_sibling 0
2011/09/22 10:18:09| parse_line: zph_parent 0
2011/09/22 10:18:09| parse_line: zph_option 136
2011/09/22 10:18:09| parse_line: dead_peer_timeout 10 seconds
2011/09/22 10:18:09| parse_line: cache_mem 8 MB
2011/09/22 10:18:09| parse_line: maximum_object_size_in_memory 8 KB
2011/09/22 10:18:09| parse_line: memory_replacement_policy lru
2011/09/22 10:18:09| parse_line: cache_replacement_policy lru
2011/09/22 10:18:09| parse_line: store_dir_select_algorithm least-load
2011/09/22 10:18:09| parse_line: max_open_disk_fds 0
2011/09/22 10:18:09| parse_line: minimum_object_size 0 KB
2011/09/22 10:18:09| parse_line: maximum_object_size 20480 KB
2011/09/22 10:18:09| parse_line: cache_swap_low 90
2011/09/22 10:18:09| parse_line: cache_swap_high 95
2011/09/22 10:18:09| parse_line: update_headers on
2011/09/22 10:18:09| parse_line: logfile_daemon /usr/lib/squid/logfile-daemon
2011/09/22 10:18:09| parse_line: cache_log /var/log/squid/cache.log
2011/09/22 10:18:09| parse_line: cache_store_log /var/log/squid/store.log
2011/09/22 10:18:09| parse_line: logfile_rotate 0
2011/09/22 10:18:09| parse_line: emulate_httpd_log off
2011/09/22 10:18:09| parse_line: log_ip_on_direct on
2011/09/22 10:18:09| parse_line: mime_table /usr/share/squid/mime.conf
2011/09/22 10:18:09| parse_line: log_mime_hdrs off
2011/09/22 10:18:09| parse_line: pid_filename /var/run/squid.pid
2011/09/22 10:18:09| parse_line: debug_options ALL,1
2011/09/22 10:18:09| parse_line: log_fqdn off
2011/09/22 10:18:09| parse_line: client_netmask 255.255.255.255
2011/09/22 10:18:09| parse_line: strip_query_terms on
2011/09/22 10:18:09| parse_line: buffered_logs off
2011/09/22 10:18:09| parse_line: netdb_filename /var/spool/squid/logs/netdb.state
2011/09/22 10:18:09| parse_line: ftp_user Squid@
2011/09/22 10:18:09| parse_line: ftp_list_width 32
2011/09/22 10:18:09| parse_line: ftp_passive on
2011/09/22 10:18:09| parse_line: ftp_sanitycheck on
2011/09/22 10:18:09| parse_line: ftp_telnet_protocol on
2011/09/22 10:18:09| parse_line: diskd_program /usr/lib/squid/diskd-daemon
2011/09/22 10:18:09| parse_line: unlinkd_program /usr/lib/squid/unlinkd
2011/09/22 10:18:09| parse_line: storeurl_rewrite_children 5
2011/09/22 10:18:09| parse_line: storeurl_rewrite_concurrency 0
2011/09/22 10:18:09| parse_line: url_rewrite_children 5
2011/09/22 10:18:09| parse_line: url_rewrite_concurrency 0
2011/09/22 10:18:09| parse_line: url_rewrite_host_header on
2011/09/22 10:18:09| parse_line: redirector_bypass off
2011/09/22 10:18:09| parse_line: location_rewrite_children 5
2011/09/22 10:18:09| parse_line: location_rewrite_concurrency 0
2011/09/22 10:18:09| parse_line: max_stale 1 week
2011/09/22 10:18:09| parse_line: quick_abort_min 16 KB
2011/09/22 10:18:09| parse_line: quick_abort_max 16 KB
2011/09/22 10:18:09| parse_line: quick_abort_pct 95
2011/09/22 10:18:09| parse_line: read_ahead_gap 16 KB
2011/09/22 10:18:09| parse_line: negative_ttl 5 minutes
2011/09/22 10:18:09| parse_line: positive_dns_ttl 6 hours
2011/09/22 10:18:09| parse_line: negative_dns_ttl 1 minute
2011/09/22 10:18:09| parse_line: range_offset_limit 0 KB
2011/09/22 10:18:09| parse_line: minimum_expiry_time 60 seconds
2011/09/22 10:18:09| parse_line: store_avg_object_size 13 KB
2011/09/22 10:18:09| parse_line: store_objects_per_bucket 20
2011/09/22 10:18:09| parse_line: request_header_max_size 20 KB
2011/09/22 10:18:09| parse_line: reply_header_max_size 20 KB
2011/09/22 10:18:09| parse_line: request_body_max_size 0 KB
2011/09/22 10:18:09| parse_line: via on
2011/09/22 10:18:09| parse_line: cache_vary on
2011/09/22 10:18:09| parse_line: collapsed_forwarding off
2011/09/22 10:18:09| parse_line: refresh_stale_hit 0 seconds
2011/09/22 10:18:09| parse_line: ie_refresh off
2011/09/22 10:18:09| parse_line: vary_ignore_expire off
2011/09/22 10:18:09| parse_line: request_entities off
2011/09/22 10:18:09| parse_line: relaxed_header_parser on
2011/09/22 10:18:09| parse_line: server_http11 off
2011/09/22 10:18:09| parse_line: ignore_expect_100 off
2011/09/22 10:18:09| parse_line: forward_timeout 4 minutes
2011/09/22 10:18:09| parse_line: connect_timeout 1 minute
2011/09/22 10:18:09| parse_line: peer_connect_timeout 30 seconds
2011/09/22 10:18:09| parse_line: read_timeout 15 minutes
2011/09/22 10:18:09| parse_line: request_timeout 5 minutes
2011/09/22 10:18:09| parse_line: persistent_request_timeout 2 minutes
2011/09/22 10:18:09| parse_line: client_lifetime 1 day
2011/09/22 10:18:09| parse_line: half_closed_clients on
2011/09/22 10:18:09| parse_line: pconn_timeout 1 minute
2011/09/22 10:18:09| parse_line: ident_timeout 10 seconds
2011/09/22 10:18:09| parse_line: shutdown_lifetime 30 seconds
2011/09/22 10:18:09| parse_line: cache_mgr webmaster
2011/09/22 10:18:09| parse_line: mail_program mail
2011/09/22 10:18:09| parse_line: cache_effective_user proxy
2011/09/22 10:18:09| parse_line: httpd_suppress_version_string off
2011/09/22 10:18:09| parse_line: umask 027
2011/09/22 10:18:09| parse_line: announce_period 0
2011/09/22 10:18:09| parse_line: announce_host tracker.ircache.net
2011/09/22 10:18:09| parse_line: announce_port 3131
2011/09/22 10:18:09| parse_line: httpd_accel_no_pmtu_disc off
2011/09/22 10:18:09| parse_line: delay_pools 0
2011/09/22 10:18:09| parse_line: delay_initial_bucket_level 50
2011/09/22 10:18:09| parse_line: wccp_router 0.0.0.0
2011/09/22 10:18:09| parse_line: wccp_version 4
2011/09/22 10:18:09| parse_line: wccp2_rebuild_wait on
2011/09/22 10:18:09| parse_line: wccp2_forwarding_method 1
2011/09/22 10:18:09| parse_line: wccp2_return_method 1
2011/09/22 10:18:09| parse_line: wccp2_assignment_method 1
2011/09/22 10:18:09| parse_line: wccp2_weight 10000
2011/09/22 10:18:09| parse_line: wccp_address 0.0.0.0
2011/09/22 10:18:09| parse_line: wccp2_address 0.0.0.0
2011/09/22 10:18:09| parse_line: client_persistent_connections on
2011/09/22 10:18:09| parse_line: server_persistent_connections on
2011/09/22 10:18:09| parse_line: persistent_connection_after_error off
2011/09/22 10:18:09| parse_line: detect_broken_pconn off
2011/09/22 10:18:09| parse_line: digest_generation on
2011/09/22 10:18:09| parse_line: digest_bits_per_entry 5
2011/09/22 10:18:09| parse_line: digest_rebuild_period 1 hour
2011/09/22 10:18:09| parse_line: digest_rewrite_period 1 hour
2011/09/22 10:18:09| parse_line: digest_swapout_chunk_size 4096 bytes
2011/09/22 10:18:09| parse_line: digest_rebuild_chunk_percentage 10
2011/09/22 10:18:09| parse_line: snmp_port 02011/09/22 10:18:09| parse_line: snmp_incoming_address 0.0.0.0
2011/09/22 10:18:09| parse_line: snmp_outgoing_address 255.255.255.255
2011/09/22 10:18:09| parse_line: icp_port 3130
2011/09/22 10:18:09| parse_line: htcp_port 0
2011/09/22 10:18:09| parse_line: log_icp_queries on
2011/09/22 10:18:09| parse_line: udp_incoming_address 0.0.0.0
2011/09/22 10:18:09| parse_line: udp_outgoing_address 255.255.255.255
2011/09/22 10:18:09| parse_line: icp_hit_stale off
2011/09/22 10:18:09| parse_line: minimum_direct_hops 4
2011/09/22 10:18:09| parse_line: minimum_direct_rtt 400
2011/09/22 10:18:09| parse_line: netdb_low 900
2011/09/22 10:18:09| parse_line: netdb_high 1000
2011/09/22 10:18:09| parse_line: netdb_ping_period 5 minutes
2011/09/22 10:18:09| parse_line: query_icmp off
2011/09/22 10:18:09| parse_line: test_reachability off
2011/09/22 10:18:09| parse_line: icp_query_timeout 0
2011/09/22 10:18:09| parse_line: maximum_icp_query_timeout 2000
2011/09/22 10:18:09| parse_line: minimum_icp_query_timeout 5
2011/09/22 10:18:09| parse_line: mcast_icp_query_timeout 2000
2011/09/22 10:18:09| parse_line: icon_directory /usr/share/squid/icons
2011/09/22 10:18:09| parse_line: global_internal_static on
2011/09/22 10:18:09| parse_line: short_icon_urls off
2011/09/22 10:18:09| parse_line: error_directory /usr/share/squid/errors/en
2011/09/22 10:18:09| parse_line: nonhierarchical_direct on
2011/09/22 10:18:09| parse_line: prefer_direct off
2011/09/22 10:18:09| parse_line: ignore_ims_on_miss off
2011/09/22 10:18:09| parse_line: max_filedescriptors 0
2011/09/22 10:18:09| parse_line: tcp_recv_bufsize 0 bytes
2011/09/22 10:18:09| parse_line: incoming_rate 30
2011/09/22 10:18:09| parse_line: check_hostnames on
2011/09/22 10:18:09| parse_line: allow_underscore on
2011/09/22 10:18:09| parse_line: dns_retransmit_interval 5 seconds
2011/09/22 10:18:09| parse_line: dns_timeout 2 minutes
2011/09/22 10:18:09| parse_line: dns_defnames off
2011/09/22 10:18:09| parse_line: hosts_file /etc/hosts
2011/09/22 10:18:09| parse_line: ignore_unknown_nameservers on
2011/09/22 10:18:09| parse_line: ipcache_size 1024
2011/09/22 10:18:09| parse_line: ipcache_low 90
2011/09/22 10:18:09| parse_line: ipcache_high 95
2011/09/22 10:18:09| parse_line: fqdncache_size 1024
2011/09/22 10:18:09| parse_line: memory_pools on
2011/09/22 10:18:09| parse_line: memory_pools_limit 5 MB
2011/09/22 10:18:09| parse_line: forwarded_for on
2011/09/22 10:18:09| parse_line: client_db on
2011/09/22 10:18:09| parse_line: reload_into_ims off
2011/09/22 10:18:09| parse_line: maximum_single_addr_tries 1
2011/09/22 10:18:09| parse_line: retry_on_error off
2011/09/22 10:18:09| parse_line: as_whois_server whois.ra.net
2011/09/22 10:18:09| parse_line: offline_mode off
2011/09/22 10:18:09| parse_line: uri_whitespace strip
2011/09/22 10:18:09| parse_line: balance_on_multiple_ip on
2011/09/22 10:18:09| parse_line: pipeline_prefetch off
2011/09/22 10:18:09| parse_line: high_response_time_warning 0
2011/09/22 10:18:09| parse_line: high_page_fault_warning 0
2011/09/22 10:18:09| parse_line: high_memory_warning 0 KB
2011/09/22 10:18:09| parse_line: sleep_after_fork 0
2011/09/22 10:18:09| parse_line: zero_buffers on
2011/09/22 10:18:09| parse_line: windows_ipaddrchangemonitor on
2011/09/22 10:18:09| Including Configuration File: /etc/squid/squid.conf (depth 0)
2011/09/22 10:18:09| Processing: 'acl all src all'
2011/09/22 10:18:09| parse_line: acl all src all
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'all'
2011/09/22 10:18:09| aclParseIpData: all
2011/09/22 10:18:09| Processing: 'acl manager proto cache_object'
2011/09/22 10:18:09| parse_line: acl manager proto cache_object
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'manager'
2011/09/22 10:18:09| Processing: 'acl localhost src 127.0.0.1/32'
2011/09/22 10:18:09| parse_line: acl localhost src 127.0.0.1/32
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'localhost'
2011/09/22 10:18:09| aclParseIpData: 127.0.0.1/32
2011/09/22 10:18:09| Processing: 'acl to_localhost dst 127.0.0.0/8'
2011/09/22 10:18:09| parse_line: acl to_localhost dst 127.0.0.0/8
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'to_localhost'
2011/09/22 10:18:09| aclParseIpData: 127.0.0.0/8
2011/09/22 10:18:09| Processing: 'acl SSL_ports port 443          # https'
2011/09/22 10:18:09| parse_line: acl SSL_ports port 443          # https
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'SSL_ports'
2011/09/22 10:18:09| Processing: 'acl SSL_ports port 563          # snews'
2011/09/22 10:18:09| parse_line: acl SSL_ports port 563          # snews
2011/09/22 10:18:09| aclParseAclLine: Appending to 'SSL_ports'
2011/09/22 10:18:09| Processing: 'acl SSL_ports port 873          # rsync'
2011/09/22 10:18:09| parse_line: acl SSL_ports port 873          # rsync
2011/09/22 10:18:09| aclParseAclLine: Appending to 'SSL_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 80          # http'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 80          # http
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 21          # ftp'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 21          # ftp
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 443         # https'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 443         # https
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 70          # gopher'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 70          # gopher
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 210         # wais'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 210         # wais
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 1025-65535  # unregistered ports'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 1025-65535  # unregistered ports
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 280         # http-mgmt'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 280         # http-mgmt
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 488         # gss-http'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 488         # gss-http
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 591         # filemaker'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 591         # filemaker
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 777         # multiling http'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 777         # multiling http
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 631         # cups'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 631         # cups
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 873         # rsync'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 873         # rsync
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl Safe_ports port 901         # SWAT'
2011/09/22 10:18:09| parse_line: acl Safe_ports port 901         # SWAT
2011/09/22 10:18:09| aclParseAclLine: Appending to 'Safe_ports'
2011/09/22 10:18:09| Processing: 'acl purge method PURGE'
2011/09/22 10:18:09| parse_line: acl purge method PURGE
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'purge'
2011/09/22 10:18:09| Processing: 'acl CONNECT method CONNECT'
2011/09/22 10:18:09| parse_line: acl CONNECT method CONNECT
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'CONNECT'
2011/09/22 10:18:09| Processing: 'auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd'
2011/09/22 10:18:09| parse_line: auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/passwd
2011/09/22 10:18:09| Processing: 'acl ncsa_users proxy_auth REQUIRED'
2011/09/22 10:18:09| parse_line: acl ncsa_users proxy_auth REQUIRED
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'ncsa_users'
2011/09/22 10:18:09| authenticateSchemeCount: 4 active.
2011/09/22 10:18:09| authBasicConfigured: returning configured
2011/09/22 10:18:09| authNTLMConfigured: not configured
2011/09/22 10:18:09| authNegotiateConfigured: not configured
2011/09/22 10:18:09| authenticateActiveSchemeCount: 1 active.
2011/09/22 10:18:09| aclParseUserList: parsing user list
2011/09/22 10:18:09| aclParseUserList: current is null. Creating
2011/09/22 10:18:09| aclParseUserList: First token is REQUIRED
2011/09/22 10:18:09| aclParseUserList: REQUIRED-type enabled
2011/09/22 10:18:09| aclParseUserList: Case-insensitive-switch is 0
2011/09/22 10:18:09| aclParseUserList: parsing user list
2011/09/22 10:18:09| Processing: 'http_access allow manager localhost'
2011/09/22 10:18:09| parse_line: http_access allow manager localhost
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'manager'
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'localhost'
2011/09/22 10:18:09| Processing: 'http_access deny manager'
2011/09/22 10:18:09| parse_line: http_access deny manager
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'manager'
2011/09/22 10:18:09| Processing: 'http_access allow purge localhost'
2011/09/22 10:18:09| parse_line: http_access allow purge localhost
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'purge'
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'localhost'
2011/09/22 10:18:09| Processing: 'http_access deny purge'
2011/09/22 10:18:09| parse_line: http_access deny purge
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'purge'
2011/09/22 10:18:09| Processing: 'http_access deny !Safe_ports'
2011/09/22 10:18:09| parse_line: http_access deny !Safe_ports
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'Safe_ports'
2011/09/22 10:18:09| Processing: 'http_access deny CONNECT !SSL_ports'
2011/09/22 10:18:09| parse_line: http_access deny CONNECT !SSL_ports
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'CONNECT'
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'SSL_ports'
2011/09/22 10:18:09| Processing: 'http_access allow localhost'
2011/09/22 10:18:09| parse_line: http_access allow localhost
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'localhost'
2011/09/22 10:18:09| Processing: 'http_access allow ncsa_users'
2011/09/22 10:18:09| parse_line: http_access allow ncsa_users
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'ncsa_users'
2011/09/22 10:18:09| Processing: 'http_access deny all'
2011/09/22 10:18:09| parse_line: http_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| Processing: 'icp_access deny all'
2011/09/22 10:18:09| parse_line: icp_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| Processing: 'http_port 3128 transparent'
2011/09/22 10:18:09| parse_line: http_port 3128 transparent
2011/09/22 10:18:09| Processing: 'hierarchy_stoplist cgi-bin ?'
2011/09/22 10:18:09| parse_line: hierarchy_stoplist cgi-bin ?
2011/09/22 10:18:09| Processing: 'access_log /var/log/squid/access.log squid'
2011/09/22 10:18:09| parse_line: access_log /var/log/squid/access.log squid
2011/09/22 10:18:09| Log definition name 'squid' file '/var/log/squid/access.log'
2011/09/22 10:18:09| Processing: 'refresh_pattern ^ftp:           1440    20%     10080'
2011/09/22 10:18:09| parse_line: refresh_pattern ^ftp:           1440    20%     10080
2011/09/22 10:18:09| Processing: 'refresh_pattern ^gopher:        1440    0%      1440'
2011/09/22 10:18:09| parse_line: refresh_pattern ^gopher:        1440    0%      1440
2011/09/22 10:18:09| Processing: 'refresh_pattern -i (/cgi-bin/|\?) 0     0%      0'
2011/09/22 10:18:09| parse_line: refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
2011/09/22 10:18:09| Processing: 'refresh_pattern .               0       20%     4320'
2011/09/22 10:18:09| parse_line: refresh_pattern .               0       20%     4320
2011/09/22 10:18:09| Processing: 'acl apache rep_header Server ^Apache'
2011/09/22 10:18:09| parse_line: acl apache rep_header Server ^Apache
2011/09/22 10:18:09| aclParseAclLine: Creating ACL 'apache'
2011/09/22 10:18:09| Processing: 'broken_vary_encoding allow apache'
2011/09/22 10:18:09| parse_line: broken_vary_encoding allow apache
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'apache'
2011/09/22 10:18:09| Processing: 'extension_methods REPORT MERGE MKACTIVITY CHECKOUT'
2011/09/22 10:18:09| parse_line: extension_methods REPORT MERGE MKACTIVITY CHECKOUT
2011/09/22 10:18:09| Extension method 'REPORT' already exists
2011/09/22 10:18:09| Extension method 'MERGE' already exists
2011/09/22 10:18:09| Extension method 'MKACTIVITY' already exists
2011/09/22 10:18:09| Extension method 'CHECKOUT' already exists
2011/09/22 10:18:09| Processing: 'hosts_file /etc/hosts'
2011/09/22 10:18:09| parse_line: hosts_file /etc/hosts
2011/09/22 10:18:09| Processing: 'cache_dir ufs /var/spool/squid 200 16 256 '
2011/09/22 10:18:09| parse_line: cache_dir ufs /var/spool/squid 200 16 256
2011/09/22 10:18:09| Processing: 'cache_mem 64 MB'
2011/09/22 10:18:09| parse_line: cache_mem 64 MB
2011/09/22 10:18:09| Processing: 'maximum_object_size 10 MB'
2011/09/22 10:18:09| parse_line: maximum_object_size 10 MB
2011/09/22 10:18:09| Processing: 'check_hostnames off'
2011/09/22 10:18:09| parse_line: check_hostnames off
2011/09/22 10:18:09| Processing: 'allow_underscore off'
2011/09/22 10:18:09| parse_line: allow_underscore off
2011/09/22 10:18:09| Processing: 'dns_nameservers 4.2.2.5 4.2.2.6'
2011/09/22 10:18:09| parse_line: dns_nameservers 4.2.2.5 4.2.2.6
2011/09/22 10:18:09| parse_line: http_reply_access allow all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: htcp_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: htcp_clr_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: ident_lookup_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: reply_body_max_size 0 allow all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: follow_x_forwarded_for deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: wccp2_service standard 0
2011/09/22 10:18:09| wccp2_add_service_list: added service id 0
2011/09/22 10:18:09| parse_line: snmp_access deny all
2011/09/22 10:18:09| aclParseAclList: looking for ACL name 'all'
2011/09/22 10:18:09| parse_line: dns_testnames netscape.com internic.net nlanr.net microsoft.com
2011/09/22 10:18:09| parse_line: coredump_dir none
2011/09/22 10:18:09| getMyHostname: 'linuxsunucu.sayfadizayn.net' resolved into 'linuxsunucu.sayfadizayn.net'
2011/09/22 10:18:09| authBasicConfigured: returning configured
2011/09/22 10:18:09| cachemgrRegister: registered config
2011/09/22 10:18:09| Squid is already running!  Process ID 684


cagriemer

Su anda istediginiz sekilde calisiyorsa duzeltmeniz gereken bir sey yok. Performans yapilandirmasi hakkinda ben de cok bilgi sahibi degilim ama squid'in kendi sitesinden mem cache gibi parametrelerin ne ise yaradigina bakabilirsiniz. Bir de eger sorun cozulduyse basliga cozuldu etiketi koyabilirseniz cok iyi olur.