Reputation: 165
I am using Asterisk 1.4.18.1 I am getting the error "ast_udptl_new_with_bindaddr: No UDPTL ports remaining" when ever the calls on server reaches to 100 and after this error my calls getting disconnected. My operating server is Red Hat 3.4.6-3. Kindly suggest me something to resolve the issue.
Upvotes: 1
Views: 600
Reputation: 1878
First of all, it may be difficult to find assistance as Asterisk 1.4 was made end-of-life last April.
UDPTL is the common transport for T.38. Which, adds to the fun. I recommend you disable T.38 fax if you're not using it.
However, it may also be that your specification of start and end port in /etc/asterisk/udptl.conf
is too low. Here's what's in the default/example udptl.conf
as of Asterisk 1.8:
[general]
udptlstart=4000
udptlend=4999
udptlfecentries = 3
udptlfecspan = 3
use_even_ports = no
Upvotes: 1