我试图设置一个SOCKS代理使用dante进行testing。 然而,我看了几个关于如何做的教程后,甚至无法使用networking浏览器。
我在IE和Firefox都试过,在这两种情况下,使用“手动代理configuration”,除了SOCKS主机之外,一切都是空白的,然后放入我的代理IP和端口号(1080)。 我只是得到“服务器找不到”/“加载此页面的问题”,并没有看到任何东西,甚至在debugging模式下运行。
如果我做一个“telnet 10.0.0.40 1080”,我看到连接在打开的debugging输出中打开,所以我知道很多工作。
这是我的configuration:
logoutput: stdout /var/log/danted/danted.log internal: eth0 port = 1080 external: eth0 method: username none #rfc931 user.privileged: proxy user.notprivileged: nobody user.libwrap: nobody connecttimeout: 30 # on a lan, this should be enough if method is "none". client pass { from: 10.0.0.0/8 port 1-65535 to: 0.0.0.0/0 } client pass { from: 127.0.0.0/8 port 1-65535 to: 0.0.0.0/0 } client block { from: 0.0.0.0/0 to: 0.0.0.0/0 log: connect error } block { from: 0.0.0.0/0 to: 127.0.0.0/8 log: connect error } pass { from: 10.0.0.0/8 to: 0.0.0.0/0 protocol: tcp udp } pass { from: 127.0.0.0/8 to: 0.0.0.0/0 protocol: tcp udp } block { from: 0.0.0.0/0 to: 0.0.0.0/0 log: connect error }
我相信我可能错过了一些简单的东西,但是我迷路了。 我从90年代末就没有想过SOCKS。