Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-20 Thread Adam Raszynski
As suggested I enabled error logging via error_route to put in log full SIP message bodies Unfortunetly it doesn't seem to work with this type of error: ERROR:core:parse_uri: unknown URI param list excedeed For other parse errors I see message dumps, but not for this So for some reason I'm

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-20 Thread Bogdan-Andrei Iancu
Hi Adam, It does not jump into error_route as currently this capture only sip parsing errors, and it your case it is not a parsing error, but rather an internal error. So, 1) were you able to get the actual URI so see all the params ? 2) managed to extend the size of the array of unknown

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-20 Thread Ovidiu Sas
Nobody suggested to investigate this via error_route. The suggestion was to increase the opensips logging verbosity. Once you do that, you should be able to catch the bad URI. Regards, Ovidiu Sas On Wed, Feb 20, 2013 at 5:12 AM, Adam Raszynski netcentr...@gmail.com wrote: As suggested I enabled

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-15 Thread Bogdan-Andrei Iancu
Hi Ovidiu, Indeed, investigating a bit around would make sense :) Let;s see if Adam has some info for us. Regards, Bogdan-Andrei Iancu OpenSIPS Founder and Developer http://www.opensips-solutions.com On 02/14/2013 04:24 PM, Ovidiu Sas wrote: Hello Bogdan, Bumping the default value from 5

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-14 Thread Bogdan-Andrei Iancu
Hi Ovidiu, It might be wiser to have a default value of 10 to avoid such issues in the future. What do you think ? Regards, Bogdan-Andrei Iancu OpenSIPS Founder and Developer http://www.opensips-solutions.com On 02/14/2013 01:08 AM, Ovidiu Sas wrote: It seems that you are having more then

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-14 Thread Ovidiu Sas
Hello Bogdan, Bumping the default value from 5 to 10 shouldn't be a problem, although I've never seen URIs with more than 5 unknown params. Before bumping the default value, we should investigate to see if those unknown params are really 'unknown'. Maybe some of those params aren't really

[OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-13 Thread Adam Raszynski
Hi Recently I have discovered increasing amount of the following errors in my logs: Feb 13 09:36:59 node1 /usr/sbin/opensips[10458]: ERROR:core:parse_uri: unknown URI param list exceeded I see this error is repeated many thousands of times in my log Questions: - What does this error mean? -

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-13 Thread Muhammad Shahzad
When reporting issues please make sure to add opensips version you are using including operating system details. This helps in diagnosing problem better. Anyways here are the answers for your question, 1. This error means an invalid SIP packet is received which opensips was unable to parse. 2.

Re: [OpenSIPS-Users] Help trace source of error: unknown URI param list excedeed

2013-02-13 Thread Ovidiu Sas
It seems that you are having more then 5 unknown URI params. One thing that you can do is to recompile with an increased number of URI_MAX_U_PARAMS. See parser/msg_parser.h and increase the URI_MAX_U_PARAMS from 5 to 10. #define URI_MAX_U_PARAMS 10 If you enable debug logs, you should be able to