Folks,
This question isn't directly related to a SER, but does anybody know why
Cisco IOS inserts several identical `c=<IP>' lines in SDP which it
generates? No other UA I know about does that. I wonder because it
creates a problems with SDP rewriting in nathelper module and I need to
decide whether I have to modify nathelper to cope with that or open a
Cisco TAC case instead.
Any comments are appreciated!
-Maxim
SIP/2.0 200 OK
Via: SIP/2.0/UDP 67.104.130.102:5061
From:
<sip:0118000@67.104.130.102:5061;user=phone>;tag=bb4b39670c51e5c737c5de99b5450cc5
To: <sip:61412722777@64.180.102.72;user=phone>;tag=357A3908-2F6
Date: Tue, 17 Jun 2003 07:35:12 GMT
Call-ID: 2920698556(a)192.168.1.100
Server: Cisco-SIPGateway/IOS-12.x
CSeq: 2 INVITE
Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, COMET, REFER,
SUBSCRIBE, NOTIFY, INFO
Allow-Events: telephone-event
Contact: <sip:61412722777@67.104.130.107:5060>
Content-Type: application/sdp
Content-Length: 285
v=0
o=CiscoSystemsSIP-GW-UserAgent 7069 1539 IN IP4 67.104.130.107
s=SIP Call
c=IN IP4 67.104.130.107
^^^^^^^^^^^^^^^^^^^^^^^
t=0 0
m=audio 19044 RTP/AVP 4 19 101
c=IN IP4 67.104.130.107
^^^^^^^^^^^^^^^^^^^^^^^
a=rtpmap:4 G723/8000
a=rtpmap:19 CN/8000
a=fmtp:4 annexa=no
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-15
Hi,
Should the server produce a 100 - TRYING (Stateful)/200 - OK
(Stateless) to the calling party when an OPTIONS message is sent to it.
[11.2 processing of OPTIONS request @ rfc3261 - "The response code
chosen MUST be the same that would have been chosen had the request been
an INVITE"]
Currently the server just forwards the OPTIONS message (to the called
party) without sending a (200/100) back to the calling party.
Thanks,
Platform: GNU/Linux 2.4.18-14 i686
Server: Sip EXpress router (0.8.11pre29 (i386/linux))
-- Start OPTIONS message --
2003/06/19 12:40:05.819450 192.1.2.88:5060 -> 192.1.2.17:5060
OPTIONS sip:9727610001@192.1.2.17 SIP/2.0.Via: SIP/2.0/UDP
192.1.2.88:5060;
branch=z9hG4bKkdjuw.Max-Forwards: 70.From: "9727619271"
<sip:9727619271@
192.1.2.88>;tag=323.To: sip:9727610001@192.1.2.17.Call-ID:
517928895(a)192.1.
2.88.CSeq: 1 OPTIONS..
-- End OPTIONS message --
I installed ser yesterday and I was trying to get an UA to connect to it. I created just one user:
<sip:marcelo@marcelo.homeunix.com> and used an iptel.org account to send a message, I got:
483 Too Many Hops. I attached the ser.cfg and a capture file from tcpdump.
Thanks,
Marcelo.
Hi,
I have just upgraded our ser 0.8.10, which worked fine, to ser 0.8.011Pre29,
with the Jabber and PA modules running.
The problems I am encountering are:
when in debug mode I often get error messages: XJAB:xjab_check_workers:
worker has exited, status=0, err=-1, errno=10. I have not found the meaning
of this error code.
More serious: ser seems to create many processes (up to more than a hundred
after some hours of use), which after a day or so crashes the servers it
runs on (Linux Redhat 9, bi PIII-500). Do you know where this can come from
?
Thanks in advance,
Damien Vicq
Bell Labs
Hi,
I have been running ser-0.8.10/FreeBSD-4.7 for 6 months
without problem. I changed ser default port,i.e.,5060 to
5065 on ser.cfg because some sip phone needs 5060 for
their STUN/NAT traversal now. It works fine for sip hardphones
using UDP:5065 of ser for REGISTER, but MSN Messenger4.6
on windows98 could not REGISTER eventhough the REGISTER
packet was sent from the Messenger4.6 to the ser's 5065
as bellow;
-------------------sample -------------------
U 2003/06/19 10:10:08.426264 192.168.0.21:1079 -> 192.168.0.26:5065
REGISTER sip:tel.no-ip.com SIP/2.0..Via: SIP/2.0/UDP 192.168.0.21:14236..Fr
om: <sip:050021@tel.no-ip.com>;tag=acbb1c1c-a23c-11d7-8627-0090997e7578..To
: <sip:050021@tel.no-ip.com>..Call-ID: acbb1c1d-a23c-11d7-8627-0090997e7578
@192.168.0.21..CSeq: 2 REGISTER..Contact: <sip:192.168.0.21:14236>;methods=
"INVITE, MESSAGE, INFO, SUBSCRIBE, OPTIONS, BYE, CANCEL, NOTIFY, ACK"..User
-Agent: Windows RTC/1.0..Expires: 0..Content-Length: 0....
--------------------sample end-----------------
Messenger4.6 does not accept "aaa@foo.bar.com:5065" and never
change UDP port:
REGISTER sip:foo.bar.com
From: <sip:aaa@foo.bar.com>
To: <sip:aaa@foo.bar.com>
I tried "iptel.org SIP Express Router v0.8.10 -- Admin's Guide,
Troubleshooting,Q: Windows Messenger authentication fails. "
but it does not work.
Does someone know how to register Messenger4.6 to non-default
port of sip proxy?
Regards,
Zen Kato
Hello:
I have some Cisco phones registered to SER running on
FreeBSD 4.7. Users of these phones want to dial a telephone
number and have the call correctly routed out to the PSTN
via a Cisco gateway on the network. The users of course
only key-in a telephone number. No domain name or
IP address. I thought the following code would correctly
append the IP address and port of the gateway to their
telephone number so the call could get routed correctly. This
is not working. Instead either the IP address of the calling
phone or the domain name for my domain is appended. Any
thought on how to correct this would be appreciated.
# check if it's about PSTN destinations through our gateway;
if (uri=~"sip:9{10}")
{
route(4);
break;
};
route[4]
.....
some account statements followed by
.....
rewritehostport("ip-address-of-pstn-gateway:5060");
Thanks,Steve