- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- EMS Alerts via SMS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2009 11:16 PM
03-10-2009 11:16 PM
EMS Alerts via SMS
I currently have a script which can be run on HP-UX server to send SMS. Is there a way in which I can configure EMS to activiate this script whenever there is an event?
Or is there any other ways to send EMS events via SMS?
Thanks to all~!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2009 11:33 PM
03-10-2009 11:33 PM
Re: EMS Alerts via SMS
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1264696
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1315988
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2009 12:50 AM
03-11-2009 12:50 AM
Re: EMS Alerts via SMS
# man monconfig
Notification Method
This selection will allow the user to select a location to send an alert issued by a monitor request. Locations can be:
UDP - User Datagram Protocol (a host name and port number will be requested)
TCP - Transmission Control Protocol (a host name and portnumber will be requested)
OPC - OpenView Messaging Protocol (this selection is only offered when OpenView Messaging is installed on the system)
SNMP - Simple Network Management Protocol
TEXTLOG - A text file (path will be requested)
SYSLOG - The system log
EMAIL - An electronic mailbox address (email address will be requested)
CONSOLE - The system console
rgs,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2009 07:10 PM
03-12-2009 07:10 PM
Re: EMS Alerts via SMS
Or any other methods?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2009 10:35 PM
03-12-2009 10:35 PM
Re: EMS Alerts via SMS
you can use kannel to configure SMTP gateway for sending SMS.
http://www.kannel.org
I'm currently working on it, though i'm not scripting guru. It'll take some time to stand.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2009 12:42 AM
03-13-2009 12:42 AM
Re: EMS Alerts via SMS
But thanks for the suggestion on kannel. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2009 09:37 AM
03-13-2009 09:37 AM
Re: EMS Alerts via SMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2009 10:55 AM
03-13-2009 10:55 AM
Re: EMS Alerts via SMS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2009 02:25 PM
03-13-2009 02:25 PM
Re: EMS Alerts via SMS
full phone # including Area Code. Most of the carrier gateways are listed in the post noted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2009 09:38 PM
03-16-2009 09:38 PM
Re: EMS Alerts via SMS
As OldSchool mentions, you can configure monconfig to send a
notification message to somebody directly.
If you want to receive a notification message you customized, the
following procedures may be your solution:
(1) configure monitoring requests you want in the monconfig command.
NOTE: select "6) EMAIL" as the notification method and enter
"launch_sms@xxxx.your.domain" as the email address.
(2) add a new mail alias
# vi /etc/mail/aliases
launch_sms : | /tmp/send_sms_script
# newaliases
/etc/mail/aliases: xx aliases, longest yy bytes, zzz bytes total
#
NOTE: change /tmp/send_sms_script to whatever you have.
I hope this indirect methond works for you.
Good luck
Shinji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2009 09:59 PM
03-16-2009 09:59 PM
Re: EMS Alerts via SMS
just FYI, the sms script can be manually activated using the below:
root@sms # ./smsClient_HPUX
Version: 1.01
Date: 30-06-2008
Usage: smsClient_HPUX -s <8-Digit_Mobile_Number> <"Max-160_Characters">
Usage: smsClient_HPUX -f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2009 10:10 PM
03-16-2009 10:10 PM
Re: EMS Alerts via SMS
parameters in /tmp/send_sms_script I mentioned in my previous
message.
Shinji