Hello, I installed squid 2.6 and I would try to load balanced our websever. In front I have a squid server and I want to load balance to three web servers. The squid server listen on port 8080 and the three webservers listen on the port 80. I try a lot's of different syntax, but that don't work. This is my squid.conf : http_port 192.168.200.40:8080 vhost vport http_port 127.0.0.1:8080 acl mynetwork src 0.0.0.0/0.0.0.0 http_access allow mynetwork cache_peer 192.168.200.42 parent 8080 80 weight=2 cache_peer 192.168.200.43 parent 8080 80 weight=2 cache_peer 192.168.200.44 parent 8080 80 weight=3 Someone could help me please ? Regards Jean