使用 SNMP 配置接入点
Configure an Access point using SNMP
目前我正在使用 .NET 4.5 开发一个 C# 控制台应用程序来设置接入点的一些配置值。这个接入点在我的本地网络中。此外,我正在使用 SnmpSharpNet 库来发出 SNMP 请求。为了发出 SNMP 请求,我使用了 SNMP 版本 2。
问题是我无法向接入点发出 SET 请求,它总是以 "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。但结果是一样的。
有人可以告诉我问题是什么以及我在这里缺少的重点是什么。
谢谢。
A "no-access"(SNMP 错误代码 6)也可能表示您正在使用的 SNMP 社区(我猜是 "public")没有写入权限。例如,监控系统应该能够读取 (GET) 某些值,但不能写入 (SET) 它们。从安全的角度来看,在这种情况下最好使用仅具有读取访问权限的 SNMP 社区。
检查您的 AP 的 SNMP 社区配置,确保它具有写入权限。我建议添加一个具有写访问权限的新社区,而不是更改 "public".
的访问权限
目前我正在使用 .NET 4.5 开发一个 C# 控制台应用程序来设置接入点的一些配置值。这个接入点在我的本地网络中。此外,我正在使用 SnmpSharpNet 库来发出 SNMP 请求。为了发出 SNMP 请求,我使用了 SNMP 版本 2。
问题是我无法向接入点发出 SET 请求,它总是以 "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。但结果是一样的。
有人可以告诉我问题是什么以及我在这里缺少的重点是什么。
谢谢。
A "no-access"(SNMP 错误代码 6)也可能表示您正在使用的 SNMP 社区(我猜是 "public")没有写入权限。例如,监控系统应该能够读取 (GET) 某些值,但不能写入 (SET) 它们。从安全的角度来看,在这种情况下最好使用仅具有读取访问权限的 SNMP 社区。
检查您的 AP 的 SNMP 社区配置,确保它具有写入权限。我建议添加一个具有写访问权限的新社区,而不是更改 "public".
的访问权限