linux 跟踪os和proxychains -获取拒绝连接

voj3qocg  于 5个月前  发布在  Linux
关注(0)|答案(3)|浏览(58)

一直试图在tails os ver 4.28中运行一个钱包应用程序,但没有成功。我在使用代理链时遇到拒绝错误。作为一个新手,有人能帮助我让我知道我在这里做错了什么吗?我在这里包括了终端输出和代理链配置信息供参考。

amnesia@amnesia:~/Persistent$ chmod +x Neuron-v0.101.2-x86_64.AppImage
amnesia@amnesia:~/Persistent$ proxychains ./Neuron-v0.101.2-x86_64.AppImage 
ProxyChains-3.1 (http://proxychains.sf.net)
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-<--denied
06:16:58.553 › Network: connection dropped
|DNS-request| localhost 
|DNS-request| localhost 
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-|DNS-request| localhost 
<><>-127.0.0.1:8114-<--denied
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-|DNS-request| localhost 
<--denied
06:17:00.145 › Network: fail to connect to the network. Is CKB node running?
06:17:00.323 › Network: switched to: {
  id: 'mainnet',
  name: 'default node',
  remote: 'http://localhost:8114',
  genesisHash: '0x92b197aa1fba0f63633922c61c92375c9c074a93e85963554f5499fe1450d0e5',
  type: 0,
  chain: 'ckb'
}
06:17:01.453 › Main window: The main window is ready to show
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-|DNS-request| localhost 
<><>-127.0.0.1:8114-<--denied
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-|DNS-request| localhost 
<--denied
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-<--denied
|DNS-response| localhost is 127.0.0.1
|DNS-request| localhost 
|DNS-request| localhost 
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-<--denied
06:17:03.705 › CKB: external RPC on default uri not detected, starting bundled CKB node.
06:17:03.707 › CKB: Initializing node...
06:17:03.708 › CKB: init: config file detected, skip ckb init.
06:17:03.708 › CKB: starting node...
06:17:04.116 › CKB: process closed
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-|DNS-request| localhost 
<><>-127.0.0.1:8114-<--denied
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-<--denied
|DNS-request| localhost 
|DNS-response| localhost is 127.0.0.1
|S-chain|-<>-127.0.0.1:9050-<><>-127.0.0.1:8114-|DNS-request| localhost 
<--denied
^C|DNS-response|: localhost does not exist
Aborted

字符串
proxychain.config文件

#dynamic_chain
strict_chain
#random_chain
#chain_len = 2
#quiet_mode
proxy_dns 

# Some timeouts in milliseconds
tcp_read_time_out 15000
tcp_connect_time_out 8000

[ProxyList]
# add proxy here ...
# meanwile
# defaults set to "tor"
socks4  127.0.0.1 9050


感谢在这件事上的任何帮助。

whitzsjs

whitzsjs1#

所以,到目前为止还没有得到社区的回应。我做了一些探索,并在proxychains配置文件中启用了以下内容

  • 启用dynamic_chain和注解strict_chain
  • 将socks4替换为socks5

这解决了拒绝问题,但给了我一个超时问题。联系了钱包技术团队寻求帮助。他们回应说,当钱包在防火墙,VPN,防病毒软件后面时,钱包同步失败。代理配置后面的钱包也会中断同步。我对这会起作用的希望非常渺茫,但很快就随着他们的回应而消失了。这就解决了这个悬而未决的问题。

rvpgvaaj

rvpgvaaj2#

我通过连接到互联网(通常不连接)并运行“sudo apt-get update”解决了这个问题。更新完成后(几秒钟),我重新启动tails(USB Stick变体),然后问题就消失了。

rks48beu

rks48beu3#

*步骤1:在Linux中打开根终端
*步骤2:sudo apt-get install tor - install tor browser
*第三步:从注解中删除Dynamic链{在配置中,您将看到“#”,表示bash语言注解。您可以使用箭头键向下滚动并进行以下更改。}
*第四步:注解Strict chain和Random chain
*第五步:删除评论中的代理DNS
*第六步:在代理列表最后一行写socks 5127.0.0.1 9050
*步骤7:服务重启
*第八步:代理链firefox www.duckkduckgo.com

通过这样做的过程中,你会得到的解决方案,如果任何没有得到它平我就可以了。

相关问题