<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Monitor MSM 760 from OpsView in M and MSM Series</title>
    <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871457#M4837</link>
    <description>&lt;P&gt;I don't know OpsView.&amp;nbsp;I'm using nagios/icinga and wrote a script. Script using snmp. Under "1.3.6.1.4.1.8744.5.23.1.2.1.1"&amp;nbsp;there are statusinformations. Perhaps it helps?&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jun 2016 19:21:25 GMT</pubDate>
    <dc:creator>Walter001</dc:creator>
    <dc:date>2016-06-22T19:21:25Z</dc:date>
    <item>
      <title>Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6868832#M4827</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Trying out OpsView Atom and does&amp;nbsp;anyone know how to Monitor MSM 760 from OpsView &amp;nbsp;- Like&amp;nbsp;its' status and health , &amp;nbsp;AP/Clients isues etc&lt;/P&gt;&lt;P&gt;Any help appreciated,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 14:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6868832#M4827</guid>
      <dc:creator>MichaelRicardo</dc:creator>
      <dc:date>2016-06-14T14:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871457#M4837</link>
      <description>&lt;P&gt;I don't know OpsView.&amp;nbsp;I'm using nagios/icinga and wrote a script. Script using snmp. Under "1.3.6.1.4.1.8744.5.23.1.2.1.1"&amp;nbsp;there are statusinformations. Perhaps it helps?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 19:21:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871457#M4837</guid>
      <dc:creator>Walter001</dc:creator>
      <dc:date>2016-06-22T19:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871458#M4838</link>
      <description>&lt;P&gt;yes - thats good - opsview is nagios with different gui. let me know if you can share this.&lt;/P&gt;&lt;P&gt;I know nothing of monitoring and your help much appreciated.&lt;/P&gt;&lt;P&gt;regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;michael&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 19:25:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871458#M4838</guid>
      <dc:creator>MichaelRicardo</dc:creator>
      <dc:date>2016-06-22T19:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871462#M4840</link>
      <description>&lt;P&gt;only bash-script, hope it helps&lt;/P&gt;&lt;P&gt;#! /bin/bash&lt;BR /&gt;OID="1.3.6.1.4.1.8744.5.23.1.2.1.1"&lt;BR /&gt;HOST="192.168.0.1"&lt;BR /&gt;EXITOK=0&lt;BR /&gt;ECHOOK=""&lt;BR /&gt;j=0&lt;/P&gt;&lt;P&gt;STATUS[1]="disconnected (1)"&lt;BR /&gt;STATUS[2]="authorized (2)"&lt;BR /&gt;STATUS[3]="join (3)"&lt;BR /&gt;STATUS[4]="firmware (4)"&lt;BR /&gt;STATUS[5]="security (5)"&lt;BR /&gt;STATUS[6]="configuration(6)"&lt;BR /&gt;STATUS[7]="running (7)"&lt;/P&gt;&lt;P&gt;declare -a status=( $(snmpwalk -v 2c -c public -Oqv $HOST ${OID}.5) )&lt;BR /&gt;if [ "$?" = "0" ]; then&lt;/P&gt;&lt;P&gt;for i in "${status[@]}"&lt;BR /&gt;do&lt;BR /&gt;case $i in&lt;BR /&gt;1) let "EXITOK=$EXITOK | 2" ;;&lt;BR /&gt;[2-6]) let "EXITOK=$EXITOK | 1" ;;&lt;BR /&gt;7) let "EXITOK=$EXITOK | 0" ;;&lt;BR /&gt;esac&lt;BR /&gt;done&lt;/P&gt;&lt;P&gt;if [ $EXITOK -gt 0 ]; then&lt;BR /&gt;declare -a sernr=( $(snmpwalk -v 2c -c public -Oqv $HOST ${OID}.2) )&lt;BR /&gt;declare -a ipaddr=( $(snmpwalk -v 2c -c public -Oqv $HOST ${OID}.4) )&lt;BR /&gt;declare -a name=( $(snmpwalk -v 2c -c public -Oqv $HOST ${OID}.6 | sed "s/ /_/g" ) )&lt;BR /&gt;declare -a location=( $(snmpwalk -v 2c -c public -OEqv $HOST ${OID}.7 | sed "s/ /-/g" ) )&lt;BR /&gt;declare -a group=( $(snmpwalk -v 2c -c public -Oqv $HOST ${OID}.9 | sed "s/ /_/g" ) )&lt;/P&gt;&lt;P&gt;for i in "${status[@]}"&lt;BR /&gt;do&lt;BR /&gt;if [ $i -lt 7 ]; then&lt;BR /&gt;echo ${name[$j]}${STATUS[$i]}" "${group[$j]},${location[$j]},${ipaddr[$j]}| sed "s/\"/ /g"&lt;BR /&gt;fi&lt;BR /&gt;let j++&lt;BR /&gt;done&lt;BR /&gt;else&lt;BR /&gt;echo ${#status[@]} Accesspoints running&lt;BR /&gt;fi&lt;/P&gt;&lt;P&gt;else&lt;BR /&gt;echo $status&lt;BR /&gt;EXITOK=1&lt;BR /&gt;fi&lt;BR /&gt;exit $EXITOK&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2016 19:29:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6871462#M4840</guid>
      <dc:creator>Walter001</dc:creator>
      <dc:date>2016-06-22T19:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6885825#M4884</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;i found a script like this for nagios&lt;/P&gt;&lt;P&gt;&lt;A href="https://exchange.nagios.org/directory/Addons/Active-Checks/Check-AP-%28acces-point%29-under-a-MSM-760-series-%28like-MSM765%29/details" target="_blank"&gt;https://exchange.nagios.org/directory/Addons/Active-Checks/Check-AP-%28acces-point%29-under-a-MSM-760-series-%28like-MSM765%29/details&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but i get always the same return&lt;/P&gt;&lt;P&gt;/usr/lib/nagios/plugins$ sudo ./check_msm_access_point.sh -H &amp;lt;MSM_DNS_NAME&amp;gt;&amp;nbsp;-C nageon -AP&amp;nbsp;&amp;lt;AP_NAME&amp;gt;&lt;BR /&gt;CRITICAL AP Name: Serial: Location: Uptime: Contact: IP: MAC: Status:&lt;/P&gt;&lt;P&gt;same with snmpwalk or snmpget&lt;/P&gt;&lt;P&gt;/usr/lib/nagios/plugins$ snmpwalk -v 2c -c nageon &lt;SPAN&gt;&amp;lt;MSM_DNS_NAME&amp;gt;&lt;/SPAN&gt; -Osq .1.3.6.1.4.1.8744.5.23.1.2.1.1.5&lt;BR /&gt;iso.3.6.1.4.1.8744.5.23.1.2.1.1.5 No Such Object available on this agent at this OID&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your help&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2016 09:23:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6885825#M4884</guid>
      <dc:creator>Guillaule</dc:creator>
      <dc:date>2016-08-05T09:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6886205#M4885</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;try an query in tree above, for instance&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;snmpwalk -v 2c -c nageon &lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;MSM_DNS_NAME&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt; -Osq .1.3 | more&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and check output. The first lines are device-info. The correct device?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 19:28:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6886205#M4885</guid>
      <dc:creator>Walter001</dc:creator>
      <dc:date>2016-08-06T19:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6886389#M4887</link>
      <description>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;thanks for your update&lt;/P&gt;&lt;P&gt;&amp;nbsp;yes information&amp;nbsp;are ok&amp;nbsp;&lt;/P&gt;&lt;P&gt;iso.3.6.1.2.1.1.1.0 "MSM760 - Hardware revision B - Serial number xxxxxx- Firmware version 6.5.0.1-19720"&lt;BR /&gt;iso.3.6.1.2.1.1.2.0 iso.3.6.1.4.1.8744.1.48&lt;BR /&gt;iso.3.6.1.2.1.1.3.0 75:0:38:52.00&lt;BR /&gt;iso.3.6.1.2.1.1.4.0 "IT@xxxx.com"&lt;BR /&gt;iso.3.6.1.2.1.1.5.0 " &lt;SPAN&gt;&amp;lt;MSM_NAME&amp;gt;&lt;/SPAN&gt;"&lt;BR /&gt;iso.3.6.1.2.1.1.6.0 "&amp;lt;location&amp;gt;"&lt;BR /&gt;iso.3.6.1.2.1.1.7.0 6&lt;BR /&gt;iso.3.6.1.2.1.2.1.0 84&lt;BR /&gt;iso.3.6.1.2.1.2.2.1.1.1 1&lt;BR /&gt;iso.3.6.1.2.1.2.2.1.1.2 2&lt;BR /&gt;iso.3.6.1.2.1.2.2.1.1.3 3&lt;BR /&gt;iso.3.6.1.2.1.2.2.1.1.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have hundred of pages with OID&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Aug 2016 09:08:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6886389#M4887</guid>
      <dc:creator>Guillaule</dc:creator>
      <dc:date>2016-08-08T09:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Monitor MSM 760 from OpsView</title>
      <link>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6889543#M4903</link>
      <description>&lt;P&gt;After change SNMP settings to only v1 and v2 in MSM it works again&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 08:58:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/m-and-msm-series/monitor-msm-760-from-opsview/m-p/6889543#M4903</guid>
      <dc:creator>Guillaule</dc:creator>
      <dc:date>2016-08-17T08:58:35Z</dc:date>
    </item>
  </channel>
</rss>

