DANTED SERVER v1.1.19 - Ошибка конфигурации sock5 в Ubuntu - PullRequest
0 голосов
/ 21 ноября 2018

Я следую этому уроку Конфигурация dante sock5 и у меня странная ошибка.

Ниже приведен мой файл danted.conf:

# /etc/danted.conf

logoutput: syslog
user.privileged: root
user.notprivileged: nobody

# The listening network interface or address.
internal: 0.0.0.0 port=1080

# The proxying network interface or address.
external: eth0

# socks-rules determine what is proxied through the external interface.
# The default of "none" permits anonymous access.
socksmethod: username

# client-rules determine who can connect to the internal interface.
# The default of "none" permits anonymous access.
clientmethod: none

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
}

при запускеСлужба Dante У меня есть это сообщение об ошибке:

Starting Dante SOCKS daemon: Nov 21 13:38:09 (1542803889) danted[21175]: /etc/danted.conf: error on line 15, near 's': syntax error

ошибка локализована в строке "socksmethod: username".

Я не знаю, как ее решить .... Я не знаюдаже знаю, с чего начать мое расследование ...

[СЕЙЧАС]

Я исправил ошибку конфигурации , ниже моего файла конфигурации

# /etc/danted.conf

logoutput: syslog
user.privileged: root
user.notprivileged: nobody

# The listening network interface or address.
internal: 0.0.0.0 port=1080

# The proxying network interface or address.
external: eth0

# socks-rules determine what is proxied through the external interface.
# The default of "none" permits anonymous access.
method: username

# client-rules determine who can connect to the internal interface.
# The default of "none" permits anonymous access.
method: none

socks pass {
        from: 0.0.0.0/0 to: 0.0.0.0/0
        log: connect disconnect error
}

но теперь мое соединение отказано

curl -v -x socks5://login:password@ip_adress:1080 http://www.google.com/
*   Trying XX.XX.YYY.ZZZ...
* TCP_NODELAY set
* connect to XX.XX.YYY.ZZZ port 1080 failed: Connection refused
* Failed to connect to XX.XX.YYY.ZZZport port 1080: Connection refused
* Closing connection 0
curl: (7) Failed to connect to XX.XX.YYY.ZZZport port 1080: Connection refused

мой брандмауэр полностью открыт !!

на данный момент я не понял, почему существуют"pass pass" и "pass socks" ....

возможно ошибка есть!

Пожалуйста, помогите !!

Спасибо всем!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...