asterisk/asterisk.txt

changeset 347
10bd406e1c51
parent 311
263143ec0fb2
child 399
9360a38b5c9f
     1.1 --- a/asterisk/asterisk.txt	Sun May 29 17:14:31 2011 +0200
     1.2 +++ b/asterisk/asterisk.txt	Sun Jun 05 11:43:33 2011 +0200
     1.3 @@ -79,10 +79,19 @@
     1.4  webenabled         = no
     1.5  bindaddr           = 127.0.0.1
     1.6  port               = 5038
     1.7 -sslenable          = no
     1.8 -sslbindaddr        = 127.0.0.1
     1.9 -sslbindport        = 5039
    1.10 -sslcert            = @l_prefix@/etc/asterisk/asterisk.pem
    1.11 +
    1.12 +; You can open a TLS connection to this socket with:
    1.13 +;
    1.14 +;	openssl s_client -connect my_host:5039
    1.15 +;
    1.16 +tlsenable          = no
    1.17 +tlsbindaddr        = 127.0.0.1
    1.18 +tlsbindport        = 5039
    1.19 +tlscertfile        = @l_prefix@/etc/asterisk/asterisk.pem
    1.20 +; if tlsprivatekey is not specified search tlscertfile for key
    1.21 +;tlsprivatekey      = @l_prefix@/etc/asterisk/asterkey.pem
    1.22 +;tlscipher         = ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    1.23 +
    1.24  displayconnects    = yes
    1.25  allowmultiplelogin = yes
    1.26  timestampevents    = yes
    1.27 @@ -104,10 +113,10 @@
    1.28  enabled            = no
    1.29  bindaddr           = 127.0.0.1
    1.30  bindport           = 8088
    1.31 -sslenable          = no
    1.32 -sslbindport        = 8089
    1.33 -sslbindaddr        = 127.0.0.1
    1.34 -sslcert            = @l_prefix@/etc/asterisk/asterisk.pem
    1.35 +tlsenable          = no
    1.36 +tlsbindport        = 8089
    1.37 +tlsbindaddr        = 127.0.0.1
    1.38 +tlscertfile        = @l_prefix@/etc/asterisk/asterisk.pem
    1.39  enablestatic       = yes
    1.40  prefix             = asterisk
    1.41  redirect           = / /asterisk/static/docs/index.html
    1.42 @@ -222,6 +231,30 @@
    1.43  mailbox            = 12@internal
    1.44  
    1.45  </file>
    1.46 +<file name="iax.conf">
    1.47 +;;
    1.48 +;;  iax.conf -- Asterisk IAX configuration
    1.49 +;;
    1.50 +
    1.51 +;; This configuration is reread at reload
    1.52 +;; or with the CLI command
    1.53 +;; 	reload chan_iax2.so
    1.54 +;;
    1.55 +;; General settings, like port number to bind to, and
    1.56 +;; an option address (the default is to bind to all
    1.57 +;; local addresses).
    1.58 +;;
    1.59 +;[general]
    1.60 +;bindport=4569       ; bindport and bindaddr may be specified
    1.61 +;                    ; NOTE: bindport must be specified BEFORE
    1.62 +;                    ; bindaddr or may be specified on a specific
    1.63 +;                    ; bindaddr if followed by colon and port
    1.64 +;                    ; (e.g. bindaddr=192.168.0.1:4569)
    1.65 +;bindaddr=127.0.0.1  ; more than once to bind to multiple
    1.66 +;                    ; addresses, but the first will be the 
    1.67 +;                    ; default
    1.68 +
    1.69 +</file>
    1.70  <file name="rtp.conf">
    1.71  ;;
    1.72  ;;  rtp.conf -- Asterisk RTP configuration
    1.73 @@ -755,6 +788,59 @@
    1.74  stutter            = 425+400
    1.75  
    1.76  </file>
    1.77 +<file name="ccss.conf">
    1.78 +;;
    1.79 +;;  ccss.conf -- Asterisk Call Completion Supplementary Services configuration
    1.80 +;;
    1.81 +
    1.82 +; Warning! The CCSS implementation brings several changes to the
    1.83 +; channel components of Asterisk. To use CCSS, specify the number
    1.84 +; of maximum requests in this file but do not forget to specify
    1.85 +; the new CCSS related channel specific options in other config
    1.86 +; files as well! Some are 'cc_offer_timer', 'ccbs_available_timer',
    1.87 +; 'cc_agent_policy=never' and many more (in other files.)
    1.88 +
    1.89 +[general]
    1.90 +; There is only a single option that may be defined in this file.
    1.91 +; The cc_max_requests option is a global limit on the number of
    1.92 +; CC requests that may be in the Asterisk system at any time.
    1.93 +;
    1.94 +cc_max_requests = 20
    1.95 +
    1.96 +</file>
    1.97 +<file name="res_fax.conf">
    1.98 +;;
    1.99 +;;  res_fax.conf -- Asterisk fax resource configuration
   1.100 +;;
   1.101 +
   1.102 +[general]
   1.103 +; Maximum Transmission Rate
   1.104 +; Possible values are { 2400 | 4800 | 7200 | 9600 | 12000 | 14400 }
   1.105 +; Set this value to the maximum desired transfer rate.  Default: 14400
   1.106 +maxrate=14400
   1.107 +
   1.108 +; Minimum Transmission Rate
   1.109 +; Possible values are { 2400 | 4800 | 7200 | 9600 | 12000 | 14400 }
   1.110 +; Set this value to the minimum desired transfer rate.  Default: 2400
   1.111 +minrate=2400
   1.112 +
   1.113 +; Send Progress/Status events to manager session
   1.114 +; Manager events with 'call' class permissions will receive events indicating the
   1.115 +; steps to initiate a fax session.  Fax completion events are always sent to manager
   1.116 +; sessions with 'call' class permissions, regardless of the value of this option.
   1.117 +; Default: no
   1.118 +statusevents=yes
   1.119 +
   1.120 +; modem capabilities
   1.121 +; Possible values are { v17 | v27 | v29 }
   1.122 +; Set this value to modify the default modem options.  Default: v17,v27,v29
   1.123 +modems=v17,v27,v29
   1.124 +
   1.125 +; Enable/disable T.30 ECM (error correction mode) by default.
   1.126 +; Default: Enabled
   1.127 +ecm=yes
   1.128 +
   1.129 +</file>
   1.130  <file name="res_odbc.conf">
   1.131  ;;
   1.132  ;;  res_odbc.conf -- Asterisk ODBC resource configuration

mercurial