環(huán)境
角色 | 服務(wù)器配置 | 操作系統(tǒng)版本 | 公網(wǎng)IP |
---|---|---|---|
作為FTP服務(wù)器 | 阿里云ECS實(shí)例 server1 |
Ubuntu 14.04.3 LTS | 47.101.70.109 |
作為客戶端使用FTP連接server1 | 阿里云ECS實(shí)例 server2 |
Ubuntu 16.04.1 LTS | 106.14.151.244 |
安裝
$ apt install vsftpd
配置
- 創(chuàng)建賬戶和密碼
$ useradd -d /home/userftp -s /bin/bash -m userftp
創(chuàng)建
userftp
用戶荷愕,并設(shè)置密碼衡怀。
- 修改 /etc/vsftpd.conf 配置文件
# 允許登錄
local_enable=YES
# 允許上傳
write_enable=YES
userlist_deny=NO
userlist_enable=YES
userlist_file=/etc/allowed_users
seccomp_sandbox=NO
修改上面的參數(shù),如果不存在就新增安疗。
- 修改 /etc/allowed_users 文件
userftp
添加剛創(chuàng)建的
userftp
用戶抛杨,如果這個(gè)文件不存在,就新增荐类。
- 查看 /etc/ftpusers 文件
# /etc/ftpusers: list of users disallowed FTP access. See ftpusers(5).
root
daemon
bin
sys
sync
games
man
lp
mail
news
uucp
nobody
這個(gè)文件存放
ftp
黑名單用戶怖现,確保剛剛添加的用戶不在其中。
啟動(dòng)FTP服務(wù)
$ service vsftpd start
啟動(dòng)之后就可以使用 ftp 軟件進(jìn)行連接了玉罐,這里不做演示屈嗤,接下來使用另一臺(tái)服務(wù)器 server1 嘗試對(duì) server2 進(jìn)行 ftp 連接。
Linux登錄FTP服務(wù)器
ftp> open 47.101.70.109
Connected to 47.101.70.109.
220 (vsFTPd 3.0.3)
Name (47.101.70.109:root): userftp
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> lcd /home/
Local directory now /home
ftp> put hello.php
local: hello.php remote: hello.php
227 Entering Passive Mode (47,101,70,109,85,130).
150 Ok to send data.
226 Transfer complete.
52 bytes sent in 0.00 secs (10156.2 kB/s)
ftp> close
221 Goodbye.
常用FTP命令 | 說明 |
---|---|
open | 連接遠(yuǎn)程服務(wù)器 |
close | 斷開遠(yuǎn)程服務(wù)器連接 |
ls | 列出服務(wù)器當(dāng)前目錄 |
cd | 在服務(wù)器上改變工作目錄 |
lcd | 在本地改變工作目錄 |
get | 從服務(wù)器傳送指定文件到本地 |
put | 從本地上傳指定文件到服務(wù)器 |
? | 顯示本地幫助信息 |
! | 轉(zhuǎn)到shell中 |