Snowbat wrote:
> On Tue, 02 Jan 2007 11:03:00 -0800, anagnost68 wrote:
>
> > and the ftp client is Windows XP using ntfs.
>
> That's your client platform but which ftp client program?
> - MS command line FTP client
> - Internet Explorer
> - something else?
>
> Do you experience the same problem with other ftp client programs?
>
I experience the problem with the XP command line ftp client and the
fedora core 3 ftp command line client. Here's an example doing an mget
from fedora, notice that the retrieved file sizes are smaller than the
detected file sizes:
ftp -i 192.168.1.101
Connected to 192.168.1.101.
220 NET Disk FTP Server ready.
500 Syntax error, command unrecognized.
500 Syntax error, command unrecognized.
KERBEROS_V4 rejected as an authentication type
Name (192.168.1.101

: anonymous
230 User logged in, proceed.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>
ftp> binary
200 Type set to I.
ftp> lcd .
Local directory now /tmp
ftp> ls
227 Entering Passive Mode (192,168,1,101,80,17).
150 File status okay; about to open data connection.
drw-rw-rw- 1 user group 0 Jan 2 02:51 .
drw-rw-rw- 1 user group 0 Jan 2 02:51 ..
-rw-rw-rw- 1 user group 18705260 Jan 2 23:33 MVI_0013.avi
-rw-rw-rw- 1 user group 27172838 Jan 2 23:33 MVI_0024.avi
-rw-rw-rw- 1 user group 20330004 Jan 2 23:33 MVI_0025.avi
226 Closing data connection.
ftp> mget *
local: . remote: .
227 Entering Passive Mode (192,168,1,101,80,19).
550 Requested action not taken.
Warning: embedded .. in .. (changing to !!)
local: !! remote: !!
227 Entering Passive Mode (192,168,1,101,80,20).
550 Requested action not taken.
local: MVI_0013.avi remote: MVI_0013.avi
227 Entering Passive Mode (192,168,1,101,80,21).
150 Opening BINARY mode data connection for MVI_0013.avi (18705260
bytes).
226 Closing data connection.
18677760 bytes received in 4.5 seconds (4.1e+03 Kbytes/s)
local: MVI_0024.avi remote: MVI_0024.avi
227 Entering Passive Mode (192,168,1,101,80,22).
150 Opening BINARY mode data connection for MVI_0024.avi (27172838
bytes).
226 Closing data connection.
27164672 bytes received in 6.5 seconds (4.1e+03 Kbytes/s)
local: MVI_0025.avi remote: MVI_0025.avi
227 Entering Passive Mode (192,168,1,101,80,23).
150 Opening BINARY mode data connection for MVI_0025.avi (20330004
bytes).
226 Closing data connection.
20316160 bytes received in 4.9 seconds (4.1e+03 Kbytes/s)
What do you think?