> For the complete documentation index, see [llms.txt](https://help.sipgate.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.sipgate.de/cloud-telefonanlage/anbindungen-und-integrationen/asteriske/wie-konfiguriere-ich-asterisk-fuer-sipgate.md).

# Wie konfiguriere ich Asterisk für sipgate?

Hier finden Sie einen Überblick über die Einstellungen für die grundlegende Konfiguration von Asterisk für sipgate.

{% hint style="info" %}
**Wichtig:** Ersetzen Sie jeweils **SIPID** durch Ihre **SIP-ID** und **PASSWD** durch Ihr **SIP-Passwort**.
{% endhint %}

Die folgenden Angaben fügen Sie bitte in die **sip.conf** ein:

{% code title="sip.conf" %}

```ini
[general]
context=fromInternet
nat=yes
transport=udp
sipdebug=no
allowguest=no
alwaysauthreject=yes

register ➔ SIP-ID@sipgate.de:SIP-Password@sipgate.de/SIP-ID

[sipgate_incomming]
type=friend
context=sipgate_in
host=sipgate.de[sipgate_outgoing_account1]
type=friend
username=SIP-ID
fromuser=SIP-ID
fromdomain=sipgate.de
secret=SIP-Password
host=sipgate.de
nat=yes
insecure=invite
qualify=yes
dtmfmode=rfc2833
disallow=all
allow=ulaw,alaw
outboundproxy=sipgate.de
```

{% endcode %}

Die folgenden Angaben fügen Sie bitte in die **extensions.conf** ein:

{% code title="extensions.conf" %}

```ini
[fromInternet]
; dieser Context sollte aus Sicherheitsgründen leer bleiben

[sipgate_in]
exten => SIP-ID,1,Dial(SIP/Nebenstelle) <-- statt Nebenstelle sollten Sie den entsprechenden Peer definieren
exten => SIP-ID,n,Hangup

[sipgate_out]
exten => _X.,1,Set(CALLERID(num)=SIP-ID)
exten => _X.,2,Dial(SIP/sipgate_outgoing_account1/${EXTEN},30,trg)

exten => _X.,3,Hangup
```

{% endcode %}

#### Das Tonwahlverfahren umstellen

Um das Tonwahlverfahren in Asterisk zu aktualisieren, ändern Sie in der Zeile **'dtmfmode'** den Wert von 'info' in **'rfc2833'**.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.sipgate.de/cloud-telefonanlage/anbindungen-und-integrationen/asteriske/wie-konfiguriere-ich-asterisk-fuer-sipgate.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
