LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 640|回复: 3

可以用ftp://127.0.0.1访问自己的匿名FTP,而用ftp://gentoo-china.3322.org却不行

[复制链接]
发表于 2003-11-22 19:56:36 | 显示全部楼层 |阅读模式
# 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          "Debentoo Gao's FTP"
ServerType          standalone
DefaultServer       on
RequireValidShell   off
AuthPAM             off
AuthPAMConfig       ftp
# Port 21 is the standard FTP port.
Port21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask022

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances30

# Set the user and group under which the server will run.
Userproftpd
Groupproftpd

# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwriteon
</Directory>

# A basic anonymous configuration, no upload directories.
<Anonymous /var/www/localhost/htdocs/mysite1>
  Userftp
  Groupftp

  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAliasanonymous ftp

  # Limit the maximum number of anonymous logins
  MaxClients10

  # We want 'welcome.msg' displayed at login, and '.message' displayed
  # in each newly chdired directory.
  DisplayLoginwelcome.msg
  DisplayFirstChdir.message

  # Limit WRITE everywhere in the anonymous chroot
  <Limit WRITE>
    DenyAll
  </Limit>

</Anonymous>

以上是我的proftpd.conf,请兄弟们帮忙看看改怎么改?谢谢
发表于 2003-11-22 22:45:33 | 显示全部楼层
1。先确定你的网络环境,端口是否对外开放
2。如果是内网,试一下ftp://192.168.1.X。尝试修改/etc/hosts.allow(in.proftpd:ALL(proftpd没用过,请用过的兄弟验证一下))
3。NAT映射端口到动态IP,(谁会Iptables帮忙写上一条,我一直使用modem的nat功能)
4。在NAT方式下,你是无法在内网访问你的动态服务器的,通常可以挂代理验证,或者请网外的朋友帮忙连接
FTp站长必读
http://www.comexe.cn/helpsiteftpbase.php
发表于 2003-11-23 12:17:37 | 显示全部楼层
iptables -A INPUT --dport 21 -j ACCEPT
iptables -A FORWARD --dport 21 -j ACCEPT
还有 PING一下你的gentoo-china.3322.org 是你的ip吗
 楼主| 发表于 2003-11-23 17:28:11 | 显示全部楼层
我用的是公网IP啊,IPTables我系统根本没有安装
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表