HollaTags API
  • Introduction
  • 📳SMS
    • Send
    • Receive
    • Status
    • Credit
    • Lookup
    • Send SMS Sample Code
    • Receive SMS Sample Code
    • API Response
    • Callback
    • OTP
    • SMS DLR Error Codes
  • 📳USSD
    • USSD Inbound
    • USSD Outbound
    • USSD Sample Code
    • USSD Error Codes
  • 📳WhatsApp
    • WhatsApp Chat
    • WhatsApp Push
    • WhatsApp Sample Code
  • 📳SMPP
    • SMPP Specification
    • SMPP Servers
    • SMPP Authentication
    • SMPP Configuration
    • SMPP Message PDU
    • SMPP Client Configuration
    • SMPP Response Codes
    • SMPP DLR Codes
  • 💳Airtime
    • Airtime (VTU)
  • ❓FAQ
    • USSD - Dedicated
    • USSD - Shared
Powered by GitBook
On this page
  • Kannel Configuration
  • PHP Client Configuration

Was this helpful?

  1. SMPP

SMPP Client Configuration

PreviousSMPP Message PDUNextSMPP Response Codes

Last updated 3 years ago

Was this helpful?

...

Kannel Configuration

is a popular open source SMPP client software. The configuration below have been provided as an example SMPP connection block that will work out of the box for HollaTags SMPP server. You can make modifications as necessary.

#HollaTags SMSC SMPP
group = smsc
smsc = smpp
smsc-id = HollaTags
allowed-smsc-id = HollaTags
host = smpp1.hollatags.com
smsc-username = "{YOUR CREDENTIAL USERNAME}"
smsc-password = "{YOUR CREDENTIAL PASSWORD}"
port = 9009
receive-port = port
system-type = smpp
wait-ack-expire=0x02
throughput = 50
instances = 4
alt-charset = LATIN1
enquire-link-interval = 30
# you can uncomment the following two lines to enable debug logs
#log-file="/var/log/kannel/HollaTags_SMPP.log"
#log-level=2

PHP Client Configuration

There are some publicly available open-source implementation of SMPP client with PHP. How well this can scale will depend on the mode of implementation.

<?php


📳
Kannel