SIP

SIP 100 Trying vs 301 Moved Permanently

SIP 100 (Trying) is a 1xx Provisional response, while 301 (Moved Permanently) is a 3xx Redirection response. 100 indicates that the request has been received by the next-hop server and an unspecified action is being taken to process it. The UAC should expect additional responses. In contrast, 301 means that the user can no longer be found at the address in the Request-URI. The client should direct future requests to the new address in the Contact header.

Description

The request has been received by the next-hop server and an unspecified action is being taken to process it. The UAC should expect additional responses.

When You See It

Immediately after sending an INVITE. The proxy has received the call and is searching for the callee. This is the SIP equivalent of a dial tone.

How to Fix

No fix needed — this is normal call setup behavior. If stuck on 100 Trying for too long, check network connectivity and proxy configuration.

Description

The user can no longer be found at the address in the Request-URI. The client should direct future requests to the new address in the Contact header.

When You See It

When a user has permanently changed their SIP address. All future calls should be directed to the new URI.

How to Fix

Update your address book or routing tables to use the new Contact URI provided in the response.

Key Differences

1.

100 is a 1xx Provisional response, while 301 is a 3xx Redirection response.

2.

SIP 100: The request has been received by the next-hop server and an unspecified action is being taken to process it. The UAC should expect additional responses.

3.

SIP 301: The user can no longer be found at the address in the Request-URI. The client should direct future requests to the new address in the Contact header.

4.

You encounter 100 when immediately after sending an INVITE. The proxy has received the call and is searching for the callee. This is the SIP equivalent of a dial tone.

5.

You encounter 301 when when a user has permanently changed their SIP address. All future calls should be directed to the new URI.

When to Use Which

For 100 (Trying): No fix needed — this is normal call setup behavior. If stuck on 100 Trying for too long, check network connectivity and proxy configuration. For 301 (Moved Permanently): Update your address book or routing tables to use the new Contact URI provided in the response.

Learn More