|
自己做一个ftp服务器,出现了一点问题:
我要浏览器里输入:
ftp://172.16.4.18(本机地址)
它会显示:530 login incorrect.(这个错误是说明帐号跟密码有错吧,但是现在是连输入帐号的窗口都没有弹出来;
我要浏览器里输入:
ftp://127.0.0.1
显示:连接被拒绝;
但是我在终端下输入如果如下:
[root@JszxLee root]# ftp 127.0.0.1
ftp: connect: Connection refused
ftp> ls
Not connected.
ftp> exit
[root@JszxLee root]# ftp 172.16.4.18
Connected to 172.16.4.18 (172.16.4.1.
220 (vsFTPd 1.1.3)
Name (172.16.4.18:root): lee
331 Please specify the password.
Password:
230 Login successful. Have fun.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
227 Entering Passive Mode (172,16,4,18,129,65)
150 Here comes the directory listing.
drwxr-xr-x 2 0 0 4096 May 27 08:43 lee
-rw-r--r-- 1 0 0 26 May 27 08:39 lee.message
226 Directory send OK.
这是什么原因呢?
谢谢. |
|