ftp 配置
ftp使用者:
系統使用者
匿名使用者---->系統使用者
虛擬使用者---->系統使用者
ftp使用者的預設訪問目錄:
匿名使用者訪問目錄:/var/ftp
系統使用者的訪問目錄:使用者的家目錄
安全通訊方式
ftps: ftp+ssl/tls
sftp: OpenSSH,SubSystem,sftp(SSH)
1 安裝軟體
[root@CnBJYwz01QNmoSmokepingL01 ~]# yum -y install vsftpd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.btte.net
* epel: mirrors.aliyun.com
* extras: mirrors.btte.net
* updates: mirrors.btte.net
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package vsftpd.x86_64 0:2.2.2-21.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
==============================================================================================================================================================================
Package Arch Version Repository Size
==============================================================================================================================================================================
Installing:
vsftpd x86_64 2.2.2-21.el6 base 155 k
Transaction Summary
==============================================================================================================================================================================
Install 1 Package(s)
Total download size: 155 k
Installed size: 340 k
Downloading Packages:
vsftpd-2.2.2-21.el6.x86_64.rpm | 155 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : vsftpd-2.2.2-21.el6.x86_64 1/1
Verifying : vsftpd-2.2.2-21.el6.x86_64 1/1
Installed:
vsftpd.x86_64 0:2.2.2-21.el6
Complete!
[root@CnBJYwz01QNmoSmokepingL01 ~]# rpm -ql vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/rc.d/init.d/vsftpd
/etc/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpd/user_list
/etc/vsftpd/vsftpd.conf
/etc/vsftpd/vsftpd_conf_migrate.sh
/usr/sbin/vsftpd
/usr/share/doc/vsftpd-2.2.2
.......
/var/ftp //ftp服務的根目錄
/var/ftp/pub
|
2 啟動服務
[root@CnBJYwz01QNmoSmokepingL01 ~]# /etc/init.d/vsftpd start
Starting vsftpd for vsftpd: [ OK ]
[root@CnBJYwz01QNmoSmokepingL01 ~]# chkconfig vsftpd on
[root@CnBJYwz01QNmoSmokepingL01 ~]#
|
3 測試登陸
匿名登陸ftp伺服器
localhost:~ ray$ ftp 192.168.2.141
Connected to 192.168.2.141.
220 (vsFTPd 2.2.2)
Name (192.168.2.141:ray): anonymous
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>
ftp> help
Commands may be abbreviated. Commands are:
! features mls prompt site
$ fget mlsd proxy size
account form mlst put sndbuf
append ftp mode pwd status
ascii gate modtime quit struct
bell get more quote sunique
binary glob mput rate system
bye hash mreget rcvbuf tenex
case help msend recv throttle
cd idle newer reget trace
cdup image nlist remopts type
chmod lcd nmap rename umask
close less ntrans reset unset
cr lpage open restart usage
debug lpwd page rhelp user
delete ls passive rmdir verbose
dir macdef pdir rstatus xferbuf
disconnect mdelete pls runique ?
edit mdir pmlsd send
epsv4 mget preserve sendport
exit mkdir progress set
ftp>
系統使用者登陸
[localhost:~ ray$ ftp 192.168.2.142
Connected to 192.168.2.142.
220 (vsFTPd 2.2.2)
Name (192.168.2.142:ray): ray
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>
ftp>
ftp> ls
229 Entering Extended Passive Mode (|||59706|).
150 Here comes the directory listing.
226 Directory send OK.
ftp>
ftp> pwd
Remote directory: /home/ray
ftp>
|
4 常用配置檔案引數
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES #是否允許匿名使用者登陸
# Uncomment this to allow local users to log in.
local_enable=YES #是否允許本地的系統使用者登陸
# Uncomment this to enable any form of FTP write command.
write_enable=YES #是否允許上傳檔案
anon_upload_enable=YES #是否允許匿名使用者上傳檔案,開啟上傳許可權。注意:最終檔案能否上傳成功,取決於檔案系統許可權和檔案共享許可權
anon_mkdir_write_enable=YES #是否允許匿名使用者建立目錄
anon_other_write_enable=YES #是否允許匿名使用者其他寫動作,如:刪除和修改
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES #當用進入目錄,是否顯示歡迎資訊
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
xferlog_enable=YES #是否開啟傳輸日誌,記錄上傳下載的操作命令
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
xferlog_file=/var/log/xferlog #指定傳輸日誌的路徑
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES #是否允許上傳檔案完,修改使用者屬組
#chown_username=whoever #檔案上傳完,修改成使用者屬性
# You may change the default value for timing out an idle session.
#idle_session_timeout=600 #超時時間,控制連線
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120 #超時時間,資料連線
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_local_user=YES #是否將所有使用者限制在主目錄,YES為啟用 NO禁用.(該項預設值是NO,即在安裝vsftpd後不做配置的話,ftp使用者是可以向上切換到要目錄之外的)
#chroot_list_enable=YES #是否允許啟用限制使用者名稱單
# (default follows)
#chroot_list_file=/etc/vsftpd/chroot_list #禁錮使用者列表,檔案需要主動建立
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=YES #是否為獨立守護程式
userlist_enable=YES #是否啟用/etc/vsftpd/user_list名單
userlist_deny=YES #yes表示/etc/vsftpd/user_list為黑名單,no為白名單,
#If vsftpd is in standalone mode, this is the maximum number of clients which may be connected. Any additional clients connecting will get an error message. The value 0 switches off the limit.
max_clients #限制最大客戶端數量
#If vsftpd is in standalone mode, this is the maximum number of clients which may be connected from the same source internet address. A client will get an error message if they go over this limit. The value 0 switches off the limit.
max_per_ip #限制相同IP的連線客戶端數量
|
對於ftp使用者訪問ftp服務時應該對其chroot
禁錮使用者於其家目錄中
chroot_local_user={Yes|No}
chroot_list_enable={YES|NO}
chroot_list_file=/etc/vsftpd/chroot_list
每行一個使用者
匿名使用者的配置:
anonymous_enable=YES
anon_upload_enable=YES
anon_other_write_enable=YES
anon_mkdir_write_enable=YES
注意:啟用寫入功能時,ftp使用者對相應的本地檔案系統也有相應的寫入許可權;
生效的許可權取決於檔案系統許可權和服務許可權的交集;
歡迎資訊的定義:
banner_file=/path/to/some_banner_file
ftp_banner=some string
dirmessage_enable=yes
在某ftp可訪問的目錄下建立.messages檔案
vsftp控制登入使用者的機制:
/etc/vsftpd/ftpusers中的使用者都不允許使用ftp服務, 這是在/etc/pam.d/vsftpd中定義;
user_list配置檔案有兩種用法:
黑名單:
userlist_enable=YES
userlist_deny=YES
白名單
userlist_enable=YES
userlist_deny=NO
連線限制:
max_clients: 最大併發連線數
max_per_ip: 每IP可同時發起併發請求
傳輸速率:
anon_max_rate: 匿名使用者的最大傳輸速率,單位是“位元組/秒”;
local_max_rate: 本地使用者……………………
上傳檔案的umask:
anno_umask: 匿名使用者上傳檔案的umask;
local_umask:
修改匿名使用者上傳檔案的屬主和屬組:
chown_uploads=YES
chown_username=someuser
虛擬使用者:
所有的虛擬使用者會對映會一個系統使用者,訪問時的檔案目錄是為此係統使用者的家目錄;
虛擬使用者:
hash編碼的檔案:
奇數行為使用者名稱,偶數行為密碼
關係型資料庫:
pam-mysql實現認證
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28572479/viewspace-2131982/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- PHPStorm 配置 FTPPHPORMFTP
- 配置ftp服務FTP
- FTP配置說明FTP
- UltraEdit FTP 配置方法FTP
- FTP原理與配置FTP
- FTP,FTP連線的辦法,配置方式FTP
- FTP,FTP該如何進行連線,如何配置FTP
- Ubuntu怎麼配置ftpUbuntuFTP
- AIX FTP服務配置AIFTP
- Linux RedHat ftp配置LinuxRedhatFTP
- FTP的配置和管理FTP
- LINUX FTP簡單配置LinuxFTP
- FTP服務(vsftpd)配置FTP
- linux FTP配置詳解LinuxFTP
- Linux伺服器---ftp配置Linux伺服器FTP
- rhel4的ftp的配置FTP
- solaris 10的ftp相關配置FTP
- linux ftp服務的搭建配置LinuxFTP
- Centos7上進行ftp配置CentOSFTP
- openwrt中SMB和FTP讀寫配置FTP
- Linux下ftp的安裝配置LinuxFTP
- ▲▲▲▲▲▲▲▲▲▲▲yum源的配置(本地和ftp)▲▲▲▲▲▲▲▲▲▲▲▲▲vFTP
- ftp上傳工具下載,ftp上傳工具下載使用教程,Linux如何配置ftp伺服器?FTPLinux伺服器
- Linux下FTP和TFTP服務配置LinuxFTP
- linux配置本地yum安裝--FTP yumLinuxFTP
- RedHat 9.0下配置FTP伺服器zzRedhatFTP伺服器
- 配置crontab+ftp自動下載檔案FTP
- CentOS7安裝配置vsftp搭建FTPCentOSFTP
- linux下開啟並配置FTP服務LinuxFTP
- Linux下啟動ftp及xdm配置(轉)LinuxFTP
- UltraEdit下ftp配置,UE遠端連線linuxFTPLinux
- CentOS.7下安裝配置FTP和SFTP服務CentOSFTP
- Win10開啟FTP與配置(完整無錯版)Win10FTP
- 北大FTP,除了北大FTP其他好用的FTP軟體FTP
- FTPFTP
- 教你如何在CentOS7系統中配置ftp服務CentOSFTP
- Ubuntu上ftp的vsftpd.conf檔案的配置UbuntuFTP
- linux雲伺服器系統FTP、apache、mysql配置方法Linux伺服器FTPApacheMySql