资料介绍
作者:llzqq
联系:llzqq@126.com
来自:www.chinaunix.net
在众多的FTP服务器中PROFTPD由于它的配置灵活,安装简便。近年来一直受到人们的喜爱。通常情况下FTP包括认证过程,传输是明文传输的,在传输一些敏感数据时总是不能让人放心。今天我在网上找了一些零散的资料结合自己的实作写了个帖子贡献给大家。
下载最新的软件版本:
# wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.0rc3.tar.gz
首先创建ROFTPD运行的用户和组:
# groupadd nogroup
# useradd –g nogroup –d /dev/null –s /sbin/nologin nobody
首先创建上传下载的用户和组:
# groupadd ftp
# useradd –g ftp –d /home/down –s /sbin/nologin down
# useradd –g ftp –d /home/upload –s /sbin/nologin upload
用户密码设置略
编译安装PROFRPD:
# tar –zxvf proftpd-1.3.0rc3.tar.gz
# cd proftpd-1.3.0rc3
# 。/configure
--prefix=/usr/local/proftpd
--sysconfdir=/etc
--enable-autoshadow
--localstatedir=/var/run
--enable-ctrls
--with-modules=mod_tls
# make
# make install
配置PROFTPD服务器:
# vi /etc/proftpd.conf
================+================+=================
# This is a basic ProFTPD configuration file (rename it to
# ‘proftpd.conf’ for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# “nobody” and “ftp” for normal operation and anon.
ServerName “llzqq”
ServerType standalone
DefaultServer on
AllowRetrieveRestart on
AllowStoreRestart on
ServerType standalone
ServerIdent on
SystemLog /var/log/proftpd.log
UseReverseDNS off
IdentLookups off
RequireValidShell off
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
MaxInstances 100
# Set the user and group under which the server will run.
User nobody
Group nogroup
# To cause every FTP user to be “jailed” (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~
# Normally, we want files to be overwriteable.
《Directory /》
AllowOverwrite on
《/Directory》
# We want ‘welcome.msg’ displayed at login, and ‘.message’ displayed
# in each newly chdired directory.
DisplayLogin .welcome
DisplayFirstChdir .message
# Limit User of being enbled login ftp server
《Limit LOGIN》
AllowGroup ftp
DenyAll
《/Limit》
#########################ssl/tls############################
# MOD_TLS SETTING
《IfModule mod_tls.c》
TLSEngine on
TLSLog /var/log/proftpd-tls.log
TLSProtocol SSLv23
# Are clients required to use FTP over TLS when talking to this server?
TLSRequired ctrl
# Server‘s certificate
TLSRSACertificateFile /etc/proftpd.crt
TLSRSACertificateKeyFile /etc/proftpd.key
# Authenticate clients that want to use FTP over TLS
TLSVerifyClient off
#########################ssl/tls############################
《Directory /home/down》
《Limit WRITE》
DenyGroup ftp
《/Limit》
TransferRate RETR 150 group ftp
《/Directory》
《Directory /home/upload》
《Limit RMD RNFR DELE RETR》
DenyGroup ftp
《/Limit》
TransferRate STOR 150 group ftp
《/Directory》
MaxClientsPerHost 200
PassivePorts 55000 56000
================+================+=================
创建PROFTPD的日志文件:
# touch /var/log/proftpd.log
# touch /var/log/proftpd-tls.log
# chown nobody:nogroup /var/log/proftpd.log /var/log/proftpd-tls.log
创建SSL传输的证书和密匙:
# cp /usr/share/ssl/openssl.cnf 。/
# openssl req -new -x509 -nodes -config openssl.cnf -out proftpd.crt –keyout proftpd.key
这里安装提示需要输入证书信息略
把证书和密匙复制到指定目录:
# cp proftpd.crt proftpd.key /etc/
最后创建PROFTPD启动教本:
# vi /etc/init.d/proftpd
================+================+=================
#!/bin/sh
# Startup script for ProFTPD
# chkconfig: 345 85 15
# description: ProFTPD is an enhanced FTP server
# processname: proftpd
# config: /etc/proftpd.conf
# Source function library.
。 /etc/rc.d/init.d/functions
if [ -f /etc/sysconfig/proftpd ]; then
。 /etc/sysconfig/proftpd
fi
PATH=“$PATH:/usr/local/proftpd/sbin”
# See how we were called.
case “$1” in
start)
echo -n “Starting proftpd: ”
daemon proftpd $OPTIONS
echo
touch /var/lock/subsys/proftpd
;;
stop)
echo -n “Shutting down proftpd: ”
killproc proftpd
echo
rm -f /var/lock/subsys/proftpd
;;
status)
status proftpd
;;
restart)
$0 stop
$0 start
;;
reread)
echo -n “Re-reading proftpd config: ”
killproc proftpd -HUP
echo
;;
suspend)
hash ftpshut 》/dev/null 2》&1
if [ $? = 0 ]; then
if [ $# -gt 1 ]; then
shift
echo -n “Suspending with ’$*‘ ”
ftpshut $*
else
echo -n “Suspending NOW ”
ftpshut now “Maintanance in progress”
fi
else
echo -n “No way to suspend ”
fi
echo
;;
resume)
if [ -f /etc/shutmsg ]; then
echo -n “Allowing sessions again ”
rm -f /etc/shutmsg
else
echo -n “Was not suspended ”
fi
echo
;;
*)
echo -n “Usage: $0 {start|stop|restart|status|reread|resume”
hash ftpshut
if [ $? = 1 ]; then
echo ’}‘
else
echo ’|suspend}‘
echo ’suspend accepts additional arguments which are passed to ftpshut(8)‘
fi
exit 1
esac
if [ $# -gt 1 ]; then
shift
$0 $*
fi
exit 0
================+================+=================
# chomd 755 /etc/init.d/proftpd
# chkconfig –-add proftpd
# chkconfig proftpd on
到这里ftp服务器端安装设置完毕,登陆服务器的客户端我用了完全免费的FileZilla(前两天网上看到说FileZilla支持SSL不错)。FileZilla的设置也比较简单。本服务器支持两种客户端加密连接方式:
1. FTP over ssl (显示加密)方式连接。
2. FTP over tls (显示加密) 方式连接
联系:llzqq@126.com
来自:www.chinaunix.net
在众多的FTP服务器中PROFTPD由于它的配置灵活,安装简便。近年来一直受到人们的喜爱。通常情况下FTP包括认证过程,传输是明文传输的,在传输一些敏感数据时总是不能让人放心。今天我在网上找了一些零散的资料结合自己的实作写了个帖子贡献给大家。
下载最新的软件版本:
# wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.0rc3.tar.gz
首先创建ROFTPD运行的用户和组:
# groupadd nogroup
# useradd –g nogroup –d /dev/null –s /sbin/nologin nobody
首先创建上传下载的用户和组:
# groupadd ftp
# useradd –g ftp –d /home/down –s /sbin/nologin down
# useradd –g ftp –d /home/upload –s /sbin/nologin upload
用户密码设置略
编译安装PROFRPD:
# tar –zxvf proftpd-1.3.0rc3.tar.gz
# cd proftpd-1.3.0rc3
# 。/configure
--prefix=/usr/local/proftpd
--sysconfdir=/etc
--enable-autoshadow
--localstatedir=/var/run
--enable-ctrls
--with-modules=mod_tls
# make
# make install
配置PROFTPD服务器:
# vi /etc/proftpd.conf
================+================+=================
# This is a basic ProFTPD configuration file (rename it to
# ‘proftpd.conf’ for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# “nobody” and “ftp” for normal operation and anon.
ServerName “llzqq”
ServerType standalone
DefaultServer on
AllowRetrieveRestart on
AllowStoreRestart on
ServerType standalone
ServerIdent on
SystemLog /var/log/proftpd.log
UseReverseDNS off
IdentLookups off
RequireValidShell off
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
MaxInstances 100
# Set the user and group under which the server will run.
User nobody
Group nogroup
# To cause every FTP user to be “jailed” (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~
# Normally, we want files to be overwriteable.
《Directory /》
AllowOverwrite on
《/Directory》
# We want ‘welcome.msg’ displayed at login, and ‘.message’ displayed
# in each newly chdired directory.
DisplayLogin .welcome
DisplayFirstChdir .message
# Limit User of being enbled login ftp server
《Limit LOGIN》
AllowGroup ftp
DenyAll
《/Limit》
#########################ssl/tls############################
# MOD_TLS SETTING
《IfModule mod_tls.c》
TLSEngine on
TLSLog /var/log/proftpd-tls.log
TLSProtocol SSLv23
# Are clients required to use FTP over TLS when talking to this server?
TLSRequired ctrl
# Server‘s certificate
TLSRSACertificateFile /etc/proftpd.crt
TLSRSACertificateKeyFile /etc/proftpd.key
# Authenticate clients that want to use FTP over TLS
TLSVerifyClient off
#########################ssl/tls############################
《Directory /home/down》
《Limit WRITE》
DenyGroup ftp
《/Limit》
TransferRate RETR 150 group ftp
《/Directory》
《Directory /home/upload》
《Limit RMD RNFR DELE RETR》
DenyGroup ftp
《/Limit》
TransferRate STOR 150 group ftp
《/Directory》
MaxClientsPerHost 200
PassivePorts 55000 56000
================+================+=================
创建PROFTPD的日志文件:
# touch /var/log/proftpd.log
# touch /var/log/proftpd-tls.log
# chown nobody:nogroup /var/log/proftpd.log /var/log/proftpd-tls.log
创建SSL传输的证书和密匙:
# cp /usr/share/ssl/openssl.cnf 。/
# openssl req -new -x509 -nodes -config openssl.cnf -out proftpd.crt –keyout proftpd.key
这里安装提示需要输入证书信息略
把证书和密匙复制到指定目录:
# cp proftpd.crt proftpd.key /etc/
最后创建PROFTPD启动教本:
# vi /etc/init.d/proftpd
================+================+=================
#!/bin/sh
# Startup script for ProFTPD
# chkconfig: 345 85 15
# description: ProFTPD is an enhanced FTP server
# processname: proftpd
# config: /etc/proftpd.conf
# Source function library.
。 /etc/rc.d/init.d/functions
if [ -f /etc/sysconfig/proftpd ]; then
。 /etc/sysconfig/proftpd
fi
PATH=“$PATH:/usr/local/proftpd/sbin”
# See how we were called.
case “$1” in
start)
echo -n “Starting proftpd: ”
daemon proftpd $OPTIONS
echo
touch /var/lock/subsys/proftpd
;;
stop)
echo -n “Shutting down proftpd: ”
killproc proftpd
echo
rm -f /var/lock/subsys/proftpd
;;
status)
status proftpd
;;
restart)
$0 stop
$0 start
;;
reread)
echo -n “Re-reading proftpd config: ”
killproc proftpd -HUP
echo
;;
suspend)
hash ftpshut 》/dev/null 2》&1
if [ $? = 0 ]; then
if [ $# -gt 1 ]; then
shift
echo -n “Suspending with ’$*‘ ”
ftpshut $*
else
echo -n “Suspending NOW ”
ftpshut now “Maintanance in progress”
fi
else
echo -n “No way to suspend ”
fi
echo
;;
resume)
if [ -f /etc/shutmsg ]; then
echo -n “Allowing sessions again ”
rm -f /etc/shutmsg
else
echo -n “Was not suspended ”
fi
echo
;;
*)
echo -n “Usage: $0 {start|stop|restart|status|reread|resume”
hash ftpshut
if [ $? = 1 ]; then
echo ’}‘
else
echo ’|suspend}‘
echo ’suspend accepts additional arguments which are passed to ftpshut(8)‘
fi
exit 1
esac
if [ $# -gt 1 ]; then
shift
$0 $*
fi
exit 0
================+================+=================
# chomd 755 /etc/init.d/proftpd
# chkconfig –-add proftpd
# chkconfig proftpd on
到这里ftp服务器端安装设置完毕,登陆服务器的客户端我用了完全免费的FileZilla(前两天网上看到说FileZilla支持SSL不错)。FileZilla的设置也比较简单。本服务器支持两种客户端加密连接方式:
1. FTP over ssl (显示加密)方式连接。
2. FTP over tls (显示加密) 方式连接
下载该资料的人也在下载
下载该资料的人还在阅读
更多 >
- 嵌入式linux下ftp服务移植
- 无线充电技术(四种主要方式)原理与应用实例图文详解.
- 基于C4.5决策树的HTTPS协议加密流量分类 7次下载
- 图文详解:无刷电机的绕制和接线方法 128次下载
- Linux系统中EXP命令详解质量汇总 1次下载
- 图文详解:从零开始学电源资源下载 87次下载
- LINUX系统教程之如何在Linux系统下进行编程 9次下载
- 如何在Altium Designer上面建立自己的3D库 0次下载
- 如何在Win7与linux双系统时卸载linux详细方法概述 21次下载
- Linux教程之文件传输FTP的工作原理和FTP的安装与配置方法 15次下载
- 一种新的联合SFBC编码的物理层加密传输方案 0次下载
- 《Linux设备驱动开发详解》第5章、Linux文件系统与设备文件系统 0次下载
- IBM X40拆机图文详解 0次下载
- 基于Linux系统的FTP服务器的实现 39次下载
- 基于c/s结构的公安综合移动警务系统的混合加密方案
- 如何在Linux中使用htop命令 1329次阅读
- 如何在 Linux 上查看本地 DNS 缓存 3134次阅读
- Linux上建立SSH安全连接的10种方法 5884次阅读
- Windows系统中的FTP客户端如何与FTP服务器下载或者上传文件 8165次阅读
- 如何配置FTP服务器 2301次阅读
- 如何在Linux使用pidof命令 2125次阅读
- 如何在Ubuntu 20.04安装和配置FTP服务器 4446次阅读
- 如何在Linux系统下开启wifi 4300次阅读
- 图文详解:C++的输出输入 3286次阅读
- FTP与SFTP有什么不同 1.3w次阅读
- zynq linux AXI DMA传输步骤教程详解 3w次阅读
- 供电系统电气图识图使用图文详解 1.9w次阅读
- 接收卡升级的详细说明概述图文详解 2.3w次阅读
- tea2025b功放电路图文详解 14.7w次阅读
- SOC的高速数据流加密传输的方法实现 860次阅读
下载排行
本周
- 1TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 2开关电源基础知识
- 5.73 MB | 6次下载 | 免费
- 3100W短波放大电路图
- 0.05 MB | 4次下载 | 3 积分
- 4嵌入式linux-聊天程序设计
- 0.60 MB | 3次下载 | 免费
- 5基于FPGA的光纤通信系统的设计与实现
- 0.61 MB | 2次下载 | 免费
- 6基于FPGA的C8051F单片机开发板设计
- 0.70 MB | 2次下载 | 免费
- 751单片机窗帘控制器仿真程序
- 1.93 MB | 2次下载 | 免费
- 8基于51单片机的RGB调色灯程序仿真
- 0.86 MB | 2次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33564次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21548次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6653次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537796次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420026次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191185次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183278次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多