# proxychains.conf VER 3.1 # # 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 # #random_chain # # Random - Each connection will be done via random proxy # (or proxy chain, see chain_len) from the list. # this option is good to test your IDS :) # Make sense only if random_chain #chain_len = 2 # Quiet mode (no output from library) #quiet_mode # Proxy DNS requests - no leak for DNS data proxy_dns # Some timeouts in milliseconds tcp_read_time_out 15000 tcp_connect_time_out 8000 # 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 ) # [ProxyList] # add proxy here ... # meanwile # defaults set to "tor" socks5 192.168.23.15 10808 dns_server = 8.8.8.8
时间: 2024-02-10 22:04:26 浏览: 1256
proxychains-proxychains-4.2.0.tar.gz
5星 · 资源好评率100%
从您提供的 `proxychains.conf` 文件来看,您已经设置了 DNS 服务器为 Google 的 DNS 服务器 `8.8.8.8`。但是在执行命令时仍然提示无法解析域名。这种情况下,您可以尝试使用其他可用的 DNS 服务器地址,比如阿里云的 DNS 服务器地址 `223.5.5.5` 和 `223.6.6.6`,或者使用默认的 DNS 服务器。您可以在 `proxychains.conf` 文件中将 `dns_server` 设置为以下之一:
```
# 使用阿里云的 DNS 服务器
dns_server = 223.5.5.5
dns_server = 223.6.6.6
# 使用默认的 DNS 服务器
# dns_server =
```
然后重新执行命令,看是否能够正常工作。
阅读全文