I have a new Ubuntu 18.04.3. I can SSH fine, but I can't SFTP.
SSH
SFTP
This is my SSH configs
Port 8200
PermitRootLogin yes
PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM yes
X11Forwarding yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
MaxAuthTries 100
AllowUsers forge
I checked logs
tail -f /var/log/auth.log
I see this appended each time it failed
Jun 30 13:27:18 websocket sshd[3353]: Connection closed by 24.62.137.11 port 51216 [preauth]
How do I make my SFTP to work ?
What should I check ?