使用 SNMP 配置接入点

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

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

问题是我无法向接入点发出 SET 请求,并且它总是以“无访问”响应(错误代码 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。但结果是一样的。

有人可以告诉我问题是什么以及我在这里缺少的点是什么。

谢谢你。

windows snmp net-snmp snmpsharpnet
1个回答
0
投票

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

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

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