瀏覽代碼

check_snmp: small improvement by anonymous submission

- response should not start with the delimiter
- OID response value taken into account

Closes issue #1029
Closes push request #1173
Jan Wagner 10 年之前
父節點
當前提交
96932fd7b7
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      plugins/check_snmp.c

+ 3 - 0
plugins/check_snmp.c

@@ -418,6 +418,9 @@ main (int argc, char **argv)
 		else if (strstr (response, "INTEGER: ")) {
 			show = strstr (response, "INTEGER: ") + 9;
 		}
+		else if (strstr (response, "OID: ")) {
+			show = strstr (response, "OID: ") + 5;
+		}
 		else if (strstr (response, "STRING: ")) {
 			show = strstr (response, "STRING: ") + 8;
 			conv = "%.10g";