2

Vsmppbox で負荷分散のために複数のベアラーボックスを接続する方法、私の構成ファイルは

group=vsmppbox
id=VSMPPBOX
log-file=/var/log/kannel/vsmppbox.log
log-level=0
smpp-port=4721
database-type=mysql
database-config=mysql
database-enable-queue=1
inbound-queue-threads=10
outbound-queue-threads=10
auth-method=1
database-user-table=smpp_users
database-store-table=smpp_store
database-log-table=smpp_log
database-pdu-table=smpp_queued_pdu
database-route-table=smpp_route
database-ndnc-table=smpp_ndnc
database-spam-table=smpp_spam
database-template-table=smpp_template
database-sender-table=smpp_sender
database-version-table=smpp_version

group=mysql-connection
id=mysql
host=localhost
username=root
password=
database=kannel_smpp
max-connections=50

group=bearerbox-connection
id=SMPPBOX-TEST
host=localhost
port=13002

group=http-server
port=14010
password=vsmppbox

group=smpp-routing
routing-method=1

ベアラーボックスで同じ smsc_id を使用し、vsmppbox のルーティング テーブルで同じ sms_ids を使用して、MT SMS 用に複数のベアラーボックスを構成する方法は?

4

2 に答える 2

1

複数のベアラーボックス接続が可能です。構成ファイルでこの構成を繰り返し使用できます。

 group=bearerbox-connection
id=SMPPBOX-TEST
host=localhost
port=13002

group=bearerbox-connection
id=SMPPBOX-TEST1
host=localhost
port=13003

group=bearerbox-connection
id=SMPPBOX-TEST2
host=localhost
port=13004 
于 2016-09-05T05:13:11.863 に答える
0

multiple bearerbox connection is possible,

group=bearerbox-connection
id=SMPPBOX-TEST
host=localhost
port=13002

group=bearerbox-connection
id=SMPPBOX-TEST1
host=localhost
port=13003

group=bearerbox-connection
id=SMPPBOX-TEST2
host=localhost
port=13004 

you can use this configuration repeating in your config file, the id and port change ,

于 2016-09-16T09:01:47.617 に答える