I have a client trying to upload multiple files to FTP server in passive mode.
The client sends PASV command and the server responds with the relevant ip and port.
Is it possible to send multiple files on this one data connection? or the client need to send the PASV command and get a new port for each file?
is ftp data connection is only for one file?
1.6k views Asked by Alon Rew At
1
There are 1 answers
Related Questions in FTP
- Python interface of Caffe: Error in "import caffe"
- compiling caffe on Yosemite
- [Caffe]: Check failed: ShapeEquals(proto) shape mismatch (reshape not set)
- Caffe layer registry error
- Error in creating LMDB database file in Python for Caffe
- Caffe net.predict() outputs random results (GoogleNet)
- How to convert Mat from opencv to caffe format
- How to create an caffemodel file from training image and its labeled?
- Error when using classify in caffe
- Two errors while running Caffe
Related Questions in PROTOCOLS
- Python interface of Caffe: Error in "import caffe"
- compiling caffe on Yosemite
- [Caffe]: Check failed: ShapeEquals(proto) shape mismatch (reshape not set)
- Caffe layer registry error
- Error in creating LMDB database file in Python for Caffe
- Caffe net.predict() outputs random results (GoogleNet)
- How to convert Mat from opencv to caffe format
- How to create an caffemodel file from training image and its labeled?
- Error when using classify in caffe
- Two errors while running Caffe
Related Questions in FILE-TRANSFER
- Python interface of Caffe: Error in "import caffe"
- compiling caffe on Yosemite
- [Caffe]: Check failed: ShapeEquals(proto) shape mismatch (reshape not set)
- Caffe layer registry error
- Error in creating LMDB database file in Python for Caffe
- Caffe net.predict() outputs random results (GoogleNet)
- How to convert Mat from opencv to caffe format
- How to create an caffemodel file from training image and its labeled?
- Error when using classify in caffe
- Two errors while running Caffe
Related Questions in FTP-CLIENT
- Python interface of Caffe: Error in "import caffe"
- compiling caffe on Yosemite
- [Caffe]: Check failed: ShapeEquals(proto) shape mismatch (reshape not set)
- Caffe layer registry error
- Error in creating LMDB database file in Python for Caffe
- Caffe net.predict() outputs random results (GoogleNet)
- How to convert Mat from opencv to caffe format
- How to create an caffemodel file from training image and its labeled?
- Error when using classify in caffe
- Two errors while running Caffe
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Since the only indicator of the end of file is the close of the connection and because you cannot transfer any more data after the connection has closed, you will not be able to transfer more than one file using the same data connection.
But, maybe you tried to ask a different question, that is if is possible to have multiple data transfers (and thus multiple data connections) after a single PASV command? I can see nothing in RFC959 which directly would prevent this and reusing the same target port on the server. And because access would be done from different source ports on the client this should also not give problems with TCP connection states. But, in practice you will probably see problems because if you try to use this from the client side, because lots of servers create the listener only for a single data connection. So you better precede each data transfer with a new PASV command, like existing clients do.