重新安装 Squid 代理

重新安装 Squid 代理

我在 Ubuntu 系统中安装了 squid 代理。配置文件出了点​​问题。所以我需要重新安装 squid。

  1. 删除 squid 的命令是什么?
  2. 重新安装 squid 的命令是什么?
  3. 我如何配置 squid 以仅允许特定 IP 访问 Facebook?

答案1

要删除 squid 和所有配置文件:

sudo apt-get purge squid

然后安装 squid

sudo apt-get install squid

当编辑系统配置文件时,强烈建议您先备份原始文件。

sudo cp /etc/squid/squid.conf /etc/squid/suid.conf.orig

编辑文件时,不要删除任何内容,使用注释

#Original line(s)
#Date / reason for edit(s)
New line(s) with edit(s)

您关于 squid conf 文件的问题应该单独提出。提示一下,在 Google 上搜索正则表达式。

相关内容