当前位置: 操作系统/服务器>linux
本页文章导读:
▪WordPress在window2003 IIS ISAPI ReWrite下的URL规则
为了便于搜索引擎抓取(换句话就是假静态),下面是URL ReWrite的规则,效果看我的chinadigger的链接地址。我目前的Rewrite规则: 代码如下:[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 Repea.........
▪Validation of viewstate MAC failed.的解决方法
办法:页面的顶部page加 EnableViewState="False" EnableViewStateMac = "False" 来解决这个问题根据框架的提示如下: Server Error in '/' Application. ------------------------------------------------------------------------.........
▪用Serv-U架设FTP服务器的方法与设置方法
Serv-U是一种被广泛运用的FTP服务器端软件,支持Windows 9x/2000/XP操作系统。它安装简单,功能强大,可以用同一个IP设定多个FTP服务器、限定登录用户的权限、登录主目录及空间大小、支持远.........
[1]WordPress在window2003 IIS ISAPI ReWrite下的URL规则
来源: 互联网 发布时间: 2013-12-24
为了便于搜索引擎抓取(换句话就是假静态),下面是URL ReWrite的规则,效果看我的chinadigger的链接地址。我目前的Rewrite规则:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# WordPress rewrite rules#
RewriteRule /tag/(.*)/ /index\.php\?tag=$1
RewriteRule /(about-me|about-copyright|guest-book)/ /index\.php\?pagename=$1
RewriteRule /author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?author_name=$1&feed=$2
RewriteRule /author/?(.*) /index\.php\?author_name=$1
RewriteRule /feed/?$ /wp-feed\.php/\?feed=rss2
RewriteRule /comments/feed/?$ /wp-feed\.php/\?feed=comments-rss2
RewriteRule /page/(.*)/ /index\.php\?paged=$1
RewriteRule /photo/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?$ /wp-content/plugins/fgallery/fim_photos\.php\?$1=$2&$3=$4 [QSA,L,I]
RewriteRule /photo/?(.*) /wp-content/plugins/fgallery/fim_photos\.php\?$1=$2&$3=$4 [QSA,L,I]
# /%year%%monthnum%%day%/%postname%/
RewriteRule /category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?category_name=$1&feed=$2
RewriteRule /category/?(.*)/ /index\.php\?category_name=$1
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /index\.php\?year=$1&monthnum=$2&day=$3&name=$4&page=$5
RewriteRule /([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&day=$3&page=$4
RewriteRule /([0-9]{4})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&page=$3
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index\.php\?year=$1&monthn&day=$3&name=$4&feed=$5
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/trackback/?$ /wp-trackback\.php\?year=$1&monthnum=$2&day=$3&name=$4&tb=1
# /post/%post_id%.html
RewriteRule /([0-9]+)/?([0-9]+)?/?$ /index\.php\?p=$1&page=$2
# RewriteRule /post/([0-9]+)/?([0-9]+)?/?$ /index\.php\?p=$1&page=$2
RewriteRule /post/([0-9]+).html /index\.php\?p=$1 [I]
RewriteRule /post/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?category_name=$1&feed=$2
RewriteRule /post/category/?(.*)/ /index\.php\?category_name=$1
RewriteRule /post/date/([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /index\.php\?year=$1&monthnum=$2&day=$3&name=$4&page=$5
RewriteRule /post/date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&day=$3&page=$4
RewriteRule /post/date/([0-9]{4})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&page=$3
使用方法(将Wordpres安装在根目录)
去discuz.net的论坛下载Rewrite的压缩包,然后按照安装方法在IIS里面配置好Rewrite,用上面的规则覆盖httpd.ini中原来的内容,再到wordpress的后台,将选项的永久链接部分,使用自定义,然后在框框里面填写上面粗体部分的内容(两种选一种,其中# /post/%post_id%.html还不太完善),即可。
本文引用bluefeel所写的规则。原文中TAG编写有问题,我已经更改完毕,大家要注意写法,否则会影响其他IIS站点目录。
代码如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# WordPress rewrite rules#
RewriteRule /tag/(.*)/ /index\.php\?tag=$1
RewriteRule /(about-me|about-copyright|guest-book)/ /index\.php\?pagename=$1
RewriteRule /author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?author_name=$1&feed=$2
RewriteRule /author/?(.*) /index\.php\?author_name=$1
RewriteRule /feed/?$ /wp-feed\.php/\?feed=rss2
RewriteRule /comments/feed/?$ /wp-feed\.php/\?feed=comments-rss2
RewriteRule /page/(.*)/ /index\.php\?paged=$1
RewriteRule /photo/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?$ /wp-content/plugins/fgallery/fim_photos\.php\?$1=$2&$3=$4 [QSA,L,I]
RewriteRule /photo/?(.*) /wp-content/plugins/fgallery/fim_photos\.php\?$1=$2&$3=$4 [QSA,L,I]
# /%year%%monthnum%%day%/%postname%/
RewriteRule /category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?category_name=$1&feed=$2
RewriteRule /category/?(.*)/ /index\.php\?category_name=$1
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /index\.php\?year=$1&monthnum=$2&day=$3&name=$4&page=$5
RewriteRule /([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&day=$3&page=$4
RewriteRule /([0-9]{4})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&page=$3
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index\.php\?year=$1&monthn&day=$3&name=$4&feed=$5
RewriteRule /([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/trackback/?$ /wp-trackback\.php\?year=$1&monthnum=$2&day=$3&name=$4&tb=1
# /post/%post_id%.html
RewriteRule /([0-9]+)/?([0-9]+)?/?$ /index\.php\?p=$1&page=$2
# RewriteRule /post/([0-9]+)/?([0-9]+)?/?$ /index\.php\?p=$1&page=$2
RewriteRule /post/([0-9]+).html /index\.php\?p=$1 [I]
RewriteRule /post/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed\.php\?category_name=$1&feed=$2
RewriteRule /post/category/?(.*)/ /index\.php\?category_name=$1
RewriteRule /post/date/([0-9]{4})([0-9]{1,2})([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /index\.php\?year=$1&monthnum=$2&day=$3&name=$4&page=$5
RewriteRule /post/date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&day=$3&page=$4
RewriteRule /post/date/([0-9]{4})/([0-9]{1,2})/?$ /index\.php\?year=$1&monthnum=$2&page=$3
使用方法(将Wordpres安装在根目录)
去discuz.net的论坛下载Rewrite的压缩包,然后按照安装方法在IIS里面配置好Rewrite,用上面的规则覆盖httpd.ini中原来的内容,再到wordpress的后台,将选项的永久链接部分,使用自定义,然后在框框里面填写上面粗体部分的内容(两种选一种,其中# /post/%post_id%.html还不太完善),即可。
本文引用bluefeel所写的规则。原文中TAG编写有问题,我已经更改完毕,大家要注意写法,否则会影响其他IIS站点目录。
[2]Validation of viewstate MAC failed.的解决方法
来源: 互联网 发布时间: 2013-12-24
办法:页面的顶部page加 EnableViewState="False" EnableViewStateMac = "False" 来解决这个问题
根据框架的提示如下:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
Source Error:
[No relevant source lines]
Source File: h:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\df4db950\a034e6a\App_Web_o9fr0nmx.18.cs Line: 0
Stack Trace:
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKeySection.GetDecodedData(Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Int32& dataLength) +2546780
System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) +214
[ViewStateException: Invalid viewstate.
Client IP: 202.119.199.112
Port: 1242
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)
ViewState: /wEPDwUJNTM4MjQxOTkxZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAQUMSW1hZ2VCdXR0b24xjUihQtAeI0cDU56BxkYGL8w1G/4=
Referer: http://download.cumt.edu.cn/Admin/login.aspx
Path: /Admin/login.aspx]
[HttpException (0x80004005): Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.]
System.Web.UI.ViewStateException.ThrowError(Exception inner, String persistedState, String errorPageMessage, Boolean macValidationError) +116
System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) +251
System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter.Deserialize(String serializedState) +4
System.Web.UI.Util.DeserializeWithAssert(IStateFormatter formatter, String serializedState) +37
System.Web.UI.HiddenFieldPageStatePersister.Load() +220
System.Web.UI.Page.LoadPageStateFromPersistenceMedium() +83
System.Web.UI.Page.LoadAllState() +35
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6953
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +154
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
ASP.admin_login_aspx.ProcessRequest(HttpContext context) in h:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\df4db950\a034e6a\App_Web_o9fr0nmx.18.cs:0
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +154
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
在使用了网上的EnableViewStateMac="false"后,
具体的问题就是保存不了session,修改了web.config里的配置还是一样的,后来还是没解决,只好还原了iis,
还是有问题,
根据框架的提示如下:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
Source Error:
[No relevant source lines]
Source File: h:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\df4db950\a034e6a\App_Web_o9fr0nmx.18.cs Line: 0
Stack Trace:
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKeySection.GetDecodedData(Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Int32& dataLength) +2546780
System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) +214
[ViewStateException: Invalid viewstate.
Client IP: 202.119.199.112
Port: 1242
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)
ViewState: /wEPDwUJNTM4MjQxOTkxZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAQUMSW1hZ2VCdXR0b24xjUihQtAeI0cDU56BxkYGL8w1G/4=
Referer: http://download.cumt.edu.cn/Admin/login.aspx
Path: /Admin/login.aspx]
[HttpException (0x80004005): Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.]
System.Web.UI.ViewStateException.ThrowError(Exception inner, String persistedState, String errorPageMessage, Boolean macValidationError) +116
System.Web.UI.ObjectStateFormatter.Deserialize(String inputString) +251
System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter.Deserialize(String serializedState) +4
System.Web.UI.Util.DeserializeWithAssert(IStateFormatter formatter, String serializedState) +37
System.Web.UI.HiddenFieldPageStatePersister.Load() +220
System.Web.UI.Page.LoadPageStateFromPersistenceMedium() +83
System.Web.UI.Page.LoadAllState() +35
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6953
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +154
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
ASP.admin_login_aspx.ProcessRequest(HttpContext context) in h:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\df4db950\a034e6a\App_Web_o9fr0nmx.18.cs:0
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +154
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
在使用了网上的EnableViewStateMac="false"后,
具体的问题就是保存不了session,修改了web.config里的配置还是一样的,后来还是没解决,只好还原了iis,
还是有问题,
[3]用Serv-U架设FTP服务器的方法与设置方法
来源: 互联网 发布时间: 2013-12-24
Serv-U是一种被广泛运用的FTP服务器端软件,支持Windows 9x/2000/XP操作系统。它安装简单,功能强大,可以用同一个IP设定多个FTP服务器、限定登录用户的权限、登录主目录及空间大小、支持远程登录管理等。
1.安装Serv-U
Serv-U的安装相当还简单,你只需双击下载来的安装文件文件,按照提示一路点击“NEXT”按钮即可轻松完成。
注意:在选择安装目录时,最好选择安装在一个非系统盘里,以免将来系统发生异常时还要重新进行账号等的设置。
2.设置Serv-U
Serv-U在第一次运行时会以向导的方式一步一步地提示用户进行设置。下面,我们分别加以说明:
“您的IP地址”:如果你采用的是ADSL等方式拨号上网,拥有的是动态IP或者不知道本机IP,此处请留空。
“域名”:就是该FTP站点的名称,可以随意取名。例如,Myftp。
“匿名账号”:决定该FTP站点是否允许匿名用户访问。选择“是”选项。
“匿名主目录”:设置匿名用户登录站点后所处的目录位置。输入“C:\Ftp”。
“锁定于主目录”:假设在“匿名主目录”中设置匿名用户登录后所处的目录位置为“C:\Ftp\Guest”,那么,选择“是”后,当匿名用户登录FTP后,就被锁定在C:\Ftp\Guest目录下,只能查看Guest目录里的内容,不能进入上级目录“Ftp”,同时该目录在FTP客户端软件中显示为“\”,如果未被锁定,则会完整显示为“C:\Ftp\Guest”。这里选择“是”。
“命名的账号”:决定是否要创建有一定管理权限的账户。这里选择“是”。
“账号名称”:就是具有一定管理权限的账户登录名称。
“账号密码”:设置账户的登录密码。
“主目录”:与“匿名主目录”一样,用来设置管理账户登录后所处的目录位置。输入“C:\Ftp”。
“锁定于主目录”:选择“是”。
“管理员权限”:用来设置管理账户的管理权限级别。这里选择“无权限”。
提示:以上这些设置并非最终设定,你还可以在Serv-U主界面中随时修改。
3.用同一个IP架设多个FTP服务器
如果带宽允许,你还可利用同一个IP轻松架设多个服务器。在Serv-U中,将“本地服务器”下“域”中的每个FTP服务器称为“域”,我们上面创建的FTP服务器就是一个名叫“MyFtp”的域。要架设多个服务器,实际上就是创建多个拥有不同端口的域而已。
右击“域”,选择“新建域”命令,在出现的向导中参照“MyFtp”进行设置,只是在端口处一定不要与已经创建的“域”的端口或被其他系统服务占用的端口冲突即可。如果填入22。同样的操作,可以架设多个FTP服务器了。
4.让你的FTP更专业
当你登录一些专业FTP站时,会显示一些欢迎信息,比如显示你的IP,告诉你目前有多少人在使用FTP,带宽是多少等……其实自己也可以做,Serv-U本身就有这个功能。下面就说明一下如何在自己的内网FTP里面加上这些信息。
先建立一个文本文件,随便取一个名字。例如Message.txt。
接着在这个文本文件里面加上说明文字。例如:
欢迎来到XXX的个人FTP服务器
你的IP地址是 %IP
目前服务器所在的时间是 %time
已经有 %u24h 个用户在最近24小时访问过本FTP
本FTP服务器已经运行了%ServerDays天,%ServerHours小时和%ServerMins分。
服务器的运行情况
所有登录用户数量: %loggedInAll total
当前登录用户数量: %Unow
已经下载字节数: %ServerKbDown Kb
已经上传字节数: %ServerKbUp Kb
已经下载文件数: %ServerFilesDown
已经上传文件数: %ServerFilesUp
服务器平均带宽: %ServerAvg Kb/sec
服务器当前带宽: %ServerKBps Kb/sec
其中XXX可以改成你的名字,也可以加上一些你自己认为喜欢的文字,不过要注意的是每行最好不要超过80个字符,其中以%开头的都是一些变量,下面是SERV-U能支持的变量:
(1)时间和日期
%Time 显示你的计算机当前时间
%Date 显示你的计算机当前日期
(2)服务器的统计信息
%ServerDays 显示服务器已经运行的天数
%ServerHours 显示服务器已经运行的小时数
%ServerMins 显示服务器已经运行的分钟数
%ServerSecs 显示服务器已经运行的秒数
%ServerKbUp 显示自从服务器运行以来已经上传的字节数
%ServerKbDown 显示自从服务器运行以来已经下载的字节数
%ServerFilesUp 显示自从服务器运行以来已经上传的文件数
%ServerFilesDown 显示自从服务器运行以来已经下载的文件数
%LoggedInAll 显示自从服务器运行以来已经登录的用户数
%ServerAvg 显示服务器的平均带宽
%ServerKBps 显示服务器的当前带宽
(3)服务器的设定信息
%MaxUsers 显示服务器能同时登录的最大用户数量
%MaxAnonymous 显示服务器能同时登录的最大匿名用户数量
(4)用户信息
%Name 显示登录的用户名
%IP 显示登录的用户IP地址
%Dir 显示登录的用户的当前目录
%Disk 显示登录的用户的当前磁盘
%DFree 显示登录的用户的当前磁盘空间,单位是MB
%FUp 显示登录的用户上传的文件数量
%FDown 显示登录的用户下载的文件数量
%FTot 显示登录的用户上传和下载的总的文件数量
%BUp 显示登录的用户上传的字节数,单位是KB
%Bdown 显示登录的用户下载的字节数,单位是KB
%BTot 显示登录的用户上传和下载的总字节数,单位是KB
%TconM 显示登录用户连接时间,单位是分钟
%TconS 显示登录用户连接时间,单位是秒,要和%TconM一起使用
%RatioUp 显示登录用户的上传流量限制
%RatioDown 显示登录用户的下载流量限制
%RatioCredit 显示登录用户还有多少credit可以上传和下载,这个是针对有些FTP是要上传多少文件,才能下载多少文件而设置的
%QuotaUsed 显示登录用户的已经使用了多少空间,单位是KB
%QuotaLeft 显示登录用户的还有多少空间可以使用,单位是KB
%QuotaMax 显示登录用户的最大空间,单位是KB
后面3个是针对有磁盘限制的用户设置的
(5)用户数量
%UNow 显示当前有多少用户连接
%UAll 显示从服务器运行以来一共有多少用户连接过
%U24h 显示最近24小时有多少用户
%UAnonAll 显示当前总的匿名用户数量
%UAnonThisIP 显示所有匿名登录的用户数
%UNonAnonAll 显示所有当前非匿名登录用户数
%UNonAnonThisIP 显示所有非匿名登录用户数
%UThisName 显示所有使用这个名字登录的用户数
最后在你的Serv-U里面按照设置好的文件路径设置完成,点击“应用”按钮即大功告成!
1.安装Serv-U
Serv-U的安装相当还简单,你只需双击下载来的安装文件文件,按照提示一路点击“NEXT”按钮即可轻松完成。
注意:在选择安装目录时,最好选择安装在一个非系统盘里,以免将来系统发生异常时还要重新进行账号等的设置。
2.设置Serv-U
Serv-U在第一次运行时会以向导的方式一步一步地提示用户进行设置。下面,我们分别加以说明:
“您的IP地址”:如果你采用的是ADSL等方式拨号上网,拥有的是动态IP或者不知道本机IP,此处请留空。
“域名”:就是该FTP站点的名称,可以随意取名。例如,Myftp。
“匿名账号”:决定该FTP站点是否允许匿名用户访问。选择“是”选项。
“匿名主目录”:设置匿名用户登录站点后所处的目录位置。输入“C:\Ftp”。
“锁定于主目录”:假设在“匿名主目录”中设置匿名用户登录后所处的目录位置为“C:\Ftp\Guest”,那么,选择“是”后,当匿名用户登录FTP后,就被锁定在C:\Ftp\Guest目录下,只能查看Guest目录里的内容,不能进入上级目录“Ftp”,同时该目录在FTP客户端软件中显示为“\”,如果未被锁定,则会完整显示为“C:\Ftp\Guest”。这里选择“是”。
“命名的账号”:决定是否要创建有一定管理权限的账户。这里选择“是”。
“账号名称”:就是具有一定管理权限的账户登录名称。
“账号密码”:设置账户的登录密码。
“主目录”:与“匿名主目录”一样,用来设置管理账户登录后所处的目录位置。输入“C:\Ftp”。
“锁定于主目录”:选择“是”。
“管理员权限”:用来设置管理账户的管理权限级别。这里选择“无权限”。
提示:以上这些设置并非最终设定,你还可以在Serv-U主界面中随时修改。
3.用同一个IP架设多个FTP服务器
如果带宽允许,你还可利用同一个IP轻松架设多个服务器。在Serv-U中,将“本地服务器”下“域”中的每个FTP服务器称为“域”,我们上面创建的FTP服务器就是一个名叫“MyFtp”的域。要架设多个服务器,实际上就是创建多个拥有不同端口的域而已。
右击“域”,选择“新建域”命令,在出现的向导中参照“MyFtp”进行设置,只是在端口处一定不要与已经创建的“域”的端口或被其他系统服务占用的端口冲突即可。如果填入22。同样的操作,可以架设多个FTP服务器了。
4.让你的FTP更专业
当你登录一些专业FTP站时,会显示一些欢迎信息,比如显示你的IP,告诉你目前有多少人在使用FTP,带宽是多少等……其实自己也可以做,Serv-U本身就有这个功能。下面就说明一下如何在自己的内网FTP里面加上这些信息。
先建立一个文本文件,随便取一个名字。例如Message.txt。
接着在这个文本文件里面加上说明文字。例如:
欢迎来到XXX的个人FTP服务器
你的IP地址是 %IP
目前服务器所在的时间是 %time
已经有 %u24h 个用户在最近24小时访问过本FTP
本FTP服务器已经运行了%ServerDays天,%ServerHours小时和%ServerMins分。
服务器的运行情况
所有登录用户数量: %loggedInAll total
当前登录用户数量: %Unow
已经下载字节数: %ServerKbDown Kb
已经上传字节数: %ServerKbUp Kb
已经下载文件数: %ServerFilesDown
已经上传文件数: %ServerFilesUp
服务器平均带宽: %ServerAvg Kb/sec
服务器当前带宽: %ServerKBps Kb/sec
其中XXX可以改成你的名字,也可以加上一些你自己认为喜欢的文字,不过要注意的是每行最好不要超过80个字符,其中以%开头的都是一些变量,下面是SERV-U能支持的变量:
(1)时间和日期
%Time 显示你的计算机当前时间
%Date 显示你的计算机当前日期
(2)服务器的统计信息
%ServerDays 显示服务器已经运行的天数
%ServerHours 显示服务器已经运行的小时数
%ServerMins 显示服务器已经运行的分钟数
%ServerSecs 显示服务器已经运行的秒数
%ServerKbUp 显示自从服务器运行以来已经上传的字节数
%ServerKbDown 显示自从服务器运行以来已经下载的字节数
%ServerFilesUp 显示自从服务器运行以来已经上传的文件数
%ServerFilesDown 显示自从服务器运行以来已经下载的文件数
%LoggedInAll 显示自从服务器运行以来已经登录的用户数
%ServerAvg 显示服务器的平均带宽
%ServerKBps 显示服务器的当前带宽
(3)服务器的设定信息
%MaxUsers 显示服务器能同时登录的最大用户数量
%MaxAnonymous 显示服务器能同时登录的最大匿名用户数量
(4)用户信息
%Name 显示登录的用户名
%IP 显示登录的用户IP地址
%Dir 显示登录的用户的当前目录
%Disk 显示登录的用户的当前磁盘
%DFree 显示登录的用户的当前磁盘空间,单位是MB
%FUp 显示登录的用户上传的文件数量
%FDown 显示登录的用户下载的文件数量
%FTot 显示登录的用户上传和下载的总的文件数量
%BUp 显示登录的用户上传的字节数,单位是KB
%Bdown 显示登录的用户下载的字节数,单位是KB
%BTot 显示登录的用户上传和下载的总字节数,单位是KB
%TconM 显示登录用户连接时间,单位是分钟
%TconS 显示登录用户连接时间,单位是秒,要和%TconM一起使用
%RatioUp 显示登录用户的上传流量限制
%RatioDown 显示登录用户的下载流量限制
%RatioCredit 显示登录用户还有多少credit可以上传和下载,这个是针对有些FTP是要上传多少文件,才能下载多少文件而设置的
%QuotaUsed 显示登录用户的已经使用了多少空间,单位是KB
%QuotaLeft 显示登录用户的还有多少空间可以使用,单位是KB
%QuotaMax 显示登录用户的最大空间,单位是KB
后面3个是针对有磁盘限制的用户设置的
(5)用户数量
%UNow 显示当前有多少用户连接
%UAll 显示从服务器运行以来一共有多少用户连接过
%U24h 显示最近24小时有多少用户
%UAnonAll 显示当前总的匿名用户数量
%UAnonThisIP 显示所有匿名登录的用户数
%UNonAnonAll 显示所有当前非匿名登录用户数
%UNonAnonThisIP 显示所有非匿名登录用户数
%UThisName 显示所有使用这个名字登录的用户数
最后在你的Serv-U里面按照设置好的文件路径设置完成,点击“应用”按钮即大功告成!
最新技术文章: