Hello,
any errors in the log when you execute the command? Maybe its related to fragmentation of
the UDP packet?
Cheers,
Henning
--
Henning Westerholt –
https://skalatan.de/blog/
Kamailio services –
https://gilawa.com<https://gilawa.com/>
From: sr-users <sr-users-bounces(a)lists.kamailio.org> On Behalf Of Ilie Soltanici
Sent: Thursday, August 25, 2022 2:13 AM
To: Kamailio (SER) - Users Mailing List <sr-users(a)lists.kamailio.org>
Subject: [SR-Users] JSON-RPC dgram_socket just part of the output
Hello,
I'm trying to get the dispatcher status from kamailio through the UDP datagram but for
some reason, it is getting just part of the output. Is there any buffer that I have to
increase to get the complete output?
command used:
```
echo '{"jsonrpc": "2.0", "method":
"dispatcher.list", "reply_name": "kamailio_reply_fifo",
"id": 1}' | nc -u 192.168.1.1 8090
```
kamailio related config:
modparam("jsonrpcs", "fifo_name",
"/tmp/kamailio_request.fifo")
modparam("jsonrpcs", "transport", 6)
modparam("jsonrpcs", "fifo_mode", 0600)
modparam("jsonrpcs", "fifo_user", "kamailio")
modparam("jsonrpcs", "dgram_socket",
"udp:MY_INTERNAL_IP_ADDR:8090")
modparam("jsonrpcs", "dgram_timeout", 2000)
modparam("jsonrpcs", "pretty_format", 1)
output:
[cid:image001.png@01D8B85E.AB953A70]
Thanks