免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6989 | 回复: 9
打印 上一主题 下一主题

请问如何在HP-UX上建立一个FTP账号,只能访问FTP用户自己的目录 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-08 10:43 |只看该作者 |倒序浏览
请问如何在HP-UX上建立一个FTP账号,只能访问FTP用户自己的目录。
网上查了一个帖子需要装软件,麻烦。
有其它好的办法么?
谢谢

论坛徽章:
0
2 [报告]
发表于 2009-07-13 11:17 |只看该作者
没有人回答吗,我也在等结果,期待能人的帮助!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
3 [报告]
发表于 2009-07-17 21:52 |只看该作者
做这个最好是借助pro-ftpd等第三方软件实现,操作系统自带的比较麻烦

论坛徽章:
0
4 [报告]
发表于 2009-12-10 17:25 |只看该作者
google一下

论坛徽章:
0
5 [报告]
发表于 2009-12-10 18:04 |只看该作者
man ftpd

论坛徽章:
0
6 [报告]
发表于 2009-12-11 00:05 |只看该作者
老问题,搜一下,论坛里讲过多次

论坛徽章:
0
7 [报告]
发表于 2010-01-03 11:11 |只看该作者
我只是想了解,mac上的软件的获得途径

论坛徽章:
0
8 [报告]
发表于 2010-01-04 16:23 |只看该作者
请问楼主这个问题是怎么解决的呀,我也想在小机上建个FTP.

论坛徽章:
0
9 [报告]
发表于 2010-01-08 15:41 |只看该作者

回复 #1 lsnow8624 的帖子

哥们这个问题可以解决。你可以试试这个方法:(假设要建立的用户名为ftp01)
1.在/etc/passwd下建立ftp条目,注意他的主目录的写法:
ftp01:Aci$xi:555:555:ftp user for chroot:/home/ftp01/./:/bin/ksh
(确信/etc/shells中有/bin/ksh,否则请加上,密码由你自己决定 )
2.在/etc/passwd中建立相应的组ftp01
ftp01::555:ftp01
3. 建立/home/ftp01以及相应的目录(主要是~ftp/usr/bin和~/ftp/etc)
#mkdir /home/ftp01
#chown ftp01:ftp01 /home/ftp01
#su - ftp01
$pwd                                                              (make sure it is under /home/ftp01 )
$mkdir -p usr/bin
$cp /sbin/ls usr/bin ; cp /bin/pwd  usr/bin
$mkdir etc
$cp /etc/passwd etc ; cp /etc/group etc (为了安全,你需要修改passwd中
不必要的项,如root)
4。编辑/etc/inetd.conf
确信ftp的那一行是这样写的:
ftp stream tcp nowait root /usr/lbin/ftpd ftp -l -a (一定要加上 -a 这
个参数)
5。重新初始化inetd : 执行: inetd -c
6。产生相应的ftpaccess/ftpgroups文件
#cd /etc/ftpd
#touch ftpgroups
#vi ftpaccess //这个文件的内容大致如下:
-=-=-=-=-= Cut Here =-=-=-=-=-
class all real,guest,anonymous *

# Define the line that limits the ftponly group to their own directories

# in the ftp-root heirarchy.
guestgroup ftp01 //这里要和你的组ftpt01一致。

email xmli@szdhd.sz.lucent.com //这里用你自己的email地址

loginfails 5

readme README* login
readme README* cwd=*

message /welcome.msg login
message .message cwd=*

compress yes all
tar yes all
chmod no guest,anonymous
delete no guest,anonymous
overwrite no guest,anonymous
rename no guest,anonymous

log transfers anonymous,real inbound,outbound

shutdown /etc/shutmsg

passwd-check rfc822 warn
7. 配置完成,可以测试一下。

论坛徽章:
0
10 [报告]
发表于 2010-01-08 15:41 |只看该作者

回复 #1 lsnow8624 的帖子

哥们这个问题可以解决。你可以试试这个方法:(假设要建立的用户名为ftp01)
1.在/etc/passwd下建立ftp条目,注意他的主目录的写法:
ftp01:Aci$xi:555:555:ftp user for chroot:/home/ftp01/./:/bin/ksh
(确信/etc/shells中有/bin/ksh,否则请加上,密码由你自己决定 )
2.在/etc/passwd中建立相应的组ftp01
ftp01::555:ftp01
3. 建立/home/ftp01以及相应的目录(主要是~ftp/usr/bin和~/ftp/etc)
#mkdir /home/ftp01
#chown ftp01:ftp01 /home/ftp01
#su - ftp01
$pwd                                                              (make sure it is under /home/ftp01 )
$mkdir -p usr/bin
$cp /sbin/ls usr/bin ; cp /bin/pwd  usr/bin
$mkdir etc
$cp /etc/passwd etc ; cp /etc/group etc (为了安全,你需要修改passwd中
不必要的项,如root)
4。编辑/etc/inetd.conf
确信ftp的那一行是这样写的:
ftp stream tcp nowait root /usr/lbin/ftpd ftp -l -a (一定要加上 -a 这
个参数)
5。重新初始化inetd : 执行: inetd -c
6。产生相应的ftpaccess/ftpgroups文件
#cd /etc/ftpd
#touch ftpgroups
#vi ftpaccess //这个文件的内容大致如下:
-=-=-=-=-= Cut Here =-=-=-=-=-
class all real,guest,anonymous *

# Define the line that limits the ftponly group to their own directories

# in the ftp-root heirarchy.
guestgroup ftp01 //这里要和你的组ftpt01一致。

email xmli@szdhd.sz.lucent.com //这里用你自己的email地址

loginfails 5

readme README* login
readme README* cwd=*

message /welcome.msg login
message .message cwd=*

compress yes all
tar yes all
chmod no guest,anonymous
delete no guest,anonymous
overwrite no guest,anonymous
rename no guest,anonymous

log transfers anonymous,real inbound,outbound

shutdown /etc/shutmsg

passwd-check rfc822 warn
7. 配置完成,可以测试一下。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP