使用SNMP配置接入点

时间:2017-03-16 09:39:09

标签: windows c#-4.0 snmp net-snmp snmpsharpnet

目前我正在使用.NET 4.5开发一个C#控制台应用程序来设置接入点的一些配置值。此接入点位于我的本地网络中。此外,我使用SnmpSharpNet库来发出SNMP请求。为了发出SNMP请求,我使用了SNMP版本2。

问题在于我无法对接入点进行SET请求,并且它始终以“#tat; no-access" (错误代码6)。但我可以毫无问题地做GET请求。我也检查了MIB文件,我要更改的变量也具有读写访问权限。

这是我写的代码。

private static LogFile log;
private static SnmpV2Packet response;
private static UdpTarget target;

static void Main(string[] args)
{
    try
    {
        log = new LogFile(args[0]);
        target = new UdpTarget((IPAddress)new IpAddress("<host address>"));

        Pdu pdu = new Pdu();
        pdu.Type = PduType.Set;
        pdu.VbList.Add(new Oid("1.3.6.1.4.1.2356.11.2.88.2.0"), new Integer32(1111));

        AgentParameters aparam = new AgentParameters(SnmpVersion.Ver2, new OctetString("public"));

        response = (SnmpV2Packet)target.Request(pdu, aparam);

    }
    catch (Exception ex)
    {
        log.LogError("Request failed with the exception " + ex, "Main");
        target.Close();
        return;
    }

    if (response == null)
    {
        log.LogError("Error in SNMP request", "Main");
    }
    else
    {
        //If an incorrect response
        if (response.Pdu.ErrorStatus != 0)
        {
            log.LogError("SNMP agent returned error status " + response.Pdu.ErrorStatus, "Main");
        }
        //If a successful response
        else
        {
            log.LogInfo("Value of the " + response.Pdu[0].Oid.ToString() + "changed to " + response.Pdu[0].Value.ToString(), "Main");
        }
    }

    target.Close();
    log.CloseLogFile();
}

这是与MIB文件中的变量相关的部分

-- {SCALAR} 1.3.6.1.4.1.2356.11.2.88.2
lcsSetupWirelessEpaperPort OBJECT-TYPE
    SYNTAX     Integer32 (0..65535)
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "-- empty --"
    ::= { lcsSetupWirelessEpaper 2 }

我也厌倦了在命令行上使用Net-SNMP。但结果是一样的。

有人可以告诉我这是什么问题,我在这里错过了什么。

谢谢。

1 个答案:

答案 0 :(得分:0)

“禁止访问”(SNMP错误代码6)也可能表示您正在使用的SNMP社区(我猜它是“公共”)没有写访问权限。例如,监控系统应该能够读取(GET)某些值,但不能写入(SET)它们。从安全角度来看,最好使用在这种情况下只具有读访问权限的SNMP社区。

检查AP的SNMP社区配置,确保其具有写访问权限。我建议添加一个具有写访问权限的新社区,而不是更改“公共”访问权限。