<?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 Notification delay when VPN is down in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126693#M30797</link>
    <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I have just installed HPSIM 5.1 with SP1 to monitor our customers HP hardware.&lt;BR /&gt;&lt;BR /&gt;I have configured event handling for Major and Critical events only. &lt;BR /&gt;We have VPN connections to our customers but some of the connections are unreliable.&lt;BR /&gt;Everytime a VPN connections fails (for only a little while) messages are send to our support mailbox. All togehther this generates a lot of emails.&lt;BR /&gt;&lt;BR /&gt;Of course we would like to know about it if a system is not reachable for over a longer period (like 20 minutes or so).&lt;BR /&gt;&lt;BR /&gt;Is there anyway to delay the notification when &lt;BR /&gt;a system is not reachable? &lt;BR /&gt;This would help us a lot.&lt;BR /&gt;&lt;BR /&gt;Also I would like to know if there is anyway to change the graphical interface.&lt;BR /&gt;If have created a shared collection for the customers, in here I have added the hardware.&lt;BR /&gt;We display the collection on a "wall mounted" mdisplay so we can monitor whet is happening.&lt;BR /&gt;The problem is,...it is pretty small.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to make it bigger (without changing the display resolution)&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Alex&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 09 Jan 2008 16:04:06 GMT</pubDate>
    <dc:creator>lanziagmail.com</dc:creator>
    <dc:date>2008-01-09T16:04:06Z</dc:date>
    <item>
      <title>Notification delay when VPN is down</title>
      <link>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126693#M30797</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I have just installed HPSIM 5.1 with SP1 to monitor our customers HP hardware.&lt;BR /&gt;&lt;BR /&gt;I have configured event handling for Major and Critical events only. &lt;BR /&gt;We have VPN connections to our customers but some of the connections are unreliable.&lt;BR /&gt;Everytime a VPN connections fails (for only a little while) messages are send to our support mailbox. All togehther this generates a lot of emails.&lt;BR /&gt;&lt;BR /&gt;Of course we would like to know about it if a system is not reachable for over a longer period (like 20 minutes or so).&lt;BR /&gt;&lt;BR /&gt;Is there anyway to delay the notification when &lt;BR /&gt;a system is not reachable? &lt;BR /&gt;This would help us a lot.&lt;BR /&gt;&lt;BR /&gt;Also I would like to know if there is anyway to change the graphical interface.&lt;BR /&gt;If have created a shared collection for the customers, in here I have added the hardware.&lt;BR /&gt;We display the collection on a "wall mounted" mdisplay so we can monitor whet is happening.&lt;BR /&gt;The problem is,...it is pretty small.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to make it bigger (without changing the display resolution)&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Alex&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Jan 2008 16:04:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126693#M30797</guid>
      <dc:creator>lanziagmail.com</dc:creator>
      <dc:date>2008-01-09T16:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Notification delay when VPN is down</title>
      <link>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126694#M30798</link>
      <description>Is there anyway to delay the notification when a system is not reachable?  &lt;BR /&gt;&lt;BR /&gt;Hardware status polling for Server's default = 5min, for Non-Server's Default=10min.  Just go to the polling tasks screen and change the interval from 5 to whatever you like.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to make it bigger (without changing the display resolution)&lt;BR /&gt;&lt;BR /&gt;you could change the text size in IE that connects to the big wall mounted display.  Go to the menu bar at the top select View&amp;gt;Text Size&amp;gt;pic one that looks better&lt;BR /&gt;Regards,&lt;BR /&gt;Martin</description>
      <pubDate>Thu, 10 Jan 2008 03:11:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126694#M30798</guid>
      <dc:creator>Martin Smoral</dc:creator>
      <dc:date>2008-01-10T03:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Notification delay when VPN is down</title>
      <link>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126695#M30799</link>
      <description>You could do a script that runs every say 20 minutes that uses mxquery to check if any servers are on critical condition, output that to a file and use blat to send it.&lt;BR /&gt;&lt;BR /&gt;Something like this&lt;BR /&gt;&lt;BR /&gt;:QUERY&lt;BR /&gt;mxquery -e "Critical Systems" |findstr /I "Name" | findstr /V "Asso" &amp;gt; path\filename.txt&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;:CHECKSIZE&lt;BR /&gt;set newcritical=&lt;BR /&gt;for /f "eol=0 skip=6 tokens=3" %%c in ('dir path\filename.txt') do echo %%c &amp;amp; if %%c NEQ 0 set newcritical=1&lt;BR /&gt;(IF NOT DEFINED newcritical goto end)&lt;BR /&gt;&lt;BR /&gt;:BLAT&lt;BR /&gt;set smtp_server=-server &lt;BR /&gt;set body=-body ""&lt;BR /&gt;set f=-f &lt;BR /&gt;set to=-to &lt;BR /&gt;set subject=-subject &lt;BR /&gt;set Attachment=-ps path\filename.txt&lt;BR /&gt;blat %attachment% %to% %f% %subject% %body% %smtp_server%&lt;BR /&gt;&lt;BR /&gt;:END&lt;BR /&gt;EXIT&lt;BR /&gt;&lt;BR /&gt;Thsi runs the query and the filters out the stuff I wanted with findstr and outputs it to a txt file.&lt;BR /&gt;The for loop checks the filesize and if it is not 0 bytes m then it proceeds to the blat stage.&lt;BR /&gt;&lt;BR /&gt;Hope this helps or at least brings some ideas.</description>
      <pubDate>Thu, 10 Jan 2008 12:40:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/notification-delay-when-vpn-is-down/m-p/4126695#M30799</guid>
      <dc:creator>Carlsberg</dc:creator>
      <dc:date>2008-01-10T12:40:55Z</dc:date>
    </item>
  </channel>
</rss>

