在Ubuntu 20.04 LTS Focal Fossa上安装Squid Proxy
步骤1.首先,通过apt
在终端中运行以下命令来确保所有系统软件包都是最新的。
sudo apt update
sudo apt upgrade
第2步。在Ubuntu 20.04上安装Squid Proxy。
可以从Ubuntu存储库中获得squid代理程序包。要安装它,请运行以下命令:
sudo apt install squid
安装完成后,Squid服务将自动启动。要进行验证,请检查服务状态:
sudo systemctl status squid
步骤3.配置Squid代理。
要开始配置您的鱿鱼实例,请在您喜欢的文本编辑器中打开文件:
sudo nano /etc/squid/squid.conf
sudo nano /etc/squid/squid.conf
# Recommended minimum configuration: auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid/squid_passwd acl ncsa_users proxy_auth REQUIRED http_access allow ncsa_users acl manager proto cache_object acl localhost src 127.0.0.1/32 acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https 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 SSL_ports port 9001 # webmin acl CONNECT method CONNECT http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access deny all http_port 3128 forwarded_for off request_header_access Allow allow all request_header_access Authorization allow all request_header_access Proxy-Authorization allow all request_header_access Proxy-Authenticate allow all request_header_access Cache-Control allow all request_header_access Content-Encoding allow all request_header_access Content-Length allow all request_header_access Content-Type allow all request_header_access Date allow all request_header_access Expires allow all request_header_access Host allow all request_header_access If-Modified-Since allow all request_header_access Last-Modified allow all request_header_access Location allow all request_header_access Pragma allow all request_header_access Accept allow all request_header_access Accept-Charset allow all request_header_access Accept-Encoding allow all request_header_access Accept-Language allow all request_header_access Content-Language allow all request_header_access Mime-Version allow all request_header_access Retry-After allow all request_header_access Title allow all request_header_access Connection allow all request_header_access Proxy-Connection allow all request_header_access User-Agent allow all request_header_access Cookie allow all request_header_access All deny all visible_hostname yundongfang.com
默认情况下,squid设置为侦听3128
服务器上所有网络接口上的端口。每当您对配置文件进行更改时,都需要重新启动Squid服务以使更改生效:
sudo systemctl restart squid
步骤4.配置Squid身份验证。
现在,我们创建身份验证文件,Squid可使用该文件来验证用户身份验证:
$ htpasswd -b /etc/squid/squid_passwd username password
例子:
$ htpasswd -b -c /etc/squid/squid_passwd meilana maria
对配置文件进行更改后,保存该文件并使用在终端提示符下输入的以下命令重新启动squid服务器服务以使更改生效:
sudo systemctl restart squid
步骤5.配置防火墙。
要打开鱿鱼端口,请启用UFW的“鱿鱼”配置文件:
sudo ufw allow 'Squid'
步骤6.在Firefox浏览器上配置代理设置。
现在已经设置了Squid,最后一步是配置您喜欢的浏览器以使用它。在Firefox上,将其配置为通过Squid服务器连接到外部网络。首选项->常规->网络设置->手动代理配置。选中对所有协议使用此代理服务器。
恭喜你!您已经成功安装了Squid。感谢您使用本教程在Ubuntu 20.04 LTS Focal Fossa上安装Squid代理服务器。有关其他帮助或有用信息,我们建议您检查Squid官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun40799.html