如何用C#VB.Net编程测量网站带宽(上传+下载),单位是MB?

问题描述 投票:9回答:1

希望大家在这里都好。

我正在写一个 窗口服务C#VB.Net 该计划旨在 测量带宽消耗 上的所有网站。本地主机 并将其上传、下载等统计数据存储在本地远程数据库中。

目标平台只包括 Windows Server 2003、2003 R2、2008和2008 R2。

我在这个事情上搜索了一下,发现了以下内容。

  1. 使用 SNMP mgmtapi.dll。 在Windows 2003中找到的
  2. 使用 自定义网络驱动程序 来收集统计数据。

请指导最合适的。确保 和有效的方法技术或一套这样的技术,可以用来测量每个不同网站的带宽消耗。

也请分享任何 编码 在这方面。

谨此致意。

史蒂夫

c# iis bandwidth snmp
1个回答
10
投票

我发现一个名为 snmpsharpnet 这对在.NET之上玩弄SNMP非常有帮助。

根据我在 本文 可以通过给定的接口来计算输入带宽的使用率。

"In" 带宽使用率% = (((ifInOctets(t2)-ifInOctets(t1)) * (ifSpeed*(t2-t1))

这里是一个示例代码。

using System;
using System.Collections.Generic;
using System.Text;

using SnmpSharpNet;

namespace Exemple2
{
  class Program
  {
    static void Main(string[] args)
    {
      /* Get an SNMP Object
       */
      SimpleSnmp snmpVerb = new SimpleSnmp("192.168.1.121", 161, "public");
      if (!snmpVerb.Valid)
      {
        Console.WriteLine("Seems that IP or comunauty is not cool");
        return;
      }


      /* Sample of simple Get usage on ifSpeed on interface 10
       * TODO : for sure you have to detect the right interface
       */
      Oid oidifSpeed = new Oid(".1.3.6.1.2.1.2.2.1.5.10");

      /* Getting ifSpeed
       */
      Dictionary<Oid, AsnType> snmpDataS = snmpVerb.Get(SnmpVersion.Ver2, new string[] { oidifSpeed.ToString() });
      if (snmpDataS != null)
        Console.WriteLine("Interface speed \"{0}\" : {1}", oidifSpeed.ToString(), snmpDataS[oidifSpeed].ToString());
      else
        Console.WriteLine("Not Glop!");

      /* Sample of simple Get usage on ifInOctets on interface 10
       * TODO : for sure you have to detect the right interface
       */
      Oid oidifInOctets = new Oid(".1.3.6.1.2.1.2.2.1.10.10");
      Dictionary<Oid, AsnType> snmpData1;

      /* Getting it for the first time
       */
      snmpData1 = snmpVerb.Get(SnmpVersion.Ver2, new string[] { oidifInOctets.ToString() });
      if (snmpData1 != null)
        Console.WriteLine("Number of In octets \"{0}\" : {1}", oidifInOctets.ToString(), snmpData1[oidifInOctets].ToString());
      else
        Console.WriteLine("Not Glop!");

      int missed = 0;
      while (true)
      {
        if (missed == 0)
        {
          /* When you detect a non refesh data, keep the last one
           */
          snmpData1 = snmpVerb.Get(SnmpVersion.Ver2, new string[] { oidifInOctets.ToString() });
          if (snmpData1 != null)
            Console.WriteLine("Number of In octets \"{0}\" : {1}", oidifInOctets.ToString(), snmpData1[oidifInOctets].ToString());
          else
            Console.WriteLine("Not Glop!");
        }

        /* Some Wait (less aproximative)
         */
        int duration = 5;
        System.Threading.Thread.Sleep(duration*1000); // duration seconds

        /* Getting it for the Second time
         */
        Dictionary<Oid, AsnType> snmpData2 = snmpVerb.Get(SnmpVersion.Ver2, new string[] { oidifInOctets.ToString() });
        if (snmpData2 != null)
          Console.WriteLine("Number of In octets \"{0}\" : {1}", oidifInOctets.ToString(), snmpData2[oidifInOctets].ToString());
        else
          Console.WriteLine("Not Glop!");

        Counter32 I1 = new Counter32();
        I1.Set(snmpData1[oidifInOctets]);
        Counter32 I2 = new Counter32();
        I2.Set(snmpData2[oidifInOctets]);
        Counter32 speed = new Counter32();
        speed.Set(snmpDataS[oidifSpeed]);

        if (I2.Value == I1.Value)
        {
          missed += 1;
          continue;
        }
        decimal bandWithUsage = (((decimal)(I2.Value - I1.Value) * 8) * 100) / (speed * duration * (1+missed));
        Console.WriteLine("BandWith usage : {0}%", bandWithUsage);
        missed = 0;
      }
    }
  }
}

这只是一个概念证明,现在你可能需要一个BackgroundWorker和一个定时器。


如果你不确定服务器上是否可以使用SNMP,而你又想测试SNMP端口的连接,你将需要Microsoft 港务局. 这个工具可以确定端口是否在监听。这个工具还提供了额外的功能,取决于您使用的命令。

© www.soinside.com 2019 - 2024. All rights reserved.