Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I'm trying to set up a password protected socks5 proxy server to tunnel traffic from my VPS.

Here's what I did:

1.get amazon linux tiny instance

2.execute

wget http://www.inet.no/dante/files/dante-1.4.0-pre1.tar.gz
tar -zxvf *.tar.gz
cd *
sudo yum install gcc make
./configure
sudo make -j4
sudo make install

3.I've created user myuser and set his password.

4.After that I've created /etc/danted.conf with following content:

logoutput: stderr
method: username
internal: eth0 port = 23546
external: eth0

client pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
}

5.and started the daemon with

sockd -f /etc/danted.conf -D

Now, when I'm trying to connect to the server, the connection is always accepted (even if I specify invalid user name), but I can't get any pages.

What did I do wrong?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.