Good morning,
I have one problem I have two analog phones connected to a 2 cisco router FXS ports, we also have 4 cisco sccp phones and one asterisk sip server with two sip phone attach to the Cisco switches.
I have the sip phone working with the cisco phones and one analog phone, I can call between all of them except one analog phone, this analog phone can call the sip with no problem, but when I go to call from the SIP phone to that one analog phone I get call failure 488.
First analog phone router address is: 172.16.1.1
Second analog phone router address is 172.16.4.1 (This is the one I can’t call)
My SIP.conf is:
[1101]
type=friend ; Friends place calls and receive calls
host=dynamic ; This peer register with us
context=phones ; Context for incoming calls from this user
defaultip=172.16.1.1
[4404]
type=friend ; Friends place calls and receive calls
host=dynamic ; This peer register with us
context=phones ; Context for incoming calls from this user
defaultip=172.16.4.1
extensions.conf:
exten => 1101,1,Dial(SIP/${EXTEN}@172.16.1.1,60,t)
same => n,hangup()
exten => 4404,1,Dial(SIP/${EXTEN}@172.16.4.1,60,t)
same => n,hangup()
Thank you