Questions tagged [ftp]

File Transfer Protocol is a standard network protocol used to transfer data across TCP-based networks between hosts.

File Transfer Protocol (Wikipedia article) is a protocol, governed by well-established Internet standards, for conducting file operations (e.g. transferring files between two systems) over a TCP-based network such as the Internet or a local area network. FTP employs a client-server architecture, where one system is the "client", which opens a connection to the other system, the "server", the client makes requests of the server, and then closes the connection.

The most common FTP operations that a client will initiate include downloading files (i.e. "get" files from the server) and uploading files (i.e. "put" files on the server). There are a variety of file system related commands that the client request of the server (e.g. making directories, renaming files on the server, deleting files from the server, etc.).

2505 questions
40
votes
6 answers

Why does FTP passive mode require a port range as opposed to only one port?

I'm struggling to come to grasp with why all FTP servers requires the use of a port range for passive mode data channels as opposed to only using one data port for all incoming data channel connections. FTP servers handle many simultaneously…
Kurt
  • 503
11
votes
5 answers

Is it possible to setup a writeonly ftp?

I'd like to setup an ftp such that my users (and some software I write) can upload documents, and have those documents saved on the server but I don't want to allow users to see the contents of the ftp folder - essentially the ftp looks empty at all…
10
votes
3 answers

What is the syntax of lftp's mirror -x (exclude) option?

I want to mirror a directory using lftp but I want to exclude certain subdirectories. I tried mirror -R -e -x ^\.svn$ /documents/ /test and mirror -R -e -x /^\.svn$/ /documents/ /test but neither of them excluded the .svn directories.
AndreKR
  • 560
10
votes
10 answers

Unable to connect to FTP - Connection timeout after MLSD

So here is my problem, I'm absolutely unable to connect to a FTP server, in circumstances I've never seen before. Here is the situation : I get a "Connection timed out" just after the MLSD command. I usually use Filezilla, under Ubuntu, but to…
Afrosimon
  • 135
9
votes
2 answers

FileZilla Server 425 Can't open data connection for transfer of "/"

I am having difficulties connecting to my FileZilla Server via my FileZilla Client. When trying to connect to the local address while on the same network I am able to connect successfully though (so the server is functional). FileZilla client is…
Pie
  • 320
9
votes
24 answers

Which FTP client do you prefer and why?

I have question about FTP clients. Could anybody assist me with it? Which FTP client do you prefer and why?
8
votes
6 answers

Using the find command on the ftp server

I am logged in to an ftp server and want to find a particular directory within all the directories that exist there. I am looking for a command similar to the Unix find command. Is there something like this available?
dynoboy
8
votes
3 answers

Where does filezilla server store its users data?

What I mean is username and passwords.
Arief
  • 215
8
votes
3 answers

How to FTP 'get' a partial file only

I'm working on a tool to get some data that is buried within a very large file on a remote system. It would be impractical to copy the entire file over, and all of the data I need exists within the first 1000 or so bytes of the file. I know that I…
Jax
  • 428
7
votes
6 answers

On what basis should you select ACSII or Binary transfers over FTP?

FTP clients, including those used programatically, allow the user to select ASCII or Binary transfers when uploading a file. Some clients also support some flavor of Auto, where you leave it to the FTP client to decide. What are some correct…
rcampbell
  • 1,035
6
votes
7 answers

What does FTP Jailing mean, and what features does a server OS require in order to enable it?

I have a fuzzy notion of what the term "ftp jailing" means, but when it comes to permissions and security, fuzzy is imprudent. What is it? How is it implemented? Is it mostly a capability of the ftp server, or does it emerge from how the…
5
votes
6 answers

Cannot list directory when accessing FTP server remotely

I installed vsftpdand everything is working fine when accessing it locally, but I cannot view the folders when accessing it remotely. Using FileZilla in my remote PC, I get this: status: connecting to 192.x.x.x status: connection established,…
5
votes
2 answers

What is a good tool to scan a FTP directory and show disk usage visually ala KDirStat/WinDirStat?

Is there a tool that can scan an FTP directory and build a visual representation of disk usage? I'm running on Windows so that platform is my preference for this tool, but a *NIX tool would also be useful. I'm thinking along the lines of WinDirStat,…
Wesley
  • 32,840
4
votes
1 answer

Correct usage of lftp mirror --older-than

I'm trying to use lftp to download all files from a remote ftp server to the local server in our multi-site enterprise that are older than a certain age and remove them from the remote server. The command I'm trying is: lftp -c "set ftp:list-options…
TheAmigo
  • 189
4
votes
1 answer

Copying Folder Contents with Subdirectories Over FTP

I have a folder that contains multiple subdirectories. I would like to copy the contents of the folder over ftp (using lftp preferably) instead of the entire folder. When I use the mirror command, it seems to copy the folder over, which means that…
Astephen2
  • 143
1
2 3
10 11