Hi,
Could anybody tell me why is Acct-Status-Type radius attribute always 'Failed', when i send a radius accounting packet with acc_rad_request?
I 'd like to send a packet, when an INVITE is received. And i also would like to disable somehow the accounting packet sent for the INVITE message, and sending just for ACK and BYE Because the INVITE packet is delivered late. and i need this radius packet in the same time when INVITE is received for billing.
Thanks, Tamas
Hello,
On 09/07/06 10:55, Cseke Tamas wrote:
Hi,
Could anybody tell me why is Acct-Status-Type radius attribute always 'Failed', when i send a radius accounting packet with acc_rad_request?
the parameter of acc_rad_request() has to begine with 200 in order to get status START.
acc_rad_request("200 ...");
Cheers, Daniel
I 'd like to send a packet, when an INVITE is received. And i also would like to disable somehow the accounting packet sent for the INVITE message, and sending just for ACK and BYE Because the INVITE packet is delivered late. and i need this radius packet in the same time when INVITE is received for billing.
Thanks, Tamas
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Hello,
Thanks the help, in the meanwile i've found it in the source code, and i use this way...
if (is_method("INVITE")) { acc_rad_request("200 Invite received..."); } else if (is_method("ACK")) { acc_rad_request("200 Ack received..."); }
But, the following config should work similar, isn't it? Why does accounting packet for INVITE arrvive late to Radius?
modparam("acc", "radius_flag", 1) modparam("acc", "radius_missed_flag", 2)
modparam("acc", "radius_config", "/etc/radiusclient-ng/radiusclient.conf") modparam("acc", "report_ack", 1)
setflag(1); setflag(2);
Thanks and regards, Tamas
Hello,
On 09/07/06 10:55, Cseke Tamas wrote:
Hi,
Could anybody tell me why is Acct-Status-Type radius attribute always 'Failed', when i send a radius accounting packet with acc_rad_request?
the parameter of acc_rad_request() has to begine with 200 in order to get status START.
acc_rad_request("200 ...");
Cheers, Daniel
I 'd like to send a packet, when an INVITE is received. And i also would like to disable somehow the accounting packet sent for the INVITE message, and sending just for ACK and BYE Because the INVITE packet is delivered late. and i need this radius packet in the same time when INVITE is received for billing.
Thanks, Tamas
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users