프록시체인이 IP 주소를 확인할 수 없습니다.

프록시체인이 IP 주소를 확인할 수 없습니다.

내 프록시 체인은 다음과 같이 구성됩니다.

strict_chain
proxy_dns
http 172.16.20.2 3128

왜냐하면 나는 인터넷에 접속할 수 있기 때문입니다 172.16.20.2:3128. 하지만 프록시 체인을 실행하면 다음 오류가 발생합니다.

root@kali:~# proxychains apt-get update
ProxyChains-3.1 (http://proxychains.sf.net)
0% [Working]|DNS-request| http.kali.org 
0% [Connecting to http.kali.org]|S-chain|-<>-172.16.20.2:3128-<><>-4.2.2.2:53-<--denied
|DNS-response|: http.kali.org does not exist
Ign:1 http://http.kali.org/kali kali-rolling InRelease
0% [Working]^C    

그렇다면 무엇이 잘못되었나요? 내 프록시 체인이 tor에서는 실행되고 있기 때문에 문제가 없다고 생각합니다 172.16.20.2:3128. 172.16.20.2:3128내 브라우저에서는 제대로 실행되고 있는데 프록시 체인에서 실행을 방해하는 이유는 무엇입니까?

답변1

"strict_chain"을 주석 처리한 다음 "dynamic_chain"에 대한 주석을 제거하고 싶을 것입니다. 이와 같이..

# proxychains.conf  VER 4

#        HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.

# The option below identifies how the ProxyList is treated.
# only one option should be uncommented at time,
# otherwise the last appearing option will be accepted

dynamic_chain

#Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app

#strict_chain

# Strict - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# all proxies must be online to play in chain
# otherwise EINTR is returned to the app

관련 정보