Overview
SIP Digest Authentication is a security mechanism that verifies access to your SIP endpoint using a username and password.This method uses a secure challenge-response mechanism, meaning the password is not sent in plain text.

Why It’s Needed
Digest Authentication protects your system from:- Unauthorized access
- Fraudulent outbound calls
- Unknown SIP connections
How It Works
- A SIP client or provider attempts to connect
- The system requests authentication
- The client sends:
- SIP Username
- Hashed response based on the password
- If credentials are valid → access granted
- If invalid → access denied
Configuration
Provide the following credentials:- SIP Username — unique identifier for authentication
- SIP Password — secure password used for verification
When to Use
Use SIP Digest Authentication when:- Your SIP provider requires credential-based authentication
- IP Whitelisting is not available or sufficient
- You need an additional layer of security
Example
Best Practices
Use strong, unique passwords and avoid sharing credentials publicly.
For maximum security, combine Digest Authentication with IP Whitelisting when possible.