當前位置:首頁 » 文件傳輸 » 單片機Ftp登錄時返回530
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

單片機Ftp登錄時返回530

發布時間: 2023-02-03 22:13:58

『壹』 FTP連接過程中,各種信息的含義(例如「530」)

FTP連接過程中,提示530 Login authentication failed錯誤是因為填寫錯了ftp密碼。
解決方法:
登陸客戶中心,客戶中心 > 會員中心 > 產品與服務(不同的主機提供商可能不同僅供參考)進入購買的那個套餐,下面有個登陸詳情然後輸入新密碼就行了,這樣ftp就可以用了。

FTP登錄常見提示錯誤:
1.connected. waiting for response. 220 serv-u ftp server v4.0 for winsock ready...
user anonymous 530 sorry, no anonymous access allowed. quit
不允許匿名登錄
2.connected. waiting for response. 220 serv-u ftp server v4.0 for winsock ready...
user test 331 user name okay, need password. pass xxxxxx 530 not logged in. quit 一般是密碼輸入錯誤時出現的信息。
3.connecting to xxx.xxx.xxx.xxx, port 21 error: connection timed out
這個表明對方未開機,也可能是對方不在能訪問的范圍內。可能小區的伺服器檢修中。
4.connecting to xxx.xxx.xxx.xxx port 21 error: connection refused
這個一般表明對方已開機,但未開啟ftp服務(沒有開serv-u),也可能為對方不提供在這個埠上的服務
5.connecting to xxx.xxx.xxx.xxx, port 21 connected. waiting for response. disconnected from server. connection attempt failed. waiting for retry...
出現極有可能是重試時間定的太短被伺服器封了。
6.connecting to xxx.xxx.xxx.xxx, port 21 connected. waiting for response. user xxx
331 user name okay, need password pass xxxxxx 530 not logged in, unauthorized ip address. quit
沒有登記ip,或者登記的ip和現在的不一樣,重新登記即可。
7.227 entering passive mode (218,3,87,224,10,232) retr hfdx-tsoaf.sub.rar 550 sorry, insufficient credit for download - upload first.
傳輸已失敗.傳輸隊列已完成但流量不夠了,重新購買。

『貳』 ftp連接出現530 connection refused unknow ip address

使用的是伺服器,不是虛擬主機,確保地址、用戶名和密碼都正確的情況下
解決方法有二:親身經歷
一、看看iis的ftp的屬性里的目錄安全性,是否允許你電腦的ip。
二、如果允許,ftp功能關閉再打開。
問題解決。僅供參考。

『叄』 登錄ftp 出現 530 的錯誤是什麼意思怎麼解決

530一般是密碼錯誤的的提示,要是用戶名和密碼都正確試著用別的FTP登陸

『肆』 為什麼我ftp連接到伺服器,會出現530登錄失敗,賬號,密碼是正確的,可以登上伺服器的。

答:FTP伺服器配置用戶目錄的時候,沒有鎖定用戶主目錄,所以用IE和CM命令是提示密碼失敗的。 方法: 1.你要用資源管理器打開,或者在開始-運行,輸入ftp://伺服器地址 ,這樣才可以打開的。 2.修改FTP伺服器配置,鎖定用戶的主目錄。

『伍』 FTP連接530錯誤,什麼意思

530如果不是密碼錯誤的話,那就是你伺服器沒有開FTP服務,

『陸』 Linux中ftp連接530錯誤的解決方法

首先,如果正在使用vsftpd,可以先把其停掉,命令:service vsftpd stop,接下來需要編輯/etc/xinetd.d/下的`gssftp配置文件,文件內容如下:

# default: off

# description: The kerberized FTP server accepts FTP connections

# that can be authenticated with Kerberos 5.

service ftp

{

disable = yes

flags = REUSE

socket_type = stream

wait = no

user = root

server = /usr/kerberos/sbin/ftpd

server_args = -l -a

log_on_failure += USERID

}

在文件中,我們要修改的內容有:

1、disable = yes 改為 disable =no ,系統默認ftp功能是無效的,修改使ftp功能生效。

2、server_args = -l -a 改為 server_args = -l。

without -a means : *enable weak authentication*

其中表示使用Kerberos 5驗證機制,而一般的ftp是不支持該驗證機制的。

修改完畢後,將其保存。

3、重啟啟動xinetd服務。請執行一下的命令(/etc/xinetd.d/):

service xinetd restart

service vsftpd restart