Hallo allemal. Ich bin blutiger Linux Anfänger und will mir einen Server unter RedHat 8.0 aufstellen. Jetzt hab ich mir Samba und Squid mit und mit konfiguriert und komm einfach nicht weiter. Samba taucht in der Netzwerkumgebung auf, aber ich kann nicht drauf zugreifen. Squid bricht direkt mit der Cache initialisierung ohne Fehlermeldung ab. Bitte helft mir.
Linux 14.980 Themen, 106.331 Beiträge
          Das sind die modifizierten Squid Zeilen.
          
          
          
          http_port 8080
          
          icp_port 3130
          
          htcp_port 4827
          
          mcast_groups 192.168.1.156
          
          tcp_outgoing_address 255.255.255.255
          udp_incoming_address 0.0.0.0
          udp_outgoing_address 255.255.255.255
          
          cache_mem 4 MB
          cache_dir ufs /var/spool/squid 100 16 256
          
          cache_access_log /var/log/squid/access.log
          
          cache_log /var/log/squid/cache.log
          
          cache_store_log /var/log/squid/store.log
          
          emulate_httpd_log off
          client_netmask 255.255.255.0
          
          acl all src 0.0.0.0/0.0.0.0
          acl manager proto cache_object
          acl localhost src 127.0.0.1/255.255.255.255
          acl SSL_ports port 443 563
          acl Safe_ports port 80 # http
          acl Safe_ports port 21 # ftp
          acl Safe_ports port 443 563 # https, snews
          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 CONNECT method CONNECT
          
          http_access allow all
          
          http_access allow localhost
          http_access deny all
          
          icp_access allow all
          
          miss_access allow all
          
        
