rohit09

Well-Known Member
Dec 10, 2010
61
0
56
Code:
STATUS:>  	[23-Jun-12 8:50:11 AM] Getting listing ""...
STATUS:>  	[23-Jun-12 8:50:11 AM] Connecting to FTP server... 184.75.XXX.XXX:21 (ip = 184.75.XXX.XXX)...
STATUS:>  	[23-Jun-12 8:50:12 AM] Socket connected. Waiting for welcome message...
		[23-Jun-12 8:50:12 AM] 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
		220-You are user number 1 of 50 allowed.
		220-Local time is now 07:19. Server port: 21.
		220-This is a private system - No anonymous login
		220-IPv6 connections are also welcome on this server.
		220 You will be disconnected after 15 minutes of inactivity.
STATUS:>  	[23-Jun-12 8:50:12 AM] Connected. Authenticating...
COMMAND:>	[23-Jun-12 8:50:12 AM] USER primola1
		[23-Jun-12 8:50:12 AM] 331 User primola1 OK. Password required
COMMAND:>	[23-Jun-12 8:50:12 AM] PASS *****
		[23-Jun-12 8:50:13 AM] 230 OK. Current restricted directory is /
STATUS:>  	[23-Jun-12 8:50:13 AM] Login successful.
COMMAND:>	[23-Jun-12 8:50:13 AM] PWD
		[23-Jun-12 8:50:13 AM] 257 "/" is your current location
STATUS:>  	[23-Jun-12 8:50:13 AM] Home directory: /
COMMAND:>	[23-Jun-12 8:50:13 AM] FEAT
		[23-Jun-12 8:50:13 AM] Informational Message Only:
		211-Extensions supported:
		 EPRT
		 IDLE
		 MDTM
		 SIZE
		 MFMT
		 REST STREAM
		 MLST type*;size*;sizd*;modify*;UNIX.mode*;UNIX.uid*;UNIX.gid*;unique*;
		 MLSD
		 AUTH TLS
		 PBSZ
		 PROT
		 ESTA
		 PASV
		 EPSV
		 SPSV
		 ESTP
		211 End.
STATUS:>  	[23-Jun-12 8:50:13 AM] This site supports features.
STATUS:>  	[23-Jun-12 8:50:13 AM] This site supports SIZE.
STATUS:>  	[23-Jun-12 8:50:13 AM] This site can resume broken downloads.
COMMAND:>	[23-Jun-12 8:50:13 AM] REST 0
		[23-Jun-12 8:50:14 AM] 350 Restarting at 0
COMMAND:>	[23-Jun-12 8:50:14 AM] PASV
		[23-Jun-12 8:50:14 AM] 227 Entering Passive Mode (184,75,XXX,XXX,139,161)
COMMAND:>	[23-Jun-12 8:50:14 AM] LIST
STATUS:>  	[23-Jun-12 8:50:14 AM] Connecting FTP data socket... 184.75.XXX.XXX:35745...
		[23-Jun-12 8:50:15 AM] 150 Accepted data connection
ERROR:>   	[23-Jun-12 8:51:16 AM] Timeout (60000 ms) occurred on receiving data from the server.
		[23-Jun-12 8:51:17 AM] 226-Options: -a -l 
		226 25 matches total
		[23-Jun-12 9:05:16 AM] 421 Timeout - try typing a little faster next time
ERROR:>   	[23-Jun-12 9:05:16 AM] Trashed response received.
:confused: What happen Suddenly?
 

cPanelTristan

Quality Assurance Analyst
Staff member
Oct 2, 2010
7,607
43
348
somewhere over the rainbow
cPanel Access Level
Root Administrator
Which FTP client are you using? If you try ftp from your local system to the server, does the same happen?

For ftp via command line, you'd issue these commands to connect for testing:

Code:
[b]ftp domain.com 21[/b]
Connected to domain.com.
220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 1 of 50 allowed.
220-Local time is now 06:37. Server port: 21.
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
Name (domain.com:user): [b]username[/b]
331 User endar OK. Password required
Password: [b]passwordhere[/b]
230 OK. Current restricted directory is /
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> [b]ls[/b]
229 Entering Extended Passive Mode (|||43522|)
150 Accepted data connection
[i]Contents of directory listing removed[/i]
226-Options: -a -l 
226 21 matches total
ftp> [b]pwd[/b]
Remote directory: /
ftp> [b]quit[/b]
221-Goodbye. You uploaded 0 and downloaded 0 kbytes.
221 Logout.
The above commands are in bold that you could try issuing. If you don't have ftp access on whatever local system you are using, you can try telnet instead:

Code:
telnet domain.com 21
user username
pass password
pwd
The above are the commands you'd use in telnet to connect and check the directory you are in.