Hi All,
Spent most of the last two days googling and forum surfing to find an answer to this! Pretty sure I am missing something straight infront of me
I have setup an Asterisk test rig with 5 SIP phones, 3 from a company called Safecom and 2 from Aastra (a 480i and a 9133i).
The Safecom phones are all working fine, I can ring between them quite happily. With the Aastra phones though I can only make calls from them. If I ring either of the Aastra phones I get no ringing sound on the line and the Aastra phone doesn’t ring. Within the Asterisk console whenever I ring an Aasta phone I don’t get a SIP/xxx is ringing event.
Safecom -> Safecom
- Called 101
- SIP/101 is ringing
- Nobody picked up in 10000ms
Safecom -> Aastra
- Called 103
- Nobody picked up in 10000ms
I have followed some other config posts for the aastra phones on this forumn thinking it may be a phone config issue but to no avail. Any pointers would be most appreciated.
=== Extensions.conf
;###############################################
; Extensions configuration file
; /etc/asterisk/extensions.conf
; Created 02/08/06
;###############################################
[general]
static=yes
writeprotect=no
autofallthrough=yes
clearglobalvars=no
priorityjumping=no
[globals]
[internal]
; — Voicemail
exten=>399,1,VoiceMailMain()
; — SIP Phones
exten=>100,1,Dial(SIP/100|10)
exten=>100,2,Voicemail(u100)
exten=>101,1,Dial(SIP/101|10)
exten=>101,2,Voicemail(u101)
exten=>102,1,Dial(SIP/102|10)
exten=>102,2,Voicemail(u102)
exten=>103,1,Dial(SIP/103|10)
exten=>103,2,Voicemail(u103)
exten=>104,1,Dial(SIP/104|10)
exten=>104,2,Voicemail(u104)
=== SIP.conf
;########################################
; Test SIP server
; /etc/asterisk/sip.conf
;;########################################
[general]
context=default
realm=home.int
bindaddr=0.0.0.0
tos=lowdelay
maxexpiry=3600
defaultexpiry=120
musicclass=default
language=en
[100]
type=friend
context=internal
username=100
secret=testone
callerid=100
fromuser=100
host=dynamic
nat=no
mailbox=100
canreinvite=no
callgroup=2
pickupgroup=2
[101]
type=friend
context=internal
username=101
secret=testtwo
callerid=101
fromuser=101
host=dynamic
nat=no
mailbox=101
canreinvite=no
callgroup=2
pickupgroup=2
[102]
type=friend
context=internal
username=102
secret=testthree
callerid=102
fromuser=102
host=dynamic
nat=no
mailbox=102
canreinvite=no
callgroup=2
pickupgroup=2
[103]
type=friend
context=internal
username=103
secret=testfour
callerid=103
fromuser=103
host=dynamic
nat=no
mailbox=103
canreinvite=no
callgroup=2
pickupgroup=2
[104]
type=friend
context=internal
username=104
secret=testfive
callerid=104
fromuser=104
host=dynamic
nat=no
mailbox=104
canreinvite=no
callgroup=2
pickupgroup=2
Many thanks