Hi, When trying out the apache ftp server, observed that for file transfers are slow, when the user logged in is anyone other than the default "admin". This difference is huge with respect to the overall time taken ( almost 4 times slower)..Is there a specific cause for this to happen?
Attaching below the client transcripts -- Notice the difference in the transfer rates for "guest" and "admin"... This was run on the same system , tried just a few minutes apart. Do let me know in case any other information is required... C:\Documents and Settings\Administrator>ftp 9.184.236.33 Connected to 9.184.236.33. 220 Service ready for new user. User (9.184.236.33:(none)): guest 331 User name okay, need password for guest. Password: 230 User logged in, proceed. ftp> ls 200 Command PORT okay. 150 File status okay; about to open data connection. README.txt 226 Closing data connection. ftp: 12 bytes received in 0.02Seconds 0.75Kbytes/sec. ftp> ls 200 Command PORT okay. 150 File status okay; about to open data connection. DevTestCases.zip README.txt 226 Closing data connection. ftp: 30 bytes received in 0.00Seconds 30000.00Kbytes/sec. ftp> get DevTestCases.zip 200 Command PORT okay. 150 File status okay; about to open data connection. 226 Transfer complete. ftp: 263323471 bytes received in 55.22Seconds 4768.71Kbytes/sec. ftp> bye 221 Goodbye. C:\Documents and Settings\Administrator>ftp 9.184.236.33 Connected to 9.184.236.33. 220 Service ready for new user. User (9.184.236.33:(none)): admin 331 User name okay, need password for admin. Password: 230 User logged in, proceed. ftp> ls 200 Command PORT okay. 150 File status okay; about to open data connection. DevTestCases.zip README.txt 226 Closing data connection. ftp: 30 bytes received in 0.00Seconds 30000.00Kbytes/sec. ftp> get DevTestCases.zip 200 Command PORT okay. 150 File status okay; about to open data connection. 226 Transfer complete. ftp: 263323471 bytes received in 16.67Seconds 15794.35Kbytes/sec. ftp> bye 221 Goodbye. Thanks and Regards, Atul Gohad.