亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 1090 | 回復: 3
打印 上一主題 下一主題

中文linux資料大全 [復制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報告]
發(fā)表于 2006-11-19 16:23 |只看該作者 |倒序瀏覽
http://100800.vicp.net

[ 本帖最后由 gsbo 于 2007-4-9 01:59 編輯 ]

論壇徽章:
0
2 [報告]
發(fā)表于 2006-11-19 16:42 |只看該作者
樓主,你的ftp無法打開,http是好的!

論壇徽章:
0
3 [報告]
發(fā)表于 2006-11-19 16:43 |只看該作者
有個perl5教程不錯,謝謝樓主!

論壇徽章:
0
4 [報告]
發(fā)表于 2006-11-19 17:44 |只看該作者
系統(tǒng)已更改,以下內(nèi)容與現(xiàn)用系統(tǒng)無關!FTP 功能已關閉!


# 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       "Ftp Default Server"
#ServerIdent                        on "FTP Server ready."
#ServerAdmin                        root@localhost
#Set the mode proftpd runs in
ServerType                        standalone
# Set the default server
DefaultServer                        on
#AccessGrantMsg                        "User %u logged in."

#Set the file to display on login
DisplayLogin                        .ftpmotd
#Set the file to display on quit
DisplayQuit                     .ftpgoaway
#Don't show welcome message until user has authenticated
DeferWelcome                        off

#allow root to login
RootLogin   On

#Sets default chroot directory
DefaultRoot     ~

# Use this to excude users from the chroot
DefaultChdir                   /

# Use pam to authenticate by default
AuthPAMAuthoritative                on

# Do not perform ident nor DNS lookups (hangs when the port is filtered)
IdentLookups                        off
UseReverseDNS                        off

# Sets the idle connection timeout,Setting TimeoutIdle to 0 disables the idle timer completely
TimeoutIdle       120

# 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

# Default to show dot files in directory listings
ListOptions                "-a"

#Limits the connections per client machine
MaxClientsPerHost       10

# Allow to resume not only the downloads but the uploads too
AllowRetrieveRestart                on
AllowStoreRestart                on


# This is where we want to put the pid file
ScoreboardFile                  /var/proftpd.pid

# 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).
MaxInstances                        30

# Set the user and group that the server normally runs at.
User                                nobody
Group                                nobody


<Global>
AllowOverwrite                yes
<Limit ALL SITE_CHMOD>
    AllowAll
</Limit>
</Global>


# Limit WRITE everywhere in the anonymous chroot, allow READ everywhere
<Limit READ>
   AllowAll
</Limit>
<Limit STOR>
    DenyAll
</Limit>  

#allow login from all ip address
<Limit LOGIN>
Order   Deny,Allow
Allow from    all
</Limit>       

# Limit the maximum number of anonymous logins
MaxClients       100   "Sorry, max %m users -- try again later"

# Logging options
TransferLog                     /var/spool/syslog/proftpd/xferlog.legacy
# Some logging formats
LogFormat                         default "%h %l %u %t \"%r\" %s %b"
LogFormat                       auth    "%v [%P] %h %t \"%r\" %s"
LogFormat                       write   "%h %l %u %t \"%r\" %s %b"


# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp>
User   ftp
Group  ftp
UserAlias  anonymous  ftp
DirFakeUser                        on ftpadm
DirFakeGroup                        on ftpadm
AccessGrantMsg                "Anonymous login ok, restrictions apply."

# Put the user into / right after login
DefaultChdir                        /

DisplayLogin                        /.ftpmotd
DisplayQuit                 /.ftpgoaway
DisplayReadme                        README*

# Limit WRITE everywhere in the anonymous chroot, allow READ everywhere
<Limit READ>
   AllowAll
</Limit>
<Limit STOR>
   AllowAll
</Limit>  

# An upload directory that allows storing files but not retrieving
# or creating directories.
<Directory uploads>
AllowOverwrite no
<Limit READ>
      DenyAll
</Limit>
<Limit STOR>
      AllowAll
</Limit>
<Limit CWD>
Order   Deny,Allow  
Allow from    all
</Limit>
</Directory>

# Don't write anonymous accesses to the system wtmp file (good idea!)
WtmpLog                        off
# Loggin for the anonymous transfers
ExtendedLog                /var/log/proftpd/access.log WRITE,READ default
ExtendedLog                /var/log/proftpd/auth.log AUTH auth

</Anonymous>
<VirtualHost       192.168.100.102>
ServerName  "linux"
Port 21
DisplayLogin  .ftpmotd
DisplayQuit   .ftpgoaway
MaxClients 100 "Sorry, max %m users -- try again later"
MaxClientsPerHost 10
DefaultRoot /var/ftp
<Limit READ>
AllowAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
<Limit LOGIN>
Order Deny,Allow
Allow from all
</Limit>
<Anonymous ~ftp>
User ftp
Group ftp
UserAlias anonymous ftp
dirFakeUser  on ftpadm
dirFakeGroup  on ftpadm
DisplayLogin  .ftpmotd
DisplayQuit   .ftpgoaway
<Limit READ>
AllowAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Anonymous>
</VirtualHost>

這是FTP服務器的配置文件
實在是不明白為什么有的客戶端不能登錄。

[ 本帖最后由 gsbo 于 2007-4-9 02:02 編輯 ]
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復

  

北京盛拓優(yōu)訊信息技術有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP