Kannel SMS gateway running as daemon
It is important to make kannel running as daemon, so it will easily to start-stop this service
Create file kannel in /etc/init.d
#!/bin/sh
#
# kannel This script takes care of starting and stopping the kannel \
# WAP gateway services (bearer/wap/smsbox).
# chkconfig: - 97 03
# description: The Kannel WAP and SMS gateway services
# config: /etc/kannel.conf
# Use start-stop-kannel
prog=”/usr/sbin/start-stop-kannel”
args=”–start –background –exec […]
Configuring SMS Gateway kannel
I posted installing kannel sms gateway using Centos and Ubuntu
Now, i want to share how to configure the kannel.
Kannel configuration file is in /etc/kannel.conf
Here is my kannel.conf :
group = core
admin-port = 13000
admin-password = bar
admin-deny-ip = “”
admin-allow-ip = “*.*.*.*”
smsbox-port = 13001
wapbox-port = 13002
wdp-interface-name = “*”
log-file = “/var/log/kannel/bearerbox.log”
box-deny-ip = “”
box-allow-ip = “*.*.*.*”
include = “/etc/modems.conf”
group = wapbox
bearerbox-host = […]
Advertisement
More about Linux, Hostings, Website, Server, Microsoft and various advertisements will appear below.Building SMS Gateway using CENTOS
Another article, I posted how to setup sms-gateway on UBUNTU box.
Now I try to setup sms gateway on Centos Box.
# uname -a
Linux hardcorepolice 2.6.18-92.1.6.el5.centos.plusxen #1 SMP Thu Jun 26 13:43:14 EDT 2008 i686 i686 i386 GNU/Linux
Fedora repository
Fedora repository is available at http://freshrpms.net/packages/. (Contributed by Matthias Saou)
But I just simply run the command
# yum install kannel
Loading […]
Building SMS Gateway using UBUNTU
Project Name : SMS Gateway using UBUNTU
Hi all, now I am building sms gateway using UBUNTU.
$ uname -a
kernel Linux hardcorepolice 2.6.27-7-generic #1 SMP Tue Nov 4 19:33:20 UTC 2008 i686 GNU/Linux
I am using Nokia 6100 and DKU-5 as connector, free sms gateway source by Kannel version 1.4.3
source : http://www.kannel.org/download/1.4.3/gateway-1.4.3.tar.gz
download the source file, then extract it […]