|
以下是我的proxychains.conf的内容,目的是想把两个代理串联起来
-------------------------------------------------------------------------------
# proxychains.conf VER 2.0
#
# HTTP, SOCKS4, SOCKS5 tunneling proxifier.
#
# 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 - 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 - 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
# Random - Each connection will be done via random proxy
# (or proxy chain, see chain_len) from the list
# this option is good for scans
#dynamic_chain
strict_chain
#random_chain
# Make sense only if random_chain
#chain_len = 2
# Quiet mode (no output)
#quiet_mode
#Some timeouts in milliseconds
#
tcp_read_time_out 15000
tcp_connect_time_out 10000
[ProxyList]
# ProxyList format
# type host port [user pass]
# (values separated by 'tab' or 'blank')
#
#
# Examples:
#
# socks5 192.168.67.78 1080 lamer secret
# http 192.168.89.3 8080 justu hidden
# socks4 192.168.1.49 1080
# http 192.168.39.93 8080
#
#
# proxy types: http, socks4, socks5
# ( auth types supported: "basic"-http "user/pass"-socks )
#
http 10.64.12.3 808 dd dd
http 218.56.62.210 8080
--------------------------------------------------------------------------
chain的意思是级连,这个应该没错吧,但是为什么Dynamic里面可以允许有dead proxy
??
chain_len是什么意思??
分别尝试过用dynamic和strict,然后就在list里面按顺序填代理,但是都是access
denied
代理验证过是好的
哪位达人人能帮帮忙,谢 |
|