Home Directory Plugins Operating Systems Linux Quintum Voice GW, E1/T1 Monitoring

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Quintum Voice GW, E1/T1 Monitoring

Rating
0 votes
Favoured:
0
Hits
15633
Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Quintum Voice GW, E1/T1 Monitoring
Monitor T1/E1 status
Quintum DX Gateway can be monitor using given SNMP MIB's.

First we have to extract info and interfaces from Quintum GW, use snmpwalk with defined SNMP community of your Quintum voice GW.
snmpwalk -c public -v 1 ip_quintum_GW interface

Here we will get info from our Quintum GW has an IP 192.161.10.3 using check_snmp plugin. we suppose we have read only community "public"

I am writing here check commands which you can easily use to check status of different E1's
## E1 status at port 1 layer 1
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.4.1 -l 'status' -r Active
## E1 status at port 1 layer 2
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.5.1 -l 'status' -r Active
## E1 status at port 2 layer 1
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.4.2 -l 'status' -r Active
## E1 status at port 2 layer 2
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.5.2 -l 'status' -r Active
## Check total number of E1's installed
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.5.999 -l 'Total PRIs'
## To check and display CRC Multifram errors
check_snmp!-C public -o .1.3.6.1.4.1.6618.3.5.1.7.1 -l 'Multiframe CRC Errors'