cloudhub icon indicating copy to clipboard operation
cloudhub copied to clipboard

Vendor 별 SNMP Connection Test 추가

Open kim-jinhyeong opened this issue 6 months ago • 0 comments

IPMI Connection Test에서 Vendor 별로 Connection Test를 고려해야 합니다. 현재 코드에서는 지정된 Oid를 사용하여 Connection Test를 수행하고 있지만, Vendor 별로 다르게 처리할 필요가 있습니다.

//현재 SNMP Connection Test Oid
queries := []SNMPQuery{
	{Oid: "1.3.6.1.2.1.1.5", Key: "hostname", Process: processHostname},
	{Oid: "1.3.6.1.2.1.1.7", Key: "deviceType", Process: processDeviceType},
	{Oid: "1.3.6.1.2.1.1.1", Key: "deviceOS", Process: processDeviceOS},
}

kim-jinhyeong avatar Aug 23 '24 04:08 kim-jinhyeong