So access to FTP server is the thing that I do it everday.
Therefore, I configure my Windows XP to map to the FTP server as a drive.
Here are the step that I take:
1. use NSLOOKUP to find out what the ip address of the FTP site:
CONSOLE
nslookup ftp.globalscape.com (this is a example only)
write down the ip address that was shown.
in this case, it is 64.243.64.21
2. Open the LMHOSTS file
it is inside the folder c:\windows\system32\drivers\etc
Add the following line:
CODE
64.243.64.1 CuteFTP #PRE
the format is: <ip address> CuteFTP #PRE
3. Save the file
4. Run CMD.EXE. Enter the following command:
CONSOLE
nbtstat -R
you will see this message: Successful pureg and preload of the NBT Remote Cache Name Table.
5. Then enter the following command:
CONSOLE
net view \\CuteFTP
You should see information on the site
6. Now you can map it to a drive (to share data)
net use * \\CuteFTP\data /user:anonymous
This it. simple!!??


