4

I'm trying to create a simple proxy server with my debian server, I installed squid3 and added that configuration:

http_port 3128

forwarded_for off
via off

acl Safe_ports port 1-65535


http_access allow 111.222.333.444
http_access allow Safe_ports

But it doest work for the given ip, it only work if I add http_access allow all.

Entretoiz
  • 73
  • 2
  • 5

1 Answers1

7

You are missing the 'type' of record, such as src or dst.

Try this:

acl myhost src 11.22.33.44
http_access allow myhost
Bert
  • 2,863
  • 12
  • 13