vote up 0 vote down star

So I've been reading the RFC3261, and trying to figure out this particular problem. Say the UAC is 192.168.1.42, the registrar is 192.168.1.1.

According to the RFC, it says that the To field should contain the Address of Record of the entity you're registering. AoR is defined as a URI that points to a domain with the location service that would map this URI to another where the user is available.

So I'm not using domain names, so the question is, should the To header be Alice<sip:alice@192.168.1.42> or Alice<sip:alice@192.168.1.1>. I have a SIP conformance suite that emulates the registrar, and it seems to think it's the former. Reading the RFCs like that seems to convince me that it's the latter.

Thanks!

flag

1 Answer

vote up 0 vote down

Sounds like it should be Alice<sip:alice@192.168.1.1>.

The SIP Registrar is going to use the URI in the SIP request to lookup the SIP account that's attempting to register the contact. The definitive answer to your question depends on what realm your SIP Registrar is using. If it's 192.168.1.1 then <sip:alice@192.168.1.1> would be a valid AoR. If it's 192.168.1.42 then <sip:alice@192.168.1.42> would be a valid AoR.

Most registrars will strip off the display name portion so you could leave Alice off unless you're attempting to test some specific conformance issue.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.