我需要一些有关为 Juniper EX4500 以太网交换机配置 SNMP 的帮助。我正在执行以下命令:
host1:~# snmpwalk -v 2c -c my_community_string 192.168.1.1 .1
Timeout: No Response from 192.168.1.1
其中192.168.1.1
- 交换机的外部 IP 地址。
从这里host1
我可以连接到其他交换机的端口,例如 22。
SNMP 代理看起来正在运行:
juniper> show system processes extensive | match snmp
2101 root 1 96 0 18860K 14628K select 0:06 0.00% snmpd
另外,我可以从交换机进行查询:
juniper> show snmp mib get 1.3.6.1.2.1.31.1.1.1.6.524
ifHCInOctets.524 = 1200002682732106
SNMP 配置:
juniper> show configuration snmp
location Switch;
community my_community_string {
clients {
10.5.1.3/32;
}
}
where 10.5.1.3
- 我正在连接的主机
我将不胜感激任何帮助,因为我刚刚迷失了文档并害怕破坏某些东西。
谢谢。
答案1
您缺少授权声明...set snmp community my_community_string authorization read-only
答案2
为了解决这个问题,我开始通过连接到内部 IP 地址来监控交换机。我从以下配置部分获取了它:
unit 10 {
family inet {
address 10.11.11.1/16;
}