clowwindy
11 years ago
4 changed files with 36 additions and 5 deletions
@ -0,0 +1,10 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
if [ ! -d dante-1.4.0 ]; then |
||||
|
wget http://www.inet.no/dante/files/dante-1.4.0.tar.gz || exit 1 |
||||
|
tar xf dante-1.4.0.tar.gz || exit 1 |
||||
|
fi |
||||
|
pushd dante-1.4.0 |
||||
|
./configure && make && make install || exit 1 |
||||
|
popd |
||||
|
cp tests/socksify/socks.conf /etc/ || exit 1 |
@ -0,0 +1,5 @@ |
|||||
|
route { |
||||
|
from: 0.0.0.0/0 to: 0.0.0.0/0 via: 127.0.0.1 port = 1081 |
||||
|
proxyprotocol: socks_v5 |
||||
|
method: none |
||||
|
} |
Loading…
Reference in new issue