Jasmin短信:绑定失败了smpp-1-ire.smscarrier.com:8011

时间:2018-04-10 16:07:12

标签: sms sms-gateway smpp jasmin-sms

我使用 Jasmin sms Gateway ,我必须连接到服务器: smpp1-ire.smscarrier.com在8011端口,我关注你的说明但我无法连接,所有其他配置和测试工作:

Establishing TCP connection to smpp-1-ire.smscarrier.com:8011
2018-04-10 15:24:06 INFO 11188 Connecting to IPv4Address(TCP, 'smpp-1-ire.smscarrier.com', 8011) ...
2018-04-10 15:24:07 WARNING 11188 SMPP connection established from 52.31.169.62 to port 51982
2018-04-10 15:24:07 INFO 11188 Connection made to smpp-1-ire.smscarrier.com:8011
2018-04-10 15:24:07 WARNING 11188 Requesting bind as transceiver
2018-04-10 15:24:07 ERROR 11188 Bind failed [[Failure instance: Traceback (failure with no frames): <class 'jasmin.vendor.smpp.pdu.error.SMPPTransactionError'>: ESME_RBINDFA$
]]. Disconnecting...

我试图在jasmin.cfg上更改8011中的2275侦听端口,没有...

但这有效:

  • 系统ID:test
  • 密码:测试
  • host:smsc-sim.smscarrier.com
  • 港口:2775

日志:

*2018-04-10 17:35:21 INFO     14022 Establishing TCP connection to smsc-sim.smscarrier.com:2775
2018-04-10 17:35:21 INFO     14022 Connecting to IPv4Address(TCP, 'smsc-sim.smscarrier.com', 2775) ...
2018-04-10 17:35:21 WARNING  14022 SMPP connection established from 35.177.141.136 to port 48570
2018-04-10 17:35:21 INFO     14022 Connection made to smsc-sim.smscarrier.com:2775
2018-04-10 17:35:21 WARNING  14022 Requesting bind as transceiver*
2018-04-10 17:35:21 WARNING  14022 Bind succeeded...now in state BOUND_TRX

2 个答案:

答案 0 :(得分:0)

我仍然确信Jasmin可以配置我的服务提供商,但我不知道所有JasminSMS设置,就像NowSMS一样有效,而且我用于测试,我拿了一个screenshot of the configuration,如果有人可以帮我找到缺少的2个参数, systype smpp 哪个被接受,但也可能 SMSC字符集,其值应为: IA5(GSM)。

JasminSMS Gateway可能与这家提供商不兼容,鉴于Jasmin的名声,它仍然是非凡的。

无论如何,谢谢你的帮助。

答案 1 :(得分:0)

我建议改进日志记录,在该日志记录中,您会收到对SMPP绑定请求,打印请求参数和响应错误代码的错误响应。也请查看SMPP specification,以了解错误代码的含义。潜在原因:

  • 以下参数值至少有一个错误:system_id,system_type或password。

  • 您的绑定请求者原始主机IP不在SMPP服务器端列出为白色。

  • SMPP服务器端可能拒绝使用相同的system_id进行第二个客户端绑定。

  • 地址范围参数的用法可能已由SMPP服务强制执行

  • API端可能有system_id或密码字符长度限制

相关问题