- 论坛徽章:
- 0
|
[root@linux tmp]# ftp -n 192.168.10.10
Connected to 192.168.10.10.
220 (vsFTPd 2.0.1)
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
ftp> bye
221 Goodbye.
[root@linux tmp]# ftp -u 192.168.10.10
Connected to 192.168.10.10.
220 (vsFTPd 2.0.1)
ftp>
man ftp
-u Restrains ftp from attempting ''auto-authentication'' upon initial connection. If auto-authentication is enabled, ftp attempts to authenticate to the FTP server by sending the AUTH command, using whichever authentication types are locally supported. Once an authentication type is accepted, an authentication protocol will proceed by issuing ADAT commands. This option also disables auto-login. |
|