Hi All.
Is it possible to use radius accounting with a stateless proxy?
For example:
if (uri=~"^sip:0001@test.org") {
acc_rad_request ("Start");
rewritehostport("127.0.0.1");
forward (uri:host);
}
When I use this code, the radius request appears without
Sip-Translated-Request-URI, why?
Changing the above code for this, it works fine (include
Sip-Translated-Request-URI):
if (uri=~"^sip:0001@test.org") {
rewritehostport("127.0.0.1");
t_relay();
}
Thanks,
Tourinho