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 5 and Version 6 of Old/WiMAX/17/14addClient


Ignore:
Timestamp:
Jul 15, 2011, 9:29:44 PM (13 years ago)
Author:
Nilanjan Paul
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/WiMAX/17/14addClient

    v5 v6  
    11== /addClient - Add client MAC address to ACL database ==
    22
    3 Add client with given MAC address to the list of authorized clients and specify the slice to which it belongs. Optionally provide IP address. Depending on the poloicy setting in the configuration, unauthorized clients will be refused access.
     3Add client with given MAC address to the list of authorized clients and specify the slice to which it belongs. Optionally provide IP address. Depending on the policy setting in the configuration, unauthorized clients will be refused access.
    44{{{
    55<service name='addClient'><info>Add client with specified MAC address to BS access list</info>
     
    1212}}}
    1313
     14Example usage:
     15{{{
     16http://localhost:5052/wimaxrf/addClient?macaddr=00:1d:e1:37:11:04&vlanid=1&ipaddress=10.41.18.2
     17}}}
     18
    1419== /deleteClient - Delete client MAC address from ACL database ==
     20Removes client with specified macaddr from authorization list.
     21{{{
     22<service name="deleteClient"><info>Delete client with specified MAC address from BS access list</info>
     23  <args>
     24    <arg name="macaddr" isRequired="true" value="macaddr"><info>MAC address of the client</info></arg>
     25  </args>
     26</service>
     27}}}
     28
     29Example usage:
     30{{{
     31http://localhost:5052/wimaxrf/deleteClient?macaddr=00:1d:e1:36:ff:0a
     32}}}
    1533
    1634== /listClients - List clients registered in the ACL database ==
     35Display the list of authorized clients.
     36{{{
     37<service name="listClients"><info>List clients...</info>
     38</service>
     39}}}
     40
     41Example usage:
     42{{{
     43http://localhost:5052/wimaxrf/listClients
     44}}}