我的proxychains链被配置为
strict_chain
proxy_dns
http 172.16.20.2 3128
因为我可以通过172.16.20.2:3128
上网。但是,运行proxychains会给出以下错误
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
那么,怎么了?我怀疑我的wrong链没有什么问题,因为它运行在tor上,而不是在172.16.20.2:3128
上。172.16.20.2:3128
在我的浏览器上运行良好,那么是什么阻止它在proxychains上运行呢?
发布于 2019-01-17 22:25:22
相当肯定的是,您希望将"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
https://unix.stackexchange.com/questions/335748
复制相似问题