오징어로 프록시 서버를 설정하고 있습니다.
모든 단계를 마친 후 다시 시작하여
sudo systemctl restart squid.service
다음을 반환했습니다
active
.
그런 다음 연결을 테스트해 보았습니다.
curl -v -x http://your_squid_username:your_squid_password@ipaddress:3128 http://www.google.com/
이 오류의 결과는 다음과 같습니다.
ipaddress 시도 중:3128...
ipaddress 포트 3128에 연결 실패: 연결 거부됨
1ms 후 ipaddress 포트 3128에 연결하지 못함: 연결이 거부됨
연결 종료 0
컬: (7) 1ms 후 ipaddress 포트 3128에 연결하지 못함: 연결이 거부됨
구성 파일에는 /etc/squid/squid.conf
다음과 같은 설정이 있습니다.
#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#
include /etc/squid/conf.d/*.conf
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
# Example rule allowing access from your local networks.
acl localnet src ipaddress
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
#http_access allow localnet
http_access allow localhost
http_access allow authenticated
# And finally deny all other access to this proxy
http_access deny all
나는 팔로우했다이 가이드. curl
오징어 연결을 테스트 하던 3단계가 시작될 때까지는 모든 것이 순조롭게 진행되었습니다 .
squid.conf
에 변경해야 할 사항이 있나요 ? 이 문제를 어떻게 해결합니까?
답변1
ip2location.com 또는 유사한 사이트에 나타나는 IP 주소 대신 또는 ipaddress
이어야 합니다 . 그러면 명령은 다음 과 같아야 합니다.127.0.0.1
localhost
curl -v -x http://your_squid_username:[email protected]:3128
curl -v -x http://your_squid_username:your_squid_password@localhost:3128