Changes between Initial Version and Version 1 of PJSIP_IMS


Ignore:
Timestamp:
Jan 22, 2008 12:22:47 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PJSIP_IMS

    v1 v1  
     1= Configuring PJSIP/pjsua to Support IMS = 
     2 
     3[http://en.wikipedia.org/wiki/IP_Multimedia_Subsystem Wikipedia on IMS]:  
     4 The IP Multimedia Subsystem (IMS) is an architectural framework for delivering internet protocol (IP) multimedia to mobile users. It was originally designed by the wireless standards body 3rd Generation Partnership Project (3GPP), and is part of the vision for evolving mobile networks beyond GSM. Its original formulation (3GPP R5) represented an approach to delivering "Internet services" over GPRS. This vision was later updated by 3GPP, 3GPP2 and TISPAN by requiring support of networks other than GPRS, such as Wireless LAN, CDMA2000 and fixed line. 
     5 
     6PJSIP provides some basic supports to work with IMS since version 0.8: 
     7 - Support for AKAv1MD5 and AKAv2MD5 digest authentication algorithm (ticket #396) 
     8 - Support for configuring route set by means of {{{Service-Route}}} header (ticket #400) 
     9 - Support for sending empty Authorization header 
     10 - Support for strict route set (this has always been present in PJSIP) 
     11 - and so on. 
     12 
     13Depending on your IMS deployment configuration, you may or may not need the above features. However these supports are not enabled by default in PJSIP, so this article describes how to enable and use these, with pjsua as the reference implementation. 
     14 
     15== API Configurations == 
     16 
     17=== Digest AKA Authentication === 
     18 
     19The PJSIP distribution (tarball or SVN) contains everything that is required to support AKAv1MD5 and AKAv2MD5 authentication (such as ''libmilenage''), we just need to turn the settings on. Please follow '''[http://www.pjsip.org/pjsip/docs/html/group__PJSIP__AUTH__AKA__API.htm Digest AKAv1 and AKAv2 Authentication API]''' document on how to enable and use AKA authentication API. 
     20 
     21=== Service Route Processing === 
     22