Skip to content

Commit

Permalink
add comments to sockd
Browse files Browse the repository at this point in the history
  • Loading branch information
algo7 committed Oct 9, 2023
1 parent 6f56768 commit 48a76e6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion proxy_pool/sockd.conf
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# Log output
logoutput: /var/log/sockd.log

# IP address and port to listen on
internal: 0.0.0.0 port = 8881
external: tun0

# Network interface through which the outgoing connections will be made
external: tun0 # VPN interface

# Authentication method
# None: no authentication
socksmethod: username none

# Dante will start as root
user.privileged: root

# Dante will drop its root privileges and run as nobody
user.unprivileged: nobody

# Who can access the proxy
client pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect disconnect error
}

# What can be accessed through the proxy
socks pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
protocol: tcp udp
Expand Down

0 comments on commit 48a76e6

Please sign in to comment.