| # Dante SOCKS5 server configuration | |
| # Log to syslog | |
| logoutput: syslog | |
| # Internal interface (where clients connect) | |
| internal: 0.0.0.0 port = 1080 | |
| # External interface (where traffic exits) | |
| external: eth0 | |
| # Authentication method | |
| socksmethod: none | |
| # Client rules | |
| clientmethod: none | |
| # User for running the daemon | |
| user.privileged: root | |
| user.unprivileged: nobody | |
| # Client access rules | |
| client pass { | |
| from: 0.0.0.0/0 to: 0.0.0.0/0 | |
| log: error | |
| } | |
| # SOCKS rules | |
| socks pass { | |
| from: 0.0.0.0/0 to: 0.0.0.0/0 | |
| log: error | |
| } | |