Alarm for Switches,

I am using 2950 switches, how can i generate a alarm or sms or mail for a any switch problem, e.g if UPS/Backup power supply stop to work.
Thank You.

Hey Mansoor,
I am not sure about the UPS or power back up problem, but for any switch related problem or for any logs if you want to send the alarms then you can use CNA to manage you switch and have your SMS or email listed in their and the logs will be send to you. You can download CNA from here and its free.
http://tools.cisco.com/support/downloads/pub/MDFTree.x?butype=switches
HTH, pls rate if it does.
-amit singh

Similar Messages

  • Alarms for Third party devices on Cisco PI v 2.1

    Is it possible to receive alarms for third party devices in Cisco Prime Infrastructure 2.1? If so how do i configure PI to show the alarms?

    Hi,
    AFAIk, It is not possible to receive alarms for third party devices in Cisco Prime Infrastructure 2.1.
    we have very limited support of 3rd party devices in PI. third party devices only snmp polling, snmp traps and syslog will work
    Third-party support   
     ●  Ability to discover and monitor third-party (non-Cisco) switches that support RFC 1213 and wireless controllers/access points from Aruba Networks
    Thanks-
    Afroz
    ****Ratings Encourages Contributors ****

  • System of alarm for a building

     hello,
    I am a novice in labview and I need help.
    It is intended to construct a system of alarm for a building with some entrances in such way that:
    1.    The system will have to protect two doors, 4 windows and door of garage.
    2.    The system must not have switch of general cut
     3.    To enter in the building without going off the alarm it must: To bind the switch (key) in the out side of the door, and i 30 seconds later, the second door opens (Second key), this after having closed the first door.
    4.    Any shunting line to the indicated procedure sets in motion the alarm, to torn off the alarm is necessary to repeat procedure 3
     5.    To protect the building, it is necessary that all the doors and windows are closed and to execute the inverse procedure of 3.
    Thaks

    caco wrote:
    Sorry just have answered now but I had to learn a little more.
    Yes, this is an académic work, For that i'm only go to use labview, without hardware, simulating the signal of the sensors with buttons on \ off.
    I already made a little but I am with problems.
    1º Problem
     My clock only can start  counting when the outside door  is  closed. To make this I used a Elapsed function that counts until the time target (30segundos) and “gives” the indication to the alarm that the key whose  introduced in de inside door before the thirty seconds terminate. The problem is that after arriving at thirty Secs it goes to 0 and continues to count. How i do to make it stop when the alarm is not triget or not.
    Do you have AutoReset turned on in that Express VI?  Perhaps you want to set that to off.
    Also I do not know how I put the system  to zero when the alarm dont starts.
    I don't know what that means.
    2º Problem
    Will be necessary to have deep knowledge in logic boolean to obtain the cover of all the logical operations.
    I would say so.
    3º problem
     point five. can you give me a tip about it ?
    You should look at a state machine archtitecture.  Search the forums.  This will allow you to have different paths of code execution based on the current state of your program
    Your screenshots embedded in your message don't show up because they point to a location on your harddrive.  Don't use firefox's cut and paste routines for embedding screen shots.  Use the Insert Image button on the editor's toolbar.
    By the way.  On the numeric palette, there is a compound arithmetic function.  You can set that to boolean operations such as OR, so you can or everything together in one step rather than needing a half dozen like you have now.

  • Is there a way to get an alarm for my events for the iCal on the iPhone 4?

    Is there a way to get an alarm for my events for the iCal on the iPhone 4?

    Greetings,
    See page 113 of the iPhone 4 user manual: http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    When you add an event to the Calendar.app of the iPhone 4 there is an "Alert" option which should give you the desired result.
    Cheers.

  • No Email Alarm for All-Day Events

    Hello, Everyone,
    I've got a desktop and a laptop, and I've been syncing the iCal calendars on each for some time. However, this has resulted in one annoying thing - whenever an event comes up in iCal that I'd set an email alarm for, I would receive multiple alarms, one from each machine.
    I thought I'd solve this problem by moving the calendars to my server (a headless Mini running 10.4.6 Server), and thus only get one email alarm. However, since I moved it, I'm getting no alarms.
    I've run some tests, and confirmed that if I set up a test event at a specific time, I will get an email alarm for it. However, if the event is set up to be an all-day event, no alarm.
    I've restarted the server, I've made sure the iCalScheduler is running...these calendars have worked for years, and now I'm perplexed. Any thoughts?
    Cheers,
    Martin

    Well, I couldn't figure this one out, so I just moved the calendars back to my main machine, and published them to the web for sharing with my laptop. On my main machine they worked fine.
    Can't figure out why it wouldn't work on the server. Maybe it'll change with Leopard's iCal server.

  • Enum class not supported for switch() statement in 12.4 beta?

    Hi fellow 12.4 beta testers,
    It would appear "enum class" isn't supported for switch() statements in the 12.4 beta. This compiles fine under clang and g++. Will this be fixed for the final release? This currently causes compile errors for us, since __cplusplus >= 201103L evaluates to true, so our code uses "enum class" instead of plain "enum". It looks like the C++11 standard says it should be supported:
       Switching on enum class in C++ 0x - Stack Overflow
    Many thanks,
    Jonathan.
    $ cat test.cpp
    #include <iostream>
    enum class Ternary { KnownFalse = 0, KnownTrue = 1, Unknown = 2 };
    int main( void )
       Ternary foo;
       switch ( foo ) {
          case Ternary::KnownTrue:
          case Ternary::KnownFalse:
          case Ternary::Unknown:
             std::cout << "Success\n";
    $ clang++ -std=c++11 test.cpp
    $ g++ -std=c++11 test.cpp
    $ /opt/SolarisStudio12.4-beta_mar14-solaris-x86/bin/CC -std=c++11 test.cpp
    "test.cpp", line 8: Error: Cannot use Ternary to initialize integral type.
    "test.cpp", line 8: Error: Switch selection expression must be of an integral type.
    "test.cpp", line 9: Error: An integer constant expression is required for a case label.
    "test.cpp", line 10: Error: An integer constant expression is required for a case label.
    "test.cpp", line 11: Error: An integer constant expression is required for a case label.
    5 Error(s) detected.

    Thanks for reporting this problem! I have filed bug 18499900.
    BTW, according to the C++11 standard, the code is actually not valid. Section 6.4.2, switch statement, says an implicit conversion to an integral type is required, which is not the case for for a scoped enum (one using the "class enum" syntax). This limitation was raised in the C++ Committee as an issue to be fixed, and the C++14 standard makes the code valid.
    As a workaround, or to make the code conform to C++11, you can add casts to int for the enum variable and the enumerators.
    Message was edited by: Steve_Clamage

  • How can I remove default alarm for events in iCal on devices ios?

    Whenever I add an event to my iCal calendar in Mounain Lion it will automatically add one default alert only on my iphone and ipad. These default alarms are not displayed on my macbook or icloud.com
    Default alarms are disabled in macbook, icloud.com, and my ios devices.
    How can I remove default alarm for events in iCal on devices ios?
    Thanks and sorry for my english.
    MacBook Pro, Mac OS X 10.8

    OK, so I have had this issue for the past several months. I think it all started when I upgraded to ML from SL and migrated my calendars and contacts to iCloud. That was a couple months ago. But now I am running 10.8.2, and about two weeks ago I upgraded my iOS devices to 6.0.1.
    I don't seem to be having any issues with events that I create now, but all those old events that were migrated to iCloud a couple months ago, many of those sound alerts on the iOS devices even though there was no alert defined when the event was originally created. I have always had alerts off by default both in iCal and on the iOS devices.
    So here's the question: is there a way to go through and disable all these spurious event alerts? I've been disabling them as the event reminders come up, but it's irritating. It would be nice if there was a way to turn them off all in one shot somehow.

  • __ Is there a way to adjust the key commands for switching channels in curves?

    __ Is there a way to adjust the key commands for switching channels in curves?
    By that I mean <command> + 1 for cyan, <command> + 2 for magenta etc. like Photoshop CS3 rather than <option> + 3 for cyan etc.
    There's gotta be a way under Edit --> Keyboard Shortcuts - but I can't find it!
    Thanks,
    Hugh

    Hi,
    You can find the CS4 plug-in here:
    http://blogs.adobe.com/jnack/files/Use_Old_Shortcuts.zip
    It's inline in tis post with some more background info:
    http://blogs.adobe.com/jnack/2010/05/use_legacy_shortcuts_option_in_cs5.html
    regards,
    steve

  • Charged £36 for switching to a different supplier ...

    I signed a 12 month phone and broadband contract last September with BT, and received a renewal notice a month prior to my contract being up to say that I should let them know if I didn't want to renew, otherwise my renewal would go ahead on 19th September.  
    This year I decided to try a different supplier, so I signed up with this other company at the start of September and they contacted BT to say that I would be switching - this notice was given two weeks before 19th September.  My switchover date was 26th September, so I had one week further with BT beyond my 12 month contact, which BT didn't state would be a problem.  BT sent a letter confirming my account was being terminated, and stating that I would be charged £0.77 for switching.  It seemed a bit strange to me that I would be charged for switching suppliers, after all it doesn't cost BT anything apart from losing my custom and I wouldn't have thought it was in line with competition laws to try and put charges in place to discourage people from switching, but I thought nothing of it as it was such a small amount.
    However, I've since received an email from them saying:
    As you're stopping your service within the minimum term, you'll need to pay £36.170002 for stopping early. This fee is usually based on the number of months left on your contract.
    But I'm NOT stopping within the minimum term, my minimum term was 12 months which I completed - and I never signed a new contract with them, and I told them with plenty of notice that I would be switching elsewhere, so there are NO months left on my contract.
    I can understand that I will be charged for an extra week of service, which by my calculations for unlimited evening and weekend calls (£3 per month plus £10 line rental) and 40GB monthly broadband (£18 per month) totalling £31 per month, for 7 days that works out at about £7, which is what I would expect my final bill to come to.
    Anyone else had this issue?  It's odd that I've received two different letters via different communication channels (one in the post and one via email) which say contradictory things about termination charges.
    Advice and help would be much appreciated.  Previously I had a reasonably good image of BT and would have considered switching back to them next year, however that prospect becomes less likely the more they mess me around with this.
    Thanks for any help you can give,
    Tdot

    Thanks for responding, in answer to your questions:
    1. No I didn't get a MAC code from them, I didn't realise I even had one, they didn't mention this when they contacted me and said it would cost 77p to switch.  As they didn't mention it in their letter when they had the opportunity to tell me about any additional charges, I'd be very annoyed if they charged me when there was another way of doing it which would exempt me from those charges!
    2. My new supplier contacted BT straight away and BT sent a letter to me confirming that my contract would be ending. As a result, I didn't think I'd need to contact them to say it would be ending - surely they already knew if they contacted me to let me know when my service would be stopping?
    I did email them and they have got back to me saying something about a fault with my bill, and that everything should be fine once my final bill is issued.  I will wait and see on the final bill what happens, then if it's not to my satisfaction I'll put in an official complaint.
    From a look around this forum, the MAC code issue seems a common one.  Any ideas how it usually pans out?  It seems to be an ongoing issue on quite a few posts.  Is there anything I can do now the switch has occured?  I assume not, but it's worth a try.
    Many thanks,
    tdot

  • Request for switch off protection in coming new iphone.

    Dear apple
    Subject- Request for switch off protection in coming new iphone.
    I am a very new customer of yours, have bought a iPhone 5s on 25th Dec '13, but unfortunately someone stolen my phone in a MELA in my city. I immediately call my iphone but getting it switch off, as the thief had put the phone in switch off mode. I search it in iCloud with find my iphone apps but getting offline till date. I use pass code & finger print protection that's why probably it can't be use by the thief, but it can be sell as spare parts by opening up its parts . I had do all legal formalities & inform my carrier to lock my sim. Recently I again bought a new iPhone 4s 8GB from amazon.com & using it now.
    It is the time to welcoming new iphone probably iphone 6/iphone air in this fall. I have plan to buy it & a apple laptop but first iphone 6 followed by iwatch if you launch & than laptop.
    Now coming to the main point why I have written this mail let's explain it - I think you should put a switch off protection in this new device so that someone can't put the phone in switch off mode except the owner, at-least phone can be track till the battery last if someone stollen it. Because I know the problem & pain when someone lose a smart phone with all personal details. So please consider this in your new device as a new feature.
    I have given the details of my both phone -
    1.iphone 5s Gold
    IMEI no
    SL no F2******RC6
    Parts no MF354HN/A
    2. iPhone 4s 8GB black
    IMEI no
    SL no C8*****ML6
    Parts noMF265HN/A
    Thanking you
    Dr Jyoti Prasad Rajkhowa
    Sivsagar
    Assam
    India
    <Edited by Host>

    This is a user-to-user forum. If you wish to offer Apple feedback, you can do so here: http://www.apple.com/feedback/
    As for your suggestion, as much as I can understand what you are requesting, if the device is turned off, it is off. There isn't anything Apple or your carrier can do about that. Having a device that is OFF continue to send a signal suggest all sorts of privacy and battery management issues. 

  • ICal Alarm for birthdays

    I am unable to set an alarm for birthdays. I cannot believe that this is not possible to do, anyone got any ideas?

    Hi,
    A lot of people on this forum seem to want this feature.
    I have written an Applescript Studio application that duplicates the functioning of the birthdays calendar (syncing dates to iCal in the background), plus adding a lot of extra features, including alarms.
    Dates to iCal automatically syncs your Address Book birthdays, anniversaries and custom dates to iCal, creating alarmed, editable events in a seperate calendar. With Dates to iCal you can:
    - Add Address Book date events automatically to iCal.
    - Choose which event types you want added (birthdays, custom dates or both).
    - Have any type of alarm you like for the event, from a message to emailing a whole Address Book Group.
    - Choose the notice in days and hours the alarms are set for.
    - Manually make changes (i.e. adding notes) to these events.
    - Add birthdays manually for people you don't have a seperate card for in Address Book.
    It is freeware. To get a copy go to www.nhoj.co.uk.
    Best wishes
    John M
    Disclaimer: Although Dates to iCal is free, I do ask for donations on my site. So, in compliance with the Apple Discussions Use Agreement, I may receive some form of compensation, financial or otherwise, from my recommendation or link.
      Mac OS X (10.4.5)  

  • Critical Alarm for Nexus 7010 device

    Hi Team,
    We are getting Critical Alarm for the Data center device Nexus 7010 continuously from 28-Oct.
    error (device hde1) in start_transaction: Journal has aborted - kernel
    2012 Oct 29 10:00:18.227 DC-Core-Switch2 29 10:00:18 %KERN-2-SYSTEM_MSG: EXT3-fs
    error (device hde1) in start_transaction: Journal has aborted - kernel
    2012 Oct 29 10:28:37.497 DC-Core-Switch2 29 10:28:37 %KERN-2-SYSTEM_MSG: EXT3-fs
    error (device hde1) in start_transaction: Journal has aborted - kernel
    2012 Oct 29 10:28:42.398 DC-Core-Switch2 29 10:28:42 %KERN-2-SYSTEM_MSG: EXT3-fs
    Also attaching the complete logs collected for this device and suggest if there is any Hardware related issue or some Software related issue.
    Regards,
    Ashutosh

    Hello
    hde1 is the logflash device. Looks like there were IO errors and the kernel mounted the fs read-only. You can try to reload the device and if logflash will come back up fine after the reload, its a transient issue; if the issue comes back, the logflash device most likely is damaged bad and needs to be replaced. You will need to open a service request with TAC to get it replaced.
    HTH,
    Alex

  • Why doesn't the rotate gesture on my trackpad behave as it used to for switching between tabs when it works the same with all other programs besides Firefox?

    Why doesn't the rotate gesture on my trackpad behave as it used to for switching between tabs when it works the same with all other programs besides Firefox?
    I changed the about:config to make the rotate gesture move between tabs, and it worked great for well over a year. Now it behaves erratically as described here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=877598
    It used to be very controllable to move one tab over, now it is erratic and moves quickly and to unexpected tabs regardless of how slow I do the rotate gesture. This is the main reason I use Firefox over Chrome and I would like to continue to do so unless there is no fix to this.

    Just set the browser.gesture.twist.threshold to something around 15-25.

  • Device package error for switch Cat2960

    Hi,,
    We are installing device package for switch Cat2960. But we get below error message when trying to install the same.
    WARNING :  Cat2960(6.1):Consistency check failed for base package SharedDcmaIOS
    When trying to updgrade the SharedDcmaIOS to higher version we get the below error message.
    SharedDcmaIOS, SharedNetshowIOS, SharedSwimIOS
    WARNING :  SharedSwimIOS(2.5.1):Consistency check failed for base package LibSwim
    WARNING :  SharedNetshowIOS(2.2.1):Major versions are incompatible for base package [SharedNetshowIOS]. Required version = 1.0, Found  version = 2.2
    Kindly guide us in resolving the above issue related to device pacakage installation.
    License Info:
    Bundle             Installed/Updated on
    LMS2.6            18 Jun 2009
    Name      Version      Size         Status        Expiration Date 
    1.CM         4.0       Unlimited    Purchased      Never
    2.DFM       2.0       Unlimited    Purchased      Never
    3.IPM        2.6      Unlimited     Purchased      Never
    4.RME       4.0      Unlimited     Purchased      Never

    Hi,
    We are using LMS2.6 and you have provided solution to install / upgrade to LMS 2.5.1
    We are installing the device package  Cat2960.RME43.v6-1 for switch 2960
    Supporting device package we are installing are
    SharedSwimIOS.RME43.v2-5-1
    SharedDcmaIOS.RME43.v2-4-1
    SharedNetshowIOS.RME43.v2-2-1
    When installing we get the error  Consistency check failed for base package.
    Regards,
    Rakesh Prasad

  • Alarm for a specific event and time

    My alarm works just fine, if I set it to ring like an alarm clock.  The problem is that from time to time if I enter a specific time and event, it will not alarm.
    For example:
    9:00 AM.  Phone home
    The alarm indicator will be checked in the preferences area, but no alarm will will "go off".  This does not happen all of the time.  What can I do?

    The only app that I know of that will sound an alarm even if the phone is muted is the built in Clock app. It does not have the ability to set an alarm for a specifc date. So, no, I don't believe what you want to do is possible.

Maybe you are looking for

  • Downloaded Flash Player update but still doesn't work!

    Hi I have downloaded several times the new update for Flash Player and every time I go on to watch iPlayer it still asks to download the software. I have done the instructions about 6 times now and its really annoying! Its a Mac laptop - can anyone h

  • Dowwnload purchased items...

    Hey guys, no one seems to be able to help me Re: Not being able to download my purchases music, but does does anyone have an idea of another forum or support I could try??? Any info would be much appreciated.. I'm a very green computer user.

  • How to avoid leaving a gap when closing tabs on Firefox 5?

    Hello, I want to disable a new feature on Firefox 5. Or, at least, I don't recall it being a feature on Firefox 4. When I have various tabs open, and close one of them, they go to the left, leaving a gap to the right that will be filled the time I mo

  • Why "backend configuration" at monitoring portal disabled

    Hi! We have an MI 7.1 newly installed. At URL: http://FQDN:8000/sap/.../sdoe_administration, the link configuration->backend configuration is disabled and no body can edit anything. Is this a role issue? We granted all SAP_DOE* roles already. Thanks!

  • Management IP issue

    I have several Aironet 1231G APs I am configuring as part of a new network. I want to have 3 VLANs (Vlans 2,3,4). Is there a way I can put the management IP, which will be the IP address for BVI1, on the vlan 2 subnet? It looks like the way I have it