目前我正在使用 .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。但结果是一样的。
有人可以告诉我这将是什么问题以及我在这里想念的重点是什么。
谢谢你。