linux 搭建ftp伺服器

2021-07-22 17:18:38 字數 2500 閱讀 3262

工具:linux虛擬機器、securecrt、filezilla

1、安裝vsftpd元件

命令: yum -y install vsftpd

2、新增賬戶及密碼

1)新增賬戶命令:useradd ftpuser

登入後預設的路徑為 /home/ftpuser.

2)新增密碼命令:passwd ftpuser

3、修改iptables開啟21埠

開啟iptables檔案:vim /etc/sysconfig/iptables

重啟iptables檔案:service iptables restart

修改後的iptales檔案

4、修改selinux

檢視selinux:getsebool -a | grep ftp

執行上面命令,再返回的結果看到兩行都是off,代表,沒有開啟外網的訪問,開啟命令:

[root@localhost zhaotong]# setsebool -p allow_ftpd_full_access on

[root@localhost zhaotong]# setsebool -p ftp_home_dir on

5、設定filezilla模式

選單—>編輯—>設定

6、關閉匿名訪問

修改vsftpd.conf:vim /etc/vsftpd/vsftpd.conf

重啟:service vsftpd restart

7、開啟被動模式

開啟vsftpd.conf:vim /etc/vsftpd/vsftpd.conf

開啟iptables檔案:vim /etc/sysconfig/iptables

8、設定開機啟動vsftpd ftp服務

命令:chkconfig vsftpd on

9、測試連線

從左邊本地站點拖一張到右邊遠端站點測試一下

在瀏覽器中開啟檢視

Linux搭建FTP伺服器

linux安裝ftp服務,設定ftp使用者登入的目錄,新增ftp訪問使用者,設定ftp 使用被動模式訪問 1.作為ftp伺服器,需要啟動vsftpd服務 1 檢視本機是否安裝有ftp相關的rpm包 rpm qa grep ftp 如果沒有安裝,可以掛載redhat的安裝包 位於 home ltbo9...

Linux搭建FTP伺服器

第一章 介紹 主要介紹在linux中搭建ftp伺服器的過程,需要掌握的要點是配置檔案的合理配置。第二章 安裝ftp 執行命令 yum y install vsftpd 第三章 使用 1 建立ftp連線使用者 useradd ftpusr 2 設定ftp使用者密碼 passwd ftpusr 3 建立...

linux搭建ftp伺服器

安裝 vsftp軟體 關閉firewall和selinux setenforce 0 設定selinux 成為permissive模式 關閉selinux setenforce 1 設定selinux 成為enforcing模式 開啟selinux 或者修改配置 vi etc selinux con...