Bonjour,

Je suis en train ed faire des tests avec un nouveau provider, qui fournit des trunks sans authentification par login / password. La seule authentification est effectuée de son côté par l'adresse IP de l'asterisk qui utilise ce trunk.

Comment le renseigner dans mon sip.conf ?
voici ce que j'ai fait pour l'instant dans le sip.conf

Code:
[general]
register=><identifiant>@<adresse provider>/<identifiant>

[<identifiant>]
disallow=all
allow=ulaw
host=<adresse du provider>
insecure=port,invite
port=5060
qualify=yes
type=friend
fromuser=<identifiant>
username=<identifiant>
fromdomain=<adresse de mon *>
Et quand je passe un appel :
Code:
*CLI> 

[Dec 15 09:47:26]     -- Executing [112211@context:1] Dial("SIP/154-000008da", "SIP/<identifiant>/0611223344") in new stack
[Dec 15 09:47:26] Audio is at xx.xx.xx.xx port 16534
[Dec 15 09:47:26] Adding codec 0x4 (ulaw) to SDP
[Dec 15 09:47:26] Adding non-codec 0x1 (telephone-event) to SDP
[Dec 15 09:47:26] Reliably Transmitting (no NAT) to <adresse provider>:5060:
...
 -> INVITE
...
<- TRYING
...
<- 404 Not Found
...
-> ACK
...

[Dec 15 09:47:27]     -- SIP/<identifiant>-000008db is circuit-busy
[Dec 15 09:47:27]   == Everyone is busy/congested at this time (1:0/1/0)
[Dec 15 09:47:27]     -- Executing [112211@context:2] Hangup("SIP/154-000008da", "") in new stack
[Dec 15 09:47:27]   == Spawn extension (context, 112211, 2) exited non-zero on 'SIP/154-000008da'
J'aimerais avant tout m'assurer que c'est bien comme ça qu'on configure un trunk sans authentification par login / pass.

merci !