Short Message Service from AIX


 
Thread Tools Search this Thread
Operating Systems AIX Short Message Service from AIX
# 1  
Old 03-23-2010
Short Message Service from AIX

Hi AIX Guru's,

I am a bit new to this AIX stuff . Does anyone of you know how to send SMS
messages from an AIX box. We are able to send emails to the internet from
this AIX box , and I was hoping sending SMS's would be something similar
Any help would be greatly appreciated .

Please provide a sample script.

Many Thanks

---------- Post updated at 11:07 AM ---------- Previous update was at 07:33 AM ----------

Hi ,
I want to sent a SMS (short messaging service) alert in AIX when ever a apache
web server is up or down.
I am able to send s Email message but i want to send a SMS to mobile phones.
Please advice
# 2  
Old 03-23-2010
I don't know a SMS gateways software for AIX. There is Gammu for Linux - you might want to try to compile it or just set it up on a Linux box. Here is a tutorial:
Build your own SMS gateway with Ubuntu Linux and Gammu

Here is the link to their home page:
Wammu and Gammu

You could also use a provider or open SMS gateway that accepts emails.
# 3  
Old 03-23-2010
mobilenumber @service provider.com

Many thanks Mate for the valuable information.

I am looking for a script(works on AIX machine) which can send SMS (short service message) messages using service provide name.

something like---> mobilenumber @service provider.com

Kindly advice.
# 4  
Old 03-23-2010
I have not worked with such gateway directly but I guess you just have to send a simple mail. Mails can be send with the mail command for example:
Code:
echo "Here is my text." | mail -s "my subject" me@my.org

# 5  
Old 03-24-2010
SMS in AIX

1.Send mail is configured properly to reach outside world.
------------------------------------------------------
2.The Below commands are not working fine as far as SMS to the UK phone's is concerned.Please help
Code:
 
echo "this is my message" | /usr/lib/sendmail -v npanxx####@sms.provider.com

If you have a Cingular (formerly Southwestern Bell) phone, that would be;
Code:
echo "this is my message" | /usr/lib/sendmail cellnumber@email.swbw.com

If you want to send a flat file named my_file;
Code:
cat my_file | /usr/lib/sendmail cellnumber@email.swbw.com

The -v used in the first example will simply show you what is going on when sending from the command line and is not necessary. I would omit it in a script.

---------- Post updated 03-24-10 at 04:30 PM ---------- Previous update was 03-23-10 at 08:49 PM ----------

I am getting the below error response .
550 RCPT TO:<0-uk-mobilenum@o2.co.uk> User unknown.
please advice.

Last edited by zaxxon; 03-23-2010 at 12:26 PM.. Reason: use code tags please, ty
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Script to automate a service message

Hi I am trying to figure out, on how to automate whether in a simple script or using awk/sed/grep commands to automate a "service.message" file which has tag separated message stating as; "There is currently no outage or system is unavailable for duration of change....", therefore, when... (14 Replies)
Discussion started by: Gamma
14 Replies

2. AIX

Help activating http service on AIX

Am new to AIX 5.1 and we have our production database running on it. I need to activate HTTP service so that i can connect to the database's Enterprise manager from my workstation's web browser. can anyone help me with how to activate HTTP service on AIX 5.1 (9 Replies)
Discussion started by: reachay
9 Replies

3. AIX

service status in AIX

good afternoon to all hay i m new in AIX. my problem is that.....plz tell me how to see " service status" in AIX Becoz i run /etc/rc.d/rc.2/Sbesclientd so its show below like this bash-3.2$ sudo /etc/rc.d/rc2.d/SBESClientd status Usage: /etc/rc.d/rc2.d/SBESClientd { start | stop } I... (2 Replies)
Discussion started by: life008
2 Replies

4. UNIX Desktop Questions & Answers

Script that will display a short message

Can anyone point me to the right direction on how to write a simple script that will display a message on any terminal when implemented? Basically I need it so the script runs at a certain time, say April 30, 2010 and that the message will be displayed to me no matter which terminal I am logged... (2 Replies)
Discussion started by: jmack123
2 Replies

5. UNIX for Dummies Questions & Answers

Message Service Using kannel

Any body having idea or implemented SMS service with kannel..? Please help... (1 Reply)
Discussion started by: noufal
1 Replies

6. AIX

AIX Service Packs

Can anyone out there let me know what is the *common* Technology Level and Service Pack that everyone is at? I am at 5300-06-04-0748 on all of my LPARs. Also- does anyone have any guidelinies to rolling out new TL and Sps? Thanks (4 Replies)
Discussion started by: seacros
4 Replies

7. AIX

Latest AIX Service Pack

Hello, I am trying to install Oracle 11g on my AIX server and it requires at a minimum OS level 5300-05-06. I am currently at 5300-05-01. What do I need to upgrade this? Where can I get this sp? What are the step to install this? I am a DBA not sysadmin. We no longer have a sysadmin. Lucky... (4 Replies)
Discussion started by: dkranes
4 Replies

8. AIX

Debugging a service in AIX 5.3

Hi, I am a newbie on the AIX front....I am at present faced with a problem of a service eating up my client's CPU. To be more specific....My client uses backup exec for backing up (v 12.0). The moment I start a backup the beremote.exe (backup exec remote agent for unix, RALUS) service uses... (4 Replies)
Discussion started by: dkn1979
4 Replies

9. AIX

AIX Welcome Message

Hi guys, How can I changed or modified the AIX welcome message which appeared after login, like below: **************************************************************************** * * * ... (2 Replies)
Discussion started by: aldowsary
2 Replies

10. AIX

Aix - Service Pack

I've recently installed ServicePack1 for Tecnology_Level 9 of AIX 5.2 . The result of installation is "OK" but with oslevel -s i dont see the service pack installed .... after many research i try (with many luck!!) instfix -i|grep SP and the result : All filesets for 5200-08-01_SP... (1 Reply)
Discussion started by: BabylonRocker
1 Replies
Login or Register to Ask a Question