We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My question about mod_xml_radius module (link: https://github.com/traviscross/freeswitch/tree/master/src/mod/xml_int/mod_xml_radius) and his conf.
This are work: <param name="User-Name" variable="sip_from_user" format="%s" /> It work, because User-Name param has type 0 (text) and %s is right.
<param name="User-Name" variable="sip_from_user" format="%s" />
I wand add Framed-IP-Address, which has type 2 and it's don't work: <param name="Framed-IP-Address" variable="sip_network_ip" format="%s" />
<param name="Framed-IP-Address" variable="sip_network_ip" format="%s" />
How to set Framed-IP-Address param from sip_network_ip var? What right format?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My question about mod_xml_radius module (link: https://github.com/traviscross/freeswitch/tree/master/src/mod/xml_int/mod_xml_radius) and
his conf.
This are work:
<param name="User-Name" variable="sip_from_user" format="%s" />
It work, because User-Name param has type 0 (text) and %s is right.
I wand add Framed-IP-Address, which has type 2 and it's don't work:
<param name="Framed-IP-Address" variable="sip_network_ip" format="%s" />
How to set Framed-IP-Address param from sip_network_ip var? What right format?
The text was updated successfully, but these errors were encountered: