<?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 Dialing beeper or cell phone in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539674#M26430</link>
    <description>How can I setup my HP 9000 L sever to dial my&lt;BR /&gt;beeper or cell phone?&lt;BR /&gt;&lt;BR /&gt;For system errors or shut down.&lt;BR /&gt;thankyou</description>
    <pubDate>Tue, 12 Jun 2001 16:37:01 GMT</pubDate>
    <dc:creator>David Johnson_6</dc:creator>
    <dc:date>2001-06-12T16:37:01Z</dc:date>
    <item>
      <title>Dialing beeper or cell phone</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539674#M26430</link>
      <description>How can I setup my HP 9000 L sever to dial my&lt;BR /&gt;beeper or cell phone?&lt;BR /&gt;&lt;BR /&gt;For system errors or shut down.&lt;BR /&gt;thankyou</description>
      <pubDate>Tue, 12 Jun 2001 16:37:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539674#M26430</guid>
      <dc:creator>David Johnson_6</dc:creator>
      <dc:date>2001-06-12T16:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dialing beeper or cell phone</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539675#M26431</link>
      <description>David,&lt;BR /&gt;&lt;BR /&gt;There is a product called TelAlert that does just that.  Also, you can send emails to most modern cell phones and beepers--the only down side is that you are at the mercy of the internet for the timeliness of the delivery.&lt;BR /&gt;&lt;BR /&gt;--Joe</description>
      <pubDate>Tue, 12 Jun 2001 19:02:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539675#M26431</guid>
      <dc:creator>Joe Colucci_1</dc:creator>
      <dc:date>2001-06-12T19:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dialing beeper or cell phone</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539676#M26432</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;We have text messaging enabled on our mobile and also I have out small scripts configured which sends out email to the generic groups , email ids like 7034756676@att.com so that the text messaging is automatically relayed to the mobiles . You just need is to enable send mail and find out the genric email ids so that the text messaging can be done.&lt;BR /&gt;&lt;BR /&gt;Manoj Srivstava</description>
      <pubDate>Tue, 12 Jun 2001 19:27:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539676#M26432</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2001-06-12T19:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dialing beeper or cell phone</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539677#M26433</link>
      <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;Normally I use sendmail to dial my pager and deliver a text message. My interface works like this: echo "Something wicked this way comes" | elm -s "System Problem" 8889001234@pagemci.com. You could use mail or mailx in place of elm. This works fine if the network is up but what do you do if the network is down?&lt;BR /&gt;&lt;BR /&gt;That is where the modem dialup comes into play. My method of doing this is quite simple:&lt;BR /&gt;I have an init.d process called 'holdport' which calls a C program (also called 'holdport'). The functionof this program is to hold a tty port open with defined baudrate and other properties so that simmple scripts can the simply echo "AT" commands to the modem to dial a pager and deliver numeric codes to indicate the problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I'm going to attach the c source for 'holdport'; since it is K&amp;amp;R C your standard bundled ccompiler should compile it.&lt;BR /&gt;e.g.&lt;BR /&gt;cc holdport.c -o holdport&lt;BR /&gt;&lt;BR /&gt;I would then move holdport to /usr/local/bin/holdport.&lt;BR /&gt;&lt;BR /&gt;I'll assume your port is '/dev/ttyd0p3'.&lt;BR /&gt;&lt;BR /&gt;Your /sbin/init.d/holdport script should do something like this in the 'start' section.&lt;BR /&gt;&lt;BR /&gt;/usr/local/bin/holdport -t /dev/ttyd0p3 -s 19200&lt;BR /&gt;sleep 1&lt;BR /&gt;stty -crts rtsxoff ctsxon &amp;lt; /dev/ttyd0p3 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;This will set the port to 19200 baud; the stty command then sets some status lines; man stty for details.&lt;BR /&gt;&lt;BR /&gt;Your paging script is now very simple:&lt;BR /&gt;PAGER="9,18889001234"&lt;BR /&gt;EXTRA=",,,,,,,2,,,999"&lt;BR /&gt;&lt;BR /&gt;echo "ATDT${PAGER}${EXTRA}\c" &amp;gt; /dev/ttyd0p3&lt;BR /&gt;&lt;BR /&gt;The extra is my pagers convention. The comma's are 1 second delays; the '2' is entered to leave a number and the 999 would be your code for a severe problem.&lt;BR /&gt;&lt;BR /&gt;If you are not sure what your port is, the easist way is to create a modem using sam.&lt;BR /&gt;After the device is configured, note the device name (e.g. /dev/ttyd0p3); you then need to edit the  device's/etc/inittab entry and set it to 'off'rather than respawn. Do an init  q and kill any getty's associated with the device. You are then set to run holdport.&lt;BR /&gt;&lt;BR /&gt;Hope I haven't confused you too much, Clay</description>
      <pubDate>Wed, 13 Jun 2001 00:30:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539677#M26433</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-06-13T00:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dialing beeper or cell phone</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539678#M26434</link>
      <description>Hi again David,&lt;BR /&gt;&lt;BR /&gt;For some reason the attachment failed; here's attempt 2.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Wed, 13 Jun 2001 00:33:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dialing-beeper-or-cell-phone/m-p/2539678#M26434</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-06-13T00:33:00Z</dc:date>
    </item>
  </channel>
</rss>

