Ubuntu18.04로 Squid 이동
입문
환경
OS: Ubuntu18.04
Squid Version 3.5.27
방법
배치
우선 Squid 설치$ sudo apt install squid
/etc/squid/squid.conf
에 Squid 설정 파일이 있지만 신중하게 백업할 때 쓸 수 없습니다.$ sudo cp /etc/squid/squid.conf /etc/squid/squid.conf.original
$ sudo chmod a-w /etc/squid/squid.conf.original
프로비저닝
여기서부터 아까 설정파일을 만지작거려요.$ sudo vi /etc/squid/squid.conf
여기에 기본적으로 많은 것을 썼는데, 내가 설정한 결과는 다음과 같다.
squid.confacl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
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 70 # gopher
acl Safe_ports port 210 # wais
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 CONNECT method CONNECT
# Deny requests to certain unsafe ports
http_access deny !Safe_ports
# Deny CONNECT to other than secure SSL ports
http_access deny CONNECT !SSL_ports
# Only allow cachemgr access from localhost
http_access allow localhost manager
http_access deny manager
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost
# And finally deny all other access to this proxy
http_access deny all
# Squid normally listens to port 3128
http_port 58888
cache_mem 256 MB
cache_dir ufs /var/spool/squid 100 16 256
logformat squid [%{%Y/%m/%d|%H:%M:%S}tl] %>a %Ss/%03>Hs %<st [%rm] => %ru %un %Sh/%<a %mt
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern (Release|Packages(.gz)*)$ 0 20% 2880
# example lin deb packages
#refresh_pattern (\.deb|\.udeb)$ 129600 100% 129600
refresh_pattern . 0 20% 4320
# クライアント及びプロキシ情報を隠蔽する
forwarded_for off
header_access Referer deny all
header_access X-Forwarded-For deny all
header_access Via deny all
# ホスト名を匿名にする
visible_hostname unknown
최소한, 아래가 있다면 어쨌든 움직일 것 같다
squid.confacl localnet src 192.168.0.0/16
http_access allow localnet
http_port 58888
또한 http_port
기본값은 3128이지만 보안상의 이유로 선호도에 따라 58888로 설정했습니다.
또한 로그의 출력 형식 부분도 스스로 보기 쉽도록 기본값을 약간 바꿨다.
반영 설정$ systemctl reload squid
부팅
Squid 데몬 시작$ /etc/init.d/squid start
상태 확인$ /etc/init.d/squid status
만약 무슨 일이 발생하면 다음 명령을 통해 다시 시작할 수 있다$ /etc/init.d/squid restart
로그 검사
내 경우에도 액세스 로그를 얻기 위해 Squid를 가져온 경과가 있기 때문에 로그의 출력을 써야 한다
다음 명령을 통해 출력할 수 있습니다$ sudo cat /var/log/squid/access.log
웹 페이지 정보
https://tech-mmmm.blogspot.com/2018/01/squid.html
https://help.ubuntu.com/lts/serverguide/squid.html.en
http://blog.cybozu.io/entry/2017/02/03/080000
http://cafedrip.hatenablog.com/entry/2017/08/19/204631
http://blog.michinari-nukazawa.com/2013/11/squid-3-proxy-server-install-and-setup.html
https://qiita.com/Anna/items/12b6948354dcaa223571
http://www.squid-cache.org/Versions/v3/3.5/cfgman/logformat.html
Reference
이 문제에 관하여(Ubuntu18.04로 Squid 이동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/b4tchkn/items/395fd231a4d94af6db9f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
배치
우선 Squid 설치
$ sudo apt install squid
/etc/squid/squid.conf
에 Squid 설정 파일이 있지만 신중하게 백업할 때 쓸 수 없습니다.$ sudo cp /etc/squid/squid.conf /etc/squid/squid.conf.original
$ sudo chmod a-w /etc/squid/squid.conf.original
프로비저닝
여기서부터 아까 설정파일을 만지작거려요.
$ sudo vi /etc/squid/squid.conf
여기에 기본적으로 많은 것을 썼는데, 내가 설정한 결과는 다음과 같다.squid.conf
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
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 70 # gopher
acl Safe_ports port 210 # wais
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 CONNECT method CONNECT
# Deny requests to certain unsafe ports
http_access deny !Safe_ports
# Deny CONNECT to other than secure SSL ports
http_access deny CONNECT !SSL_ports
# Only allow cachemgr access from localhost
http_access allow localhost manager
http_access deny manager
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost
# And finally deny all other access to this proxy
http_access deny all
# Squid normally listens to port 3128
http_port 58888
cache_mem 256 MB
cache_dir ufs /var/spool/squid 100 16 256
logformat squid [%{%Y/%m/%d|%H:%M:%S}tl] %>a %Ss/%03>Hs %<st [%rm] => %ru %un %Sh/%<a %mt
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern (Release|Packages(.gz)*)$ 0 20% 2880
# example lin deb packages
#refresh_pattern (\.deb|\.udeb)$ 129600 100% 129600
refresh_pattern . 0 20% 4320
# クライアント及びプロキシ情報を隠蔽する
forwarded_for off
header_access Referer deny all
header_access X-Forwarded-For deny all
header_access Via deny all
# ホスト名を匿名にする
visible_hostname unknown
최소한, 아래가 있다면 어쨌든 움직일 것 같다squid.conf
acl localnet src 192.168.0.0/16
http_access allow localnet
http_port 58888
또한 http_port
기본값은 3128이지만 보안상의 이유로 선호도에 따라 58888로 설정했습니다.또한 로그의 출력 형식 부분도 스스로 보기 쉽도록 기본값을 약간 바꿨다.
반영 설정
$ systemctl reload squid
부팅
Squid 데몬 시작
$ /etc/init.d/squid start
상태 확인$ /etc/init.d/squid status
만약 무슨 일이 발생하면 다음 명령을 통해 다시 시작할 수 있다
$ /etc/init.d/squid restart
로그 검사
내 경우에도 액세스 로그를 얻기 위해 Squid를 가져온 경과가 있기 때문에 로그의 출력을 써야 한다
다음 명령을 통해 출력할 수 있습니다
$ sudo cat /var/log/squid/access.log
웹 페이지 정보
https://tech-mmmm.blogspot.com/2018/01/squid.html
https://help.ubuntu.com/lts/serverguide/squid.html.en
http://blog.cybozu.io/entry/2017/02/03/080000
http://cafedrip.hatenablog.com/entry/2017/08/19/204631
http://blog.michinari-nukazawa.com/2013/11/squid-3-proxy-server-install-and-setup.html
https://qiita.com/Anna/items/12b6948354dcaa223571
http://www.squid-cache.org/Versions/v3/3.5/cfgman/logformat.html
Reference
이 문제에 관하여(Ubuntu18.04로 Squid 이동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/b4tchkn/items/395fd231a4d94af6db9f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Ubuntu18.04로 Squid 이동), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/b4tchkn/items/395fd231a4d94af6db9f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)