cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2237
Views
0
Helpful
2
Replies

HP OpenView and Cisco Config Management

elimachi
Level 1
Level 1

Hello

I don´t know if this is the correct forum to formulate this question. If not, excuse me please.

I have Cisco switches & routers into my network and I have HP OpenView to manage them. I´d like to know how can I to get the start or running configs by SNMP using this tool by SNMP protocol. Is it possible?

Thank you.

2 Replies 2

k.a.clarke
Level 1
Level 1

paddyxdoyle
Level 6
Level 6

Hi,

The following document explains all:

http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094aa6.shtml

I also have a summarised version i use for reference:

On NMS server

-------------

cd /tftpboot

touch router-config

chmod 777 router-config

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.2.115 integer 1

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.3.115 integer 4

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.4.115 integer 1

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.5.115 ipaddress <"NMS_IP_Address">

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.6.115 octetstring "router-config"

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.14.115 integer 4

!check until successful

snmpwalk .1.3.6.1.4.1.9.9.96.1.1.1.1.10

!delete temp mib entry

snmpset -v 1 -c .1.3.6.1.4.1.9.9.96.1.1.1.1.14.115 integer 6

HTH

PJD