ubunt1204安裝配置vsftp

振宇要低調發表於2015-10-26

  本文將搭建一個最簡單的ftp服務,即通過root使用者可進行登入、上傳、下載,具體步驟如下:

  1、安裝vsftpd服務

sudo apt-get install vsftpd

  2、編輯vsftp配置檔案

vi /etc/vsftpd.conf 
local_enable=YES   #開啟這一行,允許本地使用者登入
write_enable=YES   #開啟這一行,配置ftp可寫
pam_service_name=ftp   #因為ubuntu啟用了PAM,這一行要更改為ftp

  3、重啟服務

service vsftpd restart

  4、測試

D:\>ftp 106.0.*.*
連線到 106.0.*.*220 (vsFTPd 2.3.5)
使用者(106.0.*.*:(none)): root
331 Please specify the password.
密碼:
230 Login successful.
ftp> dir
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
-rw-r--r--    1 0        0              10 Oct 26 10:37 1.txt
-rw-------    1 0        0              10 Oct 26 10:39 2.txt
226 Directory send OK.
ftp: 收到 126 位元組,用時 0.00秒 126.00千位元組/秒。
ftp> get 1.txt
200 PORT command successful. Consider using PASV.
150 Opening BINARY mode data connection for 1.txt (10 bytes).
226 Transfer complete.
ftp: 收到 10 位元組,用時 0.00秒 10000.00千位元組/秒。
ftp> put 2.txt
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
ftp: 傳送 10 位元組,用時 0.01秒 1.11千位元組/秒。
ftp>

 

相關文章