Добрый день.
Прошу помощи, либо свежий взгляд

задача простая, ubuntu доступ к одной и той же папке как по SFTP так и по FTP (без SSL/TLS)
мне нравится sftpgo с его веб интерфейсом
инструкцию по установки я использовал эту:
sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:sftpgo/sftpgo
sudo apt-get update
sudo apt install sftpgo
systemctl status sftpgo ----> Active: active (running)
далее залез в конфиг и открыл порт 2121
/etc/sftpgo/sftpgo.json
},
"sftpd": {
"bindings": [
{
"port": 2022,
"address": "",
"apply_proxy_config": true
}
],
"max_auth_tries": 0,
"host_keys": [],
"host_certificates": [],
"host_key_algorithms": [],
"moduli": [],
"kex_algorithms": [],
"ciphers": [],
"macs": [],
"public_key_algorithms": [],
"trusted_user_ca_keys": [],
"revoked_user_certs_file": "",
"login_banner_file": "",
"enabled_ssh_commands": [
"md5sum",
"sha1sum",
"sha256sum",
"cd",
"pwd",
"scp"
],
"keyboard_interactive_authentication": true,
"keyboard_interactive_auth_hook": "",
"password_authentication": true,
"folder_prefix": ""
},
"ftpd": {
"bindings": [
{
"port": 2121,
"address": "",
"apply_proxy_config": true,
"tls_mode": 0,
"tls_session_reuse": 0,
"certificate_file": "",
"certificate_key_file": "",
"min_tls_version": 12,
"force_passive_ip": "",
"passive_ip_overrides": [],
"passive_host": "",
"client_auth_type": 0,
"tls_cipher_suites": [],
"passive_connections_security": 0,
"active_connections_security": 0,
"ignore_ascii_transfer_type": 0,
"debug": false
}
],
"banner_file": "",
"active_transfers_port_non_20": true,
"passive_port_range": {
"start": 50000,
"end": 50100
},
"disable_active_mode": false,
"enable_site": false,
"hash_support": 0,
"combine_support": 0,
"certificate_file": "",
"certificate_key_file": "",
"ca_certificates": [],
"ca_revocation_lists": []
},
в ufw открыл порт 2121
в server status отображается:
SSH/SFTP server
Status: active
Address ":2022"
Host key "/etc/sftpgo/id_rsa"
Fingerprint "SHA256:EulbQhANEYQke0CMcesFjEiMSBazBSTszkW667XBVsI"
Algorithms "rsa-sha2-256, rsa-sha2-512"
Host key "/etc/sftpgo/id_ecdsa"
Fingerprint "SHA256:ihZalcEgY7pmyspC5kH7IwhwmztTwuhk+QemCbSP5/Y"
Algorithms "ecdsa-sha2-nistp256"
Host key "/etc/sftpgo/id_ed25519"
Fingerprint "SHA256:niqZpkHKv2b/OvkYdnFgsr9OjsScGLdEzZA1+ZuyjzA"
Algorithms "ssh-ed25519"
Accepted commands "md5sum, sha1sum, sha256sum, cd, pwd, scp"
Authentication methods "password, publickey, keyboard-interactive, publickey+password, publickey+keyboard-interactive"
Public key authentication algorithms "ssh-ed25519, sk-ssh-ed25519@openssh.com, sk-ecdsa-sha2-nistp256@openssh.com, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, ecdsa-sha2-nistp521, rsa-sha2-256, rsa-sha2-512"
Message authentication code (MAC) algorithms "hmac-sha2-256-etm@openssh.com, hmac-sha2-256"
Key exchange (KEX) algorithms "curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group14-sha256, diffie-hellman-group16-sha512, diffie-hellman-group-exchange-sha256"
Ciphers "aes128-gcm@openssh.com, aes256-gcm@openssh.com, chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr"
FTP server
Status: active
Address ":2121"
TLS Disabled
Passive mode port range "50000-50100"
при подключение SFTP все отлично заходит, но при подключении FTP winSCP зависает на: читаю каталог сервера и далее --->
Превышено время ожидания (соединение потока передачи данных)
Не могу получить содержимое каталога
Не могу просмотреть каталог '/'.далее я руками дал права на нужную папку 777, менял владельца папки, менял группу, добавлял в группу и в общем делал все что могло прийти в голову и всякие глупости. Очевидно, что я упускаю какую то мелочь, но не могу понять что.
Прошу поделиться идеями
Спасибо!