|
我用ssh远程登陆linux服务器,然后使用ftp
# ftp -d 192.168.18.210
Connected to 192.168.18.210.
220 (vsFTPd 2.0.1)
---> AUTH GSSAPI
530 Please login with USER and PASS.
---> AUTH KERBEROS_V4
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (192.168.18.210:root): chenl
---> USER chenl
331 Please specify the password.
Password:
---> PASS XXXX
230 Login successful.
---> SYST
550 Permission denied.
每次登陆到最后就会显示permission denied.
接着使用ls命令:
ftp> ls
ftp: setsockopt (ignored): Permission denied
---> PASV
227 Entering Passive Mode (192,168,18,210,107,244)
---> LIST
150 Here comes the directory listing.
xxxxxxxx
226 Directory send OK.
中间ls列出的我就省略了
请问下这是什么原因造成的啊,是不是vsftp的配置出问题了啊 |
|