• May 22, 2012, 09:02:03 PM
Welcome, Guest. Please login or register. Registration is free.
Did you miss your activation email?

Author Topic: SNMP OID that will report on ip helper address DHCP forwarding  (Read 402 times)

0 Members and 1 Guest are viewing this topic.

Offline esean2k

  • Rookie
  • **
  • Posts: 4
SNMP OID that will report on ip helper address DHCP forwarding
« on: November 21, 2011, 06:50:02 AM »
Hi all

I cannot find an SNMP OID that will report on ip helper address/ es for Nortel kit as Cisco does.
dose anyone where i'd could tract down that entry...

Regards

Sean


Offline Michael McNamara

  • Administrator
  • Hero Member
  • *****
  • Posts: 2517
    • Michael McNamara
Re: SNMP OID that will report on ip helper address DHCP forwarding
« Reply #1 on: November 21, 2011, 11:10:31 AM »
You need to examine the RAPID-CITY MIB and look for the "IP DHCP Forward Table";


rcIpDhcpForwardTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF RcIpDhcpForwardEntry
        MAX-ACCESS              not-accessible
        STATUS          current
        DESCRIPTION     "DHCP forwarding table."
    ::= { rcIp 9 }

rcIpDhcpForwardEntry OBJECT-TYPE
        SYNTAX          RcIpDhcpForwardEntry
        MAX-ACCESS              not-accessible
        STATUS          current
        DESCRIPTION     "An entry used represents a DHCP forwarding directive."
        INDEX           { rcIpDhcpForwardAgentAddr, rcIpDhcpForwardServerAddr }
        ::= { rcIpDhcpForwardTable 1 }

RcIpDhcpForwardEntry ::=
        SEQUENCE {
                rcIpDhcpForwardAgentAddr   IpAddress,
                rcIpDhcpForwardServerAddr  IpAddress,
                rcIpDhcpForwardEnable      TruthValue,
                rcIpDhcpForwardMode        INTEGER,
                rcIpDhcpForwardRowStatus   RowStatus
        }


Good Luck!
We've been helping network engineers, system administrators and technology professionals since June 2009.
If you've found this site useful or helpful, please help me spread the word. Link to us in your blog or homepage - Thanks!

Offline esean2k

  • Rookie
  • **
  • Posts: 4
Re: SNMP OID that will report on ip helper address DHCP forwarding
« Reply #2 on: November 22, 2011, 04:56:08 AM »
Thanks for the info Michael, was exactly what I needed. Cheers