Ftp: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
Line 5: Line 5:
<pre>
<pre>
yum -y install vsftpd
yum -y install vsftpd
service vsftpd start
systemctl enable vsftpd
chkconfig vsftpd on
systemctl start vsftpd
</pre>
</pre>



Revision as of 05:51, 11 July 2015

To install a TFTP server use the following commands.

Installation

Linux

yum -y install vsftpd
systemctl enable vsftpd
systemctl start vsftpd

Debian

apt-get -y install vsftpd

Logging

A folder is created at /var/ftp/ which contains the location for TFTPing.

To enable logging edit /etc/vsftpd/vsftpd.conf

# Activate logging of uploads/downloads.
xferlog_enable=YES