使用pysnmp框架我得到一些值来做snmp walk。不幸的是对于oid
1.3.6.1.21.69.1.5.8.1.2(DOCS-CABLE-DEVICE-MIB)
我得到一个奇怪的结果,我无法正确打印在这里,因为它包含ascii字符,如BEL
ACK
在做报告时我得到:
八位组串( '\ X07 \ XD8 \吨\ X17 \ X03 \ x184 \ X00')
但输出应该如下:
2008-9-23,3:24:52.0
格式称为“DateAndTime”。如何将OctetString输出转换为“人类可读”的日期/时间?
答案 0 :(得分:15)
格式为here。
A date-time specification.
field octets contents range
----- ------ -------- -----
1 1-2 year* 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minutes 0..59
6 7 seconds 0..60
(use 60 for leap-second)
7 8 deci-seconds 0..9
8 9 direction from UTC '+' / '-'
9 10 hours from UTC* 0..13
10 11 minutes from UTC 0..59
* Notes:
- the value of year is in network-byte order
- daylight saving time in New Zealand is +13 For example,
Tuesday May 26, 1992 at 1:30:15 PM EDT would be displayed as:
1992-5-26,13:30:15.0,-4:0
Note that if only local time is known, then timezone
information (fields 8-10) is not present.
您可以使用struct.unpack:
>>> import struct, datetime
>>> s = '\x07\xd8\t\x17\x03\x184\x00'
>>> datetime.datetime(*struct.unpack('>HBBBBBB', s))
datetime.datetime(2008, 9, 23, 3, 24, 52)
答案 1 :(得分:3)
@Paulo Scardine:这是我在解决一个非常类似的问题时在网上找到的最佳答案。即使有了这个答案,我还是花了一点时间来解决我的问题,所以我想发布一个可能会增加更多清晰度的后续答案。 (特别是日期有不同长度选项的问题)。
以下代码连接到服务器并获取系统时间,然后将其作为字符串输出以说明方法。
import netsnmp
import struct
oid = netsnmp.Varbind('hrSystemDate.0')
resp = netsnmp.snmpget(oid, Version=1, DestHost='<ip>', Community='public')
oct = str(resp[0])
# hrSystemDate can be either 8 or 11 units in length.
oct_len = len(oct)
fmt_mapping = dict({8:'>HBBBBBB', 11:'>HBBBBBBcBB'})
if oct_len == 8 or oct_len == 11:
t = struct.unpack(fmt_mapping[oct_len], oct)
print 'date tuple: %s' % (repr(t))
else:
print 'invalid date format'
我希望这有助于其他有类似问题的人尝试使用此类数据。
答案 2 :(得分:2)