我可以通过编程方式从我的ASP.NET应用程序向IIS7中的动态IP限制扩展添加IP地址吗?

时间:2009-02-26 09:44:01

标签: asp.net iis iis-7

我正在创建一个基于论坛的网站,并希望阻止发布垃圾邮件或滥用的成员。我正在考虑使用HTTPModule来执行此操作,但我遇到了IIS7的动态IP限制扩展。我想知道是否可以从我的应用程序动态添加IP到扩展名?

此外,如果您有使用该扩展程序的经验,这将是很棒的。我,尤其是。有兴趣知道它是否会影响高流量网站的性能。

由于

2 个答案:

答案 0 :(得分:4)

我也对此感兴趣。

起初我使用IIS7中的UI将IP地址列入黑名单。

enter image description here

我确实看了上面提到的Rick Strahl链接,但在这里找到了一个很好的资源:

http://www.iis.net/configreference/system.webserver/security/ipsecurity/add

该页面上的代码示例向您展示了如何使用C#执行操作。这是该网站的剪辑

using System;
using System.Text;
using Microsoft.Web.Administration;

internal static class Sample
{
   private static void Main()
   {
      using (ServerManager serverManager = new ServerManager())
      {
         Configuration config = serverManager.GetApplicationHostConfiguration();
         ConfigurationSection ipSecuritySection = config.GetSection("system.webServer/security/ipSecurity", "Default Web Site");
         ConfigurationElementCollection ipSecurityCollection = ipSecuritySection.GetCollection();

         ConfigurationElement addElement = ipSecurityCollection.CreateElement("add");
         addElement["ipAddress"] = @"192.168.100.1";
         addElement["allowed"] = false;
         ipSecurityCollection.Add(addElement);

         ConfigurationElement addElement1 = ipSecurityCollection.CreateElement("add");
         addElement1["ipAddress"] = @"169.254.0.0";
         addElement1["subnetMask"] = @"255.255.0.0";
         addElement1["allowed"] = false;
         ipSecurityCollection.Add(addElement1);

         serverManager.CommitChanges();
      }
   }
}

要获取Microsoft.Web.Administration包,请在visual studio中转到工具 - > Nuget包管理器 - >包管理器控制台。

然后输入:

Install-Package Microsoft.Web.Administration

执行相同任务的另一种方法是使用命令行和appcmd命令。

以下命令执行相同的操作:

appcmd.exe set config "Default Web Site/SSM" -section:system.webServer/security/ipSecurity /+"[ipAddress='192.168.100.1',allowed='False']" /commit:apphost

可以使用以下代码从代码中调用:

string website = "Default Web Site/SSM";
string ipAddress = "192.168.100.1";
string allowDeny = "False";

string cmd = string.Format("%systemroot%\\system32\\inetsrv\\appcmd.exe set config \"{0}\" -section:system.webServer/security/ipSecurity /+\"[ipAddress='{1}',allowed='{2}']\" /commit:apphost", website, ipAddress, allowDeny);
Process.Start(cmd);

上面的命令可以工作但是如果你从C#调用它就会抱怨说“系统找不到指定的Exception文件”。要解决这个问题,你必须提供管理员用户名/密码。

这是功能:

void BlacklistIP(string ipAddress)
{
    string website = "Default Web Site/SSM";
    string allowDeny = "False";
    string domain = "";

    string args = string.Format(" set config \"{0}\" -section:system.webServer/security/ipSecurity /+\"[ipAddress='{1}',allowed='{2}']\" /commit:apphost", website, ipAddress, allowDeny);

    System.Security.SecureString password = new System.Security.SecureString();
    password.AppendChar('y');
    password.AppendChar('o');
    password.AppendChar('u');
    password.AppendChar('r');
    password.AppendChar('p');
    password.AppendChar('a');
    password.AppendChar('s');
    password.AppendChar('s');
    password.AppendChar('w');
    password.AppendChar('o');
    password.AppendChar('r');
    password.AppendChar('d');

    Process.Start(@"C:\windows\System32\inetsrv\appcmd.exe", args, "Administrator", password, domain);
}

Et Voila!

答案 1 :(得分:3)

看起来Rick Strahl使用IIS API实现了这一点,请参阅以下链接:

http://www.west-wind.com/WebLog/posts/59731.aspx

安德鲁