DX NetOps

 View Only
  • 1.  Spectrum Alerts through SMS

    Posted Jan 05, 2014 09:00 AM

    Hi All,

    I want to enable SMS notification for some critical alerts in spectrum.And it need to be sent to device owners.

    How to enable these SMS alerts? kindky share the steps.

    Thanks in Advance!



  • 2.  RE: Spectrum Alerts through SMS

    Posted Jan 06, 2014 12:58 AM
    rampeter:

    Hi All,

    I want to enable SMS notification for some critical alerts in spectrum.And it need to be sent to device owners.

    How to enable these SMS alerts? kindky share the steps.

    Thanks in Advance! 



    Hi RamPeter,

    you can enable sms notification in spectrum by using SANM. in setscript pass the url of SMS gateway with the attribute you want to pass in alarm message.

     

    Regards,

    Irshad Khan

     



  • 3.  RE: Spectrum Alerts through SMS

    Posted Jan 06, 2014 09:36 AM

    Hi Irshad,

    Thanks for u r reponse .Can you please explain in detail .

    I am not aware of the  "SANM. in setscript pass the url of SMS".As i am using the tool new.It would be really helpful if get the procedure too.

    Regards,

     



  • 4.  RE: Spectrum Alerts through SMS

    Posted Jan 07, 2014 01:52 AM

    Hi RamPeter,

    1. go to the %spectrum%/notifier directory.

    2. below is the code to send the sms by using perl script. save the following snippet in a <file_name>.pl file.

    ############################################

    #!/usr/bin/perl -w

    use utf8;
    use strict;
    use LWP::Simple;
    my $uri = $ARGV[0];
    my $response = get $uri;
    print "Response: $response\n";

    #######################################################################

    3. now in setscript (location:- %spectrum%/Notifier) pass the url of your sms gateway.

    ##############################

    use utf8;
    use strict;
    use LWP::Simple;

    my $username = "";
    my $password = "";
    my $send_from = "";
    my $send_to = "";
    my $message_text = "";

    my $URL = "http://websms.smswarehouse.com:7800/websms/webmsg?user=$username&pass=$password&sid=$send_from&mno=$send_to&type=1&esm=0&dcs=0&text=$message_text";

    perl <file_name>.pl $URL

    ####################################################

     

     

     

    Regards,

    Irshad Khan

     

     



  • 5.  RE: Spectrum Alerts through SMS

    Posted Jan 07, 2014 03:14 AM

    Thanks Irshad for your quick reply!!!!!!

     There is any limatation to pass the Sms to particular alerts .eg:Device stopped like that ?or for only critical alerts ?

    Regards!

     

    ram



  • 6.  RE: Spectrum Alerts through SMS

    Posted Jan 07, 2014 03:59 AM

    Hi Ram,

     

    you can use if condition severity parameter  like if (Condition=="CRITICAL") then run the perl script.

     

    Regards,

    Irshad Khan



  • 7.  RE: Spectrum Alerts through SMS

    Posted May 13, 2014 11:54 AM

    Hi All,

    Anyone is using the below process .Any third party apps required to implement?

    If anyone has document kindly share .it would be helpful.

    regards,

     



  • 8.  Re: Spectrum Alerts through SMS

    Posted Feb 18, 2015 09:18 AM

    Hi Irshad,

     

    I'd lide to make the same system of notfication, i main by SMS, if you have please any document that can help me please  to implement this option.

    thank.



  • 9.  Re: Spectrum Alerts through SMS

    Posted Aug 17, 2015 08:23 AM

    Dear All,

     

    please confirm, above mentioned steps work perfectly?

     

    Many Thanks



  • 10.  Re: Spectrum Alerts through SMS

    Posted Aug 19, 2015 05:40 PM

    Issac08

     

    Checking to see if the reply by Irshad0808 answered your question. If so, could you please mark this as answered.

     

    Joe