1) Enable syslog-ng to listen to remote syslog and send SMS message Add following lines to /etc/syslog-ng/syslog-ng.conf ======================================================================= # read syslog message from an EMU and send SMS if the word "Relay" # is found source s_udp { udp(ip(0.0.0.0) port(514));}; filter f_alerts1 {match("SMS"); }; destination d_screen { pipe("/dev/cyc_alarm" template("sms \"$MSG\"") ); }; log { source(s_udp); filter(f_alerts1); destination(d_screen); }; ======================================================================= 3) Create following shell script on /bin/sms file. Make it executable with "chmod +x /bin/sms" ======================================================================= #!/bin/sh # # Port Number of PCMCIA slot is number of ports on ACS +1 PORT=/dev/ttyS33 echo -e "AT\r" > $PORT sleep 1 echo -e "AT+CPMS=\"SM\"\r" > $PORT sleep 1 echo -e "AT+CMGF=1\r" > $PORT sleep 1 echo -e "AT+CMGS=\"0412456789\"\r" > $PORT sleep 1 echo -e "$@\r" > $PORT sleep 1 echo -e "\032" > $PORT sleep 2 ======================================================================= Note: You have to modify the phone number "0412456789" to the mobile you want message sent to. 4) Remove following line from /etc/pcmica/serial.opt INITTAB="/sbin/mgetty" 5) Download following file on your ftp server. Then ftp it to /etc/pcmcia/cis directory on your ACS http://www.peck.org.uk/p/dwnload/GLOBETROTTER.dat 6) Edit /etc/pcmcia/config and add the following text at the bottom of the file: card "Option Wireless Technology GSM/GPRS GlobeTrotter" #Use Manufacturing ID to match all GlobeTrotter variants manfid 0x0013, 0x0000 cis "cis/GLOBETROTTER.dat" bind "serial_cs" 7) Edit /etc/config_files and make sure following files are in the list. /etc/syslog-ng/syslog-ng.conf /bin/sms /etc/pcmica/serial.opt /etc/pcmcia/cis/GLOBETROTTER.dat /etc/pcmcia/config 8) Enter "saveconf" to save the changes on flash. 9) Power off ACS and install Option GlobeTrotter PCMCIA card on your ACS. 10) Turn ACS on and the installation is finished. You can make changes on EMU's input pins and trigger it to send syslog message(s) to ACS. Once ACS received the message, it will then send SMS to the mobile phone.