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.).

2494 questions
0
votes
1 answer

jboss Caught Secure FTP Exception

I`m using Jboss 4.4 on top of RHEL 4.7 and when implementing a FTP session my log continually throws tihs kind of error: org.jboss.internal.soa.esb.util.SecureFtpImpl] Caught Secure FTP Exception So far it`s not my application but rather Jboss'es…
Arvychile
0
votes
0 answers

How to force SSL on all FTP connections on a VPS Windows Server 2018

I have a VPS server that is running on Windows Server 2016. I added FTP access to one site on that VPS. But every time the user tries to connect using FileZilla FTP the user is prompted with the following. I think I am forcing all FTP connection to…
Junior
  • 171
  • 2
  • 11
0
votes
1 answer

FTP Server Rejecting Local Domain

I attempted to map an ftp address to a network drive to make publishing builds a bit easier. When doing this the computer became incredibly unresponsive and the new mapped folder wouldn't open so I removed it. Since this any computer within my work…
0
votes
1 answer

FTP Folder Error The parameter is incorrect

My client (X) often ftp ok to server to upload file to it. One day the server admin (Y) change some setting so X can't connect to ftp server. Then Y fix it, X can connect again but ftp server say incorrect password. Then Y change password for X, I…
Pham X. Bach
  • 101
  • 1
  • 5
0
votes
0 answers

Failing to connect trough SFTP

I have a VPS with Ubuntu18 with vsftp installed. And I have a client-side MacBook HighSierra. Just recently installed the VPS, and since I'm new to networking I used this tutorial to configured it - except TCP wrapper and fail2ban, that I will take…
ludicrous
  • 101
  • 2
0
votes
3 answers

FTP server that logs failed password attempts

I'm looking for a FTP server that logs failed password attempts in clear text. The thing is that I've lost a password which is saved in my FTP client but it is encrypted obviously. What I wanted to do was simply change the server IP so it tries to…
Olivier Lalonde
  • 753
  • 3
  • 13
  • 20
0
votes
1 answer

Set up FTP on ubuntu ec2 14.04 root directory

I set up FTP according to following https://sdykman.com/content/installing-vsftpd-ubuntu-1404-amazon-ec2-instance I am able to connect to the FTP with fileZila, it displays empty directory but I cannot figure which directory is it on my server, or…
Elia Weiss
  • 160
  • 2
  • 7
0
votes
2 answers

FTP: Jail user to Home folder

Using Centos7 and vsftpd I would like to chroot the user "testftp" to his home folder /home/testftp. The client uses WinSCP on Windows. The user testftp can reach the server and connects initially to his home folder. However the user is still…
user2827958
  • 221
  • 2
  • 7
  • 15
0
votes
0 answers

allow ftp to access .htaccess files

First I am a linux newbie. This maybe a very simple thing, but for the life of me I can't seem to figure it out. I inherited a server (ubuntu GUI) running a single website + forum. It is currently working perfectly, but is in desperate need of an…
0
votes
1 answer

Vsftpd User Premissions

I've an Ubuntu Server. I installed vsftpd. I want that specific user will have full premissions to /var/www/someDirectory and her child directories/files. So I created a user with this commands: useradd -b /var/www/someDirectory -d…
Alon Gubkin
  • 666
  • 3
  • 7
  • 12
0
votes
1 answer

ProFTPd and www-data group

What I'm trying to do is create a ftp user that can update and modify files in an apache2 v2.4 (with www-data) web directory. I have a single user: UserA (names changed to protect the guilty) The folder is /var/www/vhosts; chowned to…
arcee123
  • 50
  • 2
  • 14
0
votes
0 answers

How to set up the directory of an anonymous vsftpd server

I have set up a vsftp server with anonymous access. vsftpd.conf contains the following: anon_root=/var/www/ftp/ secure_chroot_dir=/var/www/ftp local_root=/var/www/ftp After login in as anonymous, the ls command is successful executed but doesn't…
user123456
  • 563
  • 1
  • 7
  • 20
0
votes
1 answer

connecting to a FTP by TLS fails from one client, but succeeds from the other

Trying to connect from client2 using the following string works: client2@client2 curl -v --ssl -u 'user:password' ftp://www.example.com:21 * Rebuilt URL to: ftp://www.example.com:21/ * Trying 192.168.177.186... * Connected to www.example.com…
catalin
  • 115
  • 2
  • 9
0
votes
2 answers

Powershell command to FTP a file from server to select PCs on a network

TLDR: I need to move a large file from a server to the desktop of multiple SELECT machines connected to it. Network topography: 1 Server 5 - 20 Connected PCs This topography is pretty standard across all remote networks that I work on. On some…
0
votes
1 answer

ftp filezilla server stops accepting connections after some time

I'm encountering the following issue. My filezilla FTP server stops after some time, the time is varying from 5 hours to 24 hours. I raised the filezilla server log and the trace below were the only thing, I was able to see (001170) 27/07/2018…
Andy K
  • 119
  • 14