Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IP Phone MIBs

Status
Not open for further replies.

trilogy8

Technical User
Jan 26, 2017
413
US
We began using an asset management platform and the implementers are asking for the IP phone MIBs. Where do I find those? I haven't seen a specific download.
 
46 or 9600?

They do the standard IF-MIBS for interface stuff

Look on their website, they're there if you look hard enough. If you google the OID 1.3.6.1.4.1.6889.2.69.1.1.2.0 you should find something.

Here's a little script I whipped up that makes you a CSV of model/comcode/serial
ip.txt just has 1 IP address per line.
I run it from CM, turn on SNMP in change sys ip-options and if it's a duplex add the real IP of the server you're on as a node-name and add that in ip-options so H323 phones let CM poll.
If they're SIP you'd have to enable the permitted IP and snmp community in the settings file.

Code:
#!/bin/bash
filename='ip.txt'
while read line; do
ip=`echo $line`
model=`snmpget -v 2c -c avaya "$ip" 1.3.6.1.4.1.6889.2.69.1.1.2.0|sed 's/SNMPv2-SMI::enterprises.6889.2.69.1.1.2.0 = STRING: //g'| sed 's/://g'`
comcode=`snmpget -v 2c -c avaya "$ip" 1.3.6.1.4.1.6889.2.69.1.1.7.0|sed 's/SNMPv2-SMI::enterprises.6889.2.69.1.1.7.0 = STRING: //g'| sed 's/://g'`
serial=`snmpget -v 2c -c avaya "$ip" 1.3.6.1.4.1.6889.2.69.1.1.8.0|sed 's/SNMPv2-SMI::enterprises.6889.2.69.1.1.8.0 = STRING: //g'| sed 's/://g'
echo $model,$comcode,$serial >> "$old46xx.csv"
done<$filename
 
mix of J and 96xx series. I'll look again on the site. Thank you
 
My bad.

Just remembered.

It's in the firmware bundles!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top