close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 12 and Version 13 of Old/WiMAX/17


Ignore:
Timestamp:
Jul 23, 2011, 11:31:43 PM (13 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/WiMAX/17

    v12 v13  
    22wimaxrf is an Aggregate Manager (AM) that is used to configure and control WIMAX (Basestation) RF Section.
    33
    4 [[TOC(WiMAX/17/*, depth=2, heading=WiMAX RF Aggregate Manager)]]
     4[[TOC(WiMAX/17*, depth=2, heading=WiMAX RF Aggregate Manager)]]
     5
     6== Installation ==
     7
     8{{{
     9   apt-get install omf-wimaxrf-aggmgr-5.2
     10}}}
     11
     12== Configuration ==
     13
     14The configuration file for wimxrf AM is in the same location as for all the other OMF AM services in /etc/omf-agggr-5.2/available/wimaxrf.yaml. The configuration file consists of multiple section sections relating to different components of the services.
     15
     16Default parameter values are shown in []; Bold font indicates mandatory parameters.
     17
     18=== asngw: Section ===
     19
     20{{{
     21  asngw:
     22   if: eth1
     23   ip: 10.3.0.71
     24   rcvport: 54321
     25   sndport: 54321
     26   id: ASNGW000
     27   tecnh: 3
     28   dsc: IP-Config-Mgmt
     29}}}
     30
     31=== bs: section ===
     32{{{
     33}}}
     34
     35=== datapath: section ===
     36
     37Typical configuration:
     38
     39{{{
     40  datapath:
     41    type: simpleclick
     42    def_gw: 10.41.0.1
     43    net_mask: 255.255.0.0
     44    def_ip: 10.41.0.254
     45}}}
     46
     47These configuration parameters are temporary -> click is supposed to learn them from client DHCP requests.
     48
     49 * '''def_gw''': IP address of the default gateway for WiMAX clients [none]
     50 * '''net_mask''': Network mask for datapath subnet [none]
     51 * '''def_ip''': IP address that will be given to clients that are not assigned IP address (i.e. unknown clients) [none]
     52=== auth: Section ===
     53{{{
     54  auth:
     55    database: /var/spool/asnctrl/wimax-clients.sql
     56    allow_unknown: true
     57}}}
     58
     59 * '''database''': Location of the SQLite authentication database [/var/spool/asnctrl/wimax-clients.sql]
     60 * allow_unknown: If set to true, will allow access for clients that are not registered in the authentication database [false]
     61
     62=== reset:  Section ===
     63{{{
     64  reset:
     65   file: '/defaults/reset.xml'
     66}}}
     67
     68  * '''file''': location of the default configuration [none]. The file is an XML file that containes default BS parameters and is used with '''/default''' wimaxrf service
     69
     70Each of the sections in this file should be modified to reflect your deployment configuration (please keep in mind that this is a YAML file and that it depends heavily on spaces and not TABs). Once the configuration file is ready, you have to enable the service by creating the symbolic link in /etc/omf-aggmgr-5.2/enabled:
     71
     72{{{
     73ln -s ../available/wimaxrf.yaml
     74}}}
     75
     76and restarting the OMF aggregate manager service:
     77{{{
     78/etc/init.d/omf-aggmgr-5.2 restart
     79}}}
     80
     81=== Logging ===
     82OMF aggregate managers  have quite extended logging capabilities. Log messages from all of the enabled services are stored in /var/log/omf-aggmgr-5.2.log
    583
    684
     
    1189
    1290
    13 
    14