Changes between Version 5 and Version 6 of Tutorials/g0WmLTE/Tutorial0


Ignore:
Timestamp:
Jul 2, 2012, 5:35:58 PM (12 years ago)
Author:
jeffrabi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/g0WmLTE/Tutorial0

    v5 v6  
    55
    66This tutorial series assumes you have an [http://www.orbit-lab.org/userManagement/register ORBIT account], have [https://www.orbit-lab.org/schedule/ scheduled a session] on the ORBIT test bed, are familiar with [http://en.wikipedia.org/wiki/Secure_Shell SSH]'ing [http://www.orbit-lab.org/wiki/Tutorial/HelloWorld#a4.RunningtheHelloWorldexperiment into the test bed itself, and are familiar with the basics of running ORBIT experiments]. If you have not done these things yet, you may wish to do so before taking a look at this slightly more advanced experiment. If you are unfamiliar with or are entirely new to ORBIT, you may wish to start [http://www.orbit-lab.org/ here].
     7
     8----
    79
    810== Getting Started ==
     
    1719
    1820=== Interacting with the Base Station ===
     21
     22The base station receives instructions from [http://en.wikipedia.org/wiki/GET_(HTTP)#Request_methods "http get requests"] sent from the corresponding sandbox. For example, consider
     23{{{
     24wget -qO- http://cons-wm-01:5052/wimaxrf/datapath/config/load?name=defaults
     25}}}
     26"wget" is the command to send an http request; "-qO-" gives options for outputting the result of the request to the screen; "cons-wm-01" is the name of the base station; "5052" is the port number; "/wimaxrf/datapath/config/load" selects the subsetting "load" from the path; "?" demarcates instructions; "name=defaults" assigns "defaults" to the property "name".
     27
     28== Restoring the Base Station to Defaults ==
     29
     30To restore the base station to defaults, run the following commands:
     31{{{
     32wget -qO- http://cons-wm-01:5052/wimaxrf/defaults
     33wget http://cons-wm-01:5052/wimaxrf/restart
     34}}}
     35After issuing the restart command, the base station will be unavailable for 2 minutes.
     36
     37
     38----
     39