FTP 125 Data Connection Open vs 228 Entering Long Passive Mode
FTP 125 (Data Connection Open) is a 1xx Positive Preliminary response, while 228 (Entering Long Passive Mode) is a 2xx Positive Completion response. 125 indicates that the data connection is already open and the transfer is beginning. No need to open a new data connection. In contrast, 228 means that entering Long Passive Mode. An extended version of passive mode that supports longer addresses, including IPv6. Largely superseded by EPSV (229).
説明
The data connection is already open and the transfer is beginning. No need to open a new data connection.
このコードが表示される場合
When the server reuses an existing data connection for a file transfer instead of opening a new one.
解決方法
No fix needed — the transfer is starting immediately. Your client should begin reading or writing data on the existing connection.
説明
Entering Long Passive Mode. An extended version of passive mode that supports longer addresses, including IPv6. Largely superseded by EPSV (229).
このコードが表示される場合
After issuing the LPSV command on servers that support long addresses. Rarely seen in practice as EPSV is preferred.
解決方法
No fix needed, but consider using EPSV (Extended Passive Mode) instead, which is more widely supported and simpler to parse.
主な違い
125 is a 1xx Positive Preliminary response, while 228 is a 2xx Positive Completion response.
FTP 125: The data connection is already open and the transfer is beginning. No need to open a new data connection.
FTP 228: Entering Long Passive Mode. An extended version of passive mode that supports longer addresses, including IPv6. Largely superseded by EPSV (229).
You encounter 125 when when the server reuses an existing data connection for a file transfer instead of opening a new one.
You encounter 228 when after issuing the LPSV command on servers that support long addresses. Rarely seen in practice as EPSV is preferred.
どちらをいつ使うか
For 125 (Data Connection Open): No fix needed — the transfer is starting immediately. Your client should begin reading or writing data on the existing connection. For 228 (Entering Long Passive Mode): No fix needed, but consider using EPSV (Extended Passive Mode) instead, which is more widely supported and simpler to parse.