How To Set Up Sock5 Proxy With Authentication
How To Set Up Sock5 Proxy With Authentication
---
On **Red Hat/CentOS**:
```bash
sudo yum install dante-server
```
---
```bash
sudo useradd -m proxyuser
sudo passwd proxyuser
```
---
```conf
logoutput: syslog
internal: eth0 port = 1080
external: eth0
method: username
user.notprivileged: nobody
client pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect disconnect error
}
socks pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect disconnect error
command: bind connect udpassociate
}
```
**Replace `eth0`** with your actual network interface (you can find it with `ip
a`).
---
---
---
---
Would you prefer to use **Docker** for this setup? Or are you working on a specific
OS or with a different proxy server (like 3proxy or Shadowsocks)?