Hi,

> I'm trying to create my SIPp script with AKA, because of that I attached
> my current scritp, which is not working 

I have attached my working scripts for registration. Maybe that helps.

> Also, I wanted to know if the openIMSCore should support MD5 and AKA, or
> It's fine only with AKA. What do you think?

There are several authentication mechanisms which OpenIMSCOre supports.
Look at the HSS-GUI (menue of Private Identities).

In scscf.cfg there is also a "registration_default_algorithm" as a
parameter. If you want to use different registration algorithms according to
the provisioned data of the users you have to set the parameter

        # Let the HSS decide
        modparam("scscf","registration_default_algorithm","HSS-Selected") 

instead of a fixed algorithm assignment.

Regards
Franz
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE scenario SYSTEM "sipp.dtd">

<scenario name="registration">
	
<send retrans="500">
<![CDATA[
REGISTER sip:net1.test SIP/2.0
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
Max-Forwards: 20
From: "bob" <sip:b...@net1.test>;tag=[call_number]
To: "bob" <sip:b...@net1.test>
P-Access-Network-Info: 3GPP-UTRAN-TDD;utran-cell-id-3gpp=C359A3913B20E
Call-ID: reg///[call_id]
CSeq: 1 REGISTER
Contact: <sip:b...@[local_ip]:[local_port]>
Expires: 3600
Content-Length: 0
User-Agent: SIPp 3.1
Authorization: Digest username="b...@net1.test", realm="net1.test"
Supported: path
]]>
</send>

<recv response="401" auth="true" rtd="true">
<action>
<ereg regexp=".*" search_in="hdr" header="Service-Route:" assign_to="1" />
</action>
</recv>
	
<send retrans="500">
<![CDATA[
REGISTER sip:net1.test SIP/2.0
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
Route:[$1]
Max-Forwards: 20
From: "bob" <sip:b...@net1.test>;tag=[call_number]
To: "bob" <sip:b...@net1.test>
P-Access-Network-Info: 3GPP-UTRAN-TDD;utran-cell-id-3gpp=C359A3913B20E
Call-ID: reg///[call_id]
CSeq: 2 REGISTER
Contact: <sip:b...@[local_ip]:[local_port]>
Expires: 3600
Content-Length: 0
User-Agent: SIPp 3.1
[authentication username=...@net1.test password=bob]
Supported: path
]]>
</send>
	
<recv response="200">
</recv>

<ResponseTimeRepartition value="10, 20"/>
<CallLengthRepartition value="10"/>
	
</scenario>

Attachment: register-bob-net1.sh
Description: Binary data

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to