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
6
votes
4 answers

IIS 7.5 on Windows Server 2008 R2 refusing to create PASSIVE MODE FTP connections

I'm attempting to get an FTP client written in perl to transfer files from an IIS 7.5 FTP server using passive mode. I've configured the FTP server as per instructions and have also configured Windows Firewall to allow this type of traffic. I have…
Campbell
  • 163
  • 1
  • 1
  • 7
6
votes
4 answers

How to create and edit .htaccess and .htpasswd locally on my computer and then upload to my site via ftp?

I'm making a website for a client, and I want to make a password protected directory. The problem is my account type only allows FTP, so is there any way to create the .htaccess and .htpasswd files locally on my computer so I can upload them via…
cstack
  • 163
  • 1
  • 2
  • 7
6
votes
3 answers

vsftpd does not create pid file required for monit

I want to monitor vsftpd server from monit on CentOS 5.4 but somehow vsftpd does not create pid file in /var/run (nor in any other place). Is this behavior normal for this distro? How should I configure monit to watch for vsftpd, should I create pid…
jackhab
  • 771
  • 1
  • 8
  • 21
5
votes
1 answer

Selective mirroring over FTP

I need to keep my web page synchronized with a local directory. A very effective tool is lftp, which I use with the script: #!/bin/bash HOST='ftp.remote.it' USER='username' PASS='password' TARGETFOLDER='.' …
Massimo2013
  • 151
  • 4
5
votes
2 answers

Data Channel Port Range box in IIS Manager is disabled

I'm setting the FTP on IIS on my Amazon. I already make it work and can connect if I'm directly on the Amazon server. When I connect from outside, I can connect and accept login, but I cannot list the folder files. I'm following the instructions…
5
votes
4 answers

Why is vsftpd (behind firewall) returning its internal ip address for the pasv address?

I'm using vsftpd on a Debian server behind another Debian firewall. The natting is correct and I can connect to the ftp server from the outside. However, when the client issues the PASV command, the ftp server returns its internal IP…
Lifz
  • 203
  • 1
  • 2
  • 8
5
votes
2 answers

Vsftpd passive reply with 0,0,0,0 address even with correct pasv_address

I have the following config in vsftpd listen_ipv6=YES allow_writeable_chroot=YES seccomp_sandbox=NO pam_service_name=vsftpd userlist_enable=YES tcp_wrappers=YES pasv_enable=YES pasv_min_port=1024 pasv_max_port=1048 pasv_address=
Vic85
  • 83
  • 1
  • 3
5
votes
2 answers

AWS connection error: Permission denied (publickey)

Sorry if this sounds redundant to you but trust me its not. I have tried almost majority of the links related to this problem but nothing is working for me so far. I even tried this article two. Below is what I have tried so far Permission of the…
5
votes
2 answers

Can't log in to FTP on Debian with vsftpd

I'm trying to setup FTP access to my Apache server but I'm receiving a 530 Login Incorrect error. I installed the vsftp package via sudo apt-get install vsftpd. I've tried connecting to ftp://(my ip address) with a user I've created, andrew, who is…
Andrew
  • 195
  • 1
  • 1
  • 8
5
votes
2 answers

How to hide Folders for FTP user jailed to user home

Setup: VSFTPD FTP server Only the FTP user has access to FTP User home modded to /var/www User now has write access only to /var/www User still can browse folder structure - this is what i want to prevent. In other words, how can I prevent…
user150637
5
votes
2 answers

FTP - 500 I won't open a connection to xx.xx.xx.xx

I'm running a server on AWS and I'm connecting out to a partner's FTP site (not much idea what they are running). My server has an elastic IP. In the results below xx.xx.xx.xx is the internal IP (same as I get from IPConfig). yy.yy.yy.yy is the…
Cade Roux
  • 375
  • 2
  • 5
  • 18
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,…
user1933824
  • 165
  • 2
  • 3
  • 10
5
votes
2 answers

Able to connect to server with winscp but unable to connect with filezilla

I am unable to connect to the server with filezilla but with winscp I am able to connect. Both filezilla and winscp connect using port 22. Why is filezilla unable to connect to the server?
Kimberlee Ho
  • 171
  • 1
  • 5
5
votes
3 answers

FTP restrict user access to a specific folder

I have created a FTP Site inside IIS 7.5 panel. Now I have access to whole site using administrator username and password. Now, I want to let my friend access a specific folder of that FTP site. (for example, this path: \some\folder\accessible\) I…
Mahdi Ghiasi
  • 361
  • 2
  • 4
  • 15
5
votes
1 answer

Strange Windows Server 2008 R2 (FTP Server) Error - Caused by a specific combination of characters in the filename of uploaded file

We are running Windows Server 2008 R2, which is setup to be a FTP server. Everything seemed to be working fine until one our our cilents started complaining about their uploads being halted with the message "Connection with server reset". Further…
Steven
  • 71
  • 3