正向代理伺服器 squid
阿新 • • 發佈:2019-01-07
1. 檢 查squid 軟體包安裝其情況
rpm -qa|grep squid
2. 如果未安裝,則使用 yum 方式安裝
yum -y install squid
3. 設定服務開機自啟動
chkconfig --level 35 squid on
4. 編輯 squid 的主配置檔案 /etc/squid/squid.conf
http_port 3128
cache_mem 64 MB
maximum_object_size 4 MB
cache_dir ufs /var/spool/squid 100 16 256
access_log /var/log/squid/access.log
acl localnet src 10.0.0.0/8
http_access allow localnet
http_access deny all
visible_hostname squid.taotie.dev
cache_mgr [email protected]
5. 初始化 squid
squid –z
6. 啟動 Squid
/etc/init.d/squid start
7.在不能上網的裝置上新增代理配置:
vi /etc/profile,新增:
http_proxy=http://1.1.1.1:1080
https_proxy=https://1.1.1.1:1080
重啟環境變數:
source /etc/profile