README.diversion
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. The isdn diversion services are a supporting module working together with
  2. the isdn4linux and the HiSax module for passive cards. 
  3. Active cards, TAs and cards using a own or other driver than the HiSax 
  4. module need to be adapted to the HL<->LL interface described in a separate 
  5. document. The diversion services may be used with all cards supported by 
  6. the HiSax driver.
  7. The diversion kernel interface and controlling tool divertctrl were written
  8. by Werner Cornelius (werner@isdn4linux.de or werner@titro.de) under the
  9. GNU General Public License.
  10.     This program is free software; you can redistribute it and/or modify
  11.     it under the terms of the GNU General Public License as published by
  12.     the Free Software Foundation; either version 2 of the License, or
  13.     (at your option) any later version.
  14.     This program is distributed in the hope that it will be useful,
  15.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.     GNU General Public License for more details.
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. Table of contents
  22. =================
  23. 1. Features of the i4l diversion services 
  24.    (Or what can the i4l diversion services do for me)
  25. 2. Required hard- and software
  26. 3. Compiling, installing and loading/unloading the module  
  27.    Tracing calling and diversion information 
  28. 4. Tracing calling and diversion information
  29.  
  30. 5. Format of the divert device ASCII output
  31.  
  32. 1. Features of the i4l diversion services 
  33.    (Or what can the i4l diversion services do for me)
  34.    The i4l diversion services offers call forwarding and logging normally 
  35.    only supported by isdn phones. Incoming calls may be diverted 
  36.    unconditionally (CFU), when not reachable (CFNR) or on busy condition 
  37.    (CFB). 
  38.    The diversions may be invoked statically in the providers exchange
  39.    as normally done by isdn phones. In this case all incoming calls
  40.    with a special (or all) service identifiers are forwarded if the 
  41.    forwarding reason is met. Activated static services may also be 
  42.    interrogated (queried).
  43.    The i4l diversion services additionally offers a dynamic version of
  44.    call forwarding which is not preprogrammed inside the providers exchange
  45.    but dynamically activated by i4l.
  46.    In this case all incoming calls are checked by rules that may be
  47.    compared to the mechanism of ipfwadm or ipchains. If a given rule matches
  48.    the checking process is finished and the rule matching will be applied
  49.    to the call.
  50.    The rules include primary and secondary service identifiers, called 
  51.    number and subaddress, callers number and subaddress and whether the rule
  52.    matches to all filtered calls or only those when all B-channel resources
  53.    are exhausted.
  54.    Actions that may be invoked by a rule are ignore, proceed, reject, 
  55.    direct divert or delayed divert of a call.
  56.    All incoming calls matching a rule except the ignore rule a reported and
  57.    logged as ASCII via the proc filesystem (/proc/net/isdn/divert). If proceed
  58.    is selected the call will be held in a proceeding state (without ringing)
  59.    for a certain amount of time to let an external program or client decide
  60.    how to handle the call. 
  61.             
  62. 2. Required hard- and software
  63.    
  64.    For using the i4l diversion services the isdn line must be of a EURO/DSS1
  65.    type. Additionally the i4l services only work together with the HiSax 
  66.    driver for passive isdn cards. All HiSax supported cards may be used for
  67.    the diversion purposes.
  68.    The static diversion services require the provider having static services
  69.    CFU, CFNR, CFB activated on an MSN-line. The static services may not be 
  70.    used on a point-to-point connection. Further the static services are only
  71.    available in some countries (for example germany). Countries requiring the 
  72.    keypad protocol for activating static diversions (like the netherlands) are
  73.    not supported but may use the tty devices for this purpose.
  74.    The dynamic diversion services may be used in all countries if the provider
  75.    enables the feature CF (call forwarding). This should work on both MSN- and
  76.    point-to-point lines.
  77.    To add and delete rules the additional divertctrl program is needed. This
  78.    program is part of the isdn4kutils package.   
  79. 3. Compiling, installing and loading/unloading the module  
  80.    Tracing calling and diversion information 
  81.    To compile the i4l code with diversion support you need to say yes to the 
  82.    DSS1 diversion services when selecting the i4l options in the kernel 
  83.    config (menuconfig or config).
  84.    After having properly activated a make modules and make modules_install all
  85.    required modules will be correctly installed in the needed modules dirs.
  86.    As the diversion services are currently not included in the scripts of most
  87.    standard distributions you will have to add a "insmod dss1_divert" after
  88.    having loaded the global isdn module.
  89.    The module can be loaded without any command line parameters.
  90.    If the module is actually loaded and active may be checked with a 
  91.    "cat /proc/modules" or "ls /proc/net/isdn/divert". The divert file is 
  92.    dynamically created by the diversion module and removed when the module is
  93.    unloaded.
  94. 4. Tracing calling and diversion information
  95.  
  96.    You also may put a "cat /proc/net/isdn/divert" in the background with the
  97.    output redirected to a file. Then all actions of the module are logged.
  98.    The divert file in the proc system may be opened more than once, so in 
  99.    conjunction with inetd and a small remote client on other machines inside
  100.    your network incoming calls and reactions by the module may be shown on 
  101.    every listening machine. 
  102.    If a call is reported as proceeding an external program or client may 
  103.    specify during a certain amount of time (normally 4 to 10 seconds) what
  104.    to do with that call.      
  105.    To unload the module all open files to the device in the proc system must
  106.    be closed. Otherwise the module (and isdn.o) may not be unloaded. 
  107. 5. Format of the divert device ASCII output
  108.  
  109.    To be done later