Squid代理身份验证失败

时间:2016-08-28 09:07:52

标签: php proxy squid

我按照此tutorial设置了我的代理服务器。 安装了Squid和apache2-utils

使用htpasswd

创建用户名和密码
sudo htpasswd /etc/squid3/squid_passwd myusername

将以下行添加到squid.conf

auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squid_passwd
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
acl ncsa_users proxy_auth REQUIRED
http_access allow ncsa_users

重启squid服务器。并在cmd中检查用户名和密码。它说好了

/usr/lib/squid3/ncsa_auth /et/squid3/squid_passwd
myusername password
OK

但我无法从PHP访问

$proxy = "111.11.11.11:8220"; // my squid ip and port
$proxyauth =   base64_encode('username:pass');   // Tried without base64_encode also  
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_PROXYUSERPWD,  $proxyauth);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
$curl_scraped_page = curl_exec($ch);
echo $curl_scraped_page;
if(curl_error($ch))
{
    echo 'error:' . curl_error($ch);

}
curl_close($ch);

但是我得到了X-Squid-Error:ERR_ACCESS_DENIED错误

2 个答案:

答案 0 :(得分:1)

使用https://createproxy.com创建代理服务器时遇到了这个问题

在2次完全重写和200次错误尝试之后,我将squid用户名更改为仅包含字符(没有带数字的混合字符串)。它开始工作!直到今天,您仍然不知道为什么只需要使用字符作为鱿鱼用户名。

答案 1 :(得分:0)

您使用了错误的身份验证库来访问密码文件

auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squid_passwd

应该是

auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid3/squid_passwd