I'm trying to make a forward to another gateway when the call has a prefix.
The error as I see is throw from my Cisco Gateway...
09/19-12:25:39.521360 0:1:96:14:3F:1 -> 0:B0:D0:E1:41:17 type:0x800 len:0x1C8
216.24.175.121:5060 -> 196.40.18.82:5060 UDP TTL:235 TOS:0x0 ID:189 IpLen:20 DgmLen:442
SIP/2.0 400 Bad Request - 'Invalid IP Address'..
Via: SIP/2.0/UDP 196.40.18.82;branch=0,SIP/2.0/UDP 196.40.18.26:5060;branch=z9hG4bK932b0300..From: iramirez <sip:123456@196.40.18.82>;tag=ae340300..To: 0018176801038 <sip:0018176801038@196.40.18.82>..Date: Fri, 19 Sep 2003 18:25:35 GMT..Cal
l-ID: 1b15030000000000@192.168.0.131..Server: Cisco-SIPGateway/IOS-12.x..CSeq: 1INVITE..Content-Length: 0....
----- Original Message -----
From: Andrei Pelinescu-Onciul
To: Iv?n Ram?rez
Cc: Serusers
Sent: Friday, September 19, 2003 12:20 PM
Subject: Re: [Serusers] Invalid Ip Address
On Sep 19, 2003 at 12:15, Iv?n Ram?rez <iramirez(a)cyberfuel.com> wrote:
> What is this error...
>
> 400 Bad Request - Invalid Ip Address
Are you sure this is from ser?
Could you send us full message dumps (ngrep), your config and ser logs?
Andrei
What do you suggest it be increased too? Currently the line reads '#define
PKG_MEM_POOL_SIZE 1024*1024'
-----Original Message-----
From: Andrei Pelinescu-Onciul [mailto:pelinescu-onciul@fokus.fraunhofer.de]
Sent: Friday, September 19, 2003 2:18 PM
To: Rork, Joseph (J.P.)
Cc: 'Serusers (serusers(a)lists.iptel.org)'
Subject: Re: [Serusers] No mem for sip_msg
On Sep 19, 2003 at 14:06, Rork, Joseph (J.P.) <jrork(a)ford.com> wrote:
> I've recently gone back to MySql v4.0, w/ SER 8.11. I'm trying to log
> in and I am seeing the following message in the syslog.
>
> Sep 19 17:50:17 sip2 ser[2066]: ERROR: receive_msg: no mem for sip_msg
>
> I have plenty of memory in my system. Has anyone else run into this
> problem, and if so, how did you fix it?
The short fix is edit config.h and change PKG_MEM_POOL_SIZE. Right now is
1Mb, increase it.
Explanation:
ser uses 2 types of memory, shared and "local". The "local" memory is not
shared between the processes and it's faster to allocate since we don't
need to lock on malloc. The shared mem. size can be increased form the
command line (-m size_in_mb). The default is 32Mb. The "local" mem.
maximum size is fixed to 1Mb (PKG_MEM_POOL_SIZE). We haven't needed more so
far. In your case probably ser uses a lot of "local" mem. when it tries to
load some of the databases in RAM on init. This is a known problem, and in
the future we'll solve it without increasing PKG_MEM_POOL_SIZE, but for now
this is the only solution. (I assume this is the problem in your case, but
you could have also found a mem. leak, we would need the full logs and
maybe a debug build to say for sure).
Andrei
I've recently gone back to MySql v4.0, w/ SER 8.11. I'm trying to log in and I am seeing the following message in the syslog.
Sep 19 17:50:17 sip2 ser[2066]: ERROR: receive_msg: no mem for sip_msg
I have plenty of memory in my system. Has anyone else run into this problem, and if so, how did you fix it?
Regards,
Joseph Rork
Ford Motor Company
Real-Time Collaborative Applications, SIE
Phone: 313-594-6672
Email: jrork(a)ford.com
"There are 10 types of people in the world: Those who understand binary, and those who don't."
Hello All,
I'm interested in knowing if there is a way to do the equivalent of append_branch or rewriteuri/rewriteuser without changing the ser.cfg file and restarting ser.
The scenario is this. I have a main line that is typically answered by one individual. Lets say he goes to lunch and the line is going to be covered by another individual. How could the individuals involved set this up by themselves using serweb or another method? I don't want to have to modify ser.cfg and restart the server every time calls need to be directed differently.
I tried adding a contact in serweb. From user A's account I tried adding user B's username or alias. Neither seemed to work. When I dial user A, user B's line does not ring.
Any ideas? I think all I need is a simple redirect function that will automatically redirect calls from one user to another without needed to change the config file and restart the server.
Also, is there anything special I need to do to get serweb to display accounting and missed call information? Serweb is running but is not displaying this info. I believe I complied with accounting turned on but I can't remember. Is there any way to check what modules are enabled or what config switches were set during complie?
Thanks,
G.
---------------------------------
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
I have install serweb but when I access serweb's admin I got an error :-
Fatal error: Call to undefined function:mysql_pconnect() in
/var/www/phplib/db_mysql.inc on line 73
What could be the problem?
Kelvin
looks like you haven't installed the php-mysql module
klaus
> -----Original Message-----
> From: kelvin [mailto:kelvinlg@singnet.com.sg]
> Sent: Friday, September 19, 2003 1:38 PM
> To: serusers(a)lists.iptel.org
> Subject: [Serusers] serweb Fatal error
>
>
> I have install serweb but when I access serweb's admin I got
> an error :-
>
> Fatal error: Call to undefined function:mysql_pconnect() in
> /var/www/phplib/db_mysql.inc on line 73
>
>
> What could be the problem?
>
> Kelvin
>
>
> _______________________________________________
> Serusers mailing list
> serusers(a)lists.iptel.org
> http://lists.iptel.org/mailman/listinfo/serusers
>
>
On Sep 19, 2003 at 00:35, Felix Schmid <felix(a)belugalounge.net> wrote:
> Andrei,
>
> forgive my ignorance - but you have lately explained the same thing to
> me.
> Can you explain to me where the performance win is actually gained?
[cc'ed to serusers]
If we would directly modify the message:
- we might need to realloc if the msg. size increases
(if I add 5 headers in different points this would mean 5 reallocs +
memcpys)
- the message would have to be re-parsed on each addition/deletion
(to avoid extra alloc+mem copy operations we keep the offsets to the headers
in the original message)
In general the most time-consuming part of the message processing is the
message parsing.
Also from my point of view is much saner to always "work" on the
original (non-modified) message.
> Isn't almost every message forwarded/relayed?
Yes.
> What about retransmits
> within transactions (I suppose ser attempts to retransmit t_relay'ed
> messages)?
On first transmit attempt the transmitted message is generated (= orig.
message + apply lumps/diffs). After that a copy of it it's stored for
retransmissions (if you use the statefull part: tm+ t_relay*).
Andrei
>
> On Thu, 2003-09-18 at 12:48, Andrei Pelinescu-Onciul wrote:
> > > however, this does not seem to work. is the rpid really added to the
> > > message at when requested or actually later (at transmit) ?
> >
> > At transmit. Amost all the stuff that gets added will show up only at
> > transmit time (you will see the original message, one exception is uri
> > processing -- you'll always see the modified uri).
> > The ideea is to keep the original message and a set of diffs to it
> > (struct lump). This "diffs" will be applied only on transmit. This will
> > speed things up quite a bit.
> >
> >
> > Andrei
> >
> > _______________________________________________
> > Serusers mailing list
> > serusers(a)lists.iptel.org
> > http://lists.iptel.org/mailman/listinfo/serusers
> --
> PGP-Key: http://belugalounge.net/~felix/Felix%20Schmid.asc
>
Приглашаем лидеров компаний принять
участие в эксклюзивном тренинге:
"ХАРИЗМА. Трудно ли быть богом"
24 - 25 сентября 2003 года
В силу природы харизмы тренинг ориентирован исключительно на персон с высокой
степенью социальной реализации. Участники тренинга - руководители высшего звена,
политики, общественные деятели, оказывающие влияние на большие группы людей.
Особенность тренинга: участники получат навыки влияния на людей, объединения
и вовлечения их в достижение совместных целей. Освоят эксклюзивные приемы
формирования событий и механизм достижения максимальной личной эффективности.
Научатся управлять своими эмоциями и наиболее продуктивному использованию ресурсов.
Составят алгоритм дальнейшего самосовершенствования.
Для того, чтобы получить более подробную информацию о семинаре и
зарегистрироваться в качестве участника, звоните нам по телефону: (095) 258-51-84
В программе тренинга:
I. ХАРИЗМА И МЫ. Что же такое харизма? Является ли харизматичность врожденной?
Кто обладает харизмой? Какими качествами должна обладать харизматичная личность?
Как развивается харизма? Что питает и что разрушает ее? Можно ли СТАТЬ харизматичным?
II. ХАРИЗМА И КОММУНИКАЦИЯ. Теория ближнего круга. Как носителю харизмы
выстраивать отношения с людьми? На кого опираться? Как увлечь других людей
достижением ваших целей, чтобы они это делали с удовольствием и энтузиазмом?
Как снизить чувствительность к материальному вознаграждению?
III. ХАРИЗМА И ВЛАСТЬ. Природа лидерства и доминирования. Вектор Х.
Принципы эффективного харизматического управления. Компоненты, из которых
складывается влияние харизматической личности. Завоевание авторитета.
Может ли женщина обладать харизмой?
IV. ХАРИЗМА И ИМИДЖ. Как нас воспринимают? Как формировать отношение к себе?
Харизматический миф: 6 фактов биографии, привлекших внимание к личностям от Христа до
Горбачева.
Принципы создания и транслирования собственного харизматического мифа.
Три модели реализации харизматического влияния в бизнесе.
Важно подчеркнуть, что тренинг позволяет не только получить знания, но и развить свои
личные
качества уже в процессе работы. Уже в первые две недели после окончания тренинга
участники
могут оценить, насколько возросло их влияние на окружающих (не только в деловой, но и в
повседневной жизни).
Автор тренинга - консультант по бизнес-коммуникации. Автор многочисленных публикаций в
СМИ.
Входит в десятку лучших бизнес-тренеров Москвы. В течение последних шести лет занимается
подготовкой публичных выступлений, пресс-конференций, презентаций и телепрограмм с
участием
политиков, деловых людей, представителей шоу-бизнеса. Работал с Борисом Гребенщиковым,
Леонидом Кучмой, Павлом Глоба, Гельмутом Коллем.
Для того, чтобы получить более подробную информацию о семинаре и
зарегистрироваться в качестве участника, звоните нам по телефону: (095) 258-51-84
C уважением,
Организаторы
Чтобы отписаться, направьте пустое письмо на адрес remove(a)mebgamma.ru