89

我目前在 acl 中使用 ip,我想使用用户名和密码来执行此操作。

4

1 回答 1

215

这是我在Ubuntu 14.04上设置基本身份验证所必须做的(在其他任何地方都没有找到指南)

基本鱿鱼配置

/etc/squid3/squid.conf 而不是超级臃肿的默认配置文件

auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid3/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated

# Choose the port you want. Below we set it to default 3128.
http_port 3128

请注意basic_ncsa_auth程序而不是旧的ncsa_auth

鱿鱼 2.x

对于 squid 2.x,您需要编辑/etc/squid/squid.conf文件并放置:

auth_param basic program /usr/lib/squid/digest_pw_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated

设置用户

sudo htpasswd -c /etc/squid3/passwords username_you_like

然后为所选用户名输入两次密码

sudo service squid3 restart

鱿鱼 2.x

sudo htpasswd -c /etc/squid/passwords username_you_like

然后为所选用户名输入两次密码

sudo service squid restart

htdigest 与 htpasswd

对于许多问我的人:这两种工具产生不同的文件格式:

  • htdigest以纯文本形式存储密码。
  • htpasswd存储密码散列(各种散列算法可用)

尽管格式上存在这种差异,basic_ncsa_auth 但仍然能够解析使用htdigest. 因此,您可以选择使用:

sudo htdigest -c /etc/squid3/passwords realm_you_like username_you_like

请注意,这种方法是经验性的、未记录的,未来版本的 Squid 可能不支持

在 Ubuntu 14.04上htdigesthtpasswd两者都在[apache2-utils][1]包中可用。

苹果系统

与上述类似,但文件路径不同。

安装鱿鱼

brew install squid

启动鱿鱼服务

brew services start squid

Squid 配置文件存储在/usr/local/etc/squid.conf.

评论或删除以下行:

http_access allow localnet

然后类似于 linux 配置(但具有更新的路径)添加:

auth_param basic program /usr/local/Cellar/squid/4.8/libexec/basic_ncsa_auth /usr/local/etc/squid_passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated

请注意,路径basic_ncsa_auth可能会有所不同,因为它取决于使用时安装的版本brew,您可以使用ls /usr/local/Cellar/squid/. 另请注意,您应该在以下部分添加上述内容:

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#

现在为自己生成一个用户:密码基本身份验证凭据(注意:htpasswd并且htdigest在 MacOS 上也都可用)

htpasswd -c /usr/local/etc/squid_passwords username_you_like

重启squid服务

brew services restart squid
于 2014-07-22T02:22:20.673 回答