SIP

SIP 302 Moved Temporarily vs 401 Unauthorized

SIP 302 (Moved Temporarily) is a 3xx Redirection response, while 401 (Unauthorized) is a 4xx Client Failure response. 302 indicates that the callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests. In contrast, 401 means that the request requires user authentication. The response includes a WWW-Authenticate header with a challenge for the realm.

Description

The callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests.

When You See It

When a user is temporarily reachable at a different location, such as when traveling or using a different device.

How to Fix

Redirect the current call to the Contact URI provided, but keep the original URI for future requests.

Description

The request requires user authentication. The response includes a WWW-Authenticate header with a challenge for the realm.

When You See It

When making a request that requires Digest authentication. Common for REGISTER and INVITE requests to authenticated SIP trunks.

How to Fix

Resend the request with proper Authorization header containing valid credentials (Digest authentication).

Key Differences

1.

302 is a 3xx Redirection response, while 401 is a 4xx Client Failure response.

2.

SIP 302: The callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests.

3.

SIP 401: The request requires user authentication. The response includes a WWW-Authenticate header with a challenge for the realm.

4.

You encounter 302 when when a user is temporarily reachable at a different location, such as when traveling or using a different device.

5.

You encounter 401 when when making a request that requires Digest authentication. Common for REGISTER and INVITE requests to authenticated SIP trunks.

When to Use Which

For 302 (Moved Temporarily): Redirect the current call to the Contact URI provided, but keep the original URI for future requests. For 401 (Unauthorized): Resend the request with proper Authorization header containing valid credentials (Digest authentication).

Learn More