Hi,
I’m trying to configure Asterisk as ISDN Gateway to foward incoming and outcoming call to Snom One PBX.
This is my first use of Asterisk, so I’m not sure what to do about. In Snom One, I configured Sip Gateway and the outgoing call came in Asterisk but don’t go in ISDN. My ISDN is an OpenVox PCI with bristuff and zaptel drivers. The incoming call go in Asterisk but don’t found extensions available because don’t go in Snom One.
In extensions.conf I wrote:
exten => XXX,1,Dial(Zap/1)
[dialout]
exten => XXXXXXXXX,1,Dial(Zap/1,100,r)
In sip.conf
register => 127.0.0.1:5060
[sip_proxy]
; For incoming calls only. Example: FWD (Free World Dialup)
; We match on IP address of the proxy for incoming calls
; since we can not match on username (caller id)
type=peer
context=from-fwd
host=127.0.0.1
[sip_proxy-out]
type=peer ; we only want to call out, not be called
;secret=guessit
username=101 ; Authentication user for outbound proxies
;fromuser=yourusername ; Many SIP providers require this!
;fromdomain=provider.sip.domain
host=127.0.0.1
;usereqphone=yes ; This provider requires “;user=phone” on URI
;call-limit=5 ; permit only 5 simultaneous outgoing calls to this peer
outboundproxy=127.0.0.1 ; send outbound signaling to this proxy, not directly to the peer
;port=80 ; The port number we want to connect to on the remote side
;nationalprefix=0
;internationalprefix=00
;countrycode=49
;areacode=30
;dialplan=international ; convert 123456 to 004930123456
;dialplan=national ; convert 123456 to 030123456
dialplan=local ; do not change the dialed number, default behaviour.
;prefix=666
;rtpip=192.168.1.1 ; if RTP should go to asterisk you can configure the
; used IP address here (for multihomed machines)
can you help me?