livekit sip is not sending REGISTER when creating ...
# ask-ai
c
livekit sip is not sending REGISTER when creating outbound trunk! whats the issue?
t
Thanks for reaching out, ZaidKaraymeh. I'm an AI assistant and I'm here to help. Give me a moment while I research this topic.
""" Hey there! Just a quick heads-up: LiveKit SIP outbound trunks don’t send REGISTER messages. Instead, they handle authentication on a per-call basis with each SIP INVITE request. This is totally normal and nothing to worry about. When you set up an outbound trunk, you’ll provide your SIP provider’s address along with your authentication details, like this:
Copy code
{
  "trunk": {
    "name": "My outbound trunk",
    "address": "<my-trunk>.<http://pstn.twilio.com|pstn.twilio.com>",
    "numbers": [
      "+15105550100"
    ],
    "auth_username": "<username>",
    "auth_password": "<password>"
  }
}
If your SIP provider needs REGISTER messages, you might want to: • See if they support per-call authentication for outbound calls • Use a SIP proxy or gateway that can handle registration for LiveKit Feel free to reach out if you want me to help you with anything else! Sources: livekit/livekit_sip.pb.go | SIP outbound trunk | LiveKit Docs