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

2481 questions
16
votes
5 answers

vsFTPd default uploaded file permissions on Ubuntu not working

I have a Server running Ubuntu 12.10 x64, and the last version of vsFTPd. My user example.com has its home folder set on /var/www/example.com, I created a public_html folder inside and gave 777 permisions to it, and removed the writing permissions…
lucasmx
  • 620
  • 1
  • 6
  • 12
16
votes
5 answers

What is the maximum number of files (or folders) that can be stored in a single folder?

Is there a maximum limit on the number of items that can be stored in a folder on Windows Server 2008? We have a requirement to handle the ftp of hundreds of thousands of items to a folder and process the items in the folder. I've heard rumours that…
16
votes
4 answers

How to disable passive mode in linux ftp command

I am using the "ftp" command of linux to send data to a 3rd party provider. This company states that we need to "Disable passive mode in your FTP client", and I confirm it doesn't work in passive mode. However, when I googled the linux command, I…
nute
  • 791
  • 2
  • 11
  • 22
16
votes
6 answers

When IP aliasing how does the OS determine which IP address will be used as source for outbound TCP/IP connections?

I have a server running Ubuntu Server with four IP addresses aliased on a single NIC. eth0 192.168.1.100 eth0:0 192.168.1.101 eth0:1 192.168.1.102 eth0:2 192.168.1.103 (Using 192.168.x.x for sake of example, assume these are…
Joe Holloway
  • 1,829
  • 3
  • 19
  • 17
16
votes
4 answers

ASCII vs Binary vs Auto?

I'm transferring files between servers and just started noticing that some of them are getting modified to be one long continuous line as opposed to having the returns and line-breaks they originally had. I'm assuming this has something to do with…
Sampson
  • 520
  • 2
  • 6
  • 18
15
votes
2 answers

Symbolic link and filezilla over sftp

I'm pretty new to debian, and I'm trying to set up a server. I have created a user who can only access his folder /home/username (and its subdirectory). Now I want to use that user for the webserver I set up, and I have given him access to /var/www…
Doc
  • 253
  • 1
  • 3
  • 8
15
votes
2 answers

Why doesn't IIS 7.5 FTP respect the passive port range for plain ftp?

I struggled with the whole passive port range deal on IIS 7.0 tonight. I finally realized that it apparently only applies to FTP/ES or FTP/IS. When I try to do plain ftp, it assigns whatever the heck port number it wants when responding to a PORT…
Chris B. Behrens
  • 671
  • 1
  • 6
  • 12
15
votes
3 answers

How to check diskspace on SFTP server

Recently I encountered a lack of diskspace problem on a SFTP server and I realised I have no idea how to check how much is left or even the total amount. Does anyone know how to do this through an application like FileZilla or perhaps there is a…
kjetilh
  • 251
  • 1
  • 2
  • 5
15
votes
2 answers

Default owner/permissions of created files via VSFTPD

How do I set the default values of directories and files created to be 775 ? My understanding is that I need to modify the umask on VSFTPD, but how do I know what to change it to?
Ben
  • 3,630
  • 17
  • 62
  • 93
15
votes
8 answers

FTP Error 530, User cannot log in, home directory inaccessible

I've been tasked with setting up an FTP directory for a client of ours. I'm working from a Windows 2008 Server with IIS 7 installed. To create the FTP user directory I've followed this eHow tutorial. The FTP site is already set up on IIS 7, so I…
109221793
  • 315
  • 1
  • 2
  • 13
15
votes
6 answers

VSFTPD 530 Login incorrect

I'm trying to get a vsftpd server set up on CentOS 5.3 x64. I'm not able to get any local user login's to work. Here is my…
dw.emplod
  • 343
  • 1
  • 4
  • 10
15
votes
4 answers

How can I capture output from LFTP? (Output not written to STDOUT or STDERR?)

I would like get access to progress information from lftp. Currently, I'm using curl like so: curl http://example.com/file -o file -L 2> download.log This writes curl's progress information to the download.log file, which I can tail to get…
jondahl
  • 153
  • 1
  • 1
  • 4
14
votes
4 answers

FTP doesn't allow /usr/sbin/nologin user

I want to setup a ftp for couple of ftp-only users with vsftpd. I configured the FTP to enable local user access. It works fine. But once I edit the users' shell to /usr/sbin/nologin, it couldn't log into the FTP with the following error: Response: …
steveyang
  • 623
  • 4
  • 9
  • 15
13
votes
2 answers

How to Deny all IPs except one in Filezilla Server?

Using the standard Filezilla IP Filter GUI interface seen here, I want to deny all IP addresses in the first box and in the second box allow only one IP# back in. Am having problems with CIDR notation in the first box to capture all IPs. Looking…
John K
  • 1,673
  • 3
  • 16
  • 20
12
votes
2 answers

SFTP server: better to use SSH internal sftp subsystem or ProFTPD plugin?

I've been tasked to install a new SFTP server. Per-se, this is a very simple operation: simply using the internal-sftp role of the ubiquitous SSH service (with chrooting) is sufficient to have a reliable SFTP server. However it's in my nature to…
shodanshok
  • 44,038
  • 6
  • 98
  • 162