Advertisement
Advertisement
| 01.03.2008 at 06:36AM PST, ID: 23055547 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: |
sip.conf:
[general]
context=default ; Default context for incoming calls
bindport=5061 ; UDP Port to bind to (SIP standard port is 5060)
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
srvlookup=yes ; Enable DNS SRV lookups on outbound calls
language=de
[9999]
context=intern
callerid=9999
host=dynamic
;qualify=no ; X-Lite is behind a NAT router
type=friend
user=9999
secret=1234
;disallow=all
;allow=gsm ; GSM consumes far less bandwidth than ulaw
;allow=ulaw
;allow=alaw
[28]
context=28
callerid=28
host=dynamic
type=friend
user=28
secret=1234
extensions.conf:
[general]
;static=yes
;writeprotect=no
[analog]
exten => _.,1,Dial,SIP/9999
[intern]
exten => _.,1,Dial,CAPI/ISDN1/${EXTEN}
[28]
exten => _X.,1,Dial(SIP/9999)
capi.conf:
general]
nationalprefix=0
internationalprefix=00
rxgain=0.8
txgain=0.8
language=de ;set default language (en/de...)
[ISDN1] ; fritzbox 7050/7170 external S0 (or external analog line: experimental)
ntmode=no ;if isdn card operates in nt mode, set this to yes
isdnmode=did ;'MSN' (point-to-multipoint) or 'DID' (direct inward dial)
incomingmsn=* ;allow incoming calls to this list of MSNs/DIDs, * = any,
;a ="analog controller": empty incoming msn gets replaced
;with defaultcid (-> fritzbox 7050/7170 at analog line)
;defaultcid=1234567 ;set a default caller id to that interface for dial-out,
;this caller id will be used when dial option 'd' is set.
controller=4 ;capi controller number to use (=4: fritzbox 7050/7150 at analog line)
group=1 ;dialout group
softdtmf=off ;enable/disable software dtmf detection, recommended for AVM cards
relaxdtmf=off ;in addition to softdtmf, you can use relaxed dtmf detection
accountcode= ;PBX accountcode to use in CDRs
context=analog ;context for incoming calls
;holdtype=hold ;when the PBX puts the call on hold, ISDN HOLD will be used. If
;set to 'local' (default value), no hold is done and the PBX may
;play MOH.
bridge=no ;native bridging (CAPI line interconnect) if available
devices=1 ;number of concurrent calls on this controller
;(2 makes sense for single BRI, 30 for PRI)
immediate=yes
;echotail=64
|