Changes between Initial Version and Version 1 of Internal/WiMAX/WiMAXAPI/Usage


Ignore:
Timestamp:
May 19, 2010, 1:37:26 PM (14 years ago)
Author:
shweta
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/WiMAX/WiMAXAPI/Usage

    v1 v1  
     1== Accessing the WiMAX Base Station ==
     2The WiMAX ASN Gateway (cons-wm-01) can be accessed from the ORBIT internal server (internal1.orbit-lab.org). Users interested in experimenting with the base station should log on to internal1.orbit-lab.org using their ORBIT username and password. The next steps are enumerated below
     3
     4 * Initialize the grid service:
     5Initializes the VM grid service. Checks for running  VMs and initializes datapath on the machine.
     6
     7=== Input Command ===
     8{{{
     9wget http://wm-asngw-02:5012/wimaxvm/initvms
     10}}}
     11
     12=== Expected Output ===
     13{{{
     1401 0
     15 #mac vm4212 1
     16 #mac vm43
     17}}}
     18
     19 * List all Virtual Machines that are currently running on the ASN gateway:
     20Allows the administrator to have a detailed view of the current VMs and provides VM statistics in XML format.
     21=== Input Command ===
     22{{{
     23wget http://wm-asngw-02:5012/wimaxvm/vmlist
     24}}}
     25=== Expected Output ===
     26{{{
     270vm42  VLANID 1
     281vm43  VLANID 2
     29}}}
     30 
     31 * Start/Stop Virtual Machines
     32Starts/Stops VM instance. Configures VLANs on VM substrate
     33=== Input Command ===
     34{{{
     35wget http://wm-asngw-02:5012/wimaxvm/start?vmname=vm1
     36wget http://wm-asngw-02:5012/wimaxvm/stop?vmname=vm1
     37}}}
     38=== Expected Output ===
     39{{{
     40ToDo
     41}}}
     42
     43 * Add Mobile Client to the Virtual Machine
     44Registers a client with the slice. Currently adds default service flow settings for the client. Adds mapping to the datapath controller on ASN-GW.
     45=== Input Command ===
     46{{{
     47wget http://wm-asngw-02:5012/wimaxvm/addclient?vmname=vm1\&clientmac=84:22:10:14:2b:9a
     48}}}
     49=== Expected Output ===
     50{{{
     51ToDo
     52}}}
     53
     54== Sample Experiment Script ==
     55 This script demnstrates how to start VM instances and switch the mobile client with MAC: "84:22:10.14.2b.9a" between two VMs: VM1, VM2 every 20 secs.
     56{{{
     57wget http://wm-asngw-02:5012/wimaxvm/start?vmname=vm1
     58wget http://wm-asngw-02:5012/wimaxvm/stop?vmname=vm2
     59sleep 10
     60while 1
     61  wget http://wm-asngw-02:5012/wimaxvm/addclient?vmname=vm1\&clientmac=84:22:10:14:2b:9a
     62  sleep 20
     63  wget http://wm-asngw-02:5012/wimaxvm/addclient?vmname=vm2\&clientmac=84:22:10:14:2b:9a
     64  sleep 20
     65end
     66}}}
     67
     68== Expected Output ==
     69{{{
     70ToDo
     71}}}
     72
     73