我正在尝试使用Go向客户端发送非常基本的SNMP Get请求。我有一条SNMP消息,用于获取我根据this post和soniah/gosnmp
手动编码为字节片的OID 1.3.6.1.2.1.1
。我能够将消息写到主机,但是无法读取响应(或没有收到响应)。从net.Conn
读取时,程序挂起。这是否意味着根本没有回应?还是我尝试发送的SNMP消息不正确?
这是我的代码:
package main
import (
"fmt"
"io/ioutil"
"log"
"net"
"time"
)
func main() {
conn, err := net.DialTimeout("udp", "host:161", 5*time.Second)
if err != nil {
log.Fatal(err)
}
defer conn.Close()
fmt.Println(conn.RemoteAddr())
var snmpMsg []byte
// Type: Sequence, Length: 37
msg := []byte{0x30, 0x25}
snmpMsg = append(snmpMsg, msg...)
// Type: Integer, Len: 1, Val: 1 (SNMP Version 2c)
version := []byte{0x02, 0x01, 0x1}
snmpMsg = append(snmpMsg, version...)
// Type: Octet String, Len: 7, Val: "private"
community := []byte{0x04, 0x07, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65}
snmpMsg = append(snmpMsg, community...)
// Type: GetRequest, Len: 23
pdu := []byte{0xa0, 0x17}
snmpMsg = append(snmpMsg, pdu...)
// Type: Integer, Len: 1, Val: 1 (Is the RequestID value supposed to be something specific?)
requestID := []byte{0x02, 0x01, 0x01}
snmpMsg = append(snmpMsg, requestID...)
// Type: Integer, Len: 1, Val: 0
errStatus := []byte{0x02, 0x01, 0x00}
snmpMsg = append(snmpMsg, errStatus...)
// Type: Integer, Len: 1, Val: 0
errIndex := []byte{0x02, 0x01, 0x00}
snmpMsg = append(snmpMsg, errIndex...)
// Type: Sequence, Len: 12
varBindList := []byte{0x30, 0x0c}
snmpMsg = append(snmpMsg, varBindList...)
// Type: Sequence, Len: 10
varBind := []byte{0x30, 0x0a}
snmpMsg = append(snmpMsg, varBind...)
// Type: Object Identifier, Len: 6, Val: 1.3.6.1.2.1.1
oid := []byte{0x06, 0x07, 0x2b, 0x06, 0x01, 0x02, 0x01, 0x01}
snmpMsg = append(snmpMsg, oid...)
// Type: Null, Len: 0
value := []byte{0x05, 0x00}
snmpMsg = append(snmpMsg, value...)
n, err := conn.Write(snmpMsg)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Message size: %d, Bytes written: %d\n", len(snmpMsg), n)
// Program hangs here; does the same with `conn.Read()`.
b, err := ioutil.ReadAll(conn)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(b))
}
我还不需要解码响应,我更关心的只是获取和读取响应。有什么建议吗?
答案 0 :(得分:0)
如果您可以运行Wireshark在网络上侦听您的请求和预期的响应,那应该为您清除一切。
如果您的请求格式错误,您应该看到Wireshark对此抱怨。如果您的SNMP代理由于某种原因而没有响应-您将不会在网络上看到响应。
在某些设置中,响应可能来自/到达不同的IP地址-这可能是超时的原因。错误的社区名称可能是另一个原因。
答案 1 :(得分:0)
除了Ilya的回答外,如果SNMP代理具有不错的诊断功能,它可能还会为您提供不回答的原因。
如果没有,请先与体面的代理进行测试,以解决最初的问题。