snmpget “Nenhum objeto disponível neste agente neste OID”

2

Eu tenho trabalhado em tentar obter um valor com um MIB personalizado por meio do SNMP

Este é meu MIB personalizado:

MY-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, enterprises
        FROM SNMPv2-SMI
;

psutest MODULE-IDENTITY
    LAST-UPDATED    "201411250000Z"
    ORGANIZATION    "UW - System"
    CONTACT-INFO    "Bob"
    DESCRIPTION     "MIB for project"

    ::={ enterprises 214}

currentScalar       OBJECT IDENTIFIER ::= { psutest 2}
voltageScalar       OBJECT IDENTIFIER ::= { psutest 3}

currentScalar OBJECT-TYPE
    SYNTAX  Integer32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION  "A simple object that holds the current current as a simple integer"

    ::= { psutest 2}

voltageScalar OBJECT-TYPE
    SYNTAX  Integer32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION  "A simple object that holds the current voltage reading as a single integer"

    ::= { psutest 3}

END

Agora, quando eu faço snmpget -v2c -c public localhost currentScalar.0 , ele retorna MY-MIB::currentScalar.0 = No Such Object available on this agetn at this OID . Eu já carreguei o MIB passando pelo tutorial aqui no site da Net-snmp Olhando através deste exemplo MIB da microsoft , eu sinto que posso estar fazendo algo errado com o linhas:

currentScalar       OBJECT IDENTIFIER ::= { psutest 2}
voltageScalar       OBJECT IDENTIFIER ::= { psutest 3}

Meu arquivo snmpd.conf é bem básico:

agentAddress udp:161

view systemonly included .1.3.6.1.2.1.1
view systemonly included .1.3.6.1.2.1.25.1

rocommunity public efault .1.3.6.1
...
some system information stuff and active monitoring I haven't touched 
...

extend .1.3.6.1.4.1.214.2 /home/pi/networking/supply.sh

master agentx

Estou faltando uma definição de objeto inteiro ou algo assim?

    
por Funkyguy 02.12.2014 / 08:38

0 respostas